html {
    scroll-behavior: smooth; /* Tüm sayfa içi kaymaları yumuşatır */
}

/* Başlığın header arkasında kalmaması için padding-top verelim */
h1[id], h2[id], h3[id] {
    scroll-margin-top: 130px; /* Header mesafesi kadar boşluk bırakır */
}
:target::before {
  content: "";
  display: block;
  height: 130px; /* Header yüksekliğin */
  margin: -130px 0 0;
}
/* İçerik alanı */
.content-area{
    max-width: 900px;
    margin: auto;
    line-height: 1.7;
    font-size: 16px;
    color: #444;
	margin-top:50px;
}

/* Başlıklar */
.content-area h1,
.content-area h2,
.content-area h3,
.content-area h4,
.content-area h5,
.content-area h6{
    font-weight: 600;
    line-height: 1.4;
    margin-top: 35px;
    margin-bottom: 15px;
    color:#111;
}

/* Başlık boyutları */
.content-area h1{font-size: 30px;}
.content-area h2{font-size: 26px;}
.content-area h3{font-size: 22px;}
.content-area h4{font-size: 19px;}
.content-area h5{font-size: 17px;}
.content-area h6{font-size: 16px;}

/* Paragraflar */
.content-area p{
    margin-bottom: 18px;
    text-align: left;
}

/* Linkler */
.content-area a{
    color:#f4b400;
    text-decoration:none;
    border-bottom:1px solid rgba(0,0,0,0.15);
}

.content-area a:hover{
    color:#000;
}

/* Listeler */
.content-area ul,
.content-area ol{
    padding-left:20px;
    margin-bottom:20px;
}

.content-area li{
    margin-bottom:8px;
}

/* Resimler */
.content-area img{
    max-width:100%;
    height:auto;
    border-radius:8px;
    margin:15px 0;
}

/* Blockquote */
.content-area blockquote{
    border-left:4px solid #f4b400;
    padding-left:15px;
    color:#666;
    font-style:italic;
    margin:20px 0;
}

/* Mobil düzen */
@media (max-width:768px){

.content-area{
    font-size:15px;
    padding:0 10px;
	margin-top:50px;
}

.content-area h1{font-size:24px;}
.content-area h2{font-size:22px;}
.content-area h3{font-size:20px;}
.content-area h4{font-size:18px;}
.content-area h5{font-size:16px;}
.content-area h6{font-size:15px;}

}
.page-banner {
    position: relative;
    padding: 100px 0;
    background: #0f1116;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #ffffff;
}
.banner-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -1px;
}
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.breadcrumb li {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.breadcrumb li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumb li a:hover {
    color: var(--primary);
}
.breadcrumb li i {
    font-size: 14px;
    margin-right: 8px;
}
.breadcrumb li::after {
    content: '❯';
    margin-left: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}
.breadcrumb li:last-child::after {
    display: none;
}
@media (max-width: 768px) {
    .page-banner {
        padding: 60px 0;
    }
    
    .banner-content h1 {
        font-size: 32px;
    }
    
    .breadcrumb li {
        font-size: 14px;
    }
}
/* --- CONTENT PAGE LAYOUT --- */
.page-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start; /* Sticky çalışması için şart */
}

/* 2/12'lik Alan: İçindekiler Navigasyonu */
.content-nav-sidebar {
	position: sticky;
    top: 140px; /* Header mesafene göre ayarlı */
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #007bff;
}

.content-nav-sidebar h5 {
	font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    text-transform: uppercase;
}

.jump-links {
	list-style: none;
    padding: 0;
    margin: 0;
}

.jump-links li {
    margin-bottom: 10px;
}

.jump-links li a {
	color: #555;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    display: block;
}

.jump-links li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* 10/12'lik Alan: Ana Metin Alanı */
.main-content-area {
    flex: 1; /* Kalan 10 birimlik alanı kapla */
}

.main-content-area h1 { font-size: 40px; margin-bottom: 25px; color: var(--dark); }
.main-content-area h2 { font-size: 30px; margin: 40px 0 20px; color: var(--dark); border-bottom: 2px solid #f1f5f9; padding-bottom: 10px; }
.main-content-area h3 { font-size: 24px; margin: 30px 0 15px; color: var(--dark); }

.main-content-area p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}
.alert-info {
    background-color: #e7f3ff;
    border: none;
    border-left: 5px solid #007bff;
    color: #0c5460;
    padding: 20px;
    border-radius: 8px;
}

