:root {
    --bg: #0a0a0a;
    --bg-elevated: #141414;
    --yellow: #f5d000;
    --yellow-hover: #ffe433;
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.72);
    --border: rgba(255, 255, 255, 0.2);
    --overlay: rgba(0, 0, 0, 0.62);
    --font: "Montserrat", system-ui, sans-serif;
    --radius: 10px;
    --header-h: 72px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

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

/* Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1rem 1.25rem;
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
}

.is-page .site-header {
    position: sticky;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.brand__logo {
    width: auto;
    height: 40px;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
    /* Siyah-beyaz logo koyu header üzerinde okunaklı olsun */
    filter: brightness(0) invert(1);
}

.brand__text {
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    flex: 1;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.site-nav a {
    opacity: 0.88;
    padding: 0.35rem 0;
    border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.is-active {
    opacity: 1;
    border-bottom-color: var(--yellow);
}

.nav-toggle {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: transparent;
    cursor: pointer;
    touch-action: manipulation;
    position: relative;
}

.nav-toggle::before,
.nav-toggle::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    height: 2px;
    background: #fff;
    transition: transform 0.2s;
}

.nav-toggle::before {
    top: 16px;
    box-shadow: 0 6px 0 #fff;
}

.nav-toggle::after {
    bottom: 16px;
    opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
    top: 21px;
    box-shadow: none;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
    opacity: 1;
    bottom: 21px;
    transform: rotate(-45deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.35rem;
    border-radius: var(--radius);
    font-family: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    touch-action: manipulation;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn__icon {
    flex-shrink: 0;
}

.btn--primary {
    background: var(--yellow);
    color: #0a0a0a;
}

.btn--primary:hover {
    background: var(--yellow-hover);
}

.btn--outline {
    background: transparent;
    border-color: var(--border);
    color: var(--text);
}

.btn--outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.btn--cta {
    background: var(--yellow);
    color: #0a0a0a;
}

.btn--sm {
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0;
}

/* Mobil: sabit alt iletişim (tüm sayfalar) — tema korunur */
.mobile-action-dock {
    display: none;
}

/* Hero — Remta servis fotoğrafı; sol koyu alan metin için, tek background bildirimi */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    background-color: #050505;
    background-image:
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.22) 34%,
            rgba(0, 0, 0, 0.06) 50%,
            transparent 62%
        ),
        url("../assets/hero-remta.png");
    background-size: cover;
    /* Fotoğrafın ana nesnesi sağda; biraz sağa kaydırıp soldaki “boş” hissi azaltır */
    background-position: 44% center;
    background-repeat: no-repeat;
    -webkit-font-smoothing: antialiased;
}

/* Fotoğraftaki sağ alt köşe süs yıldızını görsel olarak kapatır */
.hero__star-mask {
    position: absolute;
    right: 0;
    bottom: 0;
    width: clamp(64px, 16vw, 180px);
    height: clamp(52px, 13vw, 150px);
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(
        ellipse 130% 130% at 100% 100%,
        #0c0b0a 0%,
        rgba(14, 12, 10, 0.92) 28%,
        rgba(22, 18, 15, 0.45) 62%,
        transparent 82%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(1.15rem, 2.6vh, 2rem);
    min-height: inherit;
    /* Okunabilir metin sütunu; geniş ekranda ortada bırakmak yerine sola yaslanır */
    max-width: min(720px, 100%);
    width: 100%;
    margin-left: 0;
    margin-right: auto;
    /* Üst: header + rozet arası nefes; blok viewport’ta dikey ortalanır (yukarı yapışma hissi gider) */
    padding-top: calc(var(--header-h) + clamp(1.35rem, 4.5vh, 2.75rem));
    padding-bottom: clamp(5.25rem, 11vh, 7rem);
    padding-inline: clamp(1.25rem, 5vw, 3.25rem);
    box-sizing: border-box;
    text-shadow: none;
}

.badge {
    display: inline-block;
    background: var(--yellow);
    color: #0a0a0a;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.45rem 0.8rem;
    border-radius: 4px;
    margin: 0;
    width: fit-content;
}

.hero__title {
    margin: 0;
    font-size: clamp(2.125rem, 5.1vw, 3.4rem);
    font-weight: 700;
    line-height: 1.14;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: none;
}

.hero__title span.highlight {
    display: inline-block;
    background: var(--yellow);
    color: #0a0a0a;
    padding: 0.1em 0.35em 0.05em;
    border-radius: 6px;
    margin-left: 0.15em;
}

.hero__subtitle {
    font-size: clamp(1.06rem, 2.55vw, 1.49rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
    color: var(--text);
}

.hero__lead {
    max-width: 560px;
    margin: 0;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.72;
}

.hero__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.15rem 1.85rem;
    margin-top: clamp(1rem, 2.4vh, 1.75rem);
    padding-top: clamp(1.55rem, 3.6vh, 2.45rem);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 900px;
}

.feature {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
}

.feature__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: grid;
    place-items: center;
    color: #c0c0c0;
}

