/* ==========================================================================
   Web Tasarım Landing — "SEO Uyumlu Web Tasarım" kategorisi yazıları
   Tema değişkenleriyle (custom.css :root) uyumlu, özgün landing stili.
   Prefix: .wtl-
   ========================================================================== */

.wtl-page {
    --wtl-primary: var(--primary-color, #6366f1);
    --wtl-primary-dark: var(--primary-dark, #4f46e5);
    --wtl-primary-light: var(--primary-light, #818cf8);
    --wtl-secondary: var(--secondary-color, #10b981);
    /* Site geneli marka gradyanı */
    --wtl-grad: linear-gradient(135deg, var(--primary-color), #10b981);
    --wtl-ink: var(--text-color, #1f2937);
    --wtl-muted: var(--text-light, #6b7280);
    --wtl-line: var(--border-color, #e5e7eb);
    --wtl-bg-soft: var(--bg-light, #f9fafb);
    --wtl-radius: 20px;
    overflow-x: hidden;
}

.wtl-page .container {
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ---- Ortak başlık öğeleri ---- */
.wtl-grad {
    background: var(--wtl-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Site .section-title/.section-description'ı sola hizalamak için (2 sütun düzen, SEO metni) */
.wtl-title-left { text-align: left; }
.wtl-text-left {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}

/* ---- Butonlar ---- */
.wtl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.95rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
}

.wtl-btn-primary {
    background: var(--wtl-grad);
    color: #fff;
    box-shadow: 0 12px 28px -8px rgba(99, 102, 241, 0.55);
}
.wtl-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -10px rgba(99, 102, 241, 0.65);
    color: #fff;
}

.wtl-btn-ghost {
    background: #fff;
    color: var(--wtl-ink);
    border-color: var(--wtl-line);
}
.wtl-btn-ghost:hover {
    border-color: var(--wtl-primary);
    color: var(--wtl-primary-dark);
    transform: translateY(-2px);
}

.wtl-btn-light {
    background: #fff;
    color: var(--wtl-primary-dark);
}
.wtl-btn-light:hover { transform: translateY(-2px); color: var(--wtl-primary-dark); box-shadow: 0 14px 30px -10px rgba(0,0,0,0.35); }

.wtl-btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}
.wtl-btn-outline-light:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: #fff; transform: translateY(-2px); }

/* ==========================================================================
   HERO
   ========================================================================== */
.wtl-hero {
    position: relative;
    padding: 3rem 0 4.5rem;
    overflow: hidden;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}
.wtl-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(540px circle at 85% 12%, rgba(99, 102, 241, 0.16), transparent 60%),
        radial-gradient(460px circle at 8% 88%, rgba(16, 185, 129, 0.12), transparent 60%);
}
.wtl-hero .container { position: relative; z-index: 1; }

.wtl-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.wtl-hero .breadcrumbs { margin-bottom: 1.25rem; }

.wtl-hero-title {
    font-size: clamp(2.2rem, 5.2vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--wtl-ink);
    margin: 0 0 1.25rem;
}

.wtl-hero-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--wtl-muted);
    max-width: 540px;
    margin: 0 0 2rem;
}

.wtl-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.wtl-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}
.wtl-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--wtl-ink);
}
.wtl-badge svg { color: var(--secondary-color, #10b981); }

/* Hero görseli / mockup */
.wtl-hero-visual { position: relative; }
.wtl-hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--wtl-radius);
    box-shadow: var(--shadow-xl, 0 20px 25px -5px rgba(0,0,0,0.1));
}

.wtl-hero-mockup { position: relative; padding: 1rem 1rem 2.5rem; }
.wtl-mockup-window {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 30px 60px -20px rgba(31, 41, 55, 0.35);
    overflow: hidden;
    border: 1px solid var(--wtl-line);
}
.wtl-mockup-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    background: #f3f4f6;
    border-bottom: 1px solid var(--wtl-line);
}
.wtl-mockup-bar > span {
    width: 11px; height: 11px; border-radius: 50%; background: #d1d5db;
}
.wtl-mockup-bar > span:nth-child(1) { background: #f87171; }
.wtl-mockup-bar > span:nth-child(2) { background: #fbbf24; }
.wtl-mockup-bar > span:nth-child(3) { background: #34d399; }
.wtl-mockup-url {
    margin-left: 10px;
    flex: 1;
    background: #fff;
    border: 1px solid var(--wtl-line);
    border-radius: 50px;
    font-size: 0.72rem;
    color: var(--wtl-muted);
    padding: 5px 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wtl-mockup-body { padding: 18px; }
.wtl-mockup-hero {
    height: 92px;
    border-radius: 12px;
    background: var(--wtl-grad);
    margin-bottom: 16px;
}
.wtl-mockup-lines { display: flex; flex-direction: column; gap: 9px; margin-bottom: 18px; }
.wtl-mockup-lines span { height: 9px; border-radius: 50px; background: #e5e7eb; }
.wtl-mockup-lines span:nth-child(1) { width: 80%; }
.wtl-mockup-lines span:nth-child(2) { width: 95%; }
.wtl-mockup-lines span:nth-child(3) { width: 60%; }
.wtl-mockup-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.wtl-mockup-cards div { height: 56px; border-radius: 10px; background: #f3f4f6; border: 1px solid var(--wtl-line); }

.wtl-mockup-phone {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 90px;
    height: 180px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--wtl-line);
    box-shadow: 0 22px 40px -16px rgba(31, 41, 55, 0.4);
    padding: 8px;
}
.wtl-mockup-phone-screen {
    width: 100%; height: 100%;
    border-radius: 12px;
    background: linear-gradient(160deg, var(--wtl-primary) 0%, var(--wtl-secondary) 100%);
}

/* ==========================================================================
   HİZMETLER
   ========================================================================== */
.wtl-services { padding: 4.5rem 0; }
.wtl-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.wtl-service-card {
    background: #fff;
    border: 1px solid var(--wtl-line);
    border-radius: var(--wtl-radius);
    padding: 2rem 1.75rem;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.wtl-service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--wtl-grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.wtl-service-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 24px 50px -24px rgba(99, 102, 241, 0.45);
}
.wtl-service-card:hover::before { transform: scaleX(1); }
.wtl-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    border-radius: 16px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--wtl-primary-dark);
    margin-bottom: 1.25rem;
}
.wtl-service-title { font-size: 1.25rem; font-weight: 700; color: var(--wtl-ink); margin: 0 0 0.65rem; }
.wtl-service-desc { font-size: 0.98rem; color: var(--wtl-muted); line-height: 1.65; margin: 0; }

/* ==========================================================================
   NEDEN BEN
   ========================================================================== */
.wtl-why { padding: 4.5rem 0; background: var(--wtl-bg-soft); }
.wtl-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}
.wtl-why-list {
    list-style: none;
    margin: 1.75rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
}
.wtl-why-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--wtl-ink);
    line-height: 1.45;
}
.wtl-why-list svg { flex-shrink: 0; color: var(--wtl-primary); margin-top: 1px; }

.wtl-why-visual { position: relative; min-height: 320px; }
.wtl-why-img { width: 100%; border-radius: var(--wtl-radius); box-shadow: var(--shadow-xl); }
.wtl-why-card-stack {
    position: relative;
    height: 100%;
    min-height: 320px;
    border-radius: var(--wtl-radius);
    background: var(--wtl-grad);
    overflow: hidden;
}
.wtl-why-orb {
    position: absolute;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 70%);
    top: -40px; right: -40px;
}
.wtl-why-float {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: 0 18px 40px -18px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
}
.wtl-why-float strong { font-size: 1.6rem; font-weight: 800; color: var(--wtl-primary-dark); line-height: 1; }
.wtl-why-float span { font-size: 0.82rem; color: var(--wtl-muted); margin-top: 0.35rem; }
.wtl-why-float-1 { top: 18%; left: 8%; }
.wtl-why-float-2 { bottom: 16%; right: 8%; }

/* ==========================================================================
   SÜREÇ
   ========================================================================== */
.wtl-process { padding: 4.5rem 0; }
.wtl-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.wtl-step {
    position: relative;
    background: #fff;
    border: 1px solid var(--wtl-line);
    border-radius: var(--wtl-radius);
    padding: 1.75rem 1.5rem;
    transition: all 0.25s ease;
}
.wtl-step:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -26px rgba(31,41,55,0.3); }
.wtl-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}
.wtl-step-num {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(99, 102, 241, 0.18);
}
.wtl-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--wtl-primary-dark);
}
.wtl-step-title { font-size: 1.12rem; font-weight: 700; color: var(--wtl-ink); margin: 0 0 0.5rem; }
.wtl-step-desc { font-size: 0.94rem; color: var(--wtl-muted); line-height: 1.6; margin: 0; }

