/* ==========================================================================
   LOGO TEZ AKADEMİ - KAYDIRMA SORUNSUZ, HAREKETLİ CSS
   ========================================================================== */

:root {
    --lt-navy: #0f172a;          /* Akademik Lacivert */
    --lt-navy-light: #1e293b;
    --lt-gold: #d97706;          /* Prestij Altını */
    --lt-gold-hover: #b45309;
    --lt-bg: #ffffff;
    --lt-bg-light: #f8fafc;
    --lt-text: #334155;
    --lt-border: #e2e8f0;
}

/* =========================================
   YATAY KAYDIRMA (SCROLL) KESİN ÇÖZÜMÜ
   ========================================= */
html, body {
    overflow-x: hidden; 
    width: 100%;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
}

.lt-page-container {
    width: 100%;
    /* max-width ve box-sizing ayarları ile scroll'u koruyoruz */
    background-color: var(--lt-bg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    box-sizing: border-box;
    position: relative;
    /* overflow-x: hidden BURADAN KALDIRILDI: dikey kaydırmayı kilitliyordu */
}

.lt-page-container *, .lt-page-container *::before, .lt-page-container *::after {
    box-sizing: border-box;
}

img, svg, video { max-width: 100%; height: auto; }
p, h1, h2, h3, h4, h5, h6, a { word-wrap: break-word; overflow-wrap: break-word; }

/* =========================================
   GENEL UTILS
   ========================================= */
.text-center { text-align: center; }
.text-white { color: #ffffff !important; }
.text-white-op { color: rgba(255, 255, 255, 0.8) !important; }
.bg-light { background-color: var(--lt-bg-light); }
.bg-dark { background-color: var(--lt-navy); }
.relative-z { position: relative; z-index: 2; }

.lt-section-header { margin-bottom: 4rem; padding: 0 1rem; }

.lt-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--lt-navy);
    background-color: rgba(15, 23, 42, 0.05);
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lt-subtitle-gold {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--lt-gold);
    background-color: rgba(217, 119, 6, 0.1);
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lt-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--lt-navy);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.lt-section-desc {
    font-size: 1.1rem;
    color: var(--lt-text);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Butonlar */
.btn-lt-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--lt-gold);
    color: #ffffff !important;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(217, 119, 6, 0.2);
}

.btn-lt-primary:hover {
    background: var(--lt-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(217, 119, 6, 0.3);
}

.btn-large { font-size: 1.2rem; padding: 1.4rem 3.5rem; }

.btn-lt-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-lt-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    transform: translateY(-3px);
}

/* =========================================
   1. HERO SECTION (YENİ ANİMASYONLU YAPILI)
   ========================================= */
.lt-hero-section {
    position: relative;
    padding: 8rem 1rem 10rem 1rem; 
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: var(--lt-navy);
    overflow: hidden; /* Sadece bu bölüm taşmaları engeller */
}

/* Arkaplan ve Pointer Events (Scroll'u Kitlemez) */
.lt-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

.lt-grid-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255,255,255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.lt-glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: floatBlob 15s infinite alternate ease-in-out;
    pointer-events: none;
}