.feature__icon svg {
    width: 20px;
    height: 20px;
}

.feature__title {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
}

.feature__desc {
    margin: 0.15rem 0 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero__scroll {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: fit-content;
    z-index: 4;
    color: rgba(255, 255, 255, 0.65);
    animation: hero-scroll-nudge 2.2s ease-in-out infinite;
}

@keyframes hero-scroll-nudge {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(7px);
    }
}

/* Ana sayfa — hero sonrası */
.home {
    background: var(--bg);
}

.why-yaman {
    position: relative;
    padding: clamp(2.75rem, 6vw, 4.25rem) 1.25rem clamp(3rem, 7vw, 5rem);
    background:
        linear-gradient(180deg, rgba(245, 208, 0, 0.07) 0%, transparent 42%),
        radial-gradient(ellipse 85% 55% at 50% 0%, rgba(245, 208, 0, 0.06), transparent 55%),
        linear-gradient(180deg, #0d0d0d 0%, var(--bg) 28%);
    border-top: 1px solid rgba(245, 208, 0, 0.14);
}

.why-yaman__inner {
    max-width: 1120px;
    margin: 0 auto;
}

.why-yaman__head {
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
    max-width: none;
}

.why-yaman__kicker {
    margin: 0 auto 0.65rem;
    width: fit-content;
    max-width: 100%;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 208, 0, 0.88);
}

.why-yaman__title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.55rem 0.85rem;
    margin: 0 0 1.35rem;
    font-size: clamp(1.45rem, 3.2vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--text);
}

.why-yaman__title-main {
    color: var(--text);
}

.why-yaman__title-sep {
    width: 1px;
    height: 1.25em;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(245, 208, 0, 0.55) 20%,
        rgba(245, 208, 0, 0.55) 80%,
        transparent
    );
    flex-shrink: 0;
}

.why-yaman__title-sub {
    color: var(--yellow);
    font-weight: 700;
    font-size: 0.88em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.why-yaman__lead {
    margin: 0 auto;
    max-width: min(52rem, 100%);
    width: 100%;
    font-size: clamp(0.98rem, 1.85vw, 1.06rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.68);
}

.why-yaman__lead strong {
    color: rgba(255, 255, 255, 0.94);
    font-weight: 600;
}

.why-yaman__lead-accent {
    display: inline;
    margin-left: 0.2em;
    color: var(--yellow);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.why-yaman__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 600px) {
    .why-yaman__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.1rem;
    }
}

@media (min-width: 960px) {
    .why-yaman__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.15rem;
    }
}

.why-card {
    position: relative;
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    padding: 1.35rem 1.2rem 1.45rem;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    overflow: hidden;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.why-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow), rgba(245, 208, 0, 0.15));
    opacity: 0.85;
    transform: scaleX(0.35);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.why-card:hover,
.why-card:focus-within {
    border-color: rgba(245, 208, 0, 0.28);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    transform: translateY(-3px);
}

.why-card:hover::before,
.why-card:focus-within::before {
    transform: scaleX(1);
}

.why-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 208, 0, 0.11);
    color: var(--yellow);
    flex-shrink: 0;
}

.why-card__title {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text);
}

.why-card__text {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.62;
    color: rgba(255, 255, 255, 0.58);
}

.why-yaman__strip {
    margin-top: clamp(2rem, 4.5vw, 2.75rem);
    padding: clamp(1.1rem, 2.5vw, 1.35rem) clamp(1rem, 3vw, 1.75rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem 1.5rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
}

@media (min-width: 640px) {
    .why-yaman__strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        text-align: center;
    }
}

.why-yaman__strip-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.25rem 0;
}

