/* ==========================================================================
   INFINITE MEKATRONİK - PREMIUM DARK THEME
   ========================================================================== */

:root {
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --bg-light: #ffffff;
    --bg-gray: #f4f4f4;
    --primary-red: #e30613;
    --primary-red-hover: #c20410;
    --text-light: #ffffff;
    --text-dark: #111111;
    --text-gray: #aaaaaa;
    --border-dark: #333333;
    --font-main: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.text-red { color: var(--primary-red); }
.tag-red {
    display: inline-block;
    color: var(--primary-red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.tag-white { color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 1px; margin-bottom: 10px; display: inline-block; }

/* --- BUTONLAR --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}
.btn-red { background-color: var(--primary-red); color: #fff; border: 1px solid var(--primary-red); }
.btn-red:hover { background-color: var(--primary-red-hover); }

.btn-outline { background-color: transparent; border: 1px solid #fff; color: #fff; }
.btn-outline:hover { background-color: #fff; color: var(--bg-dark); }

.btn-outline-dark { background-color: transparent; border: 1px solid var(--text-dark); color: var(--text-dark); }
.btn-outline-dark:hover { background-color: var(--text-dark); color: #fff; }

.btn-outline-white { background-color: transparent; border: 1px solid #fff; color: #fff; }
.btn-outline-white:hover { background-color: #fff; color: var(--primary-red); }

/* --- HEADER --- */

.logo img { height: 65px; }
.navbar {
    background-color: var(--bg-darker);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    margin: 0 auto;
}
/* --- AÇILIR MENÜ (DROPDOWN) --- */
.nav-links ul { 
    display: flex; 
    gap: 20px; 
    font-size: 12px; 
    font-weight: 600; 
    letter-spacing: 0.5px; 
}

.nav-links > ul > li {
    position: relative;
    padding-bottom: 23px; /* Hover alanını genişleterek menünün hemen kapanmasını engeller */
    margin-bottom: -23px;
}

.nav-links > ul > li > a {
    padding-bottom: 21px; /* Ana menü link alt boşluğu */
}

.nav-links > ul > li > a:hover, 
.nav-links > ul > li > a.active { 
    color: var(--primary-red); 
    border-bottom: 2px solid var(--primary-red); 
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-darker);
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 200;
    display: flex;
    flex-direction: column;
    border-top: 2px solid var(--primary-red);
    padding: 10px 0;
}

.dropdown-parent:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    width: 100%;
}

.dropdown li a {
    display: block;
    padding: 0px 20px;
    color: var(--text-light);
    border-bottom: none;
    transition: all 0.2s ease;
}

.dropdown li a:hover {
    background-color: var(--bg-dark);
    color: var(--primary-red);
    padding-left: 25px; /* Hover durumunda sağa kayma efekti */
    border-bottom: none; /* Ana menüdeki border efektini ezer */
}
.nav-actions { display: flex; align-items: center; gap: 20px; font-size: 13px; font-weight: 600; }

/* --- HERO BÖLÜMÜ (SWIPER ENTEGRASYONU) --- */
.hero.swiper {
    width: 100%;
    height: 85vh;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-dark); /* Bu satır eklendi: Saydamlığı engeller */
}

