/* =========================================================
   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,
.corporate-breadcrumb,
.seo-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,
.corporate-breadcrumb a,
.seo-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color .2s ease;
}

.breadcrumb a:hover,
.corporate-breadcrumb a:hover,
.seo-breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span,
.corporate-breadcrumb span,
.seo-breadcrumb span {
    color: rgba(255, 255, 255, .25);
}

.breadcrumb span[aria-current="page"],
.corporate-breadcrumb span[aria-current="page"],
.seo-breadcrumb span[aria-current="page"] {
    color: #fff;
    font-weight: 500;
}


/* =========================================================
   SEO HERO
========================================================= */

.seo-hero {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

.seo-hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 45%, rgba(98, 230, 193, .10), transparent 30%),
        radial-gradient(circle at 15% 70%, rgba(98, 230, 193, .04), transparent 30%);
}

.seo-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 90px;
}

.seo-hero-content {
    max-width: 680px;
}

.seo-hero-content h1 {
    margin-top: 18px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 5.5vw, 73px);
    line-height: 1.01;
    letter-spacing: -.06em;
}

.seo-hero-content h1 span {
    color: var(--accent);
}

.seo-hero-content > p {
    max-width: 620px;
    margin-top: 28px;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.85;
}

.seo-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.seo-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 34px;
}

.seo-hero-points span {
    color: var(--text-muted);
    font-size: 10px;
}

.seo-hero-points span::before {
    content: "•";
    color: var(--accent);
    margin-right: 7px;
}


/* =========================================================
   SEARCH VISUAL
========================================================= */

.seo-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-window {
    width: min(100%, 520px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 17px;
    background: #0d1b2c;
    box-shadow: 0 35px 100px rgba(0, 0, 0, .35);
    transform: perspective(1300px) rotateY(-7deg) rotateX(3deg);
}

.search-window-top {
    height: 45px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 15px;
    background: #091523;
    border-bottom: 1px solid var(--border);
}

.search-dots {
    display: flex;
    gap: 6px;
}

.search-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #566273;
}

.search-address {
    flex: 1;
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 9px;
}

.search-window-body {
    min-height: 440px;
    padding: 30px 35px;
}

.fake-search-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 17px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 30px;
    color: var(--text-soft);
    font-size: 10px;
}

.fake-search-bar b {
    color: var(--accent);
    font-size: 16px;
}

.search-result {
    margin-top: 38px;
}

.search-result small {
    display: block;
    color: var(--accent);
    font-size: 8px;
}

.search-result strong {
    display: block;
    margin-top: 7px;
    color: #7dbdff;
    font-size: 16px;
}

.search-result p {
    max-width: 400px;
    margin-top: 7px;
    color: var(--text-muted);
    font-size: 9px;
    line-height: 1.6;
}

.search-result.muted {
    margin-top: 30px;
}

.search-result.muted strong {
    color: #7890a8;
    font-size: 13px;
}

.seo-floating {
    position: absolute;
    padding: 15px 17px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    background: rgba(11, 27, 43, .94);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}

.seo-score {
    top: 35px;
    right: -5px;
}

.seo-score span,
.seo-score strong,
.seo-score small {
    display: block;
}

.seo-score span {
    color: var(--text-muted);
    font-size: 7px;
    letter-spacing: .12em;
}

.seo-score strong {
    margin-top: 5px;
    color: var(--accent);
    font-family: "Manrope", sans-serif;
    font-size: 24px;
}

.seo-score small {
    margin-top: 2px;
    color: var(--text-muted);
    font-size: 8px;
}

.seo-index {
    bottom: 40px;
    left: -10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.seo-index strong {
    color: var(--accent);
    font-size: 17px;
}

.seo-index span {
    color: var(--text-muted);
    font-size: 8px;
    line-height: 1.5;
}


/* =========================================================
   ANSWER
========================================================= */

.seo-answer {
    position: relative;
    z-index: 3;
    margin-top: -35px;
}

.seo-answer-box {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 35px;
    align-items: center;
    padding: 28px 35px;
    border: 1px solid rgba(98, 230, 193, .15);
    border-radius: 15px;
    background: #0c1a2b;
    box-shadow: 0 20px 70px rgba(0, 0, 0, .18);
}

.answer-label {
    color: var(--accent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
}

.seo-answer p {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.8;
}

.seo-answer strong {
    color: var(--text);
}


/* =========================================================
   DEFINITION
========================================================= */

.seo-definition {
    background: #091524;
}

.seo-definition-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
}

.seo-definition-title h2 {
    max-width: 510px;
    margin-top: 18px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(39px, 4vw, 56px);
    line-height: 1.08;
    letter-spacing: -.055em;
}

.seo-definition-title h2 span {
    color: var(--accent);
}

.seo-definition-content {
    max-width: 700px;
}

.seo-definition-content > p {
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.9;
}

.seo-definition-content > p + p {
    margin-top: 20px;
}

.seo-definition-highlight {
    display: flex;
    gap: 17px;
    margin-top: 35px;
    padding: 22px;
    border-left: 2px solid var(--accent);
    background: rgba(98, 230, 193, .035);
}

.seo-definition-highlight > span {
    color: var(--accent);
    font-size: 18px;
}

.seo-definition-highlight strong {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
}

.seo-definition-highlight p {
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   SERVICES
========================================================= */

.seo-services {
    background: var(--bg);
}

.seo-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 60px;
}

.seo-service-card {
    position: relative;
    min-height: 380px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, .015);
    transition: .3s ease;
}