@media (min-width: 640px) {
    .why-yaman__strip-item {
        padding: 0.15rem 0.5rem;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .why-yaman__strip-item:last-child {
        border-right: 0;
    }
}

.why-yaman__strip-value {
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 800;
    letter-spacing: 0.03em;
    color: var(--yellow);
}

.why-yaman__strip-label {
    font-size: 0.8rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.52);
}

.why-yaman__cta {
    margin-top: clamp(1.75rem, 3.5vw, 2.25rem);
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
    .why-card:hover,
    .why-card:focus-within {
        transform: none;
    }

    .why-card::before {
        transition: none;
        transform: scaleX(1);
    }
}

/* Inner pages */
.page-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 4rem;
}

.page-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.page-lead {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.content-block {
    background: var(--bg-elevated);
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.content-block h2 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    color: var(--yellow);
}

.content-block p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.kvkk-page__back {
    margin-top: 2rem;
    margin-bottom: 0;
}

/* Hakkımızda */
.page-wrap.about-page {
    max-width: 920px;
}

.about-page__header {
    margin-bottom: 0.25rem;
}

.about-page__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 208, 0, 0.85);
}

.about-page__title {
    margin-bottom: 0.65rem;
}

.about-page__lead {
    margin-bottom: 2.25rem;
}

.about-section-title {
    margin: 0 0 0.85rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.02em;
}

.about-section-title--center {
    text-align: center;
    margin-bottom: 1.35rem;
}

.about-intro {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

@media (min-width: 720px) {
    .about-intro {
        grid-template-columns: minmax(0, 1fr) minmax(0, 240px);
        gap: 2rem;
    }
}

.about-intro__text p {
    margin: 0 0 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.98rem;
}

.about-intro__text p:last-child {
    margin-bottom: 0;
}

.about-stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.about-stats li {
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.about-stats__value {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--yellow);
    letter-spacing: 0.02em;
}

.about-stats__label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.45;
}

.about-pillars {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: grid;
    gap: 0.85rem;
    grid-template-columns: 1fr;
}

@media (min-width: 560px) {
    .about-pillars {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .about-pillars {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
    }
}

.about-pillar {
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 1.15rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-height: 100%;
}

.about-pillar__icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 208, 0, 0.12);
    color: var(--yellow);
    flex-shrink: 0;
}

.about-pillar__title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
}

.about-pillar__text {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.55;
}

.about-blocks {
    margin-bottom: 2.25rem;
}

.about-process {
    margin-bottom: 2.5rem;
}

.about-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

@media (min-width: 800px) {
    .about-steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.75rem;
    }
}

.about-step {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 1rem 1rem 1.1rem;
}

.about-step__num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    background: var(--yellow);
    color: #0a0a0a;
}

.about-step__body {
    min-width: 0;
}

.about-step__title {
    margin: 0 0 0.35rem;
    font-size: 0.92rem;
    font-weight: 700;
}

.about-step__body p {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
}

.about-cta {
    background: linear-gradient(135deg, rgba(245, 208, 0, 0.14) 0%, rgba(20, 20, 20, 0.98) 48%, var(--bg-elevated) 100%);
    border: 1px solid rgba(245, 208, 0, 0.22);
    border-radius: var(--radius);
    padding: 1.5rem 1.35rem 1.6rem;
    text-align: center;
}

.about-cta__text {
    margin: 0 0 1.1rem;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.55;
}

.about-cta__actions {
    justify-content: center;
    flex-wrap: wrap;
}

/* Hizmetlerimiz — kurumsal katalog düzeni */
.page-wrap.svc-page {
    max-width: 980px;
    padding-top: 2rem;
}

.svc-hero {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 800px) {
    .svc-hero {
        grid-template-columns: minmax(0, 1fr) minmax(0, 280px);
        gap: 2.5rem;
        align-items: start;
    }
}

.svc-hero__kicker {
    margin: 0 0 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.svc-hero__title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.65rem, 3.2vw, 2.15rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text);
}

.svc-hero__dek {
    margin: 0;
    max-width: 38rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.svc-hero__panel {
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 3px solid var(--yellow);
    border-radius: var(--radius);
    padding: 1.15rem 1.2rem 1.25rem;
}

.svc-hero__panel-label {
    margin: 0 0 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 208, 0, 0.9);
}

.svc-hero__panel-text {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.58);
}

.svc-promise {
    margin-bottom: 2.25rem;
}

