/* Hero Bölümü*/
.montaj-hero {
    position: relative;
    padding: 120px 0 80px; /* Navbar fixed olduğu için üstten pay verdik */
    background: linear-gradient(135deg, rgba(5, 22, 34, 0.95) 40%, rgba(112, 112, 112, 0.7)), 
                url('../assets/images/hero/ctp-kompozit-izgara-nedir.jpg'); /* Arkaya teknik bir iş görseli koyabilirsin */
    background-size: cover;
    background-position: center;
    color: #fff;
    border-bottom: 3px solid #00d2ff; /* Sayfaya bir vurgu rengi çizgisi */
}

.montaj-hero-content .subtitle {
    color: #00d2ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
}

.montaj-hero h1 {
    font-size: 2.8rem;
    margin: 10px 0;
    font-weight: 800;
}

.montaj-hero-content p {
    max-width: 600px;
    opacity: 0.8;
    font-size: 1.1rem;
}

/* ===== PRODUCTS ===== */

.tech-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.tech-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.tech-img {
    background: #fdfdfd;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    height: 200px; /* Veya kaç istersen */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-img img {
    max-width: 100%;
    height: auto;
}

.tech-title {
    background: #f8f9fa;
    padding: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #0056b3;
    text-align: center;
}

.tech-info {
    padding: 15px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    font-size: 0.85rem;
}

.spec-row:last-child { border-bottom: none; }

.spec-row span { color: #666; }
.spec-row strong { color: #222; }


/* CONTENT WIDTH */
.narrow {
  max-width: 800px;
}
