:root {
    --red: #e11d24;
    --red-dark: #c91820;
    --dark: #070b19;
    --charcoal: #121620;
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --soft: #f5f5f7;
    --white: #fff;
    --green: #16a34a;
    --orange: #ea580c;
    --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
    --font-display: "Archivo", "Inter", ui-sans-serif, system-ui, sans-serif;
    --shadow-sm: 0 1px 2px rgb(15 23 42 / .06);
    --shadow-md: 0 14px 35px rgb(15 23 42 / .09);
    --shadow-xl: 0 26px 70px rgb(15 23 42 / .22);
}

* {
    box-sizing: border-box
}

@-webkit-viewport { width: device-width; }
@-moz-viewport    { width: device-width; }
@-ms-viewport     { width: device-width; }
@-o-viewport      { width: device-width; }
@viewport         { width: device-width; }

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    background: var(--white);
    color: var(--slate-800);
    overflow-x: hidden
}

img,
iframe,
video,
table,
pre,
code {
    max-width: 100%;
}

main {
    display: block
}

button,
input,
select,
textarea {
    font: inherit
}

button {
    cursor: pointer
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    max-width: 100%
}

body.modal-open {
    overflow: hidden
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px
}

::-webkit-scrollbar-thumb {
    background: var(--slate-300);
    border-radius: 999px
}

.container {
    width: min(100% - 32px, 1280px);
    margin-inline: auto
}

/* ===== Utility bar ===== */
.utility-bar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 60;
    height: 36px;
    border-bottom: 1px solid rgb(255 255 255 / .12);
    background: transparent;
    color: rgb(255 255 255 / .86);
    transition: .25s ease
}

.utility-bar.solid {
    background: var(--soft);
    color: var(--slate-600);
    border-color: var(--slate-200)
}

.utility-inner,
.header-inner,
.newsletter-inner,
.bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.utility-inner {
    height: 36px;
    gap: 16px;
    font-size: 11px;
    font-weight: 600
}

.utility-actions {
    display: flex;
    align-items: center;
    gap: 20px
}

.utility-actions a,
.utility-language {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 11px
}

.utility-actions .i-red {
    color: var(--red)
}

.search-box {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 148px;
    padding: 3px 8px;
    border: 1px solid rgb(255 255 255 / .2);
    border-radius: 4px;
    background: rgb(255 255 255 / .1)
}

.solid .search-box {
    background: var(--slate-100);
    border-color: var(--slate-200)
}

.search-box input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: inherit;
    font-size: 10px
}

.search-box button {
    border: 0;
    background: transparent;
    color: inherit;
    padding: 0;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    flex: none
}

.search-box button i,
.search-box i {
    width: 14px;
    height: 14px
}

.mini-cta,
.quote-btn {
    border: 0;
    border-radius: 4px;
    background: var(--red);
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: .2s ease
}

.mini-cta {
    padding: 5px 10px;
    font-size: 9px
}

.mini-cta:hover,
.quote-btn:hover,
.newsletter-form button:hover {
    background: var(--red-dark)
}

/* ===== Header ===== */
.site-header {
    position: fixed;
    inset: 36px 0 auto;
    z-index: 55;
    color: var(--white);
    border-bottom: 1px solid rgb(255 255 255 / .12);
    transition: .25s ease
}

.site-header.solid {
    color: var(--slate-800);
    background: rgb(255 255 255 / .95);
    border-color: rgb(226 232 240 / .75);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px)
}

/* İç sayfalarda header en üstten itibaren okunur (açık zemin) */
.inner-page .utility-bar {
    background: var(--soft);
    color: var(--slate-600);
    border-color: var(--slate-200)
}

.inner-page .site-header {
    color: var(--slate-800);
    background: rgb(255 255 255 / .95);
    border-color: rgb(226 232 240 / .75);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px)
}

.inner-page .search-box {
    background: var(--slate-100);
    border-color: var(--slate-200)
}

.header-inner {
    height: 64px
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: inherit;
    font-family: var(--font-display)
}

.logo span {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -.04em
}

.logo strong {
    padding: 3px 7px;
    border-radius: 3px;
    background: var(--red);
    color: var(--white);
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px
}

.desktop-nav a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: inherit;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: .2s ease
}

.desktop-nav a:hover,
.desktop-nav a.active,
.nav-contact {
    color: var(--red)
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px
}

.quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 16px;
    font-size: 11px
}

.menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 24px
}

.mobile-menu {
    display: none;
    padding: 10px 16px 18px;
    background: var(--white);
    border-top: 1px solid var(--slate-200);
    box-shadow: var(--shadow-md)
}

.mobile-menu.open {
    display: block
}

.mobile-menu a {
    display: block;
    width: 100%;
    padding: 13px 10px;
    border-bottom: 1px solid var(--slate-100);
    color: var(--slate-800);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px
}

/* ===== Hero ===== */
.hero {
    min-height: 760px;
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02)
}

.hero-slide {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity .8s ease
}

.hero-slide.active {
    opacity: 1
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-slide.placeholder {
    background: linear-gradient(120deg, #0b1120, #1e293b 60%, #3a1416)
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgb(2 6 23 / .86), rgb(2 6 23 / .42), rgb(2 6 23 / .12)), linear-gradient(0deg, rgb(2 6 23 / .65), transparent 38%)
}

.hero-content {
    max-width: 880px;
    margin-inline: auto;
    padding-top: 74px;
    text-align: center
}

.hero-actions {
    justify-content: center
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border: 1px solid rgb(255 255 255 / .16);
    border-radius: 999px;
    background: rgb(225 29 36 / .14);
    color: #fecaca;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase
}

.hero h1 {
    margin: 22px 0 20px;
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 92px);
    line-height: .92;
    letter-spacing: -.035em
}

.hero p {
    max-width: 660px;
    margin: 0 auto 34px;
    color: rgb(255 255 255 / .77);
    font-size: 17px;
    line-height: 1.8;
    font-weight: 300
}

.hero-watermark {
    position: absolute;
    left: 50%;
    bottom: 5vh;
    transform: translateX(-50%);
    z-index: -1;
    font-family: var(--font-display);
    font-size: clamp(76px, 13vw, 200px);
    font-weight: 900;
    letter-spacing: -.06em;
    color: rgb(255 255 255 / .06);
    pointer-events: none;
    white-space: nowrap
}

.slider-controls {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 9px
}

.slider-controls button {
    width: 44px;
    height: 3px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: rgb(255 255 255 / .38)
}

.slider-controls button.active {
    background: var(--red)
}

/* ===== Buttons ===== */
.hero-actions,
.section-actions,
.card-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px
}

.btn-primary,
.btn-dark,
.btn-light,
.btn-ghost,
.btn-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 5px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: .2s ease;
    font-family: var(--font-display)
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 14px 28px rgb(225 29 36 / .25)
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-1px)
}

.btn-dark {
    background: var(--slate-950);
    color: var(--white)
}

.btn-dark:hover {
    transform: translateY(-1px)
}

.btn-light {
    background: var(--white);
    color: var(--slate-900);
    border-color: rgb(255 255 255 / .4)
}

.btn-ghost {
    background: rgb(255 255 255 / .09);
    color: var(--white);
    border-color: rgb(255 255 255 / .18)
}

.btn-soft {
    background: var(--slate-100);
    color: var(--slate-900);
    border-color: var(--slate-200)
}

.btn-soft:hover {
    background: var(--slate-200)
}

/* ===== Sections ===== */
.section {
    padding: 88px 0
}

.section.soft {
    background: var(--soft)
}

.section.dark {
    background: var(--dark);
    color: var(--white)
}

.section-title {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center
}

.section-title.left {
    margin-inline: 0;
    text-align: left
}

.section-title h2,
.page-hero h1 {
    margin: 12px 0;
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.08;
    color: var(--slate-900);
    letter-spacing: -.035em;
    overflow-wrap: break-word
}

.dark .section-title h2 {
    color: var(--white)
}