.svc-promise__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1px;
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 720px) {
    .svc-promise__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 960px) {
    .svc-promise__list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.svc-promise__item {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 1rem 1rem 1.05rem;
    background: var(--bg-elevated);
    min-height: 100%;
}

.svc-promise__icon {
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: var(--yellow);
    opacity: 0.9;
}

.svc-promise__icon svg {
    display: block;
}

.svc-promise__text {
    font-size: 0.8rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.62);
}

.svc-split {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 780px) {
    .svc-split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

.svc-scope {
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 1.35rem 1.3rem 1.45rem;
}

.svc-scope--accent {
    border-color: rgba(245, 208, 0, 0.18);
    background: linear-gradient(160deg, rgba(245, 208, 0, 0.06) 0%, var(--bg-elevated) 55%);
}

.svc-h2 {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
}

.svc-scope__list {
    margin: 0;
    padding: 0 0 0 1.1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.svc-scope__list li {
    margin-bottom: 0.45rem;
}

.svc-scope__list li:last-child {
    margin-bottom: 0;
}

.svc-catalog {
    margin-bottom: 2.5rem;
}

.svc-catalog__head {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.svc-catalog__title {
    margin: 0 0 0.4rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
}

.svc-catalog__sub {
    margin: 0;
    max-width: 42rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.55;
}

.svc-empty {
    padding: 1.35rem 1.25rem;
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
}

.svc-empty p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.svc-empty a {
    color: var(--yellow);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.svc-empty a:hover {
    color: var(--yellow-hover);
}

.svc-rows {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-elevated);
}

.svc-row {
    display: grid;
    gap: 0.75rem 1rem;
    padding: 1.15rem 1.15rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    align-items: start;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
        "idx body"
        "act act";
}

@media (min-width: 640px) {
    .svc-row {
        grid-template-columns: 3rem minmax(0, 1fr) auto;
        grid-template-areas: "idx body act";
        align-items: center;
        gap: 1rem 1.25rem;
        padding: 1.1rem 1.35rem 1.15rem;
    }
}

.svc-row:last-child {
    border-bottom: 0;
}

.svc-row__index {
    grid-area: idx;
    font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.28);
    padding-top: 0.15rem;
}

.svc-row__body {
    grid-area: body;
    min-width: 0;
}

.svc-row__title {
    margin: 0 0 0.35rem;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}

.svc-row__desc {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
}

.svc-row__action {
    grid-area: act;
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--yellow);
    white-space: nowrap;
    transition: color 0.2s, gap 0.2s;
}

@media (min-width: 640px) {
    .svc-row__action {
        justify-self: end;
        padding-top: 0;
    }
}

.svc-row__action:hover {
    color: var(--yellow-hover);
    gap: 0.5rem;
}

.svc-row__action-arrow {
    font-size: 0.95rem;
    line-height: 1;
}

.svc-bar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem 1.35rem 1.55rem;
    background: #0e0e0e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

@media (min-width: 720px) {
    .svc-bar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
        padding: 1.45rem 1.6rem 1.5rem;
    }
}

.svc-bar__copy {
    min-width: 0;
}

.svc-bar__title {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.svc-bar__text {
    margin: 0;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    max-width: 28rem;
}

.svc-bar__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    flex-shrink: 0;
}

/* Sık görülen arızalar (liste + detay) */
.page-wrap.sga-page {
    max-width: 1180px;
    padding-top: 2rem;
}

.page-wrap.sga-page--article {
    max-width: 760px;
}

.sga-intro {
    margin-bottom: 1.75rem;
    max-width: 42rem;
}

.sga-intro__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.65rem, 3vw, 2.05rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text);
    text-transform: none;
}

.sga-intro__lead {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.sga-mag-board {
    margin-bottom: 1.75rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.sga-mag-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 560px) {
    .sga-mag-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 880px) {
    .sga-mag-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1120px) {
    .sga-mag-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.sga-mag-card {
    margin: 0;
    height: 100%;
}

.sga-mag-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    box-shadow: none;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.sga-mag-card__link:hover {
    border-color: rgba(245, 208, 0, 0.45);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}

.sga-mag-card__media {
    aspect-ratio: 16 / 10;
    background: #0d0d0d;
    overflow: hidden;
}

.sga-mag-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sga-mag-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1rem 1.1rem 1.15rem;
    gap: 0.45rem;
}

.sga-mag-card__label {
    margin: 0;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 208, 0, 0.82);
}

.sga-mag-card__title {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text);
    letter-spacing: -0.02em;
    flex: 1;
}