.lt-glow-blob.top-left { top: -10%; left: -5%; width: 500px; height: 500px; background: radial-gradient(circle, var(--lt-gold) 0%, transparent 70%); }
.lt-glow-blob.bottom-right { bottom: -10%; right: -5%; width: 400px; height: 400px; background: radial-gradient(circle, #3b82f6 0%, transparent 70%); animation-delay: -5s; }

@keyframes floatBlob {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

/* Hero Grid (Sol Yazı - Sağ Animasyon) */
.lt-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.lt-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.lt-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 20px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.lt-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.text-gold {
    color: var(--lt-gold);
    background: linear-gradient(to right, #fbbf24, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lt-hero-desc {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 800px;
}

.lt-hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.lt-hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.lt-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 500;
}

.ltf-icon { color: var(--lt-gold); display: flex; align-items: center; }
.ltf-icon svg { width: 18px; height: 18px; }

/* --- Hero Sağ Taraf (Uçuşan Akademik Belgeler Animasyonu) --- */
.lt-hero-visual {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.thesis-stack {
    position: relative;
    width: 260px;
    height: 340px;
    transform-style: preserve-3d;
    transform: rotateX(10deg) rotateZ(-10deg);
}

.paper {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: -10px 20px 30px rgba(0,0,0,0.3);
    border: 1px solid #e2e8f0;
    transition: all 0.5s ease;
}

/* Yığın Animasyonları */
.paper-bottom {
    top: 20px; left: 20px;
    background: #f8fafc;
    animation: floatPaper1 6s infinite ease-in-out;
}
.paper-middle {
    top: 10px; left: 10px;
    background: #f1f5f9;
    animation: floatPaper2 5s infinite ease-in-out;
}
.paper-top {
    top: 0; left: 0;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: floatPaper3 7s infinite ease-in-out;
}

/* Kağıt İçeriği (Çizgiler) */
.p-header { width: 40%; height: 15px; background: var(--lt-navy); border-radius: 4px; margin-bottom: 10px; }
.p-line { height: 8px; background: #cbd5e1; border-radius: 4px; }
.w-70 { width: 70%; }
.w-100 { width: 100%; }
.w-80 { width: 80%; }
.p-stamp {
    position: absolute;
    bottom: 30px; right: 20px;
    width: 50px; height: 50px;
    border: 3px solid #ef4444;
    border-radius: 50%;
    color: #ef4444;
    font-weight: 900;
    font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    transform: rotate(-15deg);
    opacity: 0.8;
}

/* Uçuşan Objeler */
.floating-obj {
    position: absolute;
    font-size: 3rem;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.3));
}
.pen { top: -20px; right: -40px; animation: floatObj 4s infinite alternate ease-in-out; }
.cap { bottom: -30px; left: -50px; animation: floatObj 5s infinite alternate-reverse ease-in-out; font-size: 4rem; }

@keyframes floatPaper1 { 0%, 100% { transform: translateZ(-40px) translateY(0) rotate(0deg); } 50% { transform: translateZ(-40px) translateY(-10px) rotate(-2deg); } }
@keyframes floatPaper2 { 0%, 100% { transform: translateZ(-20px) translateY(0) rotate(0deg); } 50% { transform: translateZ(-20px) translateY(-15px) rotate(1deg); } }
@keyframes floatPaper3 { 0%, 100% { transform: translateZ(0px) translateY(0) rotate(0deg); } 50% { transform: translateZ(0px) translateY(-20px) rotate(-1deg); } }
@keyframes floatObj { 0% { transform: translateY(0) rotate(0deg); } 100% { transform: translateY(-20px) rotate(10deg); } }

/* =========================================
   2. STATS SECTION (DİNAMİK SAYAÇ & CAM KARTLAR)
   ========================================= */
.lt-stats-section {
    position: relative;
    margin-top: -5rem; /* Hero'nun içine biraz girsin */
    z-index: 10;
    padding: 0 1rem;
}

.lt-stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.lt-stat-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lt-stat-box:hover {
    transform: translateY(-10px);
}

/* Özel Vurgulu Kart (Memnuniyet) */
.lt-stat-box.highlight {
    background: linear-gradient(135deg, var(--lt-navy), var(--lt-navy-light));
    border: 1px solid rgba(217, 119, 6, 0.3);
    color: #fff;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(217, 119, 6, 0.1);
    color: var(--lt-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight .stat-icon {
    background: rgba(255,255,255,0.1);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--lt-navy);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.highlight .stat-num { color: #fff; }

.stat-text {
    font-size: 0.85rem;
    color: var(--lt-text-light);
    font-weight: 700;
    text-transform: uppercase;
}

.highlight .stat-text { color: rgba(255,255,255,0.7); }


/* =========================================
   3. HİZMETLER SECTION
   ========================================= */
.lt-services-section {
    padding: 8rem 1rem 6rem 1rem;
    width: 100%;
}

.lt-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.lt-service-card {
    background: #fff;
    border: 1px solid var(--lt-border);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.lt-service-card:hover {
    transform: translateY(-8px);
    border-color: var(--lt-gold);
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.1);
}

.lts-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem auto;
    background: rgba(217, 119, 6, 0.1);
    color: var(--lt-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lt-service-card:hover .lts-icon {
    background: var(--lt-gold);
    color: #fff;
    transform: scale(1.1);
}

.lts-icon svg { width: 32px; height: 32px; }

.lt-service-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--lt-navy);
    margin-bottom: 1rem;
}

.lt-service-card p {
    font-size: 0.95rem;
    color: var(--lt-text);
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   4. NEDEN BİZ? (SPLIT LAYOUT)
   ========================================= */
.lt-why-us-section {
    padding: 7rem 1rem;
    width: 100%;
}

.lt-split-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.lt-split-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.lt-split-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lt-info-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    color: #fff;
}

.lt-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--lt-gold);
}

.mt-card { margin-left: 2rem; }

.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(217, 119, 6, 0.15);
    color: var(--lt-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.card-icon svg { width: 28px; height: 28px; }

.lt-info-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.8rem;
}

.lt-info-card p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.6;
}

/* =========================================
   5. SÜREÇ (ADIMLAR)
   ========================================= */
.lt-process-section {
    padding: 7rem 1rem;
    background: var(--lt-bg);
    width: 100%;
}

.lt-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Çizgi */
.lt-process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%; right: 10%;
    height: 2px;
    background-image: linear-gradient(to right, var(--lt-border) 50%, transparent 0%);
    background-size: 10px 1px;
    background-repeat: repeat-x;
    z-index: 0;
}

.lt-process-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--lt-border);
    transition: all 0.3s ease;
}

.lt-process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--lt-navy);
}

.process-num {
    position: absolute;
    top: -15px; right: -15px;
    width: 36px; height: 36px;
    background: var(--lt-navy);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.9rem;
}

