/**
 * TECHNOLOGY.CSS - Technology Page Styles
 */

/* Hero Section */
.tech-hero {
    position: relative;
    min-height: 100vh;
    margin-top: -60px;
    padding: 140px 5% 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    overflow: hidden;
}

.tech-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(28, 24, 36, 0.3);
    z-index: 1;
}

.tech-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.tech-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
}

.tech-hero-content h1 {
    font-size: 6rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    letter-spacing: -1px;
}

.tech-hero-content p {
    font-size: 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Content Wrapper */
.tech-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 5%;
}

/* Content Sections */
.how-it-works,
.tech-specs,
.research {
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    margin-bottom: 50px;
}

.how-it-works,
.research,
.tech-specs {
    background: var(--bg-white);
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.how-it-works h2,
.tech-specs h2,
.research h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.how-it-works h2,
.research h2,
.tech-specs h2 {
    color: var(--text-primary);
}

.how-it-works p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.step-number {
    font-size: 3rem;
    color: #10FDB4;
    margin-bottom: 15px;
    font-weight: 700;
}

.step h3 {
    color: #1c1824;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Technical Specs */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.spec-item {
    text-align: center;
    padding: 20px;
}

.spec-label {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 10px;
}

.spec-value {
    font-size: 1.5rem;
    color: #10FDB4;
    font-weight: 700;
}

/* Research Items */
.research-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #667eea;
}

.research-item h3 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.research-item p {
    line-height: 1.8;
    color: #444;
}

/* ==================== RESPONSIVE - TECHNOLOGY PAGE ==================== */
@media (max-width: 768px) {

    /* Hero */
    .tech-hero {
        min-height: auto;
        padding: 100px 20px 60px;
    }

    .tech-hero-content h1 {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .tech-hero-content p {
        font-size: 1.1rem;
    }

    /* Content */
    .tech-content {
        padding: 50px 20px;
    }

    .how-it-works,
    .tech-specs,
    .research {
        padding: 35px 25px;
        margin-bottom: 30px;
    }

    .how-it-works h2,
    .tech-specs h2,
    .research h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .how-it-works p {
        font-size: 1rem;
    }

    /* Steps */
    .process-steps {
        gap: 20px;
        margin-top: 30px;
    }

    .step {
        padding: 25px 20px;
    }

    .step-number {
        font-size: 2.5rem;
    }

    .step h3 {
        font-size: 1.1rem;
    }

    /* Specs */
    .specs-grid {
        gap: 20px;
    }

    .spec-value {
        font-size: 1.3rem;
    }

    /* Research */
    .research-item {
        padding: 20px;
    }

    .research-item h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {

    /* Hero */
    .tech-hero {
        padding: 80px 15px 50px;
    }

    .tech-hero-content h1 {
        font-size: 2.2rem;
    }

    .tech-hero-content p {
        font-size: 1rem;
    }

    /* Content */
    .tech-content {
        padding: 30px 15px;
    }

    .how-it-works,
    .tech-specs,
    .research {
        padding: 25px 18px;
    }

    .how-it-works h2,
    .tech-specs h2,
    .research h2 {
        font-size: 1.5rem;
    }

    /* Steps */
    .step-number {
        font-size: 2rem;
    }

    .step h3 {
        font-size: 1rem;
    }

    /* Specs */
    .spec-value {
        font-size: 1.2rem;
    }

    /* Research */
    .research-item {
        padding: 18px 15px;
    }
}