.section-title p,
.page-hero p {
    margin: 0;
    color: var(--slate-500);
    line-height: 1.8;
    font-weight: 300
}

.dark .section-title p {
    color: var(--slate-400)
}

.kicker {
    display: inline-flex;
    padding: 6px 14px;
    border: 1px solid rgb(225 29 36 / .18);
    border-radius: 999px;
    background: #fef2f2;
    color: var(--red);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase
}

.kicker.light {
    background: rgb(225 29 36 / .14);
    border-color: rgb(225 29 36 / .4);
    color: #fca5a5
}

/* ===== Tabs ===== */
.tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 6px;
    border: 1px solid rgb(226 232 240 / .7);
    border-radius: 999px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    margin-bottom: 34px
}

.tabs button {
    flex: 0 0 auto;
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    background: transparent;
    color: var(--slate-500);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-family: var(--font-display)
}

.tabs button.active {
    background: var(--slate-950);
    color: var(--white)
}

/* ===== Grid & Cards ===== */
.grid {
    display: grid;
    gap: 24px
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

.card {
    border: 1px solid rgb(226 232 240 / .9);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: .25s ease
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md)
}


/* Blog detay sidebar */
.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    align-items: start
}

.blog-main .blog-cover {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid var(--slate-200)
}

.blog-main .blog-lead {
    font-size: 18px;
    color: var(--slate-800);
    margin-bottom: 22px;
    line-height: 1.8
}

.blog-aside {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.side-card {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    padding: 20px
}

.side-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--slate-200)
}

.side-title i {
    width: 18px;
    height: 18px;
    color: var(--brand, #c0392b)
}

.side-posts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.side-posts a {
    display: flex;
    gap: 12px;
    align-items: center;
    color: inherit;
    text-decoration: none
}

.side-thumb {
    flex: none;
    width: 62px;
    height: 62px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--slate-100)
}

.side-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.side-info strong {
    display: block;
    font-size: 13.5px;
    line-height: 1.35;
    color: var(--slate-900, #0f172a);
    transition: color .15s
}

.side-posts a:hover .side-info strong {
    color: var(--brand, #c0392b)
}

.side-info small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--slate-500, #64748b)
}

.side-cta {
    background: #101828;
    border-color: #101828;
    color: #fff
}

.side-cta .side-title {
    color: #fff;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 8px
}

.side-cta p {
    font-size: 13.5px;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0 0 16px
}

.side-cta .btn-primary {
    width: 100%;
    justify-content: center
}

@media (max-width:900px) {
    .blog-layout {
        grid-template-columns: 1fr
    }

    .blog-aside {
        position: static
    }
}


.badge-row,
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px
}

.badge {
    display: inline-flex;
    width: fit-content;
    padding: 5px 9px;
    border: 1px solid #fee2e2;
    border-radius: 4px;
    background: #fef2f2;
    color: var(--red);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase
}

.mono {
    font-family: ui-monospace, Menlo, Consolas, monospace;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--slate-400)
}

.info-card h3,
.story-card h3,
.article-card h3 {
    margin: 16px 0 10px;
    font-family: var(--font-display);
    color: var(--slate-900);
    line-height: 1.15;
    font-size: 20px
}
.info-card h3,
.story-card h3,
.article-card h3 {
    margin: 16px 0 10px;
    font-family: var(--font-display);
    color: var(--slate-900);
    line-height: 1.15;
    font-size: 20px
}


.info-card p,
.story-card p,
.article-card p {
    color: var(--slate-500);
    font-size: 12px;
    line-height: 1.7;
    font-weight: 300
}


.spec-list {
    list-style: none;
    margin: 14px 0;
    padding: 0;
    border-top: 1px solid var(--slate-100);
    padding-top: 12px
}

.spec-list li {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: var(--slate-600);
    padding: 3px 0
}

.spec-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-top: 6px;
    border-radius: 2px;
    background: var(--red);
    flex: 0 0 6px
}

.card-footer {
    margin-top: 16px
}

/* Info / feature card */
.info-card {
    padding: 26px
}

.info-card .ic {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: #fef2f2;
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 8px
}

/* Process steps */
.step {
    padding: 26px;
    position: relative
}

.step .num {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 900;
    color: var(--slate-200)
}

.step h3 {
    font-size: 18px;
    margin: 6px 0 8px;
    font-family: var(--font-display);
    color: var(--slate-900)
}

/* Sector */
.sector {
    padding: 22px;
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    background: var(--white)
}

.sector h3 {
    font-size: 15px;
    font-family: var(--font-display);
    color: var(--slate-900);
    margin: 0 0 6px
}

.sector p {
    font-size: 12px;
    color: var(--slate-500);
    margin: 0;
    font-weight: 300
}

/* Testimonials */
.story-card {
    padding: 32px;
    background: var(--charcoal);
    color: var(--white);
    border-radius: 10px
}

.story-card .company {
    color: var(--red);
    font-weight: 900;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase
}

.story-card h3 {
    color: #fff
}

.story-card p {
    color: var(--slate-300)
}

.story-card .tag {
    display: inline-flex;
    margin-top: 16px;
    padding: 6px 14px;
    border: 1px solid rgb(255 255 255 / .14);
    border-radius: 999px;
    font-size: 11px;
    color: var(--slate-300)
}

/* Blog */
.article-card {
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.article-card .thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--slate-100)
}

.article-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s
}

.article-card:hover .thumb img {
    transform: scale(1.05)
}

.article-card .body {
    padding: 22px
}

.article-card .meta {
    font-size: 11px;
    color: var(--red);
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 10px
}

/* Page hero */
.page-hero {
    padding: 140px 0 70px;
    background: var(--soft);
    border-bottom: 1px solid var(--slate-200);
    text-align: center
}

.page-hero .kicker {
    margin-bottom: 14px
}

/* Stats band */
.stat-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center
}

.stat-band .n {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 900;
    color: var(--red)
}

.stat-band .l {
    font-size: 12px;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: .08em
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.gallery figure {
    position: relative;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--slate-100)
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s
}

.gallery figure:hover img {
    transform: scale(1.06)
}

.gallery figcaption {
    position: absolute;
    inset: auto 0 0;
    padding: 14px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(transparent, rgb(2 6 23 / .8))
}

/* Forms */
.form-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    align-items: start
}

.form-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 10px;
    padding: 32px;
    box-shadow: var(--shadow-sm)
}

.field {
    margin-bottom: 18px
}

.field label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 7px;
    color: var(--slate-700)
}

.field input,
.field textarea {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--slate-200);
    color: var(--slate-800);
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 14px
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--red)
}

.field textarea {
    min-height: 130px;
    resize: vertical
}

.info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    align-items: flex-start
}

.info-item .ic {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 8px;
    background: #fef2f2;
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px
}

.info-item b {
    display: block;
    font-family: var(--font-display);
    color: var(--slate-900);
    margin-bottom: 2px
}

.info-item span {
    color: var(--slate-500);
    font-size: 13px
}

.alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 22px;
    font-size: 14px
}

.alert-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #047857
}

.alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--slate-400)
}

.footer-newsletter {
    border-bottom: 1px solid rgb(30 41 59 / .9);
    background: rgb(2 6 23 / .34);
    padding: 42px 0
}

.newsletter-inner {
    gap: 28px;
    flex-wrap: wrap
}

.footer-newsletter h3 {
    font-family: var(--font-display);
    color: #fff;
    font-size: 24px;
    margin: 0 0 8px
}

.footer-newsletter p {
    margin: 0;
    color: var(--slate-400);
    font-weight: 300;
    font-size: 12px;
    line-height: 1.7
}

.newsletter-form {
    display: flex;
    width: min(100%, 440px);
    padding: 6px;
    border: 1px solid var(--slate-800);
    border-radius: 8px;
    background: var(--slate-900);
    gap: 0
}

.newsletter-form input {
    min-width: 0;
    flex: 1;
    padding: 8px 12px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font-size: 12px
}

.newsletter-form input::placeholder {
    color: var(--slate-500)
}