.seo-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(98, 230, 193, .22);
}

.seo-service-card.featured {
    border-color: rgba(98, 230, 193, .25);
    background:
        radial-gradient(circle at 100% 0, rgba(98, 230, 193, .06), transparent 35%),
        rgba(255, 255, 255, .015);
}

.service-number {
    position: absolute;
    top: 25px;
    right: 25px;
    color: var(--text-muted);
    font-size: 9px;
}

.service-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--accent);
    background: rgba(98, 230, 193, .06);
    border: 1px solid rgba(98, 230, 193, .15);
}

.seo-service-card h3 {
    margin-top: 35px;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
}

.seo-service-card p {
    margin-top: 11px;
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.8;
}

.seo-service-card ul {
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.seo-service-card li {
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    color: var(--text-soft);
    font-size: 10px;
}

.seo-service-card li::before {
    content: "✓";
    margin-right: 8px;
    color: var(--accent);
}


/* =========================================================
   TECHNICAL
========================================================= */

.seo-technical {
    background: #091524;
}

.seo-technical-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
    align-items: center;
}

.technical-content h2 {
    max-width: 540px;
    margin-top: 18px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(39px, 4vw, 55px);
    line-height: 1.08;
    letter-spacing: -.05em;
}

.technical-content h2 span {
    color: var(--accent);
}

.technical-content p {
    max-width: 560px;
    margin-top: 20px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.85;
}

.technical-content .text-link {
    display: inline-flex;
    margin-top: 30px;
}

.technical-checklist {
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.technical-item {
    display: grid;
    grid-template-columns: 45px 1fr 30px;
    gap: 15px;
    align-items: center;
    min-height: 90px;
    padding: 17px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.technical-item > span {
    color: var(--accent);
    font-size: 9px;
}

.technical-item strong,
.technical-item small {
    display: block;
}

.technical-item strong {
    font-family: "Manrope", sans-serif;
    font-size: 13px;
}

.technical-item small {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 9px;
}

.technical-item b {
    color: var(--accent);
    font-size: 13px;
}


/* =========================================================
   FUTURE
========================================================= */

.seo-future {
    background: var(--bg);
}

.seo-future-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 60px;
}

.future-card {
    display: grid;
    grid-template-columns: 75px 1fr;
    gap: 25px;
    min-height: 270px;
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, .015);
}

.future-letter {
    font-family: "Manrope", sans-serif;
    font-size: 55px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.future-card span {
    color: var(--text-muted);
    font-size: 8px;
    letter-spacing: .12em;
}

.future-card h3 {
    margin-top: 8px;
    font-family: "Manrope", sans-serif;
    font-size: 25px;
}

.future-card p {
    margin-top: 15px;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.8;
}


/* =========================================================
   LOCAL
========================================================= */

.seo-local {
    background: #091524;
}

.seo-local-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.local-map-visual {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
        #0a1727;
    background-size: 45px 45px;
}

.map-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(35deg, transparent 49%, rgba(98, 230, 193, .06) 50%, transparent 51%),
        linear-gradient(-25deg, transparent 49%, rgba(98, 230, 193, .04) 50%, transparent 51%);
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    padding: 11px 15px;
    border: 1px solid rgba(98, 230, 193, .25);
    border-radius: 9px;
    background: #0d1d2e;
    color: var(--text);
    font-size: 10px;
}

.map-pin span {
    margin-right: 5px;
    color: var(--accent);
}

.map-radius {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(98, 230, 193, .15);
    border-radius: 50%;
}

.radius-one {
    width: 170px;
    height: 170px;
}

.radius-two {
    width: 300px;
    height: 300px;
}

.local-label {
    position: absolute;
    color: var(--text-muted);
    font-size: 9px;
}

.label-one {
    top: 25%;
    left: 22%;
}

.label-two {
    bottom: 25%;
    right: 20%;
}

.local-content h2 {
    max-width: 550px;
    margin-top: 18px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(39px, 4vw, 55px);
    line-height: 1.08;
    letter-spacing: -.05em;
}

.local-content h2 span {
    color: var(--accent);
}

.local-content p {
    max-width: 590px;
    margin-top: 20px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.85;
}

.local-points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
}

.local-points span {
    padding: 8px 11px;
    border: 1px solid var(--border);
    border-radius: 5px;
    color: var(--text-muted);
    font-size: 9px;
}


