/* =========================================================
   HEADER VE SAYFA TABANI
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(9, 21, 36, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body {
    padding-top: 90px;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.breadcrumb,
.service-breadcrumb {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: min(calc(100% - 48px), 1200px);
    margin: 0 auto;
    padding-top: 25px;
    padding-bottom: 10px;
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.5;
}

.breadcrumb a,
.service-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color .2s ease;
}

.breadcrumb a:hover,
.service-breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span,
.service-breadcrumb span {
    color: rgba(255, 255, 255, .25);
}

.breadcrumb span[aria-current="page"],
.service-breadcrumb span[aria-current="page"] {
    color: #fff;
    font-weight: 500;
}


/* =========================================================
   HERO
========================================================= */

.service-hero {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    background: var(--bg);
}

.service-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 90px;
}

.service-hero-content {
    max-width: 650px;
}

.service-hero-content h1 {
    margin-top: 18px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 5.5vw, 72px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.service-hero-content h1 span {
    display: block;
    color: var(--accent);
}

.service-hero-content > p {
    max-width: 610px;
    margin-top: 25px;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
}

.hero-actions .text-link {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s ease;
}

.hero-actions .text-link:hover {
    transform: translateY(2px);
}


/* =========================================================
   HERO VISUAL & WINDOW
========================================================= */

.service-hero-visual {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-window {
    width: min(100%, 500px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: #0d1b2c;
    box-shadow: 0 35px 100px rgba(0, 0, 0, .35);
    transform: perspective(1200px) rotateY(-7deg) rotateX(3deg);
}

.window-top {
    height: 44px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 15px;
    background: #091523;
    border-bottom: 1px solid var(--border);
}

.window-top span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #536172;
}

.visual-content {
    min-height: 380px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: linear-gradient(135deg, rgba(98, 230, 193, .04), transparent 55%), #0d1b2c;
}

.visual-line {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .08);
    width: 80%;
}

.visual-line.large {
    height: 12px;
    width: 60%;
    background: var(--accent);
}

.visual-line.short {
    width: 40%;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 30px;
}

.visual-grid div {
    height: 80px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, .025);
}

.visual-badge {
    position: absolute;
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    background: rgba(12, 28, 44, .92);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.visual-badge span {
    color: var(--accent);
    font-size: 10px;
    font-weight: 800;
}

.badge-one {
    top: 20px;
    right: -10px;
}

.badge-two {
    bottom: 30px;
    left: -15px;
}

.badge-three {
    bottom: 110px;
    right: -25px;
}


/* =========================================================
   INTRO & VALUE
========================================================= */

.service-intro {
    padding: 100px 0;
    background: #091524;
}

.service-intro-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
    align-items: center;
}

.service-intro h2 {
    max-width: 500px;
    margin-top: 18px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(37px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -.05em;
}

.service-intro h2 span {
    color: var(--accent);
}

.service-intro p {
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.9;
}

.service-intro ul {
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.service-intro li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-soft);
    font-size: 14px;
}

.service-intro li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--accent);
    font-weight: 800;
}


/* =========================================================
   FEATURES
========================================================= */

.service-features {
    padding: 110px 0;
    background: var(--bg);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 60px;
}

.feature-card {
    position: relative;
    min-height: 260px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, .015);
    transition: transform .3s ease, border-color .3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(98, 230, 193, .22);
}

.feature-card span {
    color: var(--accent);
    font-size: 10px;
    font-weight: 800;
}

.feature-card h3 {
    margin-top: 40px;
    font-family: "Manrope", sans-serif;
    font-size: 19px;
}

.feature-card p {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.8;
}


/* =========================================================
   PROCESS
========================================================= */

.service-process {
    padding: 110px 0;
    background: #091524;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
    border: 1px solid var(--border);
    background: var(--border);
    gap: 1px;
}

.process-item {
    min-height: 230px;
    padding: 30px;
    background: #091524;
}

.process-number {
    color: var(--accent);
    font-size: 10px;
    font-weight: 800;
}

.process-item h3 {
    margin-top: 48px;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
}