.newsletter-form button {
    border: 0;
    border-radius: 6px;
    padding: 9px 18px;
    background: var(--red);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 42px;
    padding: 58px 0
}

.footer-grid h4 {
    font-family: var(--font-display);
    color: #fff;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--slate-800);
    margin: 0 0 16px
}

.footer-grid a {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--slate-400);
    font-size: 12px;
    margin-top: 9px;
    transition: .2s
}

.footer-grid a:hover {
    color: var(--white)
}

.footer-grid p {
    color: var(--slate-400);
    font-size: 12px;
    margin: 9px 0 0;
    display: flex;
    gap: 9px;
    align-items: flex-start
}

.footer-grid svg {
    color: var(--red);
    flex: none
}

.footer-bottom {
    border-top: 1px solid var(--slate-800);
    background: var(--slate-950)
}

.bottom-inner {
    padding: 25px 0;
    font-size: 12px;
    color: var(--slate-500);
    gap: 18px;
    flex-wrap: wrap
}

.bottom-inner span {
    display: inline-flex;
    align-items: center;
    gap: 7px
}

.bottom-inner span {
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.footer-credit a {
    color: var(--slate-300)
}

.footer-credit a:hover strong {
    color: var(--red)
}

/* Sticky toolbar */
.sticky-toolbar {
    position: fixed;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.sticky-toolbar a,
.sticky-toolbar button {
    width: 52px;
    height: 52px;
    border: 1px solid var(--slate-200);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: var(--slate-700);
    font-size: 16px
}

.sticky-toolbar a:hover,
.sticky-toolbar button:hover {
    color: var(--red);
    border-color: var(--red)
}

.sticky-toolbar span {
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em
}

/* Responsive */
@media(max-width:1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .stat-band {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:860px) {

    .desktop-nav,
    .utility-actions .search-box,
    .utility-actions .utility-language {
        display: none
    }

    .menu-btn {
        display: inline-flex
    }

    .form-grid {
        grid-template-columns: 1fr
    }

    .sticky-toolbar {
        display: none
    }
}

@media(max-width:640px) {

    .grid-2,
    .grid-3,
    .grid-4,
    .gallery,
    .stat-band {
        grid-template-columns: 1fr
    }

    .section {
        padding: 60px 0
    }

    .quote-btn span {
        display: none
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%
    }

    .newsletter-form input {
        min-width: 0;
        width: 100%
    }
}

/* Hizmet şeridi */
.service-band {
    background: var(--charcoal);
    border-top: 3px solid var(--red);
    position: relative;
    z-index: 3
}

.band-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.band-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 26px 30px;
    color: var(--white);
    text-decoration: none;
    border-right: 1px solid rgb(255 255 255 / .08);
    transition: background .2s
}

.band-item:last-child {
    border-right: 0
}

.band-item:hover {
    background: rgb(255 255 255 / .04)
}

.band-item h4 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 800;
    margin: 0 0 4px
}

.band-item span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--slate-400)
}

.band-item>i {
    flex: none;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgb(255 255 255 / .18);
    color: var(--white);
    transition: background .2s, border-color .2s
}

.band-item:hover>i {
    background: var(--red);
    border-color: var(--red)
}

.band-item>i svg {
    width: 18px;
    height: 18px
}

@media(max-width:860px) {
    .band-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .band-item:nth-child(2) {
        border-right: 0
    }
}

@media(max-width:520px) {
    .band-inner {
        grid-template-columns: 1fr
    }

    .band-item {
        border-right: 0;
        border-bottom: 1px solid rgb(255 255 255 / .08)
    }
}

/* Teklif modalı */
.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 16px;
    overflow-y: auto
}

.quote-modal.open {
    display: flex
}

.quote-overlay {
    position: fixed;
    inset: 0;
    background: rgb(2 6 23 / .72);
    backdrop-filter: blur(3px)
}

.quote-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 720px);
    background: var(--white);
    border-radius: 16px;
    border-top: 5px solid var(--red);
    box-shadow: var(--shadow-xl);
    padding: 40px;
    margin: auto;
    animation: quotePop .22s ease
}

@keyframes quotePop {
    from {
        opacity: 0;
        transform: translateY(14px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.quote-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--slate-200);
    background: var(--slate-100);
    color: var(--slate-600);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background .2s, color .2s
}

.quote-close:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red)
}

.quote-close svg {
    width: 18px;
    height: 18px
}

.quote-head {
    text-align: center;
    margin-bottom: 26px
}

.quote-head h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.quote-head h3 svg {
    width: 22px;
    height: 22px;
    color: var(--red)
}

.quote-head p {
    color: var(--slate-500);
    margin: 0;
    font-size: 15px
}

.quote-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.quote-form .field {
    margin-bottom: 16px
}

.quote-form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--slate-700);
    margin-bottom: 6px
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--slate-200);
    border-radius: 9px;
    font-family: inherit;
    font-size: 15px;
    background: var(--slate-100);
    color: var(--slate-900);
    transition: border-color .2s, background .2s
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--red);
    background: var(--white)
}

.quote-form textarea {
    min-height: 96px;
    resize: vertical
}

.quote-submit {
    width: 100%;
    justify-content: center;
    margin-top: 6px
}

.quote-alert {
    background: #fef2f2;
    color: var(--red-dark);
    border: 1px solid #fecaca;
    border-radius: 9px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px
}

.quote-success {
    text-align: center;
    padding: 24px 0 8px
}

.quote-success svg {
    width: 56px;
    height: 56px;
    color: var(--green);
    margin-bottom: 12px
}

.quote-success h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 6px
}

.quote-success p {
    color: var(--slate-500);
    margin: 0
}

@media(max-width:640px) {
    .quote-dialog {
        padding: 30px 22px
    }

    .quote-row {
        grid-template-columns: 1fr
    }
}

/* ============================================================
   Alt sayfa bileşenleri (referans birebir)
   ============================================================ */

/* 8-4 kolon düzeni (içerik + yan panel) */
.layout-8-4 {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    gap: 40px;
    align-items: start
}


/* Sticky yan panel / hesaplayıcı */
.calculator,
.side-panel {
    position: sticky;
    top: 120px;
    padding: 26px;
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow-md)
}

.calculator h3,
.side-panel h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    margin: 8px 0 6px;
    color: var(--slate-900)
}

.calculator>p,
.side-panel>p {
    color: var(--slate-500);
    font-size: 13px;
    line-height: 1.7;
    margin: 0 0 18px
}


.button-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px
}

.button-grid.two {
    grid-template-columns: repeat(2, 1fr)
}

.calc-button {
    border: 1px solid var(--slate-200);
    background: var(--slate-100);
    color: var(--slate-700);
    border-radius: 8px;
    padding: 11px 6px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: .2s;
    font-family: var(--font-display)
}

.calc-button:hover {
    border-color: var(--slate-300)
}

.calc-button.active.red {
    background: var(--red);
    border-color: var(--red);
    color: #fff
}

.calc-button.active.dark {
    background: var(--slate-950);
    border-color: var(--slate-950);
    color: #fff
}

/* Sonuç kutusu */
.result-box {
    background: var(--slate-100);
    border: 1px solid var(--slate-200);
    border-radius: 10px;
    padding: 18px;
    margin-top: 18px
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

.result-grid .num {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--slate-900);
    line-height: 1
}

.result-grid .num small {
    font-size: 12px;
    color: var(--slate-500);
    font-weight: 700
}

.result-grid .lbl {
    font-size: 11px;
    color: var(--slate-500);
    margin-top: 4px
}

/* Teknik özellik kutusu */
.spec-box {
    margin-top: 16px;
    padding: 14px;
    border: 1px solid var(--slate-100);
    border-radius: 6px;
    background: var(--slate-100)
}

.spec-box > .mono {
    display: block;
    margin-bottom: 10px
}


.spec-box ul {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: grid;
    gap: 7px;
    font-size: 12px;
    color: var(--slate-700);
    font-weight: 700
}