.hero-overlay {
    position: absolute; 
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero h1 { 
    font-size: 64px; 
    font-weight: 900; 
    line-height: 1.1; 
    margin-bottom: 20px; 
    letter-spacing: -1px; 
}

.hero p { 
    font-size: 18px; 
    color: #ddd; 
    margin-bottom: 40px; 
    max-width: 600px; 
}

.hero-buttons { 
    display: flex; 
    gap: 15px; 
}

/* --- SWIPER NAVİGASYON (OKLAR VE NOKTALAR) --- */


.swiper-button-next, 
.swiper-button-prev {
    color: rgba(255, 255, 255, 0.5)!important;
    transition: color 0.3s ease;
}


.swiper-button-next:hover, 
.swiper-button-prev:hover {
    color: var(--primary-red);
}

.swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary-red);
    opacity: 1;
}
/* --- ÖZELLİKLER (İKON BAR) --- */
.features-bar { background-color: var(--bg-darker); border-bottom: 1px solid var(--border-dark); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 40px 0;
    gap: 0px;
    text-align: center;
}
.feature-item { display: flex; flex-direction: row; align-items: center; justify-content: center; }
.feature-item:nth-child(-n+3) { border-right: 1px solid var(--border-dark); }
.feature-item .icon { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; }
.feature-item .icon img { width: auto; height: 50px; }
.feature-item .feature-content { text-align: left; margin-left: 20px; }
.feature-item .feature-content h4 { font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.feature-item .feature-content p { font-size: 11px; color: var(--text-gray); }

/* --- BEYAZ / AÇIK RENK BÖLÜMLER --- */
.light-section { background-color: var(--bg-light); color: var(--text-dark); padding: 80px 0; }

/* Hakkımızda */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-text h2 { font-size: 36px; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.about-text p { font-size: 15px; color: #555; margin-bottom: 30px; }
.about-image img { width: 100%; border-radius: 4px; }

/* Çözümlerimiz */
.solutions-header { margin-bottom: 40px; }
.solutions-header h2 { font-size: 32px; font-weight: 800; line-height: 1.2; }
.solutions-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.solution-card { background: var(--bg-gray); border-radius: 4px; overflow: hidden; transition: 0.3s; }
.solution-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.solution-card img { width: 100%; height: 180px; object-fit: cover; }
.solution-content { padding: 20px; }
.solution-content h4 { font-size: 13px; font-weight: 700; display: flex; justify-content: space-between; align-items: center; }
.arrow-red { color: var(--primary-red); font-size: 18px; }

/* --- KOYU TEMA BÖLÜMLERİ --- */
.dark-section { padding: 80px 0; background-color: var(--bg-dark); border-top: 1px solid var(--border-dark); }

/* Öne Çıkan Makineler */
.machines-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 30px; }
.machine-card { background: var(--bg-darker); border: 1px solid var(--border-dark); padding: 20px; text-align: center; border-radius: 4px; }
.machine-card h3 { font-size: 20px; margin-bottom: 5px; }
.machine-card .specs { font-size: 12px; color: var(--text-gray); margin-bottom: 20px; }
.machine-card img { width: 100%; height: auto; margin-bottom: 20px; }
.btn-link-outline { display: block; border: 1px solid var(--border-dark); padding: 10px; font-size: 11px; font-weight: 700; color: #fff; transition: 0.3s; }
.btn-link-outline:hover { background-color: var(--primary-red); border-color: var(--primary-red); }

/* --- İKİYE BÖLÜNMÜŞ ALAN (SPLIT) --- */
.split-section { display: flex; width: 100%; }
.split-half { width: 50%; padding: 80px 5%; display: flex; align-items: center; }
.dark-bg { background-color: var(--bg-darker); }
.red-bg { background-color: var(--primary-red); color: #fff; }
.map-bg { background-image: url('../img/main/main-world-in-us.jpg'); background-size: contain; background-repeat: no-repeat; background-position: right;}
.support-bg { background-image: url('../img/main/main-support.png'); background-size: contain; background-repeat: no-repeat; background-position: right; background-color: #cb101b;}
.split-content h2 { font-size: 32px; font-weight: 800; margin-bottom: 20px; }
.split-content p { font-size: 16px; margin-bottom: 30px; opacity: 0.9; }

/* --- KATALOG BÖLÜMÜ --- */
.catalog-grid { display: flex; align-items: center; justify-content: space-between; gap: 50px; background-image: url('../img/main/main-catalog.png'); background-size: contain; background-repeat: no-repeat; background-position: left; }
.catalog-main { flex: 1; margin-left: 300px; }
.catalog-main h2 { font-size: 26px; font-weight: 800; margin-bottom: 15px; }
.catalog-main p { font-size: 15px; color: #555; margin-bottom: 25px; }
.catalog-items { flex: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.doc-item { text-align: left; }
.doc-item .icon-red { font-size: 28px; margin-bottom: 15px; }
.doc-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.doc-item p { font-size: 12px; color: #666; margin-bottom: 10px; }

/* --- FOOTER --- */
.footer { background-color: #050505; padding-bottom: 20px; font-size: 13px; color: var(--text-gray); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 30px; border-bottom: 1px solid var(--border-dark); padding-bottom: 40px; margin-bottom: 20px; }
.footer-brand img { margin-bottom: 20px; width: 180px; filter: brightness(0) invert(1); }
.footer-brand p { margin-bottom: 20px; }
.social-icons a { display: inline-block; margin-right: 10px; border: 1px solid var(--text-gray); padding: 5px 10px; border-radius: 4px; }
.footer-links h4, .footer-contact h4 { color: #fff; font-size: 14px; margin-bottom: 20px; font-weight: 700; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--primary-red); }
.footer-contact p { margin-bottom: 10px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }

/* --- RESPONSIVE BASİT YAPI --- */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .solutions-grid { grid-template-columns: repeat(3, 1fr); }
    .machines-grid { grid-template-columns: repeat(3, 1fr); }
    .split-section { flex-direction: column; }
    .split-half { width: 100%; }
    .catalog-grid { flex-direction: column; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links { display: none; } /* Mobil menü için hamburger yapılmalı */
    .hero h1 { font-size: 40px; }
    .about-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .solutions-grid { grid-template-columns: 1fr; }
    .machines-grid { grid-template-columns: 1fr; }
    .catalog-items { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
}


/* ==========================================================================
   ALT SAYFALAR (MAKİNELER / ÜRÜNLER LİSTESİ)
   ========================================================================== */

/* --- SAYFA BAŞLIĞI (PAGE HERO) --- */
.page-hero {
    position: relative;
    height: 45vh; /* Ana sayfa slider'ından daha kısa */
    min-height: 350px;
    display: flex;
    align-items: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 40px; /* Breadcrumb için alttan boşluk */
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.page-hero-content p {
    font-size: 16px;
    color: #ccc;
    max-width: 600px;
}

.our-machines-hero {
    background-image: url('../img/makinelerimiz/machines-hero.jpg');
    background-size: cover;
    background-position: center;
}

.md-hero { background-image: url('../img/makinelerimiz/md-hero.jpg'); background-size: cover; background-position: center; }
/* Breadcrumb Bar */
.breadcrumb-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    background-color: rgba(0,0,0,0.3);
    z-index: 2;
    font-size: 13px;
    color: var(--text-gray);
}

.breadcrumb-bar a {
    color: #fff;
    transition: color 0.3s;
}

.breadcrumb-bar a:hover {
    color: var(--primary-red);
}

.breadcrumb-bar .separator {
    margin: 0 10px;
    color: #666;
}

.breadcrumb-bar .current {
    color: var(--text-gray);
}

/* --- FİLTRE BARI --- */
.filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.filter-btn {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #333;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.filter-btn.active {
    background-color: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
}

/* --- ÜRÜN GRID (BEYAZ KARTLAR) --- */
.product-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card-light {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.card-img-wrapper {
    background-color: #f8f9fa; /* Görsel arkasındaki hafif gri alan */
    margin-bottom: 25px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.card-img-wrapper img {
    max-width: 100%;
    height: auto;
    mix-blend-mode: multiply; /* Arka planı gri ile kaynaştırır */
}

.product-card-light h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.product-card-light h4 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.product-card-light p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.link-red {
    color: var(--primary-red);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease, color 0.3s ease;
}

.link-red:hover {
    color: var(--primary-red-hover);
    gap: 10px; /* Hover'da okun sağa kayma efekti */
}

/* --- DAHA FAZLA YÜKLE --- */
.load-more-container {
    text-align: center;
    margin-top: 50px;
}

/* Mobil Uyumlu Grid */
@media (max-width: 1024px) {
    .product-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .page-hero-content h1 { font-size: 36px; }
    .product-grid-3 { grid-template-columns: 1fr; }
    .filter-bar { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 10px; }
    .filter-btn { flex: 0 0 auto; } /* Mobilde filtrelerin sıkışmasını engeller, scroll yaptırır */
}

/* ==========================================================================
   MAKİNE DETAY SAYFASI ÖZEL STİLLERİ
   ========================================================================== */

/* --- DETAY HERO --- */
.machine-hero {
    background-color: #0d0d0d;
    padding: 30px 0 50px 0;
    border-bottom: 1px solid var(--border-dark);
}

.hero-breadcrumb {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 500;
}
.hero-breadcrumb a:hover { color: #fff; }
.hero-breadcrumb .separator { margin: 0 8px; color: #555; }

.machine-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

.machine-hero-info h1 { font-size: 48px; font-weight: 900; margin-bottom: 5px; }
.machine-hero-info h2 { font-size: 24px; font-weight: 700; margin-bottom: 25px; }
.machine-hero-info p { font-size: 16px; color: #ccc; margin-bottom: 40px; line-height: 1.6; }

.machine-hero-image img {
    width: 100%;
    border-radius: 4px;
}

/* Galeri Thumbnail */
.machine-gallery-thumbs {
    display: flex;
    align-items: center;
    gap: 15px;
}

.thumb-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}
.thumb-track::-webkit-scrollbar { display: none; }

.thumb-track img {
    width: 140px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s;
    border: 2px solid transparent;
}
.thumb-track img:hover { opacity: 0.8; }
.thumb-track img.active {
    opacity: 1;
    border-color: var(--primary-red);
}

.thumb-nav {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* --- HIZLI ÖZELLİKLER (GRİ BAR) --- */
.machine-quick-features {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e5e5e5;
    padding: 25px 0;
}
.quick-features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    text-align: center;
}
.q-feature { display: flex; align-items: center; justify-content: center; gap: 10px; text-align: left; }
.q-feature .icon { font-size: 24px; color: #555; }
.q-feature div strong { font-size: 14px; color: #111; display: block; }
.q-feature div span { font-size: 11px; color: #666; }

/* --- 3 KOLONLU DETAY ALANI --- */
.detail-title {
    font-size: 15px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.grid-3 {
    display: grid;
    /* minmax(0, 1fr) kullanımı, uzun metinlerin kolonu esnetip düzeni bozmasını engeller, 3 kolonu da kilitler ve tam eşitler */
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px; /* Kolonlar arası boşluk */
    align-items: start; /* Tüm kolonların içeriklerini üstten aynı hizada başlatır */
}

.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #444;
}
.check-list li::before {
    content: '✔️'; /* veya SVG kullanılabilir */
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
    color: var(--text-dark);
}

/* Akordeon */
.custom-accordion {
    background: #fdfdfd;
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 4px;
}
.custom-accordion summary {
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    list-style: none; /* Varsayılan oku kaldırır */
    position: relative;
    color: #333;
}
.custom-accordion summary::-webkit-details-marker { display: none; }
.custom-accordion summary::after {
    content: '▼';
    position: absolute;
    right: 15px;
    font-size: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}
.custom-accordion[open] summary::after { content: '▲'; color: var(--primary-red); }
.accordion-content {
    padding: 0 15px 15px 15px;
    font-size: 13px;
    color: #666;
    border-top: 1px solid #f0f0f0;
    margin-top: 5px;
    padding-top: 10px;
}

/* --- TEKNİK TABLO --- */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #ddd;
}
.specs-table th {
    background-color: #888; /* Tasarımdaki gri başlık */
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #777;
}
.specs-table td {
    padding: 12px 15px;
    font-size: 13px;
    color: #444;
    border: 1px solid #eee;
}
.specs-table td:nth-child(odd) {
    font-weight: 600;
    background-color: #fcfcfc;
    width: 25%;
}

/* --- BENZER MAKİNELER --- */
.similar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}
.mini-machine-card {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
    text-align: center;
    padding: 15px;
}
.mini-machine-card img { width: 100%; height: auto; mix-blend-mode: multiply; margin-bottom: 10px; }
.mini-machine-card h5 { font-size: 14px; font-weight: 800; color: #111; }
.mini-machine-card span { font-size: 11px; color: #666; }
.slider-arrow-dark {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ddd;
    width: 40px; height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* --- BOTTOM CTA --- */
.bottom-cta { background-color: #111; border-top: 1px solid #222; }
.bottom-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.cta-left h2 { font-size: 28px; font-weight: 800; margin-bottom: 15px; line-height: 1.3; }
.cta-left p { color: #aaa; margin-bottom: 25px; font-size: 15px; }
.cta-right { display: flex; justify-content: space-between; border-left: 1px solid #333; padding-left: 50px; }
.cta-feature { text-align: center; }
.cta-feature .icon-red { font-size: 32px; color: var(--primary-red); display: block; margin-bottom: 10px; }
.cta-feature h4 { font-size: 12px; font-weight: 700; margin-bottom: 5px; }
.cta-feature p { font-size: 11px; color: #888; }

/* Responsive */
@media (max-width: 1024px) {
    .machine-hero-grid, .bottom-cta-grid { grid-template-columns: 1fr; }
    .cta-right { border-left: none; padding-left: 0; margin-top: 30px; }
    .quick-features-grid { grid-template-columns: repeat(3, 1fr); }
    .similar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .machine-hero-info h1 { font-size: 36px; }
    .quick-features-grid { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: 1fr; }
    .specs-table, .specs-table tbody, .specs-table tr, .specs-table th, .specs-table td { display: block; width: 100%; } /* Tabloyu mobilde listeye çevirir */
    .specs-table td:nth-child(odd) { background-color: #eee; }
    .similar-grid { grid-template-columns: 1fr; }
    .cta-right { flex-direction: column; gap: 30px; }
}

.about-text {width: 100%;}
.about-image {
    position: relative;
    width: 800px;
    height: 400px;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.about-image img {
    width: 130%;
    border-radius: 4px;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    right: 0;
}