.sga-mag-card__btn {
    align-self: flex-start;
    margin-top: 0.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    background: transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.sga-mag-card__link:hover .sga-mag-card__btn {
    border-color: var(--yellow);
    color: var(--yellow);
    background: rgba(245, 208, 0, 0.1);
}

.sga-footline {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.5);
    max-width: 48rem;
}

.sga-footline a {
    color: var(--yellow);
    font-weight: 700;
    text-decoration: none;
}

.sga-footline a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.sga-empty {
    padding: 1.5rem 1.35rem 1.6rem;
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    text-align: center;
}

.sga-empty--err {
    text-align: left;
    border-color: rgba(239, 68, 68, 0.35);
}

.sga-empty p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.sga-empty__title {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem !important;
}

.sga-empty__text {
    margin-bottom: 1.1rem !important;
}

.sga-breadcrumb {
    font-size: 0.82rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.45;
}

.sga-breadcrumb a {
    color: var(--yellow);
    font-weight: 600;
    text-decoration: none;
}

.sga-breadcrumb a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.sga-breadcrumb__sep {
    margin: 0 0.35rem;
    opacity: 0.5;
}

.sga-breadcrumb__current {
    color: rgba(255, 255, 255, 0.65);
}

.sga-article-head {
    margin-bottom: 1.35rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sga-article-head--simple {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0.75rem;
}

.sga-article-h1 {
    margin: 0;
}

.sga-article-meta {
    margin: 0 0 0.65rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}

.sga-article-meta__dot {
    opacity: 0.6;
}

.sga-article-title {
    margin: 0;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--text);
    text-transform: none;
}

.sga-article-body {
    margin-bottom: 2rem;
    overflow-wrap: break-word;
    word-break: break-word;
}

.sga-article-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
    padding-top: 0.25rem;
}

.sga-back-wrap {
    margin: 1rem 0 0;
}

.sga-back {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--yellow);
    text-decoration: none;
}

.sga-back:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-meta {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.5rem;
}

.article-body {
    color: var(--text-muted);
    line-height: 1.75;
    overflow-wrap: break-word;
    word-break: break-word;
}

.article-body p {
    margin: 0 0 1rem;
}

.article-body img,
.sga-article-body img {
    max-width: 100%;
    height: auto;
}

.article-body table,
.sga-article-body table {
    display: block;
    width: fit-content;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-collapse: collapse;
}

.article-body pre,
.sga-article-body pre {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Form */
.form-grid {
    display: grid;
    gap: 1rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-row label {
    font-size: 0.85rem;
    font-weight: 600;
}

.form-row input,
.form-row textarea,
.form-row select {
    font-family: inherit;
    font-size: 1rem;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #0d0d0d;
    color: var(--text);
}

.form-row textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    outline: none;
    border-color: var(--yellow);
}

.alert {
    padding: 0.85rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.92rem;
}

.alert--ok {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #86efac;
}

.alert--err {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fecaca;
}

/* İletişim sayfası — daha geniş sütun; dar max-width + ağır padding sıkışma yaratıyordu */
.page-wrap.contact-page {
    max-width: min(1360px, 94vw);
    padding: 2.5rem clamp(0.875rem, 3.5vw, 2rem) 4rem;
    box-sizing: border-box;
}

.contact-page__toolbar {
    margin-bottom: 1.75rem;
}

.contact-page__toolbar-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.contact-page__toolbar .contact-page__eyebrow {
    margin-bottom: 0.65rem;
}

.contact-card--toolbar {
    flex: 1 1 220px;
    margin-bottom: 0;
    padding: 0.75rem 1rem;
}

.contact-card--toolbar .contact-card__icon {
    width: 38px;
    height: 38px;
}

.contact-card--toolbar .contact-card__value {
    font-size: 0.88rem;
}

.contact-page__split {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
}

@media (min-width: 860px) {
    .contact-page__split {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 1.75rem clamp(1.25rem, 2.5vw, 2.25rem);
        align-items: stretch;
    }
}

@media (max-width: 859px) {
    .contact-page__form-col {
        order: -1;
    }
}

.contact-page__map-col,
.contact-page__form-col {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-page__map-col .contact-map-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.contact-map-panel {
    background: var(--bg-elevated);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.contact-map-panel__head {
    padding: 1.1rem clamp(1rem, 2.5vw, 1.35rem) 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-map-panel__eyebrow {
    margin: 0 0 0.45rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--yellow);
}

.contact-map-panel__title {
    margin: 0 0 0.55rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.02em;
}

.contact-address {
    margin: 0 0 0.15rem;
    font-style: normal;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.01em;
}

.contact-map {
    width: 100%;
    height: 360px;
    min-height: 360px;
    background: #141414;
    z-index: 0;
}

.contact-map--google {
    border: 0;
    display: block;
    vertical-align: bottom;
}

.contact-map-panel__foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    padding: 0.55rem clamp(0.85rem, 2vw, 1.15rem);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.42);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.25);
}