.spec-box li {
    position: relative;
    padding-left: 16px;
    display: flex;
    align-items: center
}

.spec-box li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red)
}

/* Kabiliyet şeridi */
.capability-strip {
    background: var(--charcoal);
    border-top: 3px solid var(--red);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 46px;
    padding: 0
}
.capability-strip .capability-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.capability-item {
    padding: 28px 24px;
    text-align: center;
    border-left: 1px solid rgb(255 255 255 / .08)
}

.capability-item:first-child {
    border-left: 0
}

.capability-item .num {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px
}

.capability-item .lbl {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--slate-400)
}

/* Light capability strip variant */
.capability-strip.light .capability-item {
    border-left-color: rgb(226 232 240 / .8);
}
.capability-strip.light .capability-item .num {
    color: var(--slate-900);
}
.capability-strip.light .capability-item .lbl {
    color: var(--slate-600);
}

@media (max-width: 860px) {
    .capability-strip .capability-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .capability-item:nth-child(3) {
        border-left: 0;
    }
}

@media (max-width: 560px) {
    .capability-strip .capability-inner {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .capability-item {
        padding: 20px 12px;
        border-left: 0;
        background: rgb(255 255 255 / .04);
        border-radius: 8px;
    }
    .capability-item .num {
        font-size: 26px;
    }
    .capability-strip.light .capability-item {
        background: var(--slate-200);
    }
}

/* Kapsama bloğu */
.coverage-block {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    border: 1px solid var(--slate-200);
    border-radius: 14px;
    overflow: hidden;
    background: var(--white)
}

.coverage-content {
    padding: 40px
}

.region-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;
    gap: 10px;
    padding: 40px;
    margin-top: 0;
    min-width: 0
}

.region-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    background: var(--slate-100);
    font-size: 13px;
    font-weight: 700;
    color: var(--slate-600);
    white-space: nowrap;
    flex: 0 0 auto
}

.region-pill svg {
    width: 13px;
    height: 13px;
    color: var(--red)
}

.coverage-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: var(--slate-950)
}

.coverage-stat {
    padding: 28px;
    border-top: 1px solid rgb(255 255 255 / .07);
    border-left: 1px solid rgb(255 255 255 / .07)
}

.coverage-stat:nth-child(-n+2) {
    border-top: 0
}

.coverage-stat:nth-child(odd) {
    border-left: 0
}

.coverage-stat .num {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 900;
    color: #fff
}

.coverage-stat span {
    display: block;
    color: var(--slate-300);
    font-size: 12px;
    margin-top: 6px
}

/* İstatistik kartı */
.stats-card {
    padding: 26px;
    text-align: center
}

.stats-card .icon-square {
    width: 46px;
    height: 46px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #fef2f2;
    color: var(--red)
}

.stats-card .num {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--slate-900)
}

/* Zaman çizelgesi */
.timeline {
    max-width: 880px;
    margin: 0 auto;
    padding-left: 34px;
    border-left: 2px solid var(--slate-200);
    display: grid;
    gap: 26px
}

.timeline-card {
    position: relative
}

.timeline-card::before {
    content: "";
    position: absolute;
    left: -43px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--red);
    border: 4px solid #fff;
    box-shadow: 0 0 0 1px var(--slate-200)
}

.timeline-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    margin: 6px 0 8px;
    color: var(--slate-900)
}

.timeline-card p {
    color: var(--slate-500);
    font-size: 14px;
    line-height: 1.7;
    margin: 0
}

/* İletişim ızgarası & ofis kartı */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: start
}

.office-card {
    padding: 24px;
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    margin-bottom: 18px;
    text-align: left
}

.form-stack {
    display: grid;
    gap: 16px
}

.office-addr {
    color: var(--slate-600);
    line-height: 1.7;
    margin: 0 0 14px;
    font-size: 14px
}

.office-card h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 18px;
    margin: 0 0 8px;
    color: var(--slate-900)
}

.office-card h3 svg {
    width: 18px;
    height: 18px;
    color: var(--red)
}

.office-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--slate-200)
}

.office-meta span,
.office-hours {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--slate-600)
}

.office-meta svg,
.office-hours svg {
    width: 14px;
    height: 14px;
    color: var(--red)
}

.office-hours {
    margin-top: 12px
}

/* Bilgi bandı */
.info-banner {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid #dbeafe;
    background: #eff6ff;
    color: var(--slate-700)
}

.info-banner.red {
    border-color: #fecaca;
    background: #fef2f2
}

.info-banner svg {
    flex: none;
    width: 22px;
    height: 22px;
    color: var(--red)
}

.info-banner h4 {
    margin: 0 0 4px;
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--slate-900)
}

.info-banner p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6
}

/* Adımlar / numara kutusu (scanning) */
.steps {
    display: grid;
    gap: 16px
}

.number-box {
    flex: none;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--slate-950);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 900
}

.step-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid var(--slate-200);
    border-radius: 10px;
    background: var(--white)
}

/* Sayfalama */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
    flex-wrap: wrap
}

.pagination .page-link {
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--slate-200);
    border-radius: 10px;
    background: var(--white);
    color: var(--slate-600, #475569);
    font-weight: 700;
    transition: .15s
}

.pagination .page-link:hover {
    border-color: #e11d24;
    color: #e11d24
}

.pagination .page-link.is-active {
    background: linear-gradient(135deg, #e11d24, #ff7a1a);
    border-color: transparent;
    color: #fff
}

.pagination .page-dots {
    color: var(--slate-400, #94a3b8);
    padding: 0 4px
}

/* CTA blok */
.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    padding: 40px 44px;
    border-radius: 20px;
    background: linear-gradient(135deg, #e11d24, #ff7a1a);
    color: #fff;
    box-shadow: 0 24px 50px -24px rgba(225, 29, 36, .55)
}

.cta-band .cta-copy h2 {
    color: #fff;
    margin: 0 0 6px
}

.cta-band .cta-copy p {
    color: rgba(255, 255, 255, .9);
    margin: 0;
    max-width: 620px
}

.cta-band .btn-primary {
    background: #fff;
    color: #b3141a;
    white-space: nowrap;
    flex: none
}

.cta-band .btn-primary:hover {
    background: #fff5f5
}

@media (max-width:640px) {
    .cta-band {
        padding: 28px 24px
    }
}

/* Çerez rıza bandı (KVKK) */
.cookie-consent {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2000;
    background: #0f172a;
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    box-shadow: 0 20px 50px -18px rgba(0, 0, 0, .6);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .3s ease, transform .3s ease
}

.cookie-consent.is-visible {
    opacity: 1;
    transform: translateY(0)
}

.cookie-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1180px;
    margin: 0 auto;
    padding: 16px 22px
}

.cookie-inner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #cbd5e1;
    flex: 1;
    min-width: 240px
}

.cookie-inner a {
    color: #ff9d4d;
    font-weight: 700;
    text-decoration: underline
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex: none
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: .15s
}