/* Resimler için istediğin Fix yapısı (Kullanacağın yerler için) */
.fixed-article-img {
    width: 100%;
    height: 200px; /* Burayı ihtiyacına göre değiştir */
    object-fit: cover;
    overflow: hidden;
    border-radius: 8px;
}
/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .page-grid { flex-direction: column; }
    .content-nav-sidebar { 
        position: static; 
        width: 100%; 
        margin-bottom: 30px; 
    }
}
/* --- ACCORDION AREA --- */
.faq-container {
    max-width: 100%;
    margin: 50px 0;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

/* Sağdaki Hareketli Ok */
.faq-icon {
    width: 32px;
    height: 32px;
    background: #f0f4f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 14px;
}

.faq-body {
    display: none; 
    overflow: hidden;
    padding: 0 30px;
    background: #fff;
     transition: none;
}

.faq-content {
    padding: 10px 0 25px 0; /* Boşlukları buraya aldık */
    color: #64748b;
    line-height: 1.7;
}

/* Aktif Durum (Açık olan) */
.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.08);
}

.faq-item.active .faq-header {
    background: rgba(0, 123, 255, 0.02);
}

.faq-item.active .faq-icon {
transform: rotate(180deg);
    background: var(--primary);
    color: #fff;
}

.faq-item.active .faq-body {
    display: block;
}
.faq-section {
    background-color: #fcfdfe; /* Hafif bir arka plan ayrımı */
    padding: 80px 0;
}

.faq-container {
    width: 100%;
}

.faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
}

/* Aktif kutunun gölgesini biraz daha belirgin yapalım */
.faq-item.active {
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: var(--primary);
}

.faq-body {
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: none; /* JS ile açılacağı için başlangıçta kapalı kalsın */
    overflow: hidden;
    padding: 0 30px;
    background: #fff;
}
/* --- YORUM ALANI --- */
.testimonial-section {
    padding: 80px 0;
    background: #f8fafc;
}

.comment-wrapper {
    margin-bottom: 40px;
}

.comment-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border-left: 4px solid #e2e8f0; /* Çizgi burada başlıyor */
}

/* Cevaplar için özel stil */
.comment-reply {
    margin-left: 60px; /* Cevap olduğunu belli eden boşluk */
    margin-top: 15px;
    border-left-color: var(--primary); /* Cevap çizgisi farklı renk */
}

/* Avatar Alanı (2 birim) */
.comment-avatar {
    flex: 0 0 70px;
    display: flex;
    justify-content: center;
    align-self: center; /* Bloğun tam ortasına sabitleme */
}

.comment-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* İsim ve Yorum Alanı (10 birim) */
.comment-body {
    flex: 1;
}

.comment-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark);
}

.comment-text {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}
.comment-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
}

.form-header {
    margin-bottom: 30px;
    border-bottom: 2px solid #f8fafc;
    padding-bottom: 20px;
}

.form-header h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.seodizayn-form-content input, 
.seodizayn-form-content textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #fcfcfc;
}

.seodizayn-form-content input:focus, 
.seodizayn-form-content textarea:focus {
    border-color: var(--primary);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.btn-custom {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

.btn-custom:hover {
    background: #0056b3;
    transform: translateY(-2px);
}
/* --- WEB DESIGN CARDS --- */
.design-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Yan yana 3 kutu */
    gap: 30px;
    margin-top: 50px;
}

.design-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 20px; /* İşte o istediğin 6px dış boşluk burada */
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Daha hafif, asil bir gölge */
}

.design-img-wrapper {
    position: relative;
    width: 100%;
    height: 280px; 
    overflow: hidden;
    border-radius: 15px; /* Resmin köşelerini kartın iç kıvrımına uydurduk */
}

.design-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Kartın altındaki metin alanını biraz daha zarifleştirelim */
.design-info {
    padding: 20px 15px 15px 15px; /* Üstten 20px, yanlardan 15px */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.design-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

/* Hover efekti güncelleme */
.design-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    background: #ffffff; /* Beyaz boşluk hoverda da net kalsın */
}

.design-card:hover .design-img-wrapper img {
    transform: scale(1.1); /* Resme hafif zoom */
}

.design-card:hover .design-icon {
    transform: translateX(8px); /* Ok sağa kaysın */
}

/* Kartın Tamamını Link Yapma */
.design-card .stretched-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

/* MOBİL UYUM */
@media (max-width: 991px) {
    .design-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        gap: 20px;
    }
    
    .design-img-wrapper {
        height: 250px;
    }
}
/* Pricing Section - Genel Kapsayıcı */
.pricing-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

