/* ======================================================
   HİZMET DETAY (LANDING PAGE) STİL DOSYASI
   ====================================================== */

/* --- 1. HERO BÖLÜMÜ --- */
.lp-hero {
    padding: 160px 0 100px;
    background: radial-gradient(circle at top center, rgba(59, 130, 246, 0.1) 0%, transparent 70%), #ffffff;
    position: relative;
    overflow: hidden;
}

.lp-pre-headline {
    display: inline-block;
    color: var(--primary-dark, #2563eb);
    background: rgba(59, 130, 246, 0.15);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
}

.lp-main-headline {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-dark, #1e293b);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-color, #3b82f6), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(59, 130, 246, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.lp-sub-headline {
    font-size: 1.25rem;
    color: var(--text-light, #64748b);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.lp-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 4rem;
}

.btn-lp-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary-color, #3b82f6), var(--primary-dark, #2563eb));
    color: #fff !important;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.5);
}

.btn-lp-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(59, 130, 246, 0.6);
}

.pulse-effect {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

.lp-guarantee-text {
    font-size: 0.95rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}
.lp-guarantee-text i {
    color: #10b981;
    width: 20px;
}

.lp-social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    max-width: 400px;
    margin: 0 auto;
}

.stars {
    display: flex;
    gap: 0.3rem;
}
.stars i { fill: #fbbf24; color: #fbbf24; width: 22px; }
.lp-social-proof p { font-size: 1rem; color: var(--text-light); margin: 0; }

/* --- 2. GENEL BÖLÜM & BAŞLIKLAR --- */
.lp-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    color: var(--text-dark, #1e293b);
    letter-spacing: -0.5px;
}

/* --- 3. ACI VE HAZ TABLOSU (Pain/Pleasure) --- */
.lp-pain-pleasure {
    padding: 6rem 0;
    background: #ffffff;
}

.lp-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.lp-pain-box, .lp-pleasure-box {
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease;
}

.lp-pain-box:hover, .lp-pleasure-box:hover {
    transform: translateY(-5px);
}

.lp-pain-box { background: #fffcfc; border-top: 5px solid #ef4444; }
.lp-pleasure-box { background: #f0fdf4; border-top: 5px solid #10b981; }

.icon-header {
    width: 70px; height: 70px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 2rem;
}
.icon-header.red { background: #fee2e2; color: #ef4444; }
.icon-header.green { background: #d1fae5; color: #10b981; }
.icon-header i { width: 35px; height: 35px; }

.lp-pain-box ul, .lp-pleasure-box ul {
    list-style: none; padding: 0; margin: 0;
}
.lp-pain-box li, .lp-pleasure-box li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 500;
}
.lp-pain-box li::before {
    content: '✕';
    position: absolute; left: 0; top: 0;
    color: #ef4444; font-weight: 900; font-size: 1.3rem;
}
.lp-pleasure-box li::before {
    content: '✓';
    position: absolute; left: 0; top: 0;
    color: #10b981; font-weight: 900; font-size: 1.3rem;
}

/* --- 4. KARŞILAŞTIRMA TABLOSU (Comparison) --- */
.lp-comparison {
    padding: 6rem 0;
    background: var(--bg-light, #f8fafc);
}

.table-responsive {
    overflow-x: auto;
    padding: 1rem 0;
}

.lp-vs-table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.lp-vs-table th, .lp-vs-table td {
    padding: 1.8rem;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
    font-size: 1.1rem;
}
.lp-vs-table th { font-weight: 800; font-size: 1.3rem; background: #f8fafc; color: var(--text-dark); }
.lp-vs-table tr:last-child td { border-bottom: none; }

.ozvotek-col {
    background: rgba(59, 130, 246, 0.03);
    font-weight: 700;
    color: var(--text-dark);
    width: 35%;
}
.lp-vs-table th.ozvotek-col {
    background: var(--primary-color);
    color: #fff;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}
.other-col { color: var(--text-light); width: 35%; font-weight: 500; }

.text-green { color: #10b981; stroke-width: 3px; margin-right: 10px; vertical-align: text-bottom; }
.text-red { color: #ef4444; stroke-width: 3px; margin-right: 10px; vertical-align: text-bottom; }

/* --- 5. İŞLEYİŞ SÜRECİ (Methodology) --- */
.lp-methodology {
    padding: 6rem 0;
    background: #ffffff;
}

.lp-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.lp-step-card {
    background: var(--bg-light);
    padding: 3rem 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.lp-step-card:hover { 
    transform: translateY(-10px); 
    background: #fff;
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.08);
}

.step-num {
    width: 60px; height: 60px;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.lp-step-card h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--text-dark); font-weight: 800; }
.lp-step-card p { color: var(--text-light); font-size: 1.05rem; line-height: 1.6; }

/* --- 6. TEKLİF VE SATIŞ KUTUSU (Offer) --- */
.lp-offer {
    padding: 6rem 0;
    background: var(--bg-light);
}

.lp-offer-box {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Sol tarafa daha fazla alan verildi */
    gap: 4rem;
    background: linear-gradient(145deg, #0f172a, #1e293b);
    border-radius: 2rem;
    padding: 4.5rem;
    align-items: center;
    color: #fff;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.lp-offer-box::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.offer-content { position: relative; z-index: 2; }
.offer-content h2 { color: #fff; font-size: 2.3rem; margin-bottom: 1rem; line-height: 1.25; font-weight: 800; }
.offer-content p { color: #94a3b8; font-size: 1.1rem; margin-bottom: 2.5rem; line-height: 1.6; }

.offer-includes { list-style: none; padding: 0; margin: 0 0 2.5rem 0; }
.offer-includes li {
    display: flex; 
    align-items: flex-start; /* Metin uzadığında ikonu üstte tutar */
    gap: 12px;
    margin-bottom: 1.2rem; 
    font-size: 1.05rem; 
    color: #e2e8f0;
    line-height: 1.5;
}
.offer-includes i { color: #38bdf8; width: 22px; flex-shrink: 0; margin-top: 3px; }

/* Bonus Kutularının Premium Görünümü */
.offer-includes li.bonus {
    background: linear-gradient(to right, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.02));
    border: none;
    border-left: 3px solid #fbbf24;
    padding: 1rem 1.2rem;
    border-radius: 0.5rem;
    color: #fde68a;
    font-weight: 500;
    align-items: center;
}
.offer-includes li.bonus strong { color: #fbbf24; margin-right: 5px; font-weight: 800; }
.offer-includes li.bonus i { color: #fbbf24; margin-top: 0; }

/* Buton ve Aksiyon Alanı Düzeltmesi */
.offer-action { 
    background: rgba(255,255,255,0.03); 
    padding: 2rem; 
    border-radius: 1.2rem; 
    border: 1px solid rgba(255,255,255,0.08); 
    text-align: center;
}

.offer-action .btn-lp-primary {
    width: 100%;
    justify-content: center;
    padding: 1.1rem;
    font-size: 1.1rem;
    white-space: nowrap; /* Metnin alt alta inip hap görünümünü bozmasını engeller */
    margin-bottom: 1.2rem;
}

.offer-action .text-sm { 
    font-size: 0.9rem; 
    color: #94a3b8; 
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.offer-action .text-sm i { width: 16px; height: 16px; color: #10b981; margin: 0; flex-shrink: 0; }

.offer-image { position: relative; z-index: 2; width: 100%; }
.offer-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    transform: perspective(1000px) rotateY(-12deg) rotateX(5deg);
    transition: transform 0.5s ease;
    box-shadow: -15px 25px 40px rgba(0,0,0,0.4);
}
.offer-image:hover img { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }


/* --- 7. KİMLER İÇİN? BÖLÜMÜ --- */
.lp-who-is-this {
    padding: 6rem 0;
    background: #fff;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.who-item {
    background: var(--bg-light);
    padding: 1.8rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
    border: 1px solid #e2e8f0;
    text-align: left;
    transition: all 0.3s;
}
.who-item:hover {
    border-color: var(--primary-color);
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.1);
}
.who-item i { color: var(--primary-color); flex-shrink: 0; width: 26px; height: 26px; }

/* --- 8. MOBİL VE TABLET UYUMLULUK --- */
@media (max-width: 1024px) {
    .lp-split-grid { gap: 2rem; }
    .lp-offer-box { grid-template-columns: 1fr; padding: 4rem; gap: 3rem; }
    .offer-image img { transform: none; box-shadow: 0 15px 30px rgba(0,0,0,0.3); }
}

@media (max-width: 768px) {
    .lp-hero { padding: 130px 0 60px; }
    .lp-main-headline { font-size: 2.2rem; }
    .lp-sub-headline { font-size: 1.1rem; }
    
    .lp-section-title { font-size: 2rem; margin-bottom: 2.5rem; }
    
    .lp-split-grid, .lp-steps-grid, .who-grid { grid-template-columns: 1fr; }
    
    .lp-pain-box, .lp-pleasure-box { padding: 2rem; }
    
    .lp-vs-table th, .lp-vs-table td { padding: 1rem 0.8rem; font-size: 0.95rem; }
    .ozvotek-col, .other-col { width: 30%; text-align: center; }
    .lp-vs-table th.ozvotek-col { font-size: 0.9rem; }
    
    .lp-offer-box { padding: 2.5rem 1.5rem; border-radius: 1.5rem; }
    .offer-content h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .btn-lp-primary { padding: 1rem 2rem; font-size: 1.1rem; width: 100%; justify-content: center; }
    .lp-social-proof { text-align: center; }
    .who-item { flex-direction: column; text-align: center; gap: 0.8rem; }
}