.cookie-accept {
    background: linear-gradient(135deg, #e11d24, #ff7a1a);
    color: #fff
}

.cookie-accept:hover {
    filter: brightness(1.08)
}

.cookie-reject {
    background: transparent;
    border-color: rgba(255, 255, 255, .25);
    color: #cbd5e1
}

.cookie-reject:hover {
    border-color: rgba(255, 255, 255, .5);
    color: #fff
}

@media (max-width:560px) {
    .cookie-actions {
        width: 100%
    }

    .cookie-btn {
        flex: 1
    }
}

/* Arama sayfası */
.search-page-form {
    display: flex;
    gap: 10px;
    max-width: 560px;
    margin-top: 22px;
    flex-wrap: wrap
}

.search-page-form input {
    flex: 1;
    min-width: 200px;
    padding: 13px 16px;
    border: 1px solid var(--slate-300, #cbd5e1);
    border-radius: 10px;
    font-size: 15px;
    background: #fff
}

.search-page-form input:focus {
    outline: 0;
    border-color: #e11d24;
    box-shadow: 0 0 0 3px rgba(225, 29, 36, .12)
}

.search-page-form .btn-primary {
    flex: none
}

.search-empty {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 40px;
    justify-content: center;
    background: var(--slate-50, #f8fafc);
    border: 1px solid var(--slate-200, #e2e8f0);
    border-radius: 14px;
    color: var(--slate-600, #475569);
    font-size: 15px
}

.search-count {
    color: var(--slate-600, #475569);
    margin: 0 0 22px;
    font-size: 15px
}

.search-group {
    margin-bottom: 34px
}

.search-group-title {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 18px;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--slate-100, #f1f5f9)
}

.search-group-title i {
    width: 19px;
    height: 19px;
    color: #e11d24
}

.search-group-title span {
    background: #e11d24;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 999px;
    padding: 1px 9px;
    margin-left: 2px
}

.search-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.search-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    border: 1px solid var(--slate-200, #e2e8f0);
    border-radius: 12px;
    background: #fff;
    transition: .15s
}

.search-item:hover {
    border-color: #e11d24;
    box-shadow: 0 10px 26px -16px rgba(225, 29, 36, .5);
    transform: translateY(-1px)
}

.search-thumb {
    flex: none;
    width: 64px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--slate-100, #f1f5f9)
}

.search-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.search-thumb-ic i {
    width: 22px;
    height: 22px;
    color: var(--slate-400, #94a3b8)
}

.search-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px
}

.search-body strong {
    font-size: 15px;
    color: var(--slate-900, #0f172a)
}

.search-body small {
    font-size: 13px;
    color: var(--slate-500, #64748b);
    line-height: 1.5
}

.search-go {
    flex: none;
    width: 18px;
    height: 18px;
    color: var(--slate-400, #94a3b8)
}

.search-item:hover .search-go {
    color: #e11d24
}

/* Ürün detay */
.crumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--slate-500, #64748b);
    flex-wrap: wrap
}

.crumbs a {
    color: var(--slate-500, #64748b)
}

.crumbs a:hover {
    color: #e11d24
}

.crumbs strong {
    color: var(--slate-800, #1e293b)
}

.page-hero.compact {
    padding-top: 26px;
    padding-bottom: 26px
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start
}

.pd-main {
    border: 1px solid var(--slate-200, #e2e8f0);
    border-radius: 16px;
    overflow: hidden;
    background: var(--slate-50, #f8fafc);
    aspect-ratio: 4 / 3
}

.pd-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.pd-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap
}

.pd-thumb {
    width: 82px;
    height: 62px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--slate-200, #e2e8f0);
    background: #fff;
    padding: 0;
    cursor: pointer;
    transition: .15s
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.pd-thumb.is-active,
.pd-thumb:hover {
    border-color: #e11d24
}

.pd-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap
}

.pd-info h1 {
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1.15;
    margin: 0 0 10px;
    color: var(--slate-900, #0f172a)
}

.pd-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--slate-500, #64748b);
    margin-bottom: 16px
}

.pd-cat i {
    width: 15px;
    height: 15px
}

.pd-summary {
    color: var(--slate-600, #475569);
    margin-bottom: 22px
}

.pd-specs-title {
    font-family: var(--font-display);
    font-size: 16px;
    margin: 0 0 12px;
    color: var(--slate-900, #0f172a)
}

.pd-specs {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    display: grid;
    gap: 8px
}

.pd-specs li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    color: var(--slate-700, #334155)
}

.pd-specs li i {
    width: 16px;
    height: 16px;
    color: #16a34a;
    flex: none
}

.pd-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.pd-related {
    margin-top: 56px
}

.pd-related .section-heading {
    font-family: var(--font-display);
    font-size: 22px;
    margin: 0 0 22px;
    color: var(--slate-900, #0f172a)
}

@media (max-width:820px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 26px
    }

    .pd-info h1 {
        font-size: 25px
    }
}



.step-row h3 {
    font-family: var(--font-display);
    font-size: 17px;
    margin: 0 0 6px;
    color: var(--slate-900)
}

.step-row p {
    margin: 0;
    color: var(--slate-500);
    font-size: 14px;
    line-height: 1.7
}

/* Karşılaştırma satırı */
.comparison-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    background: var(--slate-100);
    margin-bottom: 10px;
    font-size: 13px
}

.comparison-row .lbl {
    color: var(--slate-600);
    font-weight: 700
}

.comparison-row .old {
    color: var(--slate-400);
    text-align: right
}

.comparison-row strong {
    color: var(--green);
    text-align: right;
    font-family: var(--font-display)
}

.pill-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px
}

.pill-row button {
    border: 1px solid var(--slate-200);
    background: var(--slate-100);
    color: var(--slate-600);
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    font-family: var(--font-display);
    transition: .2s
}

.pill-row button.active {
    background: var(--slate-950);
    color: #fff;
    border-color: var(--slate-950)
}

/* SSS akordeon */
.faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 12px
}

.faq-item {
    border: 1px solid var(--slate-200);
    border-radius: 10px;
    background: var(--white);
    overflow: hidden
}

.faq-q {
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    padding: 18px 20px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--slate-900);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    cursor: pointer
}

.faq-q svg {
    flex: none;
    width: 18px;
    height: 18px;
    color: var(--red);
    transition: transform .3s
}

.faq-item.open .faq-q svg {
    transform: rotate(180deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
}

.faq-item.open .faq-a {
    max-height: 360px
}

.faq-a p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--slate-500);
    font-size: 14px;
    line-height: 1.7
}

/* CTA bandı */
.cta-banner {
    position: relative;
    overflow: hidden;
    background: var(--slate-950);
    border-radius: 16px;
    padding: 48px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap
}

.cta-banner::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(225 29 36 / .35), transparent 70%)
}

.cta-banner .cta-text {
    position: relative;
    z-index: 1;
    max-width: 620px
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    margin: 10px 0 10px
}

.cta-banner p {
    color: var(--slate-400);
    margin: 0;
    line-height: 1.7
}

.cta-banner .cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

/* Makale kartı alt kısmı (blog) */
.article-card .article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px 22px
}

.article-card .share-row {
    display: flex;
    gap: 10px;
    color: var(--slate-300)
}

.article-card .share-row svg {
    width: 16px;
    height: 16px
}

.link-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: var(--slate-900);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    font-weight: 800;
    color: var(--slate-900);
    text-decoration: none;
    transition: color .2s
}

.link-button:hover {
    color: var(--red)
}

.link-button svg {
    width: 15px;
    height: 15px
}

/* Scroll reveal animasyonu */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0)
}

/* Responsive: alt sayfa bileşenleri */
@media(max-width:1100px) {

    .layout-8-4,
    .coverage-block,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .calculator,
    .side-panel {
        position: static
    }

    /* Ürünler sayfasında hesaplayıcıyı mobilde üste al */

    .capability-strip {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:640px) {

    .capability-strip,
    .button-grid,
    .result-grid,
    .office-meta,
    .coverage-stats {
        grid-template-columns: 1fr
    }

    .cta-banner {
        padding: 32px 24px
    }

    .comparison-row {
        grid-template-columns: 1fr
    }

    .comparison-row .old,
    .comparison-row strong {
        text-align: left
    }
}

/* Zengin metin (TinyMCE) çıktısı */
.rich-content {
    color: var(--slate-600);
    font-size: 15px;
    line-height: 1.8
}

.rich-content p {
    margin: 0 0 14px
}

.rich-content h2,
.rich-content h3,
.rich-content h4 {
    font-family: var(--font-display);
    color: var(--slate-900);
    margin: 22px 0 10px;
    line-height: 1.3
}

.rich-content ul,
.rich-content ol {
    margin: 0 0 14px;
    padding-left: 22px
}

.rich-content li {
    margin-bottom: 6px
}

.rich-content a {
    color: var(--red);
    text-decoration: underline
}

.rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0
}

.rich-content blockquote {
    margin: 16px 0;
    padding: 12px 18px;
    border-left: 3px solid var(--red);
    background: var(--soft);
    color: var(--slate-700)
}

.rich-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0
}

.rich-content th,
.rich-content td {
    border: 1px solid var(--slate-200);
    padding: 8px 12px;
    text-align: left
}

/* Footer sosyal medya */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgb(255 255 255 / .08);
    padding: 0
}

