/* SecureCRT Automation Masterclass Design */
:root {
    --auto-grad: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --auto-accent: #f6ad55;
    --auto-bg: #0f172a;
    --auto-glass: rgba(255, 255, 255, 0.05);
    --auto-border: rgba(255, 255, 255, 0.1);
    --auto-text: #f1f5f9;
    --auto-font: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--auto-bg);
    color: var(--auto-text);
    font-family: var(--auto-font);
    line-height: 1.6;
    overflow-x: hidden;
}

.auto-canvas {
    position: relative;
    padding-bottom: 5rem;
}

.gradient-header {
    background: var(--auto-grad);
    padding: 1.5rem 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--auto-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-visual {
    padding: 8rem 0;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 2rem;
}

.hero-text p {
    font-size: 1.25rem;
    opacity: 0.8;
    margin-bottom: 3rem;
}

.glass-panel {
    background: var(--auto-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--auto-border);
    padding: 3rem;
    border-radius: 24px;
}

.feature-asymmetric {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    margin-top: 6rem;
}

.feature-node {
    grid-column: span 6;
    padding: 3rem;
}

.feature-node:nth-child(even) {
    margin-top: 4rem;
}

.feature-node h3 {
    font-size: 2rem;
    color: var(--auto-accent);
    margin-bottom: 1.5rem;
}

.code-explorer {
    margin-top: 8rem;
}

.explorer-box {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--auto-border);
}

.explorer-header {
    background: #1a1a1a;
    padding: 0.75rem 1.5rem;
    display: flex;
    gap: 0.5rem;
}

.explorer-content {
    padding: 2rem;
    font-family: 'Fira Code', monospace;
    font-size: 0.95rem;
}

.program-path {
    padding: 8rem 0;
}

.path-step {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}

.step-num {
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.2;
    line-height: 1;
}

.faq-glass {
    margin-top: 6rem;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-q {
    background: var(--auto-glass);
    padding: 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
}

.faq-a {
    padding: 1.5rem;
    opacity: 0.8;
}

.footer-flow {
    margin-top: 10rem;
    padding: 6rem 0;
    border-top: 1px solid var(--auto-border);
}

.btn-auto {
    padding: 1rem 2.5rem;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.btn-auto:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cookie-glass {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--auto-border);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    display: none;
}

@media (max-width: 900px) {
    .hero-visual {
        flex-direction: column;
        padding: 4rem 0;
    }
    .hero-text h1 {
        font-size: 3rem;
    }
    .feature-node {
        grid-column: span 12;
    }
    .feature-node:nth-child(even) {
        margin-top: 0;
    }
}
