/* =========================================================
   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 {
    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 {
    color: var(--text-muted);
    text-decoration: none;
    transition: color .2s ease;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    color: rgba(255, 255, 255, .25);
}

.breadcrumb strong {
    color: #fff;
    font-weight: 500;
}


/* =========================================================
   SERVICE / E-COMMERCE HERO
========================================================= */

.service-hero {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

.service-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    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(46px, 5.2vw, 70px);
    line-height: 1.03;
    letter-spacing: -.055em;
}

.service-hero-content h1 span {
    display: block;
    color: var(--accent);
}

.service-hero-content > p {
    max-width: 580px;
    margin-top: 25px;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}


/* =========================================================
   COMMERCE SCREEN VISUAL
========================================================= */

.service-hero-visual {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commerce-screen {
    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);
}

.commerce-header {
    height: 46px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 18px;
    background: #091523;
    border-bottom: 1px solid var(--border);
}

.commerce-logo {
    color: var(--accent);
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
}

.commerce-search {
    flex: 1;
    height: 18px;
    background: rgba(255, 255, 255, .05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .08);
}

.commerce-user {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(98, 230, 193, .2);
    border: 1px solid var(--accent);
}

.commerce-body {
    display: grid;
    grid-template-columns: 80px 1fr;
    min-height: 380px;
}

.commerce-sidebar {
    padding: 20px 12px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.commerce-sidebar span {
    height: 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .08);
}

.commerce-sidebar span:first-child {
    background: var(--accent);
    width: 70%;
}

.commerce-products {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-feature {
    display: flex;
    gap: 15px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, .02);
}

.product-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    background: rgba(98, 230, 193, .08);
    border: 1px dashed rgba(98, 230, 193, .3);
}

.product-info span {
    color: var(--accent);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .1em;
}

.product-info strong {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: #fff;
}

.product-info div {
    width: 90px;
    height: 4px;
    margin-top: 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .1);
}

.product-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.product-row div {
    height: 85px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .02);
}


/* =========================================================
   INTRO & TWO COLUMN
========================================================= */

.service-intro {
    background: #091524;
}

.two-column {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
    align-items: center;
}

.two-column h2 {
    max-width: 500px;
    margin-top: 18px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 4vw, 55px);
    line-height: 1.08;
    letter-spacing: -.05em;
}

.two-column h2 span {
    color: var(--accent);
}

.two-column p {
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.9;
}

.two-column p + p {
    margin-top: 20px;
}


/* =========================================================
   FEATURES
========================================================= */

.service-features {
    background: var(--bg);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 60px;
}

.feature-card {
    position: relative;
    min-height: 250px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, .015);
    transition: .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;
}


/* =========================================================
   SEO SECTION & SEO GRAPHIC
========================================================= */

.service-seo {
    background: #091524;
}

.seo-visual {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seo-circle {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 1px dashed rgba(98, 230, 193, .35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(98, 230, 193, .03);
}

.seo-circle span {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    color: #fff;
    font-size: 15px;
    letter-spacing: .08em;
}

.seo-circle strong {
    color: var(--accent);
    font-size: 20px;
    margin: 4px 0;
}

.seo-node {
    position: absolute;
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: #0c1a2b;
    color: var(--accent);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
}

.seo-node-one {
    top: 40px;
    left: 40px;
}

.seo-node-two {
    bottom: 50px;
    left: 30px;
}

.seo-node-three {
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 30px;
}

.tag-list span {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-soft);
    font-size: 11px;
    background: rgba(255, 255, 255, .02);
}


/* =========================================================
   PROCESS
========================================================= */

.service-process {
    background: var(--bg);
}

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 60px;
    border: 1px solid var(--border);
    background: var(--border);
}

.service-process-grid > div {
    min-height: 230px;
    padding: 30px;
    background: var(--bg);
}

.service-process-grid span {
    color: var(--accent);
    font-size: 10px;
    font-weight: 800;
}

.service-process-grid h3 {
    margin-top: 48px;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
}

.service-process-grid p {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.75;
}


/* =========================================================
   FAQ
========================================================= */

.service-faq {
    background: #091524;
}

.faq-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
}

.faq-grid 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-grid h2 span {
    color: var(--accent);
}

.faq-list details {
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
}

.faq-list 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;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    color: var(--accent);
    font-size: 18px;
}

.faq-list p {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   CONTACT
========================================================= */

.service-contact {
    padding: 120px 0;
    background: #091524;
    border-top: 1px solid var(--border);
}

.service-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
}

.service-contact h2 {
    max-width: 600px;
    margin-top: 15px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -.055em;
}

.service-contact h2 span {
    color: var(--accent);
}

.service-contact p {
    max-width: 550px;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.9;
}

.service-contact-details {
    border-top: 1px solid var(--border);
}

.service-contact-details > div {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.service-contact-details span {
    display: block;
    color: var(--accent);
    font-size: 9px;
    letter-spacing: .12em;
    font-weight: 700;
}

.service-contact-details a,
.service-contact-details address {
    display: block;
    margin-top: 7px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.7;
    text-decoration: none;
    font-style: normal;
}

.service-contact-details a:hover {
    color: var(--accent);
}


/* =========================================================
   FINAL CTA
========================================================= */

.service-cta {
    padding: 0 0 120px;
    background: var(--bg);
}

.service-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 65px;
    border-radius: 25px;
    background: var(--accent);
    color: #07111f;
}

.service-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;
}

.service-cta-box h2 span {
    color: #164b40;
}

.service-cta-box p {
    margin-top: 17px;
    color: #28584e;
    font-size: 15px;
}

.service-cta-box .section-kicker {
    color: #164b40;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1000px){

    .service-hero-grid,
    .two-column,
    .faq-grid,
    .service-contact-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .feature-grid,
    .service-process-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media(max-width:760px){

    body {
        padding-top: 75px;
    }

    .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;
    }

    .commerce-screen {
        transform: none;
    }

    .feature-grid,
    .service-process-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .service-process-grid > div {
        min-height: auto;
    }

    .service-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 25px;
    }

    .service-cta-box .btn {
        width: 100%;
    }

}