.footer-social a:hover {
    background: var(--red)
}

.footer-social svg {
    width: 17px;
    height: 17px
}

/* Dil değiştirici (üst bar) */
a.utility-language {
    text-decoration: none;
    cursor: pointer
}
/* ===== Referans Anasayfa Bölümleri ===== */

/* Shortcut strip */
.shortcut-strip {
    background: var(--slate-900);
    padding: 18px 0;
}
.shortcut-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.shortcut-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: rgb(255 255 255 / .05);
    border: 1px solid rgb(255 255 255 / .08);
    border-radius: 10px;
    padding: 18px 20px;
    color: #fff;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
    transition: .25s ease;
}
.shortcut-card:hover {
    background: rgb(255 255 255 / .1);
    border-color: rgb(255 255 255 / .18);
    transform: translateY(-2px);
}
.shortcut-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.shortcut-title {
    font-weight: 700;
    font-size: 15px;
}
.shortcut-note {
    font-size: 12px;
    color: var(--slate-400);
}
.shortcut-arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--red);
    position: relative;
    flex: 0 0 auto;
}
.shortcut-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translate(-60%, -50%) rotate(45deg);
}
@media (max-width: 900px) {
    .shortcut-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .shortcut-inner { grid-template-columns: 1fr; }
}

/* Why us */
.why-section {
    background: #fff;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.why-card {
    display: flex;
    gap: 18px;
    padding: 28px;
    background: var(--slate-50);
    border: 1px solid rgb(226 232 240 / .8);
    border-radius: 12px;
    transition: .25s ease;
}
.why-card:hover {
    box-shadow: 0 12px 30px rgba(2,6,23,.06);
    transform: translateY(-3px);
}
.why-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.why-card p {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.65;
    margin: 0;
}
@media (max-width: 760px) {
    .why-grid { grid-template-columns: 1fr; }
}

/* Home products with showcase */
.home-products {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 28px;
    align-items: start;
}
.showcase-card {
    background: var(--slate-900);
    color: #fff;
    border-radius: 14px;
    padding: 32px;
    height: 100%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.showcase-card .badge {
    background: var(--red);
    color: #fff;
    margin-bottom: 18px;
}
.showcase-card h3 {
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 14px;
}
.showcase-card p {
    font-size: 14px;
    color: var(--slate-400);
    line-height: 1.7;
    margin-bottom: auto;
}
.showcase-card .btn-primary {
    margin-top: 24px;
}
@media (max-width: 1100px) {
    .home-products { grid-template-columns: 1fr; }
    .showcase-card { min-height: auto; }
}
@media (max-width: 760px) {
    #productGrid { grid-template-columns: 1fr; }
}

/* Capability strip */
.capability-strip.light {
    background: var(--slate-100);
    border-top: 1px solid rgb(226 232 240 / .8);
    border-bottom: 1px solid rgb(226 232 240 / .8);
    padding: 34px 0;
}
.capability-strip.light .capability-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.capability-strip.light .capability-item strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1;
    margin-bottom: 8px;
}
.capability-strip.light .capability-item span {
    font-size: 13px;
    color: var(--slate-600);
}
@media (max-width: 760px) {
    .capability-strip.light .capability-inner { grid-template-columns: repeat(2, 1fr); }
}

/* Process section */
.process-section {
    background: #fff;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.process-card {
    background: var(--slate-50);
    border: 1px solid rgb(226 232 240 / .8);
    border-radius: 12px;
    overflow: hidden;
    transition: .25s ease;
}
.process-card:hover {
    box-shadow: 0 12px 30px rgba(2,6,23,.06);
    transform: translateY(-3px);
}
.process-image {
    position: relative;
    aspect-ratio: 16/10;
    margin: 0;
    background: var(--slate-200);
    overflow: hidden;
}
.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.process-no {
    position: absolute;
    left: 16px;
    bottom: 16px;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    background: var(--red);
    padding: 6px 10px;
    border-radius: 6px;
}
.process-body {
    padding: 22px;
}
.process-body h3 {
    font-size: 18px;
    margin: 14px 0 8px;
}
.process-body p {
    font-size: 13px;
    color: var(--slate-600);
    line-height: 1.65;
    margin: 0;
}
@media (max-width: 900px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .process-grid { grid-template-columns: 1fr; }
}

/* Services section */
.services-section {
    background: var(--slate-50);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.service-card {
    background: #fff;
    border: 1px solid rgb(226 232 240 / .8);
    border-radius: 12px;
    overflow: hidden;
    transition: .25s ease;
}
.service-card:hover {
    box-shadow: 0 14px 34px rgba(2,6,23,.07);
    transform: translateY(-4px);
}
.service-image {
    position: relative;
    aspect-ratio: 4/3;
    margin: 0;
    background: var(--slate-100);
    overflow: hidden;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease;
}
.service-card:hover .service-image img {
    transform: scale(1.05);
}
.service-tag {
    position: absolute;
    right: 12px;
    top: 12px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: var(--slate-900);
    padding: 6px 10px;
    border-radius: 20px;
}
.service-body {
    padding: 22px;
}
.service-body h3 {
    font-size: 17px;
    margin: 14px 0 8px;
}
.service-body p {
    font-size: 13px;
    color: var(--slate-600);
    line-height: 1.6;
    margin: 0 0 16px;
}
.service-body .link-button {
    font-size: 13px;
}
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* Ferforje showcase */
.ferforje-wrap {
    background: #fff;
}
.ferforje-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}
.ferforje-head .section-title {
    margin-bottom: 0;
}
.ferforje-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.ferforje-card {
    background: var(--slate-50);
    border: 1px solid rgb(226 232 240 / .8);
    border-radius: 12px;
    overflow: hidden;
    transition: .25s ease;
}
.ferforje-card:hover {
    box-shadow: 0 12px 30px rgba(2,6,23,.06);
}
.ferforje-image {
    aspect-ratio: 4/5;
    margin: 0;
    background: var(--slate-100);
    overflow: hidden;
    position: relative;
}
.ferforje-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease;
}
.ferforje-card:hover .ferforje-image img {
    transform: scale(1.05);
}
.ferforje-ph {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--slate-500);
}
.ferforje-ph-icon svg {
    width: 40px;
    height: 40px;
    opacity: .5;
}
.ferforje-ph-label {
    font-size: 13px;
}
.ferforje-code {
    position: absolute;
    left: 12px;
    top: 12px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: var(--slate-900);
    padding: 5px 8px;
    border-radius: 4px;
}
.ferforje-body {
    padding: 20px;
}
.ferforje-body h3 {
    font-size: 16px;
    margin-bottom: 8px;
}
.ferforje-body p {
    font-size: 13px;
    color: var(--slate-600);
    line-height: 1.6;
    margin: 0 0 16px;
}
.ferforje-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
}
.ferforje-foot .mono {
    color: var(--slate-500);
}
@media (max-width: 1000px) {
    .ferforje-grid { grid-template-columns: repeat(2, 1fr); }
    .ferforje-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
    .ferforje-grid { grid-template-columns: 1fr; }
}