/* Kartların Eşit Boyut ve Yan Yana Dizilmesi İçin */
.row.g-4 {
    display: flex;
    flex-wrap: wrap; /* Taşarsa alta geçsin */
    align-items: stretch; /* Kartların hepsi aynı boyda olsun */
}

.pricing-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #eeeeee;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column; /* İçeriği dikey sırala */
    height: 100%; /* Kapsayıcısını tam doldur */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Başlık ve Metin Düzeni */
.pricing-card h6 {
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.pricing-card p {
    color: #666;
    font-size: 0.95rem;
    min-height: 50px; /* Metin farklı uzunluktaysa kartın kaymasını engelle */
}

/* Fiyat Alanı */
.price-wrapper {
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.price-wrapper h2 {
    font-size: 2.2rem;
    color: #333;
    margin: 10px 0 0 0;
}

/* Liste */
.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex-grow: 1; /* Butonu en alta iter */
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f9f9f9;
    font-size: 0.9rem;
}

/* Buton Düzeni */
.btn-custom {
    display: inline-block;
    padding: 12px 20px;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.mb-50{margin-bottom:50px;}
/* Hesaplama Aracı Ana Kart */
.widget-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

/* Formun olduğu ana kapsayıcı */
.pricecount .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}

/* Label ve Select alanlarını yan yana sabitle */
.pricecount .col-md-4 {
    flex: 0 0 35%; /* Label için alan */
    max-width: 35%;
    font-weight: 600;
    color: #444;
}

.pricecount .col-md-8 {
    flex: 0 0 65%; /* Select için alan */
    max-width: 65%;
}

/* Select kutuları şık dursun */
.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    background-color: #fff;
	margin-top:20px;
}

/* Butonun tam genişlik ve premium durması */
#countbutton {
    width: 100%;
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 18px;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
	margin-top:30px;
}

/* Sonuç Kartlarının Flex Düzeni */
.iconbox-set-1-warp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
}

.iconbox-set-1-warp > div {
    flex: 0 0 24%; /* 4'lü tam yan yana */
    max-width: 24%;
}
/* Sonuç Kartları (Iconbox) */
.iconbox-set-1 {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #f4f4f4;
    transition: 0.3s;
    height: 100%;
}

.iconbox-set-1:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* İkon Çevresi */
/* İkon Kapsayıcı Daire */
.icon-1.bg-sub-color {
    width: 80px;
    height: 80px;
    background-color: #f8f9fa; /* Hafif bir arka plan rengi */
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex; /* İçindeki resmi ortalamak için en garanti yol */
    align-items: center;
    justify-content: center;
    border: 2px solid #eee; /* Premium durması için ince bir çerçeve */
    transition: all 0.3s ease;
}

/* Kapsayıcının içindeki Resim (IMG) */
.seo-tool-icon {
    width: 60px; /* İkonun büyüklüğünü buradan ayarla */
    height: 60px;
    object-fit: contain; /* Resmin bozulmasını engeller */
}

.cokbuyuk {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 10px 0;
}

.text-up {
    font-weight: 700;
    margin-bottom: 15px;
}
.feature-section{
padding:80px 20px;
background:#fff;
}

.feature-container{
display:grid;
grid-template-columns:1fr 1.2fr 1fr;
gap:40px;
align-items:center;
max-width:1200px;
margin:auto;
}

.feature-col{
display:flex;
flex-direction:column;
gap:30px;
}

.feature-box{
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.feature-box:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.feature-box h3{
font-size:20px;
margin-bottom:10px;
color:#111;
}

.feature-box p{
font-size:15px;
color:#666;
line-height:1.6;
}

.feature-image img{
width:100%;
border-radius:12px;
}

/* ALT BANNER */

.feature-banner{
margin-top:80px;
max-width:1200px;
margin-left:auto;
margin-right:auto;
overflow:hidden;
border-radius:14px;
transform:scaleX(0.85);
opacity:0.7;
transition:all 0.6s ease;
}

.feature-banner img{
width:100%;
display:block;
}

/* hover açılma */

.feature-banner:hover{
transform:scaleX(1);
opacity:1;
}

/* scroll efekti */

.feature-banner.show{
transform:scaleX(0.95);
opacity:1;
}


/* MOBİL */

@media(max-width:900px){

.feature-container{
grid-template-columns:1fr;
gap:30px;
}

.feature-image{
order:-1;
}

.feature-section{
padding:50px 15px;
}

}
/* =============================================
   WEB TASARIM İNCELİKLERİ - SECTION CSS
   Bağımlılık: Sizin --primary, --dark, --white,
   --gap değişkenleriniz ve .container, .row.g-4
   sınıflarınız tanımlı olmalıdır.
   ============================================= */

.wt-section {
    padding: 80px 0;
}

/* --- BAŞLIK ALANI --- */
.wt-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.wt-intro h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.wt-intro h2 span {
    color: var(--primary);
}

.wt-intro p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.75;
}