.process-item p {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.75;
}


/* =========================================================
   DISCOVERABILITY (SEO / AEO / GEO)
========================================================= */

.service-discoverability {
    padding: 100px 0;
    background: var(--bg);
}

.discoverability-box {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
    padding: 65px;
    border: 1px solid rgba(98, 230, 193, .14);
    border-radius: 25px;
    background: radial-gradient(circle at 100% 0, rgba(98, 230, 193, .08), transparent 35%), #0b1829;
}

.discoverability-box h2 {
    max-width: 600px;
    margin-top: 17px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 4vw, 51px);
    line-height: 1.08;
    letter-spacing: -.05em;
}

.discoverability-box h2 span {
    color: var(--accent);
}

.discoverability-points {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
}

.discoverability-points div {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.discoverability-points strong {
    color: var(--accent);
    font-size: 14px;
    font-family: "Manrope", sans-serif;
}

.discoverability-points p {
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   WHO IS IT FOR
========================================================= */

.service-who {
    padding: 100px 0;
    background: #091524;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 60px;
    background: var(--border);
    border: 1px solid var(--border);
}

.who-card {
    min-height: 240px;
    padding: 30px;
    background: #091524;
}

.who-card > span {
    color: var(--accent);
    font-size: 10px;
    font-weight: 800;
}

.who-card h3 {
    margin-top: 50px;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
}

.who-card p {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.8;
}


/* =========================================================
   RELATED BLOG / REHBERLER
========================================================= */

.service-content-links {
    padding: 100px 0;
    background: var(--bg);
}

.content-link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.content-link-grid a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 190px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.015);
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease;
}

.content-link-grid a:hover {
    transform: translateY(-4px);
    border-color: rgba(98, 230, 193, 0.25);
}

.content-link-grid span {
    color: var(--accent);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
}

.content-link-grid strong {
    display: block;
    margin-top: 12px;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    line-height: 1.4;
}

.content-link-grid small {
    display: inline-block;
    margin-top: 20px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
}


/* =========================================================
   FAQ
========================================================= */

.service-faq {
    padding: 100px 0;
    background: #091524;
}

.faq-heading h2 {
    max-width: 500px;
    margin-top: 18px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -.05em;
}

.faq-heading h2 span {
    color: var(--accent);
}

.service-faq .faq-list {
    margin-top: 50px;
    border-top: 1px solid var(--border);
}

.service-faq details {
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
}

.service-faq summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    color: #fff;
    list-style: none;
}

.service-faq summary::-webkit-details-marker {
    display: none;
}

.service-faq summary span {
    color: var(--accent);
    font-size: 18px;
}

.service-faq p {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   FINAL CTA
========================================================= */

.service-final-cta {
    padding: 0 0 120px;
    background: var(--bg);
}

.final-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 65px;
    border-radius: 25px;
    background: var(--accent);
    color: #07111f;
}

.final-cta-box h2 {
    max-width: 700px;
    margin-top: 15px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -.05em;
}

.final-cta-box p {
    margin-top: 17px;
    color: #28584e;
    font-size: 14px;
}

.final-cta-box span {
    color: #164b40;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {
    .service-hero-grid,
    .service-intro-grid,
    .discoverability-box {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .feature-grid,
    .process-list,
    .who-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    body {
        padding-top: 75px;
    }

    .breadcrumb,
    .service-breadcrumb {
        width: calc(100% - 32px);
        padding-top: 15px;
        padding-bottom: 5px;
        font-size: 9px;
    }

    .service-hero-grid {
        padding-top: 15px;
        padding-bottom: 60px;
    }

    .service-hero-content h1 {
        font-size: 43px;
    }

    .service-hero-content > p {
        font-size: 14px;
    }

    .visual-window {
        transform: none;
    }

    .visual-badge {
        display: none;
    }

    .feature-grid,
    .process-list,
    .who-grid,
    .content-link-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .process-item,
    .who-card {
        min-height: auto;
    }

    .final-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 25px;
    }

    .final-cta-box .btn {
        width: 100%;
        text-align: center;
    }
}