/* Gallery section */
.gallery-section {
    background: var(--slate-50);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
    background: var(--slate-200);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(0deg, rgba(2,6,23,.8), transparent);
}
@media (max-width: 760px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* Sectors section */
.sectors-section {
    background: var(--slate-50);
}
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.sector-card {
    background: #fff;
    border: 1px solid rgb(226 232 240 / .8);
    border-radius: 12px;
    padding: 24px;
    transition: .25s ease;
}
.sector-card:hover {
    box-shadow: 0 10px 26px rgba(2,6,23,.06);
    transform: translateY(-3px);
}
.sector-card h3 {
    font-size: 16px;
    margin: 16px 0 8px;
}
.sector-card p {
    font-size: 13px;
    color: var(--slate-600);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 1000px) {
    .sectors-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
    .sectors-grid { grid-template-columns: 1fr; }
}

/* CTA banner override */
.cta-banner .cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.cta-banner .cta-actions {
    display: flex;
    gap: 14px;
    flex: 0 0 auto;
}
@media (max-width: 760px) {
    .cta-banner .cta-inner { flex-direction: column; align-items: flex-start; }
    .cta-banner .cta-actions { width: 100%; flex-direction: column; }
}

/* ===== Quote form loading spinner ===== */
.btn-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgb(255 255 255 / .3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-spin .8s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}
@keyframes btn-spin {
    to { transform: rotate(360deg); }
}
.quote-submit:disabled {
    opacity: .7;
    cursor: not-allowed;
}

/* ===== Services page refinements ===== */
.page-hero-services {
    padding: 150px 0 70px;
    background: var(--soft);
    border-bottom: 1px solid var(--slate-200);
    text-align: center;
}
.page-hero-services .hero-actions {
    justify-content: center;
    margin-top: 28px;
}

@media (max-width: 860px) {
    .page-hero-services {
        padding: 120px 0 50px;
    }
    .page-hero-services h1 {
        font-size: clamp(28px, 6vw, 42px);
    }
}

@media (max-width: 560px) {
    .page-hero-services {
        padding: 110px 0 40px;
    }
    .page-hero-services .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .page-hero-services .hero-actions .btn-primary,
    .page-hero-services .hero-actions .btn-soft {
        width: 100%;
        justify-content: center;
    }
}

/* ===== Genel mobil uyumluluk iyileştirmeleri ===== */
@media (max-width: 640px) {
    /* Taşma ve kırılma kontrolleri */
    body {
        overflow-x: hidden;
    }
    .grid > *,
    .layout-8-4 > *,
    .home-products > *,
    .services-grid > *,
    .process-grid > *,
    .ferforje-grid > *,
    .sectors-grid > *,
    .gallery-grid > *,
    .why-grid > *,
    .band-inner > *,
    .capability-inner > *,
    .contact-grid > *,
    .footer-grid > * {
        min-width: 0;
    }
    .mono, .badge-row, .card-footer, .product-tab, .button-grid .calc-button {
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .rich-content table {
        display: block;
        width: 100%;
        overflow-x: auto;
    }

    /* Tipografi */
    .section-title h2,
    .page-hero h1 {
        font-size: clamp(28px, 7vw, 40px);
        letter-spacing: -.02em;
    }
    .section-title p,
    .page-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    /* Hero alanları */
    .page-hero {
        padding: 110px 0 50px;
    }
    .page-hero .kicker {
        font-size: 11px;
    }

    /* Hero butonları dikey, tam genişlik */
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-soft,
    .hero-actions .btn-light,
    .hero-actions .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    /* Section başlıkları */
    .section-title {
        margin-bottom: 28px;
    }
    .section-title.left {
        text-align: left;
    }

    /* Mobil menü dokunma alanı */
    .mobile-menu a {
        padding: 14px 12px;
        font-size: 15px;
    }

    /* Küçük ekranda header kompakt */
    .header-inner {
        height: 58px;
    }
    .logo span {
        font-size: 20px;
    }

    /* Ana sayfa hero */
    .hero {
        min-height: 520px;
    }
    .hero h1 {
        font-size: clamp(32px, 10vw, 48px);
        line-height: 1;
    }
    .hero p {
        font-size: 15px;
        margin-bottom: 24px;
    }
    .hero-watermark {
        font-size: clamp(48px, 12vw, 76px);
    }
    .slider-controls {
        bottom: 20px;
    }
    .slider-controls button {
        width: 32px;
    }

    /* Kapasite / istatistik bantları */
    .stat-band .n {
        font-size: 32px;
    }
    .stat-band .l {
        font-size: 12px;
    }

    /* Kart içerikleri */
    .service-body,
    .process-body {
        padding: 18px;
    }
    .service-body h3,
    .process-body h3 {
        font-size: 17px;
    }

    /* Teklif modalı */
    .quote-dialog {
        padding: 26px 18px;
        border-radius: 12px;
    }
    .quote-head h3 {
        font-size: 22px;
    }
    .quote-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .quote-form .field {
        margin-bottom: 12px;
    }
    .quote-form button[type="submit"] {
        width: 100%;
    }

    /* Footer */
    .footer-grid {
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* Tablo kaydırma */
    .table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .table-wrap table {
        min-width: 640px;
    }

    /* İletişim ofis kartı */
    .office-meta {
        flex-direction: column;
        gap: 8px;
    }

    /* CTA banner */
    .cta-banner h2 {
        font-size: 24px;
    }
    .cta-banner .cta-actions {
        width: 100%;
    }
    .cta-banner .cta-actions .btn-light,
    .cta-banner .cta-actions .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    /* Ürünler sayfası */

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-aside {
        position: static;
    }

    /* Hakkımızda / hikaye */
    .story-grid,
    .info-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Kapsama / ofis */
    .coverage-block,
    .office-card {
        grid-template-columns: 1fr;
    }

    /* Form satırları */
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    /* Admin tablo benzeri */
    .table-wrap table {
        min-width: 560px;
    }

    /* Hakkımızda */
    .timeline {
        padding-left: 24px;
        gap: 20px;
    }
    .timeline-card::before {
        left: -31px;
        width: 14px;
        height: 14px;
    }
    .timeline-card h3 {
        font-size: 17px;
    }
    .coverage-content {
        padding: 24px;
    }
    .coverage-stat {
        padding: 20px;
    }
    .region-pills {
        flex-wrap: wrap;
        padding: 24px;
        justify-content: flex-start
    }
    .stats-card {
        padding: 20px;
    }

    /* İletişim */
    .office-card {
        padding: 20px;
    }
    .office-card h3 {
        font-size: 17px;
    }
    .info-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-grid .card {
        padding: 20px;
    }
    .contact-grid form button[type="submit"] {
        width: 100%;
    }

    /* Blog */
    .article-card .body {
        padding: 18px;
    }
    .article-card .article-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 0 18px 18px;
    }
    .blog-main .blog-lead {
        font-size: 16px;
    }
    .side-posts a {
        gap: 10px;
    }
    .side-thumb {
        width: 56px;
        height: 42px;
    }
    .side-thumb img {
        width: 56px;
        height: 42px;
    }

    /* Tarama / Kesim */
    .step-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .number-box {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    .pill-row {
        flex-wrap: wrap;
    }
    .comparison-row {
        flex-wrap: wrap;
        gap: 6px 16px;
    }

    /* Ürün detay */
    .page-hero.compact {
        padding: 18px 0;
    }
    .crumbs {
        font-size: 12px;
    }
    .pd-info h1 {
        font-size: 22px;
    }
    .pd-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .pd-actions .btn-primary,
    .pd-actions .btn-soft {
        width: 100%;
        justify-content: center;
    }
    .pd-thumbs {
        gap: 8px;
    }
    .pd-thumb {
        width: 64px;
        height: 48px;
    }
    .pd-thumb img {
        width: 64px;
        height: 48px;
    }

    /* Footer genel */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Anasayfa blokları */
    .why-card {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }
    .why-card h3 {
        font-size: 16px;
    }
    .showcase-card {
        padding: 24px;
        min-height: auto;
    }
    .showcase-card h3 {
        font-size: 20px;
    }
    .shortcut-card {
        padding: 14px 16px;
    }
    .shortcut-title {
        font-size: 14px;
    }
    .process-body {
        padding: 18px;
    }
    .process-body h3 {
        font-size: 16px;
    }
    .service-body {
        padding: 18px;
    }
    .service-body h3 {
        font-size: 16px;
    }
    .sector-card {
        padding: 18px;
    }
    .gallery-item {
        border-radius: 8px;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(100% - 24px, 1280px);
    }
    .section {
        padding: 52px 0;
    }
    .page-hero {
        padding: 100px 0 40px;
    }
    .section-title h2,
    .page-hero h1 {
        font-size: clamp(26px, 8vw, 34px);
    }
}

/* ===== Modern İletişim Sayfası ===== */

.contact-info-section {
    background: var(--soft);
    padding-bottom: 0;
}

.contact-info-section .section-title {
    text-align: center;
    margin-bottom: 34px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: -58px;
    position: relative;
    z-index: 2;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgb(15 23 42 / .12);
    border-color: rgb(225 29 36 / .25);
}

.contact-info-icon {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(225, 29, 36, .08);
    color: var(--red);
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--slate-500);
    margin-bottom: 6px;
}

.contact-info-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.45;
    word-break: break-word;
    transition: color .15s ease;
}

.contact-info-value:hover {
    color: var(--red);
}

.contact-form-section {
    padding-top: 100px;
    padding-bottom: 90px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 32px;
    align-items: start;
}

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 18px;
    padding: 38px;
    box-shadow: var(--shadow-md);
}