/* --- KART --- */
.wt-card {
    position: relative;
    background: var(--white);
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 32px 28px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

/* Hover'da üstten uzayan mavi çizgi */
.wt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    border-radius: 16px 16px 0 0;
}

.wt-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 123, 255, 0.1);
    border-color: rgba(0, 123, 255, 0.2);
}

.wt-card:hover::before {
    transform: scaleX(1);
}

/* --- NUMARA --- */
.wt-num {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    opacity: 0.6;
    margin-bottom: 16px;
}

/* --- İKON KUTUSU --- */
.wt-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 123, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.wt-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* --- KART METİNLERİ --- */
.wt-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.wt-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* --- FEATURED KART (Öne Çıkan) --- */
.wt-card.featured {
    background: var(--primary);
    border-color: var(--primary);
}

.wt-card.featured::before {
    background: rgba(255, 255, 255, 0.4);
}

.wt-card.featured .wt-num {
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.wt-card.featured .wt-icon {
    background: rgba(255, 255, 255, 0.15);
}

.wt-card.featured .wt-icon svg {
    stroke: #ffffff;
}

.wt-card.featured h4 {
    color: #ffffff;
}

.wt-card.featured p {
    color: rgba(255, 255, 255, 0.82);
}

/* --- MOBİL UYUM --- */
@media (max-width: 768px) {
    .wt-section {
        padding: 50px 0;
    }

    .wt-intro h2 {
        font-size: 28px;
    }

    .wt-intro {
        margin-bottom: 40px;
    }
}
/* =============================================
   HİZMET BLOKLARI - PREMIUM LIGHT
   Bağımlılık: --primary, --dark, --white
   değişkenleriniz ve .container sınıfınız
   tanımlı olmalıdır.
   ============================================= */

.hp-section {
    padding: 80px 0;
}
/* --- ANA BLOK --- */
.hp-block {
    display: flex;
    align-items: stretch;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 32px;
    border: 1px solid #e2e8f0;
    background: var(--white);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.hp-block:hover {
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.10);
    transform: translateY(-4px);
}

/* --- GÖRSEL KUTU --- */
.hp-visual {
    flex: 0 0 38%;
    max-width: 38%;
    position: relative;
    min-height: 320px;
    background: linear-gradient(135deg, #e8f4ff 0%, #dbeeff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dekoratif arka plan daireler */
.hp-visual::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.07);
    top: -60px;
    left: -60px;
}

.hp-visual::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.07);
    bottom: -40px;
    right: -40px;
}

.hp-visual img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* Placeholder (Resim eklenince kaldırın) */
.hp-visual-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #90b8e0;
    position: relative;
    z-index: 2;
}

.hp-visual-placeholder svg {
    width: 64px;
    height: 64px;
    stroke: #90b8e0;
    fill: none;
    stroke-width: 1.2;
}

.hp-visual-placeholder span {
    font-size: 13px;
    font-weight: 500;
}

/* Badge */
.hp-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    z-index: 3;
}

/* --- İÇERİK KUTU --- */
.hp-content {
    flex: 0 0 62%;
    max-width: 62%;
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Hover'da soldan inen dikey mavi çizgi */
.hp-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--primary);
    transition: height 0.4s ease;
    border-radius: 0 0 3px 3px;
}

.hp-block:hover .hp-content::before {
    height: 100%;
}


/* --- BAŞLIK --- */
.hp-content h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.4px;
    line-height: 1.25;
}

.hp-content h3 span {
    color: var(--primary);
}

/* --- METİN --- */
.hp-content > p {
    font-size: 15px;
    color: #5a6a7a;
    line-height: 1.8;
    margin-bottom: 28px;
}
/* --- REVERSE (Resim Sağda) --- */
.hp-block.reverse {
    flex-direction: row-reverse;
}

.hp-block.reverse .hp-content::before {
    left: auto;
    right: 0;
    border-radius: 3px 3px 0 0;
}

/* --- MOBİL UYUM --- */
@media (max-width: 768px) {
    .hp-section {
        padding: 50px 0;
    }

    .hp-block,
    .hp-block.reverse {
        flex-direction: column;
    }

    .hp-visual,
    .hp-content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hp-visual {
        min-height: 220px;
    }

    .hp-content {
        padding: 28px 24px;
    }

}