.contact-map-panel__osm {
    font-weight: 600;
    color: var(--yellow);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-map-panel__osm:hover {
    color: var(--yellow-hover);
    text-decoration: underline;
}

.contact-page__eyebrow {
    margin: 0 0 1rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--yellow);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    margin-bottom: 0.85rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.contact-card:last-of-type {
    margin-bottom: 0;
}

.contact-card:hover {
    border-color: rgba(245, 208, 0, 0.4);
    background: rgba(245, 208, 0, 0.06);
    transform: translateY(-1px);
}

.contact-card__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--yellow);
}

.contact-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.contact-card__label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.contact-card__value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.contact-form-card {
    position: relative;
    background: var(--bg-elevated);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem clamp(1rem, 2.5vw, 1.35rem) 1.6rem;
    overflow: hidden;
}

.contact-form-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--yellow) 0%, rgba(245, 208, 0, 0.35) 100%);
    border-radius: 0 2px 2px 0;
    pointer-events: none;
}

.contact-form-card__title {
    margin: 0 0 0.35rem;
    padding-left: 0.35rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.02em;
}

.contact-form-card__hint {
    margin: 0 0 1.35rem;
    padding-left: 0.35rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

.contact-kvkk-note {
    margin: 1rem 0 0;
    padding: 0.75rem 0.35rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.5);
}

.contact-kvkk-note a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-kvkk-note a:hover {
    color: #fff;
}

.contact-form {
    padding-left: 0.35rem;
}

.contact-form__rowpair {
    display: grid;
    gap: 1rem;
}

@media (min-width: 520px) {
    .contact-form__rowpair {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form__actions {
    margin-top: 0.25rem;
    display: flex;
    justify-content: flex-end;
}

.contact-page input::placeholder,
.contact-page textarea::placeholder {
    color: rgba(255, 255, 255, 0.32);
}

/* Footer */
.site-footer {
    margin-top: auto;
    background: linear-gradient(180deg, #0e0e0e 0%, #060606 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.site-footer__accent {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--yellow) 20%, var(--yellow) 80%, transparent 100%);
    opacity: 0.85;
}

.site-footer__main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.75rem 1.5rem 2.25rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 2.5rem 2rem;
    align-items: start;
}

.site-footer__brand-col {
    padding-right: 1rem;
}

.site-footer__logo-link {
    display: inline-block;
    margin-bottom: 1rem;
    line-height: 0;
}

.site-footer__logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: opacity 0.2s, transform 0.2s;
}

.site-footer__logo-link:hover .site-footer__logo {
    opacity: 1;
    transform: scale(1.03);
}

.site-footer__tagline {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
}

.site-footer__sub {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--text-muted);
    max-width: 22rem;
}

.site-footer__heading {
    margin: 0 0 1rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--yellow);
}

.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__links li {
    margin-bottom: 0.55rem;
}

.site-footer__links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.site-footer__links a:hover {
    color: var(--yellow);
    padding-left: 0.25rem;
}

.site-footer__contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__contact li {
    margin-bottom: 0.85rem;
}

.site-footer__contact li:last-child {
    margin-bottom: 0;
    margin-top: 1rem;
}

.site-footer__contact-link {
    display: block;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s, background 0.2s;
}

.site-footer__contact-link:hover {
    border-color: rgba(245, 208, 0, 0.35);
    background: rgba(245, 208, 0, 0.06);
}

.site-footer__contact-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.2rem;
}

.site-footer__contact-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
}

.site-footer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 700;
    background: var(--yellow);
    color: #0a0a0a;
    transition: background 0.2s, transform 0.15s;
}

.site-footer__cta:hover {
    background: var(--yellow-hover);
    transform: translateY(-1px);
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.35);
    padding: 1.1rem 1.5rem;
}

