/* ========================================
   TECHNICAL PAGE STYLES
   ======================================== */

/* Hero Section */
.tech-hero {
    background: linear-gradient(135deg, #001a4d 0%, #003d99 50%, #0052a3 100%);
    color: white;
    padding: var(--spacing-2xl) 0;
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.tech-hero h1 {
    color: white;
    margin-bottom: var(--spacing-md);
    font-size: 42px;
}

.tech-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    margin-bottom: 0;
}

/* Content Grid */
.tech-content {
    padding: var(--spacing-2xl) 0;
}

.tech-grid {
    display: grid;
    gap: var(--spacing-2xl);
}

/* Article Styling */
.tech-article {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tech-article:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.tech-article h2 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: var(--spacing-lg);
    font-size: 32px;
}

.tech-article h3 {
    color: var(--text-dark);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    font-size: 22px;
}

.tech-article p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

/* Lists */
.feature-list,
.tech-article ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-lg);
}

.feature-list li,
.tech-article ul li {
    padding: var(--spacing-md) 0;
    padding-left: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    color: var(--text-light);
}

.feature-list li:before,
.tech-article ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 18px;
}

.feature-list li:last-child,
.tech-article ul li:last-child {
    border-bottom: none;
}

/* Ordered Lists */
.step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    margin-bottom: var(--spacing-lg);
}

.step-list li {
    counter-increment: step-counter;
    padding: var(--spacing-md) var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-sm);
}

.step-list li:before {
    content: counter(step-counter);
    display: inline-block;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    margin-right: var(--spacing-md);
    font-weight: bold;
}

/* Material Items */
.material-item {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--border-color);
}

.material-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.material-item h3 {
    color: var(--primary-color);
    margin-top: 0;
}

/* CTA Box */
.tech-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
}

.tech-cta h2 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.tech-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    margin-bottom: var(--spacing-xl);
}

.tech-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.tech-buttons .btn {
    padding: 12px 28px;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .tech-hero h1 {
        font-size: 32px;
    }

    .tech-hero p {
        font-size: 16px;
    }

    .tech-article {
        padding: var(--spacing-lg);
    }

    .tech-article h2 {
        font-size: 24px;
    }

    .tech-article h3 {
        font-size: 18px;
    }

    .tech-buttons {
        flex-direction: column;
    }

    .tech-buttons .btn {
        width: 100%;
    }
}

/* Navigation Active State */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}