.process-icon {
    width: 80px; height: 80px;
    background: var(--lt-bg-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--lt-navy);
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.lt-process-card:hover .process-icon {
    background: var(--lt-navy);
    color: #fff;
    transform: scale(1.1);
}

.lt-process-card h3 {
    font-size: 1.15rem; font-weight: 800; color: var(--lt-navy); margin-bottom: 0.8rem;
}

.lt-process-card p {
    font-size: 0.95rem; color: var(--lt-text); line-height: 1.6; margin: 0;
}

/* =========================================
   6. YORUMLAR
   ========================================= */
.lt-reviews-section {
    padding: 7rem 1rem;
    width: 100%;
}

.lt-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.lt-review-card {
    background: #fff;
    border: 1px solid var(--lt-border);
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

.lt-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.ltr-stars {
    color: #fbbf24; 
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.ltr-text {
    font-size: 1.05rem;
    color: var(--lt-text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1; 
}

.ltr-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--lt-border);
    padding-top: 1.5rem;
}

.ltr-avatar {
    width: 50px; height: 50px;
    background: var(--lt-navy);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 700;
    border-radius: 50%;
}

.ltr-info h4 { margin: 0 0 4px 0; font-size: 1.1rem; font-weight: 800; color: var(--lt-navy); }
.ltr-info span { font-size: 0.85rem; color: var(--lt-text-light); }

/* =========================================
   7. SSS (FAQ)
   ========================================= */
.lt-faq-section {
    padding: 7rem 1rem;
    background-color: var(--lt-bg);
    border-top: 1px solid var(--lt-border);
    width: 100%;
}

.lt-faq-accordion {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.lt-faq-card {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--lt-border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.lt-faq-card.active {
    border-color: var(--lt-navy);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08);
}

.lt-faq-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: #ffffff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.lt-faq-question {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--lt-navy);
    margin: 0;
    padding-right: 2rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.lt-faq-card.active .lt-faq-question { color: var(--lt-gold); }

.lt-faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--lt-navy);
}

.lt-faq-card.active .lt-faq-icon { color: var(--lt-gold); }

.lt-faq-icon svg {
    position: absolute;
    top: 50%; left: 50%;
    width: 24px; height: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.svg-minus { opacity: 0; transform: translate(-50%, -50%) scale(0.5) rotate(-90deg); }
.svg-plus { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0deg); }

.lt-faq-card.active .svg-plus { opacity: 0; transform: translate(-50%, -50%) scale(0.5) rotate(90deg); }
.lt-faq-card.active .svg-minus { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0deg); }

.lt-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #ffffff;
}

.lt-faq-body-inner { padding: 0 2rem 1.8rem 2rem; }

.lt-faq-body-inner p {
    font-size: 1rem;
    color: var(--lt-text);
    line-height: 1.7;
    margin: 0;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

/* =========================================
   8. CTA BÖLÜMÜ
   ========================================= */
.lt-cta-section {
    position: relative;
    padding: 8rem 1rem;
    background-color: var(--lt-navy);
    text-align: center;
    overflow: hidden;
    width: 100%;
}

.lt-cta-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.lt-cta-content {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* =========================================
   JS ANİMASYON SINIFLARI
   ========================================= */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* =========================================
   RESPONSIVE (MOBİL UYUM)
   ========================================= */
@media (max-width: 1024px) {
    .lt-hero-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .lt-hero-content { align-items: center; }
    .lt-hero-title { font-size: 3.2rem; }
    .lt-hero-actions, .lt-hero-features { justify-content: center; width: 100%; }
    
    .lt-stats-wrapper { grid-template-columns: repeat(2, 1fr); }
    .lt-split-grid { grid-template-columns: 1fr; gap: 3rem; }
    .mt-card { margin-left: 0; }
    .lt-services-grid { grid-template-columns: repeat(2, 1fr); }
    .lt-process-grid { grid-template-columns: repeat(2, 1fr); }
    .lt-process-grid::before { display: none; }
    .lt-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .lt-hero-section { padding: 4rem 1.5rem; min-height: 50vh; }
    .lt-hero-title { font-size: 2.2rem; }
    .lt-hero-desc { font-size: 1.05rem; padding: 0; }
    .lt-hero-actions { flex-direction: column; width: 100%; gap: 1rem; }
    .btn-lt-primary, .btn-lt-secondary { width: 100%; justify-content: center; }
    
    .lt-stats-wrapper { grid-template-columns: 1fr; }
    .lt-stats-section { margin-top: -3rem; }

    .lt-services-section, .lt-why-us-section, .lt-process-section, .lt-reviews-section, .lt-faq-section, .lt-cta-section { 
        padding: 4rem 1.5rem; 
    }
    
    .lt-section-title { font-size: 2rem; }
    
    .lt-services-grid, .lt-process-grid, .lt-reviews-grid { grid-template-columns: 1fr; }
    
    .lt-faq-header { padding: 1.2rem 1.5rem; }
    .lt-faq-body-inner { padding: 0 1.5rem 1.5rem 1.5rem; }
    
    .btn-large { padding: 1.2rem 2rem; width: 100%; box-sizing: border-box; }
}