.contact-form-head {
    margin-bottom: 26px;
}

.contact-form-head .kicker {
    margin-bottom: 8px;
}

.contact-form-head h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 34px);
    color: var(--slate-900);
    margin: 0 0 8px;
}

.contact-form-head p {
    color: var(--slate-600);
    margin: 0;
    font-size: 15px;
}

.contact-alert {
    margin-bottom: 22px;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.contact-field label {
    font-size: 13px;
    font-weight: 700;
    color: var(--slate-700);
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--slate-200);
    border-radius: 10px;
    background: var(--soft);
    color: var(--slate-900);
    font-size: 14px;
    outline: none;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: var(--slate-400);
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(225, 29, 36, .08);
}

.contact-field textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-submit {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 15px;
    margin-top: 6px;
}

.contact-submit i {
    width: 18px;
    height: 18px;
}

.contact-side {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: sticky;
    top: 110px;
}

.contact-map-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow-sm);
}

.contact-map-card iframe {
    display: block;
    border-radius: 12px;
    filter: grayscale(20%) contrast(1.05);
}

.contact-support-card {
    background: var(--slate-900);
    color: var(--white);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
}

.contact-support-card .icon-square {
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, .12);
    color: var(--white);
    width: 56px;
    height: 56px;
}

.contact-support-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    margin: 0 0 8px;
}

.contact-support-card p {
    color: var(--slate-300);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 18px;
}

.contact-support-card .btn-soft {
    width: 100%;
    justify-content: center;
    background: var(--white);
    color: var(--slate-900);
}

.contact-support-card .btn-soft:hover {
    background: var(--slate-100);
}

@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .contact-side {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        margin-bottom: -40px;
    }
    .contact-form-section {
        padding-top: 72px;
    }
    .contact-form-card {
        padding: 26px;
    }
    .contact-form-row,
    .contact-side {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .contact-info-card {
        padding: 18px;
    }
    .contact-form-card {
        padding: 20px;
        border-radius: 14px;
    }
    .contact-form-head h2 {
        font-size: 24px;
    }
}


/* =========================================
   ÜRÜNLER SAYFASI - YENİDEN YAZIM
   ========================================= */

/* Layout */
.products-page-wrap .layout-8-4 {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    gap: 40px;
    align-items: start;
}

/* Tabs */
.product-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin: 0 0 28px;
    padding: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border: 1px solid rgb(226 232 240 / .7);
    border-radius: 999px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.product-tabs::-webkit-scrollbar {
    display: none;
}

.product-tab {
    flex: 0 0 auto;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--slate-500);
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    padding: 10px 16px;
    cursor: pointer;
    transition: background .15s, color .15s, box-shadow .15s;
    white-space: nowrap;
}

.product-tab:hover {
    color: var(--brand, #c0392b);
}

.product-tab.active {
    background: #101828;
    color: #fff;
    box-shadow: 0 6px 16px rgba(16, 24, 40, .18);
}

/* Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

/* Product card */
.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 580px;
    padding: 24px;
    overflow: hidden;
}

.product-card__body {
    display: flex;
    flex-direction: column;
}

.product-card h3 {
    margin: 16px 0 10px;
    font-family: var(--font-display);
    color: var(--slate-900);
    line-height: 1.15;
    font-size: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card h3 a {
    color: inherit;
    text-decoration: none;
}

.product-card h3 a:hover {
    color: var(--brand, #c0392b);
}

.product-card p {
    color: var(--slate-500);
    font-size: 12px;
    line-height: 1.7;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card figure {
    margin: 22px 0 0;
    aspect-ratio: 4 / 3;
    border-radius: 6px;
    border: 1px solid rgb(226 232 240 / .7);
    background: var(--slate-100);
    overflow: hidden;
}

.product-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.product-card:hover figure img {
    transform: scale(1.05);
}

.product-card .card-footer {
    margin-top: 16px;
}

/* Calculator */
.calculator {
    position: sticky;
    top: 120px;
    padding: 26px;
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.calculator h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    margin: 8px 0 6px;
    color: var(--slate-900);
}

.calculator__hint {
    color: var(--slate-500);
    font-size: 12px;
    line-height: 1.7;
    margin: 0 0 18px;
}

.calculator .button-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.calculator .button-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.calculator .calc-button {
    border: 1px solid var(--slate-200);
    background: var(--slate-100);
    color: var(--slate-700);
    border-radius: 8px;
    padding: 11px 6px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: .2s;
    font-family: var(--font-display);
}

.calculator .calc-button:hover {
    border-color: var(--slate-300);
}

.calculator .calc-button.active.red {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.calculator .calc-button.active.dark {
    background: var(--slate-950);
    border-color: var(--slate-950);
    color: #fff;
}

.calculator .result-box {
    background: var(--slate-100);
    border: 1px solid var(--slate-200);
    border-radius: 10px;
    padding: 18px;
    margin-top: 18px;
}

.calculator .result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 14px;
}

.calculator .result-grid > div span {
    display: block;
    font-size: 11px;
    color: var(--slate-500);
    margin-bottom: 4px;
}

.calculator .result-grid > div strong {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--slate-900);
    line-height: 1;
}

.calculator .result-grid > div strong small {
    font-size: 12px;
    color: var(--slate-500);
    font-weight: 700;
}

.calculator .result-note {
    font-size: 12px;
    color: var(--slate-600);
    margin-top: 12px;
    line-height: 1.7;
}

.calculator .result-note strong {
    color: var(--slate-900);
}

.calculator .text-orange {
    color: var(--orange);
}

.calculator .text-green {
    color: var(--green);
}

/* Responsive */
@media (max-width: 1100px) {
    .products-page-wrap .layout-8-4 {
        grid-template-columns: 1fr;
    }
    .products-page-wrap .calculator {
        position: static;
        order: -1;
        width: 100%;
        margin-bottom: 28px;
    }
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .product-card {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .product-tabs {
        gap: 6px;
        margin-bottom: 18px;
        padding: 4px;
    }
    .product-tab {
        padding: 8px 12px;
        font-size: 11px;
    }
    .product-card {
        padding: 16px;
    }
    .product-card h3 {
        font-size: 18px;
    }
    .product-card p {
        -webkit-line-clamp: 2;
    }
    .calculator {
        padding: 20px;
    }
    .calculator h3 {
        font-size: 18px;
    }
    .calculator .button-grid,
    .calculator .button-grid.two,
    .calculator .result-grid {
        grid-template-columns: 1fr;
    }
    .calculator .result-grid > div strong {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .product-card {
        padding: 14px;
    }
    .product-card figure {
        margin-top: 16px;
    }
    .product-tab {
        padding: 7px 10px;
        font-size: 10px;
    }
    .product-card .card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

/* Tarama Kesim sayfası - malzeme analiz panelini ortala */
.scan-calculator-wrapper {
    max-width: 420px;
    margin: 0 auto;
}