/* ==========================================================================
   REFERANSLAR — site .references-logos-grid görünümü (landing kapsamında garanti)
   Bu sayfada body-class'a bağlı layout-fix kuralları gelmediği için stil burada
   .wtl-page kapsamıyla yeniden tanımlanır (responsive dahil).
   ========================================================================== */
.wtl-page .seo-references-section {
    padding: 5rem 0;
    background: var(--bg-color, #fff);
}
.wtl-page .references-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
    width: 100%;
}
.wtl-page .reference-logo-item {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--bg-color, #fff);
    border: 2px solid var(--wtl-line);
    border-radius: 12px;
    transition: var(--transition, all 0.3s ease);
}
.wtl-page .reference-logo-item:hover {
    border-color: var(--wtl-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.wtl-page .reference-logo-img {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition, all 0.3s ease);
}
.wtl-page .reference-logo-item:hover .reference-logo-img { transform: scale(1.05); }

@media (max-width: 992px) {
    .wtl-page .references-logos-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
@media (max-width: 600px) {
    .wtl-page .references-logos-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .wtl-page .reference-logo-item { height: 100px; padding: 1.25rem; }
}

/* ==========================================================================
   SEO METİN BLOĞU / İÇERİK ALANLARI
   ========================================================================== */
.wtl-seo-content { padding: 4rem 0; background: var(--wtl-bg-soft); }
.wtl-seo-inner { max-width: 100%; margin: 0 auto; }
.wtl-seo-inner .section-title { margin-bottom: 1.5rem; }
.wtl-seo-body { font-size: 1.05rem; line-height: 1.8; color: var(--wtl-ink); }
.wtl-seo-body h2, .wtl-seo-body h3 { color: var(--wtl-ink); font-weight: 700; margin: 2rem 0 1rem; }
.wtl-seo-body h2 { font-size: 1.5rem; }
.wtl-seo-body h3 { font-size: 1.25rem; }
.wtl-seo-body p { margin: 0 0 1.2rem; }
.wtl-seo-body ul, .wtl-seo-body ol { margin: 0 0 1.2rem; padding-left: 1.4rem; }
.wtl-seo-body li { margin-bottom: 0.5rem; }
.wtl-seo-body a { color: var(--wtl-primary-dark); text-decoration: underline; }
.wtl-seo-body img { max-width: 100%; height: auto; border-radius: 12px; }

/* ==========================================================================
   ALT CTA
   ========================================================================== */
.wtl-cta { padding: 1rem 0 5rem; }
.wtl-cta-box {
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 28px;
    padding: 4rem 2rem;
    background: var(--wtl-grad);
    box-shadow: 0 30px 60px -24px rgba(79, 70, 229, 0.6);
}
.wtl-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(420px circle at 15% 20%, rgba(255,255,255,0.22), transparent 60%),
        radial-gradient(380px circle at 85% 90%, rgba(255,255,255,0.12), transparent 60%);
    pointer-events: none;
}
.wtl-cta-title {
    position: relative;
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 760px;
    margin: 0 auto 1rem;
}
.wtl-cta-desc {
    position: relative;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}
.wtl-cta-actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
    .wtl-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .wtl-hero-visual { order: 1; max-width: 520px; }
    .wtl-services-grid { grid-template-columns: repeat(2, 1fr); }
    .wtl-process-grid { grid-template-columns: repeat(2, 1fr); }
    .wtl-why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .wtl-why-visual { min-height: 280px; }
}

@media (max-width: 640px) {
    .wtl-hero { padding: 2rem 0 3rem; }
    .wtl-hero-cta .wtl-btn { flex: 1 1 auto; }
    .wtl-services-grid { grid-template-columns: 1fr; }
    .wtl-process-grid { grid-template-columns: 1fr; }
    .wtl-why-list { grid-template-columns: 1fr; }
    .wtl-cta-box { padding: 2.75rem 1.25rem; }
    .wtl-mockup-phone { width: 70px; height: 140px; }
}
