/* Home Page Styles */

body {
    overflow: auto;
}

.home-content {
    flex: 1;
    overflow-y: auto;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 120px;
    min-height: calc(100vh - 60px);
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.atom-visual svg {
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Features Section */
.features-section {
    padding: 100px 120px;
    background: var(--bg-secondary);
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 32px;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--accent-primary);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 100px 120px;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 32px;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
    color: var(--bg-primary);
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.process-step p {
    color: var(--text-secondary);
    font-size: 14px;
}

.process-arrow {
    font-size: 32px;
    color: var(--accent-primary);
}

/* CTA Section */
.cta-section {
    padding: 100px 120px;
    text-align: center;
    background: var(--bg-secondary);
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Content Pages */
.content-page {
    flex: 1;
    overflow-y: auto;
    padding: 60px 120px;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.content-section h3 {
    font-size: 24px;
    margin: 24px 0 16px;
    color: var(--text-primary);
}

.content-section h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--accent-primary);
}

.content-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-section ul {
    list-style: none;
    padding: 0;
}

.content-section ul li {
    padding: 8px 0 8px 24px;
    color: var(--text-secondary);
    position: relative;
}

.content-section ul li::before {
    content: "•";
    color: var(--accent-primary);
    position: absolute;
    left: 0;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.application-item {
    padding: 24px;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.application-item h4 {
    margin-bottom: 8px;
}

.application-item p {
    margin: 0;
    font-size: 14px;
}

.cta-box {
    padding: 48px;
    background: var(--bg-panel);
    border: 2px solid var(--accent-primary);
    border-radius: var(--radius-lg);
    text-align: center;
}

.cta-box h2 {
    margin-bottom: 16px;
}

.cta-box p {
    margin-bottom: 24px;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    margin-bottom: 32px;
}

.contact-info-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--accent-primary);
}

.contact-info-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-info-item a {
    color: var(--accent-primary);
    text-decoration: none;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.help-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-section,
    .features-section,
    .process-section,
    .cta-section,
    .content-page {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 30px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta {
        justify-content: center;
    }

    .features-section,
    .process-section,
    .cta-section,
    .content-page {
        padding: 60px 30px;
    }

    .section-title {
        font-size: 32px;
    }

    .process-arrow {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