.site-footer__bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
}

.site-footer__copy {
    margin: 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

.site-footer__legal {
    margin: 0;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
}

.site-footer__credit-link {
    color: var(--yellow);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
}

.site-footer__credit-link:hover {
    color: var(--yellow-hover);
    text-decoration: underline;
}

/*
 * Düzen ayrımı: varsayılan (bu dosyada önce gelen kurallar) = masaüstü / geniş ekran.
 * max-width: 900px = mobil ve dar tablet; bu blok masaüstü tasarımını değiştirmez.
 * min-width: 901px (dosya sonunda) = mobil özel kurallardan bağımsız masaüstü garantisi.
 */
@media (max-width: 900px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .site-footer__brand-col {
        padding-right: 0;
    }

    .site-footer__bottom-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .site-footer__copy,
    .site-footer__legal {
        text-align: center;
        width: 100%;
        max-width: 26rem;
    }

    body {
        padding-bottom: calc(3.85rem + env(safe-area-inset-bottom, 0px));
    }

    .mobile-action-dock {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 60;
        align-items: stretch;
        justify-content: stretch;
        gap: 0;
        padding: 0 env(safe-area-inset-left, 0px) env(safe-area-inset-bottom, 0px)
            env(safe-area-inset-right, 0px);
        background: rgba(10, 10, 10, 0.94);
        border-top: 1px solid var(--yellow);
        box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.5);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }

    .mobile-action-dock__btn {
        flex: 1 1 0;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.2rem;
        min-height: 3.4rem;
        padding: 0.4rem 0.3rem 0.3rem;
        font-family: inherit;
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.9);
        border: none;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        background: transparent;
        transition: background 0.15s, color 0.15s;
        touch-action: manipulation;
    }

    .mobile-action-dock__btn:last-child {
        border-right: none;
    }

    .mobile-action-dock__btn:active {
        background: rgba(255, 255, 255, 0.07);
    }

    .mobile-action-dock__icon {
        display: grid;
        place-items: center;
        color: var(--yellow);
        line-height: 0;
    }

    .mobile-action-dock__label {
        text-align: center;
        line-height: 1.15;
        max-width: 7rem;
    }

    /* Mobil kahraman: tam ilk ekran + ortalanmış metin; Remta fotoğrafı + okunaklı overlay (CTA gizli) */
    .is-home .hero {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        min-height: 100dvh;
        height: 100vh;
        height: 100dvh;
        overflow: hidden;
        box-sizing: border-box;
        background-color: #050505;
        background-image:
            linear-gradient(
                180deg,
                rgba(245, 208, 0, 0.07) 0%,
                transparent 32%,
                rgba(0, 0, 0, 0.35) 100%
            ),
            radial-gradient(
                ellipse 115% 75% at 50% 40%,
                rgba(0, 0, 0, 0.72) 0%,
                rgba(0, 0, 0, 0.28) 48%,
                transparent 70%
            ),
            url("../assets/hero-remta.png");
        background-size: cover;
        background-position: 50% center;
        background-repeat: no-repeat;
    }

    .is-home .hero__content {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        min-height: 0;
        width: 100%;
        max-width: min(26rem, calc(100% - 1.75rem));
        margin-inline: auto;
        gap: 0.75rem;
        padding-top: max(
            calc(var(--header-h) + 0.5rem),
            calc(env(safe-area-inset-top, 0px) + var(--header-h) + 0.25rem)
        );
        padding-bottom: calc(3.85rem + env(safe-area-inset-bottom, 0px));
        padding-inline: max(1rem, env(safe-area-inset-left, 0px)) max(1rem, env(safe-area-inset-right, 0px));
        box-sizing: border-box;
    }

    .is-home .hero .btn-row,
    .is-home .hero__features {
        display: none;
    }

    .is-home .hero__scroll {
        display: none;
    }

    .is-home .hero__title {
        font-size: clamp(1.55rem, 8.2vw, 2.35rem);
        line-height: 1.12;
        letter-spacing: 0.015em;
        text-shadow:
            0 1px 2px rgba(0, 0, 0, 0.85),
            0 6px 28px rgba(0, 0, 0, 0.45);
    }

    .is-home .hero__title span.highlight {
        margin-left: 0.1em;
        margin-right: 0.05em;
        margin-top: 0.15rem;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    }

    .is-home .hero__subtitle {
        font-size: clamp(1rem, 4.2vw, 1.22rem);
        line-height: 1.32;
        text-shadow:
            0 1px 2px rgba(0, 0, 0, 0.8),
            0 4px 20px rgba(0, 0, 0, 0.4);
    }

    .is-home .hero__lead {
        font-size: 0.92rem;
        line-height: 1.65;
        max-width: 100%;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
    }

    .is-home .hero .badge {
        font-size: 0.68rem;
        padding: 0.4rem 0.72rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    }

    .site-header__inner {
        row-gap: 0.75rem;
        min-width: 0;
    }

    /* Menü açıkken opak katman; alt sabit çubuk (3.85rem + safe-area) hariç — dock’un üstüne binmesin */
    .site-header.nav-open {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: calc(3.85rem + env(safe-area-inset-bottom, 0px));
        z-index: 85;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: rgba(10, 10, 10, 0.98);
        padding-top: max(1rem, env(safe-area-inset-top, 0px));
        padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
        padding-bottom: 1rem;
        padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
        box-sizing: border-box;
    }

    .is-page .site-header.nav-open {
        border-bottom: none;
    }

    .site-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        order: 10;
        padding: 1rem 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: transparent;
    }

    .site-header__inner.nav-open .site-nav {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    /* Mobilde header’daki «Servis Çağır» sıkışıyor; hero’daki CTA’lar + menüde İletişim yeterli */
    .site-header .btn--cta {
        display: none;
    }

    .site-nav a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 0.5rem 0;
    }
}