/* =========================================================
   PROCESS
========================================================= */

.seo-process {
    background: var(--bg);
}

.seo-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 60px;
    border: 1px solid var(--border);
    background: var(--border);
}

.seo-process-grid article {
    min-height: 230px;
    padding: 30px;
    background: var(--bg);
}

.seo-process-grid article > span {
    color: var(--accent);
    font-size: 9px;
    font-weight: 800;
}

.seo-process-grid h3 {
    margin-top: 50px;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
}

.seo-process-grid p {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.8;
}


/* =========================================================
   RELATED CONTENT & LINKS
========================================================= */

.seo-related {
    padding: 110px 0;
}

.seo-related-box {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    padding: 45px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #091524;
}

.seo-related-box h2 {
    max-width: 500px;
    margin-top: 14px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -.055em;
}

.seo-related-box h2 span {
    color: var(--accent);
}

.seo-related-box > div > p {
    max-width: 500px;
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.8;
}

.seo-related-links {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
}

.seo-related-links a {
    display: grid;
    grid-template-columns: 40px 1fr 25px;
    gap: 16px;
    align-items: center;
    padding: 19px 0;
    border-bottom: 1px solid var(--border);
    color: inherit;
    text-decoration: none;
    transition: .2s ease;
}

.seo-related-links a:hover {
    padding-left: 8px;
}

.seo-related-links a > span {
    color: var(--accent);
    font-size: 8px;
}

.seo-related-links strong {
    display: block;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
}

.seo-related-links small {
    display: block;
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 9px;
    line-height: 1.5;
}

.seo-related-links b {
    color: var(--accent);
    font-size: 16px;
    font-weight: 400;
}

.seo-related-content {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #091524;
}

.seo-related-content > span {
    color: var(--accent);
    font-size: 8px;
    letter-spacing: .12em;
}

.seo-related-content h3 {
    margin-top: 12px;
    font-family: "Manrope", sans-serif;
    font-size: 25px;
    letter-spacing: -.04em;
}

.seo-related-content p {
    max-width: 700px;
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.8;
}


/* =========================================================
   FINAL CTA
========================================================= */

.seo-final-cta {
    padding: 0 0 120px;
    background: var(--bg);
}

.seo-final-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 65px;
    border-radius: 25px;
    background: var(--accent);
    color: #07111f;
}

.seo-final-box h2 {
    max-width: 730px;
    margin-top: 15px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -.05em;
}

.seo-final-box h2 span {
    color: #164b40;
}

.seo-final-box p {
    margin-top: 17px;
    color: #28584e;
}

.seo-final-box .section-kicker {
    color: #164b40;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1000px){

    .seo-hero-grid,
    .seo-definition-grid,
    .seo-technical-grid,
    .seo-local-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .seo-service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .seo-future-grid {
        grid-template-columns: 1fr;
    }

    .seo-process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .seo-visual {
        min-height: 420px;
    }

}


@media(max-width:800px){

    .seo-related-box {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 28px;
    }

}


@media(max-width:760px){

    body {
        padding-top: 75px;
    }

    .breadcrumb,
    .corporate-breadcrumb,
    .seo-breadcrumb {
        width: calc(100% - 32px);
        padding-top: 15px;
        padding-bottom: 5px;
        font-size: 9px;
    }

    .seo-hero {
        min-height: auto;
    }

    .seo-hero-grid {
        padding-top: 15px;
        padding-bottom: 60px;
    }

    .seo-hero-content h1 {
        font-size: 43px;
    }

    .seo-hero-content > p {
        font-size: 14px;
    }

    .seo-hero-actions {
        flex-direction: column;
    }

    .seo-hero-points {
        gap: 10px 16px;
    }

    .search-window {
        transform: none;
    }

    .search-window-body {
        min-height: 350px;
        padding: 22px;
    }

    .seo-floating {
        display: none;
    }

    .seo-answer {
        margin-top: -20px;
    }

    .seo-answer-box {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 24px;
    }

    .seo-definition-title h2,
    .technical-content h2,
    .local-content h2 {
        font-size: 38px;
    }

    .seo-service-grid {
        grid-template-columns: 1fr;
    }

    .seo-service-card {
        min-height: auto;
    }

    .technical-checklist {
        border-left: 0;
    }

    .technical-item {
        grid-template-columns: 35px 1fr 20px;
    }

    .future-card {
        grid-template-columns: 50px 1fr;
        padding: 25px;
    }

    .future-letter {
        font-size: 40px;
    }

    .local-map-visual {
        min-height: 330px;
    }

    .seo-process-grid {
        grid-template-columns: 1fr;
    }

    .seo-process-grid article {
        min-height: auto;
    }

    .seo-final-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 25px;
    }

    .seo-final-box .btn {
        width: 100%;
    }

}


@media(max-width:600px){

    .seo-related-content {
        margin-top: 60px;
        padding: 25px;
    }

}