@media (max-width: 600px) {
    .btn-row {
        flex-direction: column;
    }

    .btn-row .btn {
        width: 100%;
    }
}

/* Telefonlar: çentik / home indicator, yatay taşma, dokunma hedefleri */
@media (max-width: 480px) {
    body {
        overflow-x: clip;
    }

    .site-header {
        padding-top: max(1rem, env(safe-area-inset-top, 0px));
        padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
        padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    }

    .page-wrap {
        padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
        padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
        padding-bottom: max(4rem, calc(env(safe-area-inset-bottom, 0px) + 2.5rem));
    }

    .page-wrap.contact-page {
        padding-right: max(0.875rem, env(safe-area-inset-right, 0px));
        padding-left: max(0.875rem, env(safe-area-inset-left, 0px));
        padding-bottom: max(4rem, calc(env(safe-area-inset-bottom, 0px) + 2.5rem));
    }

    .is-home .hero__content {
        padding-right: max(1rem, env(safe-area-inset-right, 0px));
        padding-left: max(1rem, env(safe-area-inset-left, 0px));
        padding-bottom: calc(3.85rem + env(safe-area-inset-bottom, 0px));
    }

    .why-yaman {
        padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
        padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
        padding-bottom: max(clamp(3rem, 7vw, 5rem), calc(env(safe-area-inset-bottom, 0px) + 1.5rem));
    }

    .why-yaman__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .why-yaman__cta .btn {
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }

    .contact-page__toolbar-row {
        flex-direction: column;
    }

    .contact-card--toolbar {
        flex: 1 1 100%;
        width: 100%;
    }

    .contact-map {
        height: min(48vh, 360px);
        min-height: 220px;
    }

    .contact-form-card {
        padding: 1.35rem 0.9rem 1.5rem;
    }

    .contact-page .form-row input,
    .contact-page .form-row textarea,
    .contact-page .form-row select {
        font-size: 16px;
    }

    .contact-form__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-form__actions .btn {
        width: 100%;
        min-height: 44px;
    }

    .contact-card__value {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .sga-article-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .sga-article-footer .btn {
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }

    .btn {
        min-height: 44px;
    }

    .site-footer__main {
        padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
        padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
        padding-bottom: max(2.25rem, calc(env(safe-area-inset-bottom, 0px) + 1rem));
    }

    .site-footer__bottom {
        padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
        padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
        padding-bottom: max(1.1rem, env(safe-area-inset-bottom, 0px));
    }

    .site-footer__contact-link {
        min-height: 44px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Geniş ekran: mobil-only kuralların (sıra / özgüllük) masaüstüne sızmasını engeller */
@media (min-width: 901px) {
    .mobile-action-dock {
        display: none;
    }

    .is-home .hero__content {
        display: flex;
    }

    .is-home .hero__scroll {
        display: block;
    }

    .site-header .btn--cta {
        display: inline-flex;
    }
}
