:root {
    --bg: #f2f6f8;
    --bg-alt: #e7eef3;
    --panel: rgba(255, 255, 255, 0.94);
    --panel-soft: rgba(255, 255, 255, 0.82);
    --surface: #ffffff;
    --surface-alt: #eef4f7;
    --border: #d4e0e7;
    --border-strong: #bcccd7;
    --text: #173042;
    --muted: #607785;
    --primary: #24688e;
    --primary-strong: #1a5473;
    --secondary: #4f95ab;
    --accent: #c98b47;
    --success: #2f8b64;
    --shadow: 0 18px 45px rgba(23, 48, 66, 0.08);
    --shadow-soft: 0 8px 22px rgba(23, 48, 66, 0.05);
    --radius: 24px;
    --radius-sm: 18px;
    --ease-out-smooth: cubic-bezier(0.22, 1, 0.36, 1);
    --motion-tap: 0.22s;
    --motion-card: 0.34s;
    --motion-link: 0.28s;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at top left, rgba(79, 149, 171, 0.13), transparent 26%),
        radial-gradient(circle at 88% 12%, rgba(201, 139, 71, 0.1), transparent 18%),
        linear-gradient(180deg, #f8fbfc 0%, var(--bg) 38%, var(--bg-alt) 100%);
    color: var(--text);
    font: 400 16px/1.7 "IBM Plex Sans", "Segoe UI", sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.36), transparent 42%),
        radial-gradient(circle at bottom right, rgba(36, 104, 142, 0.06), transparent 24%);
    z-index: -1;
}

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

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

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

h1,
h2,
h3,
h4 {
    margin: 0;
    color: var(--text);
    font-family: "Sora", "IBM Plex Sans", sans-serif;
    line-height: 1.1;
}

p {
    margin: 0 0 1rem;
    color: var(--muted);
}

ul {
    margin: 0;
    padding-left: 1.15rem;
}

.shell {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.site-main {
    min-height: 70vh;
}

.section {
    padding: 78px 0;
}

.section-tight {
    padding: 24px 0 0;
}

.section-dark {
    background: linear-gradient(180deg, #f9fbfc 0%, #eef5f8 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-cta {
    padding-top: 14px;
}

.section-fullheight {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.section-heading h2,
.page-hero h1,
.cta-panel h2 {
    margin: 10px 0 14px;
    font-size: clamp(1.95rem, 3.2vw, 2.95rem);
    letter-spacing: -0.03em;
}

.hero-copy h1 {
    margin: 12px 0 18px;
    max-width: 12ch;
    font-size: clamp(2.45rem, 4.8vw, 3.75rem);
    letter-spacing: -0.04em;
}

.auth-card h1 {
    margin: 10px 0 12px;
    font-size: clamp(1.95rem, 4vw, 2.55rem);
    letter-spacing: -0.03em;
}

.section-kicker,
.admin-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.65rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
}

.section-kicker::before,
.admin-kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.button,
.admin-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        color 0.2s ease;
    cursor: pointer;
}

.button:hover,
.admin-button:hover {
    transform: translateY(-2px);
}

.button-primary,
.admin-button {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(36, 104, 142, 0.22);
}

.button-primary:hover,
.admin-button:hover {
    background: linear-gradient(135deg, var(--primary-strong), #154764);
}

.button-secondary,
.admin-button--ghost {
    background: rgba(255, 255, 255, 0.92);
    border-color: var(--border-strong);
    color: var(--text);
    box-shadow: var(--shadow-soft);
}

.button-secondary:hover,
.admin-button--ghost:hover {
    border-color: rgba(36, 104, 142, 0.35);
    background: #ffffff;
}

.button-secondary.is-active {
    border-color: rgba(36, 104, 142, 0.48);
    box-shadow: 0 12px 28px rgba(36, 104, 142, 0.12);
}

.button-block {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--primary-strong);
    font-weight: 700;
}

.text-link:hover {
    color: var(--primary);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    background: rgba(248, 251, 252, 0.86);
    border-bottom: 1px solid rgba(188, 204, 215, 0.75);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    gap: 20px;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-mark__logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 134px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
}

.brand-mark__logo {
    width: 108px;
    height: auto;
}

.brand-mark__text {
    display: grid;
    gap: 2px;
}

.brand-mark__text strong {
    font-size: 1.04rem;
    font-family: "Sora", "IBM Plex Sans", sans-serif;
}

.brand-mark__text small {
    max-width: 34ch;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.45;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.site-nav a.active,
.site-nav a:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    box-shadow: var(--shadow-soft);
}

.nav-admin-link,
.site-nav .nav-admin-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(36, 104, 142, 0.18);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    box-shadow: var(--shadow-soft);
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    margin: 0 auto;
    border-radius: 999px;
    background: var(--text);
}

.flash-stack {
    padding-top: 24px;
}

.flash {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.flash-success {
    border-color: rgba(47, 139, 100, 0.22);
    background: rgba(243, 251, 247, 0.96);
}

.flash-error {
    border-color: rgba(201, 139, 71, 0.26);
    background: rgba(255, 249, 242, 0.96);
}

.flash-close {
    background: transparent;
    border: 0;
    color: var(--muted);
    font-size: 1.25rem;
    cursor: pointer;
}

.site-toast-stack {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 18px);
    right: max(18px, env(safe-area-inset-right, 0px));
    z-index: 2400;
    display: grid;
    gap: 12px;
    width: min(420px, calc(100vw - 32px));
    pointer-events: none;
}

.site-toast {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: start;
    gap: 12px;
    padding: 14px 14px 14px 12px;
    border: 1px solid rgba(23, 50, 58, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 38px rgba(23, 50, 58, 0.12);
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.site-toast.is-hiding {
    opacity: 0;
    transform: translateY(-10px);
}

.site-toast__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #edf4f8;
    color: #1d566f;
}

.site-toast__icon::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: currentColor;
}

.site-toast__content {
    min-width: 0;
}

.site-toast__title {
    display: block;
    margin-bottom: 4px;
    color: #17323a;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.site-toast__message {
    margin: 0;
    color: #4c6270;
    font-size: 0.92rem;
    line-height: 1.55;
}

.site-toast__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-top: -2px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #6d7f89;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.site-toast__close:hover,
.site-toast__close:focus-visible {
    background: rgba(23, 50, 58, 0.06);
    color: #17323a;
}

.site-toast--success {
    border-color: rgba(47, 139, 100, 0.18);
}

.site-toast--success .site-toast__icon {
    background: rgba(47, 139, 100, 0.12);
    color: #2f8b64;
}

.site-toast--error {
    border-color: rgba(196, 92, 57, 0.2);
}

.site-toast--error .site-toast__icon {
    background: rgba(196, 92, 57, 0.12);
    color: #c45c39;
}

.site-toast--warning {
    border-color: rgba(193, 144, 47, 0.2);
}

.site-toast--warning .site-toast__icon {
    background: rgba(193, 144, 47, 0.12);
    color: #b78317;
}

@media (max-width: 760px) {
    .site-toast-stack {
        top: calc(env(safe-area-inset-top, 0px) + 12px);
        left: 12px;
        right: 12px;
        width: auto;
    }

    .site-toast {
        grid-template-columns: 38px minmax(0, 1fr) auto;
        gap: 10px;
        padding: 12px 12px 12px 10px;
        border-radius: 18px;
    }

    .site-toast__icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .site-toast__close {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        font-size: 1.35rem;
    }

    .site-toast__title {
        font-size: 0.9rem;
    }

    .site-toast__message {
        font-size: 0.88rem;
        line-height: 1.5;
    }
}

.hero-slider {
    position: relative;
    overflow: clip;
}

.hero-slide {
    display: none;
    min-height: min(78vh, 760px);
    padding: 108px 0 86px;
    border-bottom: 1px solid var(--border);
}

.hero-slide.is-active {
    display: block;
}

.hero-slide--sunset,
.hero-slide--teal {
    background:
        radial-gradient(circle at 86% 18%, rgba(201, 139, 71, 0.12), transparent 22%),
        linear-gradient(135deg, rgba(36, 104, 142, 0.12), rgba(255, 255, 255, 0.85) 42%),
        linear-gradient(180deg, #f9fbfc 0%, #eef4f7 100%);
}

.hero-slide--blueprint,
.hero-slide--steel {
    background:
        radial-gradient(circle at 82% 16%, rgba(79, 149, 171, 0.18), transparent 24%),
        linear-gradient(135deg, rgba(36, 104, 142, 0.15), rgba(255, 255, 255, 0.86) 45%),
        linear-gradient(180deg, #f8fbfd 0%, #edf4f8 100%);
}

.hero-slide--carbon,
.hero-slide--mist {
    background:
        radial-gradient(circle at 84% 20%, rgba(23, 48, 66, 0.08), transparent 20%),
        linear-gradient(135deg, rgba(96, 119, 133, 0.1), rgba(255, 255, 255, 0.92) 45%),
        linear-gradient(180deg, #fbfcfd 0%, #eef3f6 100%);
}

.hero-slide__content,
.equipment-hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 32px;
}

.hero-copy p,
.page-hero p,
.article-card p {
    max-width: 62ch;
}

.hero-copy p {
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-panel,
.detail-panel,
.equipment-preview,
.media-placeholder,
.filter-panel,
.info-card,
.article-card,
.form-card,
.partner-card,
.feature-card,
.news-card,
.reference-card,
.sector-card,
.mini-panel,
.stat-card,
.value-card,
.vision-card,
.center-card,
.equipment-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.hero-panel,
.detail-panel,
.article-card,
.form-card,
.info-card,
.media-placeholder,
.filter-panel {
    padding: 28px;
}

.feature-card,
.value-card,
.mini-panel,
.sector-card,
.news-card,
.reference-card,
.equipment-card,
.partner-card,
.stat-card,
.vision-card,
.center-card,
.equipment-preview {
    padding: 26px;
}

.feature-card,
.partner-card,
.news-card,
.reference-card,
.equipment-card,
.mini-panel,
.stat-card,
.value-card,
.vision-card,
.sector-card,
.media-placeholder,
.article-card,
.info-card,
.form-card {
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.feature-card:hover,
.partner-card:hover,
.news-card:hover,
.reference-card:hover,
.equipment-card:hover,
.mini-panel:hover,
.stat-card:hover,
.value-card:hover,
.vision-card:hover,
.sector-card:hover,
.media-placeholder:hover,
.article-card:hover,
.info-card:hover,
.form-card:hover {
    transform: translateY(-4px);
    border-color: rgba(36, 104, 142, 0.26);
    box-shadow: 0 22px 46px rgba(23, 48, 66, 0.1);
}

.hero-panel span,
.detail-panel span,
.equipment-preview .section-kicker {
    color: var(--primary);
}

.hero-panel strong,
.detail-panel strong {
    display: block;
    margin: 10px 0 16px;
    font-size: 1.45rem;
    letter-spacing: -0.03em;
}

.detail-list {
    display: grid;
    gap: 0.55rem;
    margin: 16px 0 0;
    padding-left: 1.1rem;
    color: var(--muted);
}

.detail-list.compact {
    margin-top: 10px;
}

.hero-slider__dots {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    padding-bottom: 28px;
}

.hero-dot {
    width: 44px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(188, 204, 215, 0.95);
    cursor: pointer;
}

.hero-dot.is-active {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.page-hero {
    padding: 92px 0 64px;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at top right, rgba(79, 149, 171, 0.16), transparent 34%),
        linear-gradient(135deg, rgba(36, 104, 142, 0.1), rgba(255, 255, 255, 0.92) 40%),
        linear-gradient(180deg, #f8fbfc 0%, #eef4f7 100%);
}

.stat-grid,
.card-grid,
.vision-grid,
.footer-grid {
    display: grid;
    gap: 20px;
}

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

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

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

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

.compact {
    gap: 16px;
}

.stat-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 2rem;
    letter-spacing: -0.04em;
}

.feature-card__icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: rgba(36, 104, 142, 0.1);
    color: var(--primary);
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(36, 104, 142, 0.1);
}

.feature-card h3,
.partner-card h3,
.news-card h3,
.reference-card h3,
.equipment-card h3,
.mini-panel h3,
.sector-card h3,
.equipment-preview h3 {
    margin-bottom: 10px;
    font-size: 1.22rem;
    letter-spacing: -0.02em;
}

.partner-card strong,
.reference-card strong,
.news-card strong,
.equipment-card strong,
.article-card strong,
.info-card strong,
.media-placeholder strong {
    display: block;
    margin-bottom: 12px;
    color: var(--primary-strong);
}

.partner-card__image-wrap,
.news-card__image,
.reference-card__image,
.article-card__image,
.media-placeholder__image,
.sector-card__image {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
}

.partner-card__image-wrap {
    display: grid;
    place-items: center;
    min-height: 120px;
    margin-bottom: 18px;
    padding: 18px;
}

.partner-card__image {
    max-width: 100%;
    max-height: 82px;
    object-fit: contain;
}

.news-card__image,
.reference-card__image,
.article-card__image,
.sector-card__image {
    object-fit: cover;
}

.news-card__image,
.reference-card__image,
.sector-card__image {
    height: 220px;
    margin-bottom: 18px;
}

.news-card--large .news-card__image {
    height: 250px;
}

.article-card__image {
    height: 320px;
    margin-bottom: 20px;
}

.media-placeholder {
    display: grid;
    gap: 14px;
}

.media-placeholder__image {
    height: 240px;
    object-fit: cover;
}

.media-placeholder__image--logo {
    height: 180px;
    object-fit: contain;
    padding: 24px;
}

.spotlight-layout,
.split-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
}

.equipment-preview__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
}

.equipment-preview__item:first-of-type {
    margin-top: 10px;
}

.equipment-preview__thumb {
    width: 88px;
    height: 68px;
    border: 1px solid var(--border);
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.equipment-preview__item:hover strong {
    color: var(--primary);
}

.equipment-preview__item > div {
    flex: 1;
    min-width: 0;
}

.equipment-preview__item span,
.equipment-preview__item small,
.news-card__meta,
.reference-card__meta {
    color: var(--muted);
}

.news-card__meta,
.reference-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.partner-card__badge,
.equipment-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(36, 104, 142, 0.11);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.equipment-card__visual {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 180px;
    margin-bottom: 18px;
    padding: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(36, 104, 142, 0.13), rgba(79, 149, 171, 0.06) 35%, rgba(255, 255, 255, 0.92) 100%),
        repeating-linear-gradient(135deg, rgba(36, 104, 142, 0.05) 0 1px, transparent 1px 12px);
}

.equipment-card__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(23, 48, 66, 0.18));
}

.equipment-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipment-card__body {
    display: grid;
    gap: 10px;
}

.equipment-card__body small {
    color: var(--muted);
    font-weight: 600;
}

.equipment-card__video {
    align-self: flex-end;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.equipment-card__badge,
.equipment-card__video {
    position: relative;
    z-index: 1;
}

.equipment-detail__image {
    width: 100%;
    height: 240px;
    margin-bottom: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.filter-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 26px;
}

.filter-chip {
    padding: 10px 14px;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.filter-chip.is-active,
.filter-chip:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.search-box {
    display: grid;
    gap: 8px;
}

.search-box span,
.form-card label span {
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--text);
}

.search-box input,
.form-card input,
.form-card textarea,
.form-card select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    background: #ffffff;
    color: var(--text);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.search-box input:focus,
.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
    outline: none;
    border-color: rgba(36, 104, 142, 0.6);
    box-shadow: 0 0 0 4px rgba(36, 104, 142, 0.12);
}

.form-card textarea,
.article-card textarea {
    resize: vertical;
}

.form-card label {
    display: grid;
    gap: 8px;
}

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

.form-grid__wide {
    grid-column: 1 / -1;
}

.top-space {
    margin-top: 24px;
}

.tab-shell {
    display: grid;
    gap: 20px;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-button {
    padding: 12px 18px;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--muted);
    cursor: pointer;
    transition:
        transform var(--motion-tap, 0.22s) var(--ease-out-smooth, ease),
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.tab-button.is-active {
    border-color: var(--primary);
    background: var(--primary);
    color: #ffffff;
}

.tab-button:hover:not(.is-active) {
    border-color: rgba(36, 104, 142, 0.35);
    background: rgba(255, 255, 255, 1);
    color: var(--text);
    box-shadow: 0 8px 22px rgba(17, 44, 64, 0.08);
    transform: translateY(-2px);
}

.tab-panels {
    display: grid;
}

.tab-panel {
    display: none;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.tab-panel.is-active {
    display: block;
}

.tab-panel h3 {
    margin-bottom: 12px;
}

/* Temsilcilik detay — modül sekmeleri (uzun başlıklar için ray + panel) */
.rep-module-tabs {
    gap: 0;
}

.rep-module-tabs__layout {
    display: grid;
    grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
    gap: 24px 28px;
    align-items: start;
}

@media (max-width: 960px) {
    .rep-module-tabs__layout {
        grid-template-columns: 1fr;
    }
}

.rep-module-tabs__rail {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rep-module-tabs__trigger {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px 14px;
    align-items: start;
    width: 100%;
    margin: 0;
    padding: 14px 16px;
    text-align: left;
    font: inherit;
    border: 1px solid rgba(23, 50, 58, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--text);
    cursor: pointer;
    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        box-shadow 0.18s ease;
    box-shadow: 0 6px 18px rgba(17, 44, 64, 0.05);
}

.rep-module-tabs__trigger:hover:not(.is-active) {
    border-color: rgba(36, 104, 142, 0.35);
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(17, 44, 64, 0.08);
}

.rep-module-tabs__trigger.is-active {
    border-color: rgba(36, 104, 142, 0.55);
    background: linear-gradient(135deg, rgba(36, 104, 142, 0.12), rgba(255, 255, 255, 0.98));
    box-shadow: 0 12px 30px rgba(17, 44, 64, 0.1);
}

.rep-module-tabs__trigger.is-active .rep-module-tabs__index {
    background: var(--primary);
    color: #ffffff;
    border-color: transparent;
}

.rep-module-tabs__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 6px;
    border-radius: 12px;
    border: 1px solid rgba(23, 50, 58, 0.12);
    font-family: "Outfit", "Manrope", sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--primary-strong);
    background: rgba(255, 255, 255, 0.95);
}

.rep-module-tabs__label {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    font-size: 0.82rem;
    font-weight: 650;
    line-height: 1.38;
    letter-spacing: -0.01em;
    color: var(--text);
}

.rep-module-tabs__trigger.is-active .rep-module-tabs__label {
    color: var(--primary-strong);
}

.rep-module-tabs__trigger:focus-visible {
    outline: 2px solid rgba(36, 104, 142, 0.55);
    outline-offset: 2px;
}

.rep-module-tabs__panes {
    min-width: 0;
}

.rep-module-tabs__panel.tab-panel {
    margin: 0;
}

@media (max-width: 960px) {
    .rep-module-tabs__rail {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px 14px;
    }

    .rep-module-tabs__trigger {
        flex: 1 1 calc(50% - 8px);
        min-width: min(100%, 240px);
    }
}

@media (max-width: 520px) {
    .rep-module-tabs__trigger {
        flex: 1 1 100%;
    }
}

.brand-band {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.brand-band span {
    padding: 12px 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
}

.section-stack {
    display: grid;
    gap: 36px;
}

.reference-group {
    display: grid;
    gap: 18px;
}

.article-detail {
    max-width: 900px;
    margin: 0 auto;
}

.article-lead {
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--text);
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background:
        radial-gradient(circle at 88% 18%, rgba(201, 139, 71, 0.12), transparent 20%),
        linear-gradient(135deg, rgba(36, 104, 142, 0.12), rgba(255, 255, 255, 0.95) 44%),
        #ffffff;
    box-shadow: var(--shadow);
}

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

.vision-card--accent {
    background:
        linear-gradient(135deg, rgba(36, 104, 142, 0.14), rgba(255, 255, 255, 0.96) 48%),
        #ffffff;
}

.map-frame {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.map-frame iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
}

.site-footer {
    padding-top: 52px;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, #eef4f7 0%, #e4edf2 100%);
}

.site-footer .section-kicker,
.site-footer h3,
.site-footer h4,
.site-footer p,
.site-footer a,
.site-footer li,
.site-footer span {
    color: inherit;
}

.footer-grid {
    grid-template-columns: 1.25fr 0.75fr 0.8fr 0.95fr;
    align-items: start;
    color: var(--text);
}

.footer-grid h3 {
    margin: 6px 0 12px;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
}

.footer-grid h4 {
    margin-bottom: 14px;
    font-size: 1rem;
}

.footer-logo {
    width: 146px;
    margin-bottom: 18px;
}

.footer-links {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    color: var(--muted);
}

.footer-links a:hover,
.social-links a:hover,
.community-link:hover {
    color: var(--primary-strong);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--primary);
}

.community-link {
    display: inline-flex;
    margin-top: 16px;
    color: var(--primary);
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    margin-top: 28px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.92rem;
}

.center-card {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 1100px) {
    .card-grid--four,
    .stat-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-slide__content,
    .equipment-hero,
    .spotlight-layout,
    .split-layout,
    .vision-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        max-width: none;
    }
}

@media (max-width: 860px) {
    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 16px;
        right: 16px;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border: 1px solid var(--border);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 18px 36px rgba(23, 48, 66, 0.12);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav a {
        width: 100%;
    }

    .card-grid--three,
    .card-grid--two,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-panel,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .shell {
        width: min(1200px, calc(100% - 24px));
    }

    .section {
        padding: 62px 0;
    }

    .hero-slide {
        min-height: auto;
        padding: 84px 0 70px;
    }

    .header-inner {
        min-height: 78px;
    }

    .brand-mark {
        gap: 10px;
    }

    .brand-mark__logo-wrap {
        min-width: 110px;
        padding: 8px 10px;
    }

    .brand-mark__logo {
        width: 88px;
    }

    .brand-mark__text small {
        display: none;
    }

    .section-heading h2,
    .page-hero h1,
    .cta-panel h2 {
        font-size: clamp(1.8rem, 8vw, 2.35rem);
    }

    .hero-copy h1 {
        font-size: clamp(2.1rem, 10vw, 2.8rem);
    }

    .news-card__image,
    .reference-card__image,
    .sector-card__image,
    .article-card__image,
    .media-placeholder__image,
    .equipment-detail__image,
    .news-card--large .news-card__image {
        height: 200px;
    }

    .stat-grid,
    .card-grid--four {
        grid-template-columns: 1fr;
    }

    .hero-slider__dots {
        margin-top: 14px;
    }
}

/* Premium refresh */
:root {
    --bg: #f4efe7;
    --bg-alt: #ebe5db;
    --panel: rgba(255, 255, 255, 0.92);
    --panel-soft: rgba(255, 255, 255, 0.78);
    --surface: #ffffff;
    --surface-alt: #f7f1e8;
    --border: rgba(28, 58, 66, 0.12);
    --border-strong: rgba(28, 58, 66, 0.2);
    --text: #17323a;
    --muted: #5b6d72;
    --primary: #0f6b69;
    --primary-strong: #0b5554;
    --secondary: #2a7f9d;
    --accent: #b88747;
    --shadow: 0 26px 60px rgba(18, 42, 49, 0.08);
    --shadow-soft: 0 14px 34px rgba(18, 42, 49, 0.06);
    --radius: 30px;
    --radius-sm: 22px;
}

body {
    background:
        radial-gradient(circle at top left, rgba(15, 107, 105, 0.08), transparent 24%),
        radial-gradient(circle at 88% 9%, rgba(184, 135, 71, 0.12), transparent 18%),
        linear-gradient(180deg, #fbf8f3 0%, #f4efe7 40%, #ebe5db 100%);
    color: var(--text);
    font: 400 16px/1.72 "Manrope", "Segoe UI", sans-serif;
}

body::before {
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.3), transparent 42%),
        radial-gradient(circle at bottom right, rgba(15, 107, 105, 0.08), transparent 22%);
}

h1,
h2,
h3,
h4,
.brand-mark__text strong,
.auth-card h1 {
    font-family: "Outfit", "Manrope", sans-serif;
}

p {
    color: var(--muted);
}

.shell {
    width: min(1240px, calc(100% - 40px));
}

.section {
    padding: 92px 0;
}

.section-tight {
    padding-top: 22px;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 34px;
}

.section-heading h2,
.page-hero h1,
.cta-panel h2 {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    letter-spacing: -0.045em;
}

.button,
.admin-button {
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.button-primary,
.admin-button {
    background: linear-gradient(135deg, #0f6b69, #0b5554);
    box-shadow: 0 18px 34px rgba(15, 107, 105, 0.18);
}

.button-secondary,
.admin-button--ghost {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(23, 50, 58, 0.14);
}

.site-header {
    background: rgba(250, 247, 241, 0.84);
    border-bottom: 1px solid rgba(23, 50, 58, 0.09);
    box-shadow: 0 8px 24px rgba(23, 50, 58, 0.04);
}

.header-utility {
    border-bottom: 1px solid rgba(23, 50, 58, 0.08);
    background: rgba(247, 241, 232, 0.92);
}

.header-utility__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 42px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 600;
}

.header-utility__links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-inner {
    min-height: 92px;
    gap: 22px;
}

.brand-mark__logo-wrap {
    min-width: 148px;
    padding: 12px 16px;
    border-radius: 22px;
    border-color: rgba(23, 50, 58, 0.08);
    background: rgba(255, 255, 255, 0.92);
}

.brand-mark__logo {
    width: 114px;
}

.brand-mark__text strong {
    font-size: 1.08rem;
    letter-spacing: -0.03em;
}

.brand-mark__text small {
    font-size: 0.84rem;
    color: #6c7a7f;
}

.site-nav {
    gap: 6px;
}

.site-nav a {
    position: relative;
    padding: 10px 14px;
    border-radius: 999px;
    color: #5f7076;
    font-size: 0.93rem;
    font-weight: 700;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 7px;
    height: 2px;
    border-radius: 999px;
    background: transparent;
    transition: background 0.2s ease;
}

.site-nav a.active,
.site-nav a:hover {
    background: rgba(255, 255, 255, 0.78);
}

.site-nav a.active::after,
.site-nav a:hover::after {
    background: rgba(15, 107, 105, 0.55);
}

.nav-admin-link,
.site-nav .nav-admin-link:hover {
    background: rgba(15, 107, 105, 0.1);
    color: var(--primary-strong);
    box-shadow: none;
}

.nav-admin-link::after {
    display: none;
}

.header-cta,
.nav-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #17323a, #0d565d);
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -0.01em;
    box-shadow: 0 18px 34px rgba(23, 50, 58, 0.16);
}

.nav-cta-link {
    display: none;
}

.menu-toggle {
    border-radius: 16px;
    border-color: rgba(23, 50, 58, 0.12);
}

.hero-slide {
    min-height: auto;
    padding: 108px 0 78px;
    border-bottom: 0;
}

.hero-slide--teal,
.hero-slide--sunset {
    background:
        radial-gradient(circle at 85% 18%, rgba(184, 135, 71, 0.16), transparent 22%),
        linear-gradient(135deg, rgba(15, 107, 105, 0.08), rgba(255, 255, 255, 0.76) 42%),
        linear-gradient(180deg, #fbf8f2 0%, #f4efe6 100%);
}

.hero-slide--steel,
.hero-slide--blueprint {
    background:
        radial-gradient(circle at 84% 12%, rgba(42, 127, 157, 0.16), transparent 24%),
        linear-gradient(135deg, rgba(32, 88, 108, 0.08), rgba(255, 255, 255, 0.76) 46%),
        linear-gradient(180deg, #faf7f1 0%, #ece6dd 100%);
}

.hero-slide--mist,
.hero-slide--carbon {
    background:
        radial-gradient(circle at 86% 14%, rgba(23, 50, 58, 0.08), transparent 20%),
        linear-gradient(135deg, rgba(91, 109, 114, 0.08), rgba(255, 255, 255, 0.78) 48%),
        linear-gradient(180deg, #fbf8f3 0%, #eee8e0 100%);
}

.hero-slide__content--premium {
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 46px;
    align-items: center;
}

.hero-copy h1 {
    max-width: 10.5ch;
    font-size: clamp(3.2rem, 5.7vw, 5rem);
    line-height: 0.96;
}

.hero-copy p {
    max-width: 58ch;
    font-size: 1.08rem;
}

.hero-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-signals span {
    padding: 10px 14px;
    border: 1px solid rgba(23, 50, 58, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 700;
}

.hero-showcase {
    display: grid;
    gap: 18px;
}

.hero-showcase__media {
    position: relative;
    padding: 14px;
    border: 1px solid rgba(23, 50, 58, 0.12);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 28px 56px rgba(23, 50, 58, 0.1);
    overflow: hidden;
}

.hero-showcase__image {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 24px;
}

.hero-showcase__floating {
    position: absolute;
    z-index: 2;
    backdrop-filter: blur(14px);
}

.hero-showcase__floating--tag {
    top: 28px;
    left: 28px;
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    background: rgba(23, 50, 58, 0.6);
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 700;
}

.hero-showcase__floating--metric {
    right: 28px;
    bottom: 28px;
    min-width: 220px;
    padding: 16px 18px;
    border: 1px solid rgba(23, 50, 58, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
}

.hero-showcase__floating--metric span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-showcase__floating--metric strong {
    font-family: "Outfit", "Manrope", sans-serif;
    font-size: 1.35rem;
    line-height: 1.05;
}

.hero-showcase__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.hero-mini-card {
    display: grid;
    gap: 10px;
    min-height: 100%;
    padding: 18px;
    border: 1px solid rgba(23, 50, 58, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-soft);
}

.hero-mini-card span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-mini-card strong {
    font-size: 1rem;
    line-height: 1.35;
    color: var(--text);
}

.hero-mini-card__thumb {
    width: 100%;
    height: 88px;
    object-fit: cover;
    border-radius: 18px;
}

.hero-mini-card--accent {
    background: linear-gradient(135deg, #17323a, #0f6b69);
}

.hero-mini-card--accent span,
.hero-mini-card--accent strong {
    color: #ffffff;
}

.hero-slider__dots {
    display: flex;
    gap: 10px;
    margin-top: -16px;
    position: relative;
    z-index: 4;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 0;
    background: rgba(23, 50, 58, 0.18);
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    width: 40px;
    background: linear-gradient(135deg, #0f6b69, #b88747);
}

.trust-ribbon {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: -26px;
    position: relative;
    z-index: 5;
}

.trust-ribbon__item {
    padding: 22px 24px;
    border: 1px solid rgba(23, 50, 58, 0.1);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
}

.trust-ribbon__item strong {
    display: block;
    margin-bottom: 6px;
    font-family: "Outfit", "Manrope", sans-serif;
    font-size: 1.04rem;
    letter-spacing: -0.03em;
}

.trust-ribbon__item span {
    color: var(--muted);
    font-size: 0.95rem;
}

.editorial-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 26px;
    align-items: start;
}

.editorial-layout__lead {
    padding: 34px;
    border: 1px solid rgba(23, 50, 58, 0.11);
    border-radius: 32px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(246, 240, 232, 0.92)),
        #ffffff;
    box-shadow: var(--shadow);
}

.editorial-layout__lead h2 {
    margin: 10px 0 14px;
    font-size: clamp(2rem, 3.2vw, 3.1rem);
    letter-spacing: -0.045em;
}

.editorial-note {
    display: grid;
    gap: 6px;
    margin-top: 24px;
    padding: 18px 20px;
    border: 1px solid rgba(15, 107, 105, 0.16);
    border-radius: 24px;
    background: rgba(15, 107, 105, 0.06);
}

.editorial-note strong {
    color: var(--text);
}

.feature-card--premium,
.partner-card--premium,
.news-card--premium {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 242, 234, 0.94)),
        #ffffff;
}

.feature-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(15, 107, 105, 0.08);
    color: var(--primary-strong);
    font-family: "Outfit", "Manrope", sans-serif;
    font-size: 1.08rem;
    font-weight: 800;
}

.section-dark {
    background:
        radial-gradient(circle at top right, rgba(42, 127, 157, 0.08), transparent 20%),
        linear-gradient(180deg, rgba(247, 241, 232, 0.58), rgba(237, 229, 218, 0.72));
    border-top: 0;
    border-bottom: 0;
}

.hero-panel,
.detail-panel,
.equipment-preview,
.media-placeholder,
.filter-panel,
.info-card,
.article-card,
.form-card,
.partner-card,
.feature-card,
.news-card,
.reference-card,
.sector-card,
.mini-panel,
.stat-card,
.value-card,
.vision-card,
.center-card,
.equipment-card {
    border-color: rgba(23, 50, 58, 0.1);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 241, 232, 0.92)),
        #ffffff;
    box-shadow: var(--shadow);
}

.feature-card:hover,
.partner-card:hover,
.news-card:hover,
.reference-card:hover,
.equipment-card:hover,
.mini-panel:hover,
.value-card:hover,
.vision-card:hover,
.sector-card:hover,
.article-card:hover,
.info-card:hover,
.form-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 64px rgba(18, 42, 49, 0.12);
    border-color: rgba(15, 107, 105, 0.18);
}

.partner-card__image-wrap,
.news-card__image,
.media-placeholder__image {
    border-radius: 22px;
}

.partner-card__image-wrap {
    padding: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(23, 50, 58, 0.08);
}

.partner-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    margin: 18px 0 14px;
    border-radius: 999px;
    background: rgba(15, 107, 105, 0.08);
    color: var(--primary-strong);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.news-card__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 16px 0 14px;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 700;
}

.spotlight-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: 24px;
    align-items: start;
}

.equipment-preview__item {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid rgba(23, 50, 58, 0.08);
}

.equipment-preview__item:first-of-type {
    border-top: 0;
    padding-top: 8px;
}

.equipment-preview__thumb {
    width: 88px;
    height: 72px;
    object-fit: cover;
    border-radius: 18px;
}

.equipment-preview__item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text);
}

.equipment-preview__item span,
.equipment-preview__item small {
    color: var(--muted);
}

.page-hero {
    padding: 82px 0 10px;
}

.page-hero .shell {
    padding: 48px 48px 44px;
    border: 1px solid rgba(23, 50, 58, 0.1);
    border-radius: 34px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(246, 240, 232, 0.9)),
        #ffffff;
    box-shadow: var(--shadow);
}

.page-hero p {
    max-width: 64ch;
}

.footer-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
    padding: 34px 38px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(184, 135, 71, 0.28), transparent 28%),
        linear-gradient(135deg, #16323a, #0f6b69);
    box-shadow: 0 28px 60px rgba(16, 42, 49, 0.18);
    transform: translateY(-54px);
}

.footer-callout .section-kicker,
.footer-callout h3,
.footer-callout p {
    color: #ffffff;
}

.footer-callout h3 {
    margin: 10px 0 10px;
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
    letter-spacing: -0.04em;
    line-height: 1.04;
}

.site-footer {
    margin-top: 104px;
    padding: 0 0 24px;
    background:
        linear-gradient(180deg, rgba(243, 237, 228, 0) 0%, rgba(235, 229, 219, 0.72) 24%, rgba(229, 222, 212, 0.92) 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(0, 0.72fr));
    gap: 26px;
    margin-top: -6px;
}

.footer-logo {
    width: 152px;
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
}

.footer-links {
    display: grid;
    gap: 10px;
    list-style: none;
    padding-left: 0;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-links a,
.community-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(23, 50, 58, 0.1);
    color: var(--text);
    font-weight: 700;
}

.community-link {
    margin-top: 14px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 22px;
    margin-top: 24px;
    border-top: 1px solid rgba(23, 50, 58, 0.08);
    color: var(--muted);
    font-size: 0.92rem;
}

@media (max-width: 1100px) {
    .hero-slide__content--premium,
    .spotlight-layout,
    .editorial-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        max-width: 12ch;
    }

    .hero-showcase__cards,
    .trust-ribbon {
        grid-template-columns: 1fr;
    }

    .footer-callout {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-cta {
        display: none;
    }

    .nav-cta-link {
        display: inline-flex;
        margin-top: 10px;
    }
}

@media (max-width: 860px) {
    .header-utility {
        display: none;
    }

    .header-inner {
        min-height: 80px;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border: 1px solid rgba(23, 50, 58, 0.1);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow);
    }

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

    .site-nav a {
        padding: 12px 14px;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-showcase__image {
        height: 340px;
    }

    .hero-showcase__floating--metric {
        position: static;
        margin-top: 12px;
    }

    .page-hero .shell,
    .editorial-layout__lead,
    .footer-callout {
        padding: 28px;
    }
}

@media (max-width: 640px) {
    .shell {
        width: min(1240px, calc(100% - 24px));
    }

    .section {
        padding: 74px 0;
    }

    .brand-mark {
        min-width: 0;
    }

    .brand-mark__text {
        display: none;
    }

    .hero-actions,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-showcase__cards {
        grid-template-columns: 1fr;
    }

    .equipment-preview__item {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .equipment-preview__item small {
        grid-column: 2;
    }
}

/* Clean rebuild */
.site-header--clean {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 248, 243, 0.94);
    border-bottom: 1px solid rgba(23, 50, 58, 0.08);
    box-shadow: 0 10px 30px rgba(23, 50, 58, 0.05);
    backdrop-filter: blur(14px);
}

.header-inner--clean {
    display: grid;
    grid-template-columns: minmax(190px, 250px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 88px;
}

.brand-mark--clean {
    gap: 14px;
    min-width: 0;
}

.brand-mark--clean .brand-mark__logo-wrap {
    min-width: 122px;
    padding: 10px 14px;
    border-radius: 18px;
    box-shadow: none;
}

.brand-mark--clean .brand-mark__logo {
    width: 94px;
}

.brand-mark--clean .brand-mark__text {
    min-width: 0;
}

.brand-mark--clean .brand-mark__text strong {
    display: block;
    margin-bottom: 2px;
    font-size: 1.06rem;
    line-height: 1.1;
}

.brand-mark--clean .brand-mark__text small {
    display: block;
    max-width: 26ch;
    font-size: 0.82rem;
    line-height: 1.45;
}

.site-nav--clean {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    min-width: 0;
}

.site-nav--clean a {
    padding: 8px 10px;
    border-radius: 10px;
    color: #5f7076;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.site-nav--clean a::after,
.nav-admin-link,
.nav-cta-link {
    display: none !important;
}

.site-nav--clean a.active,
.site-nav--clean a:hover {
    background: rgba(15, 107, 105, 0.08);
    color: var(--primary-strong);
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-contact {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
}

.header-cta {
    min-height: 48px;
    padding: 0 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, #17323a, #0f6b69);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(23, 50, 58, 0.14);
}

.hero-landing {
    padding: 72px 0 34px;
}

.hero-landing__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 44px;
    align-items: center;
}

.hero-landing__copy h1 {
    margin: 12px 0 18px;
    max-width: 9.5ch;
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.hero-landing__copy p {
    max-width: 58ch;
    font-size: 1.08rem;
}

.hero-landing__visual {
    position: relative;
}

.hero-landing__image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(23, 50, 58, 0.12);
}

.hero-landing__note {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: grid;
    gap: 6px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.hero-landing__note span {
    color: var(--primary-strong);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-landing__note strong {
    font-size: 1.02rem;
    line-height: 1.4;
}

.hero-landing__metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.hero-landing__metric {
    padding: 11px 14px;
    border: 1px solid rgba(23, 50, 58, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
}

.home-intro {
    padding-top: 28px;
}

.home-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 32px;
    align-items: start;
}

.home-intro__lead h2 {
    margin: 10px 0 14px;
    font-size: clamp(2rem, 3.4vw, 3rem);
    letter-spacing: -0.045em;
}

.home-intro__services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-service {
    padding: 24px 22px;
    border: 1px solid rgba(23, 50, 58, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
}

.home-service__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(15, 107, 105, 0.08);
    color: var(--primary-strong);
    font-weight: 800;
}

.home-service h3 {
    margin-bottom: 10px;
    font-size: 1.16rem;
    letter-spacing: -0.03em;
}

.home-partners {
    display: grid;
    gap: 20px;
}

.home-partner {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 26px;
    border: 1px solid rgba(23, 50, 58, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
}

.home-partner__logo {
    width: 100%;
    max-width: 160px;
    max-height: 82px;
    object-fit: contain;
}

.home-partner h3 {
    margin-bottom: 6px;
    font-size: 1.35rem;
    letter-spacing: -0.03em;
}

.home-partner strong {
    display: block;
    margin-bottom: 10px;
    color: var(--text);
}

.home-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
    gap: 28px;
    align-items: start;
}

.home-showcase__copy h2 {
    margin: 10px 0 14px;
}

.home-showcase__actions,
.home-showcase__list {
    padding: 28px;
    border: 1px solid rgba(23, 50, 58, 0.1);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
}

.home-showcase__actions {
    display: grid;
    gap: 18px;
}

.home-action + .home-action {
    padding-top: 18px;
    border-top: 1px solid rgba(23, 50, 58, 0.08);
}

.home-action h3 {
    margin-bottom: 8px;
    font-size: 1.14rem;
}

.home-showcase__list h3 {
    margin: 8px 0 16px;
}

.home-equipment {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid rgba(23, 50, 58, 0.08);
}

.home-equipment:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.home-equipment__image {
    width: 86px;
    height: 72px;
    object-fit: cover;
    border-radius: 16px;
}

.home-equipment strong {
    display: block;
    margin-bottom: 4px;
}

.home-equipment span,
.home-equipment small {
    color: var(--muted);
}

.site-footer--clean {
    margin-top: 72px;
    padding: 48px 0 22px;
    background: rgba(236, 229, 219, 0.62);
    border-top: 1px solid rgba(23, 50, 58, 0.08);
}

.footer-grid--clean {
    grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(0, 0.7fr));
    gap: 28px;
}

.footer-brand h3 {
    margin: 0 0 12px;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.28;
    letter-spacing: -0.03em;
}

.footer-bottom--clean {
    margin-top: 26px;
}

@media (max-width: 1180px) {
    .header-inner--clean {
        grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    }

    .header-tools {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }

    .hero-landing__grid,
    .home-intro__grid,
    .home-showcase,
    .footer-grid--clean {
        grid-template-columns: 1fr;
    }

    .home-intro__services {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 920px) {
    .header-inner--clean {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .brand-mark--clean .brand-mark__text small,
    .header-contact--desktop {
        display: none;
    }

    .site-nav--clean {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 14px;
        border: 1px solid rgba(23, 50, 58, 0.1);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: var(--shadow);
    }

    .site-nav--clean.is-open {
        display: flex;
    }

    .site-nav--clean a {
        white-space: normal;
    }

    .menu-toggle {
        display: flex;
    }

    .header-tools {
        grid-column: auto;
        justify-content: flex-end;
    }

    .hero-landing__copy h1 {
        max-width: 11ch;
        font-size: clamp(2.6rem, 10vw, 4rem);
    }

    .hero-landing__image {
        height: 420px;
    }

    .home-intro__services {
        grid-template-columns: 1fr;
    }

    .home-partner {
        grid-template-columns: 1fr;
        align-items: start;
    }
}

@media (max-width: 640px) {
    .header-inner--clean {
        gap: 14px;
        min-height: 78px;
    }

    .brand-mark--clean .brand-mark__text {
        display: none;
    }

    .header-tools {
        display: none;
    }

    .hero-landing {
        padding-top: 52px;
    }

    .hero-landing__note,
    .home-showcase__actions,
    .home-showcase__list,
    .home-service,
    .home-partner {
        padding: 22px;
    }

    .home-equipment {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .home-equipment small {
        grid-column: 2;
    }

    .footer-grid--clean {
        gap: 22px;
    }
}

/* Header cleanup tweaks */
.header-topline {
    border-bottom: 1px solid rgba(23, 50, 58, 0.06);
    background: rgba(255, 255, 255, 0.45);
}

.header-topline__inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 36px;
}

.header-topline__phone {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.header-inner--clean {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 24px;
}

.brand-mark--clean .brand-mark__logo-wrap {
    min-width: 108px;
    padding: 8px 12px;
}

.brand-mark--clean .brand-mark__logo {
    width: 84px;
}

.site-nav--clean {
    justify-content: center;
    gap: 10px;
}

.site-nav--clean a {
    padding: 8px 11px;
}

.header-tools {
    gap: 0;
}

@media (max-width: 1180px) {
    .header-inner--clean {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .header-tools {
        grid-column: auto;
        justify-content: flex-end;
    }
}

@media (max-width: 920px) {
    .header-topline__inner {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .header-topline {
        display: block;
    }

    .header-topline__phone {
        font-size: 0.84rem;
    }

    .header-inner--clean {
        grid-template-columns: auto auto;
    }
}

/* Brand-aligned public redesign */
:root {
    --bg: #f4f8fb;
    --bg-alt: #edf4f9;
    --panel: #ffffff;
    --panel-soft: #f9fcfe;
    --surface: #ffffff;
    --surface-alt: #f3f8fc;
    --border: #d7e3ec;
    --border-strong: #bfd0dd;
    --text: #173647;
    --muted: #607888;
    --primary: #24688e;
    --primary-strong: #184f71;
    --secondary: #5b86a4;
    --accent: #0095eb;
    --success: #2f8b64;
    --shadow: 0 26px 65px rgba(16, 49, 70, 0.09);
    --shadow-soft: 0 14px 34px rgba(16, 49, 70, 0.06);
    --radius: 24px;
    --radius-sm: 18px;
}

body {
    background:
        radial-gradient(circle at top right, rgba(0, 149, 235, 0.09), transparent 24%),
        radial-gradient(circle at top left, rgba(36, 104, 142, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7fbfe 38%, var(--bg) 100%);
    color: var(--text);
    font: 400 16px/1.72 "Roboto", "Segoe UI", sans-serif;
}

body::before {
    display: none;
}

h1,
h2,
h3,
h4 {
    color: var(--text);
    font-family: "Roboto Slab", "Roboto", serif;
}

p {
    color: var(--muted);
}

.shell {
    width: min(1280px, calc(100% - 40px));
}

.section {
    padding: 88px 0;
}

.section-dark {
    background: linear-gradient(180deg, #f4f9fc 0%, #ebf3f8 100%);
    border-top: 1px solid rgba(36, 104, 142, 0.08);
    border-bottom: 1px solid rgba(36, 104, 142, 0.08);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.section-heading h2,
.page-hero h1,
.cta-panel h2 {
    margin: 12px 0 16px;
    font-size: clamp(2.45rem, 4.1vw, 4rem);
    letter-spacing: -0.045em;
    line-height: 1.04;
}

.section-kicker,
.admin-kicker {
    color: var(--primary);
    letter-spacing: 0.18em;
}

.button,
.admin-button {
    min-height: 56px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
}

.button-primary,
.admin-button {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(36, 104, 142, 0.2);
}

.button-primary:hover,
.admin-button:hover {
    background: linear-gradient(135deg, var(--primary-strong), #007cc6);
}

.button-secondary,
.admin-button--ghost {
    background: #ffffff;
    border-color: var(--border);
    color: var(--text);
    box-shadow: var(--shadow-soft);
}

.button-secondary:hover,
.admin-button--ghost:hover {
    border-color: rgba(36, 104, 142, 0.24);
    background: #f8fbfd;
}

.text-link {
    color: var(--accent);
}

.text-link:hover {
    color: var(--primary);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(36, 104, 142, 0.08);
}

.header-topline {
    border-bottom: 0;
    background: linear-gradient(90deg, #123b54, #184f71);
}

.header-topline__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    min-height: 42px;
}

.header-topline__start {
    display: flex;
    align-items: center;
    gap: 14px 18px;
    flex: 1;
    min-width: 0;
}

.header-topline__eyebrow {
    flex: 1;
    min-width: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.header-topline__contact {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-shrink: 0;
}

.header-topline__translate {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    flex-shrink: 0;
}

/* GTranslate: beyaz kutu yok — bayraklar doğrudan mavi şeritte, üç dil yan yana */
.msgr-gtranslate-host {
    align-items: center;
}

.msgr-gtranslate-host .gtranslate_wrapper {
    display: flex !important;
    align-items: center;
    line-height: 0;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.msgr-gtranslate-host #gt_float_wrapper {
    position: static !important;
    inset: auto !important;
    z-index: auto !important;
    box-shadow: none !important;
    background: transparent !important;
}

.msgr-gtranslate-host .gt_float_switcher {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    overflow: visible !important;
}

/* Açılır “şu anki dil” satırını kaldır — sadece bayrak şeridi */
.msgr-gtranslate-host .gt_float_switcher .gt-selected {
    display: none !important;
}

/* Tüm diller her zaman görünsün (GTranslate varsayılanı gizler) */
.msgr-gtranslate-host .gt_float_switcher .gt_options {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 6px !important;
    max-width: none !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    overflow: visible !important;
    white-space: normal !important;
    background: transparent !important;
    box-shadow: none !important;
    float: none !important;
    z-index: auto !important;
}

.msgr-gtranslate-host .gt_float_switcher .gt_options.gt-open {
    opacity: 1 !important;
    transform: none !important;
}

.msgr-gtranslate-host .gt_float_switcher .gt_options a.gt-current {
    display: inline-flex !important;
}

.msgr-gtranslate-host .gt_float_switcher .gt_options a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 24px !important;
    min-width: 32px !important;
    padding: 2px !important;
    margin: 0 !important;
    border-radius: 4px !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    text-decoration: none !important;
    font-size: 0 !important;
    line-height: 0 !important;
    color: transparent !important;
    box-shadow: none !important;
    transition:
        background 0.15s ease,
        border-color 0.15s ease,
        transform 0.12s ease;
}

.msgr-gtranslate-host .gt_float_switcher .gt_options a:hover {
    background: rgba(255, 255, 255, 0.22) !important;
    border-color: rgba(255, 255, 255, 0.55) !important;
    color: transparent !important;
}

.msgr-gtranslate-host .gt_float_switcher .gt_options a img {
    display: block !important;
    width: 22px !important;
    height: auto !important;
    max-height: 16px !important;
    margin: 0 !important;
    border-radius: 2px !important;
    object-fit: cover !important;
}

.msgr-gtranslate-host .gt_float_switcher .gt_options a.gt-current {
    border-color: rgba(255, 255, 255, 0.85) !important;
    background: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25) !important;
}

/* Google çeviri: üst siyah şerit ve balon (GTranslate zaten #google_translate_element2 gizler) */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

body {
    top: 0 !important;
    margin-top: 0 !important;
}

.goog-te-balloon-frame,
#goog-gt-tt,
#goog-gt-v,
.goog-tooltip,
.goog-te-menu-frame {
    display: none !important;
    visibility: hidden !important;
}

#google_translate_element2 {
    display: none !important;
}

.header-topline__phone,
.header-topline__mail {
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
}

.header-inner--clean {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
    min-height: 96px;
    position: relative;
}

.brand-mark--clean .brand-mark__logo-wrap {
    min-width: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.brand-mark--clean .brand-mark__logo {
    width: 112px;
}

.site-nav--clean {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 0;
}

.site-nav--clean a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    color: #29495b;
    font-size: 0.96rem;
    font-weight: 700;
    white-space: nowrap;
}

.site-nav--clean a.active,
.site-nav--clean a:hover {
    background: rgba(36, 104, 142, 0.09);
    color: var(--primary-strong);
}

.header-tools {
    display: flex;
    align-items: center;
}

.header-cta,
.nav-cta-link {
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(36, 104, 142, 0.2);
}

.nav-cta-link {
    display: none !important;
}

.menu-toggle {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #ffffff;
}

.hero-landing {
    position: relative;
    overflow: hidden;
    padding: 82px 0 28px;
}

.hero-landing::before {
    content: "";
    position: absolute;
    top: 36px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(36, 104, 142, 0.1), transparent 70%);
    pointer-events: none;
}

.hero-landing__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
    gap: 56px;
    align-items: center;
}

.hero-landing__copy h1 {
    margin: 14px 0 18px;
    max-width: 10ch;
    font-size: clamp(3.35rem, 5.8vw, 5.6rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.hero-landing__copy p {
    max-width: 60ch;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-landing__trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(36, 104, 142, 0.12);
}

.hero-landing__trust-item {
    color: #24485d;
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.5;
}

.hero-landing__stage {
    display: grid;
    gap: 18px;
}

.hero-landing__visual-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(36, 104, 142, 0.12);
    border-radius: 34px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.hero-landing__visual-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 46%, rgba(18, 59, 84, 0.18) 100%);
    pointer-events: none;
}

.hero-landing__image {
    width: 100%;
    height: 580px;
    object-fit: cover;
}

.hero-landing__visual-overlay {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 26px;
    z-index: 1;
    padding: 22px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 20px 40px rgba(18, 59, 84, 0.14);
}

.hero-landing__visual-overlay span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-landing__visual-overlay strong {
    display: block;
    color: var(--text);
    font-size: 1.06rem;
    line-height: 1.45;
}

.hero-landing__partner-strip,
.hero-stats-band {
    display: grid;
    gap: 18px;
}

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

.hero-partner-chip,
.hero-stat-card {
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.hero-partner-chip {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
}

.hero-partner-chip__logo {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    object-fit: contain;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #ffffff;
}

.hero-partner-chip__body strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
    font-size: 1rem;
}

.hero-partner-chip__body span {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.hero-stats-band {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 30px;
}

.hero-stat-card {
    padding: 24px 26px;
}

.hero-stat-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--primary-strong);
    font-family: "Roboto Slab", "Roboto", serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    letter-spacing: -0.04em;
}

.hero-stat-card span {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.home-intro {
    padding-top: 52px;
}

.home-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: start;
}

.home-intro__lead h2 {
    margin: 12px 0 16px;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.home-intro__services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-service {
    position: relative;
    padding: 30px 24px 24px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.home-service::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.home-service__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-service h3 {
    margin-bottom: 10px;
    font-size: 1.18rem;
    line-height: 1.25;
}

.home-partners {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.home-partner {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.home-partner__logo {
    width: 100%;
    max-width: 120px;
    max-height: 86px;
    object-fit: contain;
}

.home-partner h3 {
    margin-bottom: 8px;
    font-size: 1.45rem;
    line-height: 1.2;
}

.home-partner strong {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-strong);
}

.home-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.84fr);
    gap: 26px;
    align-items: start;
}

.home-showcase__copy h2 {
    margin: 12px 0 16px;
}

.home-showcase__actions,
.home-showcase__list,
.cta-panel--brand,
.info-card,
.article-card,
.form-card,
.partner-card,
.feature-card,
.news-card,
.reference-card,
.sector-card,
.mini-panel,
.stat-card,
.value-card,
.vision-card,
.center-card,
.equipment-card,
.media-placeholder,
.filter-panel {
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.home-showcase__actions,
.home-showcase__list {
    padding: 30px;
}

.home-showcase__actions {
    display: grid;
    gap: 18px;
}

.home-action + .home-action {
    padding-top: 18px;
    border-top: 1px solid rgba(36, 104, 142, 0.1);
}

.home-action h3 {
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.home-showcase__list h3 {
    margin: 8px 0 18px;
}

.home-equipment {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid rgba(36, 104, 142, 0.1);
}

.home-equipment:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.home-equipment__image {
    width: 86px;
    height: 72px;
    object-fit: cover;
    border-radius: 16px;
}

.home-equipment strong {
    display: block;
    margin-bottom: 4px;
}

.home-equipment span,
.home-equipment small {
    color: var(--muted);
}

.page-hero {
    padding: 68px 0 30px;
    border-bottom: 1px solid rgba(36, 104, 142, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 252, 0.98)),
        #ffffff;
}

.page-hero .shell {
    position: relative;
    padding: 0 0 20px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.page-hero .shell::after {
    content: "";
    display: block;
    width: 118px;
    height: 4px;
    margin-top: 26px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.page-hero p,
.article-card p {
    max-width: 68ch;
}

.card-grid,
.vision-grid,
.footer-grid {
    display: grid;
    gap: 24px;
}

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

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

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

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    gap: 28px;
    align-items: start;
}

.info-card,
.article-card,
.form-card,
.filter-panel,
.media-placeholder {
    padding: 32px;
}

.feature-card,
.value-card,
.mini-panel,
.sector-card,
.news-card,
.reference-card,
.equipment-card,
.partner-card,
.stat-card,
.vision-card,
.center-card,
.equipment-preview {
    padding: 28px;
}

.info-card:hover,
.article-card:hover,
.form-card:hover,
.partner-card:hover,
.feature-card:hover,
.news-card:hover,
.reference-card:hover,
.sector-card:hover,
.mini-panel:hover,
.stat-card:hover,
.value-card:hover,
.vision-card:hover,
.center-card:hover,
.equipment-card:hover,
.media-placeholder:hover {
    transform: none;
    border-color: var(--border);
    box-shadow: var(--shadow-soft);
}

.news-card__image,
.reference-card__image,
.article-card__image,
.media-placeholder__image,
.sector-card__image {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 20px;
}

.news-card__image,
.reference-card__image,
.sector-card__image,
.article-card__image {
    object-fit: cover;
}

.news-card__image,
.reference-card__image,
.sector-card__image {
    height: 220px;
    margin-bottom: 18px;
}

.article-card__image {
    height: 320px;
    margin-bottom: 20px;
}

.news-card__meta,
.reference-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 0.88rem;
}

.news-card h2,
.news-card h3,
.reference-card h3,
.equipment-card h3,
.mini-panel h3,
.sector-card h3,
.equipment-preview h3 {
    margin-bottom: 10px;
    line-height: 1.22;
}

.brand-band {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.brand-band span {
    padding: 13px 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #ffffff;
    color: var(--primary-strong);
    font-weight: 700;
    box-shadow: var(--shadow-soft);
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 36px;
}

.cta-panel--brand {
    background:
        linear-gradient(135deg, rgba(36, 104, 142, 0.08), rgba(0, 149, 235, 0.05)),
        #ffffff;
}

.site-footer--clean {
    margin-top: 90px;
    padding: 60px 0 24px;
    background: linear-gradient(180deg, #173b52 0%, #123147 100%);
    border-top: 0;
}

.footer-grid--clean {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 0.78fr));
    gap: 34px;
}

.footer-logo {
    width: 112px;
    padding: 10px 14px;
    border-radius: 18px;
    background: #ffffff;
}

.site-footer--clean h3,
.site-footer--clean h4 {
    color: #ffffff;
}

.site-footer--clean h4 {
    margin-bottom: 14px;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.footer-brand h3 {
    margin: 14px 0 10px;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.28;
    letter-spacing: -0.03em;
}

.footer-brand p,
.site-footer--clean .footer-links li,
.site-footer--clean .footer-links a,
.site-footer--clean .social-links a,
.footer-bottom--clean {
    color: rgba(255, 255, 255, 0.76);
}

.footer-links {
    display: grid;
    gap: 12px;
    padding: 0;
    list-style: none;
}

.site-footer--clean .footer-links--contact {
    gap: 14px;
}

.footer-contact-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-line__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin-top: 1px;
    color: #ffffff;
    opacity: 0.92;
}

.footer-contact-line__icon svg {
    display: block;
    width: 15px;
    height: 15px;
}

.footer-contact-line__text {
    flex: 1 1 auto;
    min-width: 0;
    line-height: 1.45;
}

.site-footer--clean .footer-contact-line__text {
    color: inherit;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
}

.footer-bottom--clean {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer--clean .footer-bottom__tagline {
    margin: 0;
    max-width: 52rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer--clean .footer-bottom__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 14px 18px;
}

.site-footer--clean .footer-bottom__credit {
    margin: 10px 0 0;
    width: auto;
    max-width: 100%;
    align-self: flex-end;
    text-align: right;
    font-size: 0.72rem;
    line-height: 1.4;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.42);
}

.site-footer--clean .footer-bottom__credit a {
    color: rgba(255, 255, 255, 0.52);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    transition: color 0.15s ease, border-color 0.15s ease;
}

.site-footer--clean .footer-bottom__credit a:hover {
    color: rgba(255, 255, 255, 0.82);
    border-bottom-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 1240px) {
    .site-nav--clean a {
        padding: 0 11px;
        font-size: 0.92rem;
    }

    .hero-landing__grid,
    .home-intro__grid,
    .home-showcase,
    .footer-grid--clean {
        grid-template-columns: 1fr;
    }

    .hero-stats-band,
    .home-intro__services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-landing__copy h1 {
        max-width: none;
    }
}

@media (max-width: 1100px) {
    .shell {
        width: min(1280px, calc(100% - 28px));
    }

    .section {
        padding: 72px 0;
    }

    .header-topline__eyebrow {
        display: none;
    }

    .header-topline__start {
        justify-content: center;
        flex: 1 1 100%;
        width: 100%;
    }

    .header-topline__translate {
        margin-inline: 0;
    }

    .header-topline__inner {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 16px;
    }

    .header-inner--clean {
        grid-template-columns: auto auto;
        gap: 18px;
        min-height: 82px;
    }

    .site-nav--clean {
        position: absolute;
        top: calc(100% + 12px);
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 18px;
        border: 1px solid var(--border);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
    }

    .site-nav--clean.is-open {
        display: flex;
    }

    .site-nav--clean a {
        width: 100%;
        justify-content: flex-start;
        min-height: 46px;
        white-space: normal;
    }

    .nav-cta-link {
        display: inline-flex !important;
        justify-content: center !important;
        margin-top: 8px;
    }

    .header-tools {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-landing {
        padding-top: 62px;
    }

    .hero-landing__grid,
    .hero-landing__partner-strip,
    .hero-stats-band,
    .home-intro__services,
    .home-partners,
    .card-grid--four,
    .card-grid--three,
    .card-grid--two,
    .split-layout,
    .vision-grid {
        grid-template-columns: 1fr;
    }

    .hero-landing__trust {
        grid-template-columns: 1fr;
    }

    .hero-landing__image {
        height: 440px;
    }

    .page-hero {
        padding-top: 56px;
    }

    .cta-panel,
    .site-footer--clean .footer-bottom__row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 680px) {
    .header-topline__contact {
        gap: 14px;
    }

    .header-topline__mail {
        display: none;
    }

    .brand-mark--clean .brand-mark__logo {
        width: 96px;
    }

    .hero-landing__copy h1 {
        font-size: clamp(2.5rem, 12vw, 3.6rem);
    }

    .hero-landing__copy p,
    .page-hero p {
        font-size: 1rem;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-landing__visual-overlay,
    .home-showcase__actions,
    .home-showcase__list,
    .info-card,
    .article-card,
    .form-card,
    .filter-panel,
    .media-placeholder,
    .feature-card,
    .value-card,
    .mini-panel,
    .sector-card,
    .news-card,
    .reference-card,
    .equipment-card,
    .partner-card,
    .stat-card,
    .vision-card,
    .center-card,
    .equipment-preview,
    .home-partner,
    .home-service,
    .hero-stat-card,
    .hero-partner-chip,
    .cta-panel {
        padding: 22px;
    }

    .home-equipment {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .home-equipment small {
        grid-column: 2;
    }

    .page-hero .shell::after {
        width: 92px;
        margin-top: 22px;
    }
}

/* Minimal refinement update */
.section {
    padding: 68px 0;
}

.section-tight {
    padding: 20px 0 0;
}

.section-heading h2,
.page-hero h1,
.cta-panel h2 {
    margin: 10px 0 14px;
    font-size: clamp(1.9rem, 3.1vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero-landing {
    padding: 94px 0 34px;
}

.hero-landing__grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1fr);
    gap: 64px;
    min-height: min(80vh, 760px);
}

.hero-landing__copy h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 5vw, 4.85rem);
    line-height: 0.98;
}

.hero-landing__copy p {
    max-width: 56ch;
    font-size: 1.02rem;
}

.hero-landing__image {
    height: 660px;
}

.hero-landing__visual-card {
    border-radius: 26px;
}

.hero-landing__visual-overlay {
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 18px 20px;
    border-radius: 20px;
}

.hero-landing__visual-overlay strong {
    font-size: 0.98rem;
}

.hero-landing__trust {
    gap: 12px;
}

.hero-landing__trust-item {
    font-size: 0.92rem;
}

.hero-partner-chip,
.hero-stat-card {
    border-radius: 18px;
}

.home-intro {
    padding-top: 34px;
}

.home-intro__lead h2 {
    font-size: clamp(1.85rem, 3vw, 2.7rem);
    line-height: 1.12;
}

.home-service,
.home-partner,
.home-showcase__actions,
.home-showcase__list,
.info-card,
.article-card,
.form-card,
.partner-card,
.feature-card,
.news-card,
.reference-card,
.sector-card,
.mini-panel,
.stat-card,
.value-card,
.vision-card,
.center-card,
.equipment-card,
.media-placeholder,
.filter-panel,
.cta-panel {
    border-radius: 20px;
    box-shadow: 0 10px 26px rgba(16, 49, 70, 0.05);
}

.home-service,
.home-partner,
.home-showcase__actions,
.home-showcase__list,
.info-card,
.article-card,
.form-card,
.partner-card,
.feature-card,
.news-card,
.reference-card,
.sector-card,
.mini-panel,
.stat-card,
.value-card,
.vision-card,
.center-card,
.equipment-card,
.media-placeholder,
.filter-panel {
    border-color: rgba(36, 104, 142, 0.1);
}

.home-service h3,
.home-partner h3,
.news-card h2,
.news-card h3,
.reference-card h3,
.equipment-card h3,
.mini-panel h3,
.sector-card h3,
.equipment-preview h3 {
    font-size: 1.1rem;
    line-height: 1.28;
}

.page-hero {
    padding: 48px 0 8px;
}

.page-hero p {
    max-width: 60ch;
    font-size: 1rem;
}

.page-hero .shell::after {
    width: 86px;
    height: 3px;
    margin-top: 20px;
}

.brand-mark--clean .brand-mark__logo-wrap {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.footer-logo {
    width: 118px;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.footer-brand h3 {
    margin: 12px 0 8px;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.28;
}

.button-secondary--compact {
    min-height: 48px;
    padding: 0 18px;
}

.exchange-intro {
    display: grid;
    gap: 24px;
}

.exchange-intro__copy {
    max-width: 78ch;
}

.exchange-filterbar {
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(280px, 1fr) auto;
    gap: 16px;
    align-items: end;
    padding: 22px;
    border: 1px solid rgba(36, 104, 142, 0.1);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(16, 49, 70, 0.05);
}

.filter-control {
    display: grid;
    gap: 8px;
}

.filter-control span {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
}

.filter-control select,
.filter-control input {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #ffffff;
    color: var(--text);
}

.filter-control select:focus,
.filter-control input:focus {
    outline: none;
    border-color: rgba(36, 104, 142, 0.55);
    box-shadow: 0 0 0 4px rgba(36, 104, 142, 0.1);
}

.exchange-filterbar__actions {
    display: grid;
    gap: 8px;
    justify-items: end;
}

.exchange-filterbar__summary {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.section-heading--compact {
    margin-bottom: 24px;
}

@media (max-width: 1240px) {
    .hero-landing__grid {
        min-height: auto;
    }
}

@media (max-width: 1100px) {
    .hero-landing__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-landing__image {
        height: 520px;
    }

    .exchange-filterbar {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .exchange-filterbar__actions {
        justify-items: stretch;
    }
}

@media (max-width: 680px) {
    .section {
        padding: 54px 0;
    }

    .section-heading h2,
    .page-hero h1,
    .cta-panel h2 {
        font-size: clamp(1.7rem, 7vw, 2.35rem);
    }

    .hero-landing {
        padding-top: 68px;
    }

    .hero-landing__copy h1 {
        font-size: clamp(2.35rem, 11vw, 3.4rem);
    }

    .hero-landing__image {
        height: 380px;
    }

    .exchange-filterbar {
        padding: 18px;
    }
}

/* Final public polish */
.shell--narrow {
    width: min(980px, calc(100% - 40px));
}

.shell--mid {
    width: min(1120px, calc(100% - 40px));
}

.brand-mark__logo-wrap,
.brand-mark--clean .brand-mark__logo-wrap {
    min-width: auto;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.brand-mark__logo,
.brand-mark--clean .brand-mark__logo,
.footer-logo {
    display: block;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    clip-path: inset(2px 2px 2px 2px);
}

.brand-mark--clean .brand-mark__logo {
    width: 108px;
}

.footer-logo {
    width: 110px;
    padding: 0 !important;
    border-radius: 0 !important;
}

.section-heading h2,
.page-hero h1,
.cta-panel h2 {
    font-size: clamp(1.55rem, 2.6vw, 2.35rem);
    line-height: 1.1;
}

.home-intro__lead h2 {
    font-size: clamp(1.45rem, 2.1vw, 1.95rem);
    line-height: 1.16;
}

.hero-landing__copy h1 {
    max-width: 8.6ch;
    font-size: clamp(2.45rem, 4.4vw, 4rem);
    line-height: 0.98;
}

.news-card h2,
.news-card h3,
.reference-card h3,
.equipment-card h3,
.mini-panel h3,
.sector-card h3,
.equipment-preview h3,
.home-service h3,
.home-partner h3 {
    font-size: 1rem;
    line-height: 1.32;
}

.page-hero {
    padding: 42px 0 6px;
}

.page-hero .shell {
    width: min(980px, calc(100% - 40px));
}

.page-hero p {
    max-width: 48ch;
}

.hero-landing {
    padding: 44px 0 28px;
}

.hero-landing__frame {
    position: relative;
    overflow: hidden;
    min-height: 640px;
    border: 1px solid rgba(36, 104, 142, 0.12);
    border-radius: 30px;
    background: #123247;
    box-shadow: 0 26px 60px rgba(10, 31, 45, 0.14);
}

.hero-landing__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-landing__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 32, 45, 0.88) 0%, rgba(10, 32, 45, 0.76) 34%, rgba(10, 32, 45, 0.34) 68%, rgba(10, 32, 45, 0.12) 100%),
        linear-gradient(180deg, rgba(18, 59, 84, 0.15), rgba(18, 59, 84, 0.5));
}

.hero-landing__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.62fr);
    gap: 32px;
    min-height: 640px;
    padding: 54px;
}

.hero-landing__copy--card {
    align-self: center;
    max-width: 640px;
    padding: 34px 34px 30px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 44px rgba(10, 31, 45, 0.16);
}

.hero-landing__copy--card p {
    font-size: 1rem;
}

.hero-landing__trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.hero-landing__trust-item {
    font-size: 0.88rem;
    font-weight: 700;
}

.hero-landing__aside {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 16px;
}

.hero-landing__visual-overlay--floating {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-left: auto;
    max-width: 390px;
    padding: 22px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 42px rgba(10, 31, 45, 0.18);
}

.hero-landing__visual-overlay span {
    font-size: 0.76rem;
}

.hero-landing__visual-overlay strong {
    font-size: 0.95rem;
}

.hero-landing__partner-strip {
    grid-template-columns: 1fr;
    width: min(100%, 390px);
    margin-left: auto;
}

.hero-partner-chip {
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.9);
}

.hero-partner-chip__logo {
    width: 54px;
    height: 54px;
}

.hero-stats-band {
    position: relative;
    z-index: 2;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: -34px;
    padding: 0 22px;
}

.hero-stat-card {
    padding: 20px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
}

.hero-stat-card strong {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.section-heading {
    max-width: 620px;
}

.article-card,
.references-intro {
    max-width: 860px;
}

.references-intro {
    display: grid;
    gap: 14px;
}

.references-intro p:last-child {
    margin-bottom: 0;
}

.brand-band--references {
    max-width: 860px;
}

.section-stack--references {
    gap: 42px;
}

.reference-group {
    max-width: 1080px;
    margin: 0 auto;
}

.reference-group .section-heading {
    max-width: 520px;
    margin-bottom: 20px;
}

.reference-card {
    padding: 24px;
}

.reference-card__image {
    height: 200px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-links__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    color: #ffffff !important;
    font-weight: 700;
    border: 0 !important;
}

.social-links__item--linkedin {
    background: #0a66c2;
}

.social-links__item--youtube {
    background: #ff0033;
}

.social-links__item--instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b 52%, #8134af);
}

.social-links__item--facebook {
    background: #1877f2;
}

@media (max-width: 1100px) {
    .hero-landing__content {
        grid-template-columns: 1fr;
        padding: 34px;
    }

    .hero-landing__copy--card,
    .hero-landing__visual-overlay--floating,
    .hero-landing__partner-strip {
        max-width: none;
        width: 100%;
        margin-left: 0;
    }

    .hero-stats-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 18px;
        padding: 0;
    }
}

@media (max-width: 760px) {
    .shell--narrow,
    .shell--mid,
    .page-hero .shell {
        width: min(100%, calc(100% - 24px));
    }

    .section-heading h2,
    .page-hero h1,
    .cta-panel h2 {
        font-size: clamp(1.45rem, 7vw, 2rem);
    }

    .hero-landing__frame {
        min-height: auto;
    }

    .hero-landing__content {
        min-height: auto;
        padding: 22px;
    }

    .hero-landing__copy--card {
        padding: 22px;
    }

    .hero-landing__copy h1 {
        font-size: clamp(2rem, 10vw, 2.9rem);
    }

    .hero-landing__trust,
    .hero-stats-band {
        grid-template-columns: 1fr;
    }

    .social-links__item {
        min-width: 0;
        flex: 1 1 calc(50% - 6px);
    }
}

/* Word doc alignment */
.doc-hero-slider {
    padding: 0 0 28px;
    background: linear-gradient(180deg, #eef5fa 0%, #f8fbfd 100%);
}

.doc-hero-slide {
    position: relative;
    overflow: hidden;
    min-height: min(82vh, 820px);
    padding: 96px 0 88px;
    border-bottom: 0;
}

.doc-hero-slide__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doc-hero-slide__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(96deg, rgba(7, 26, 38, 0.84) 0%, rgba(7, 26, 38, 0.72) 34%, rgba(7, 26, 38, 0.28) 72%, rgba(7, 26, 38, 0.14) 100%),
        linear-gradient(180deg, rgba(36, 104, 142, 0.16), rgba(7, 26, 38, 0.12));
}

.doc-hero-slider .hero-slider__dots {
    position: relative;
    z-index: 4;
    margin-top: -10px;
}

.doc-hero-slider .hero-dot {
    background: rgba(255, 255, 255, 0.34);
}

.doc-hero-slider .hero-dot.is-active {
    background: linear-gradient(135deg, #0095eb, #24688e);
}

.doc-hero-slide__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
    gap: 36px;
    align-items: end;
    min-height: calc(min(82vh, 820px) - 184px);
}

.doc-hero-copy .section-kicker,
.doc-hero-copy h1,
.doc-hero-copy p {
    color: #ffffff;
}

.doc-hero-copy .section-kicker {
    color: #d7edfb;
}

.doc-hero-copy .section-kicker::before {
    background: #35a4ff;
}

.doc-hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.8rem, 5.3vw, 4.85rem);
    line-height: 0.94;
    margin-bottom: 18px;
}

.doc-hero-copy p {
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.03rem;
}

.doc-hero-copy .button-secondary {
    background: rgba(255, 255, 255, 0.94);
    border-color: transparent;
}

.doc-hero-aside {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 16px;
    justify-items: end;
}

.doc-hero-panel,
.doc-hero-mini-card {
    width: min(100%, 392px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: rgba(7, 26, 38, 0.34);
    box-shadow: 0 26px 56px rgba(7, 26, 38, 0.18);
    backdrop-filter: blur(14px);
    color: #ffffff;
}

.doc-hero-panel {
    padding: 24px 26px;
}

.doc-hero-panel span {
    display: block;
    color: #9bd2ff;
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.doc-hero-panel strong {
    display: block;
    margin: 10px 0 10px;
    font-size: 1.28rem;
    line-height: 1.15;
}

.doc-hero-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.doc-hero-mini-list {
    display: grid;
    gap: 14px;
    width: min(100%, 392px);
}

.doc-hero-mini-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 14px;
}

.doc-hero-mini-card img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 16px;
}

.doc-hero-mini-card strong,
.doc-hero-mini-card span {
    display: block;
}

.doc-hero-mini-card strong {
    margin-bottom: 4px;
    font-size: 1rem;
    color: #ffffff;
}

.doc-hero-mini-card span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

.doc-hero-mini-card--logo img {
    object-fit: contain;
    background: #ffffff;
    padding: 10px;
}

.doc-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.doc-stat-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.doc-stat-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.4rem;
    color: var(--primary-strong);
}

.doc-stat-card span {
    color: var(--muted);
}

.doc-section-soft {
    background: linear-gradient(180deg, #f6fafd 0%, #eef4f8 100%);
}

.doc-section-heading {
    max-width: 760px;
}

.doc-partner-grid,
.doc-action-grid {
    display: grid;
    gap: 22px;
}

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

.doc-action-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 26px;
}

.doc-partner-card,
.doc-action-card {
    height: 100%;
}

.doc-partner-card__logo {
    width: 100px;
    height: 68px;
    object-fit: contain;
    margin-bottom: 18px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #ffffff;
}

.doc-action-card__index {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: rgba(36, 104, 142, 0.08);
    color: var(--primary);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.doc-equipment-rack {
    margin-top: 34px;
}

.doc-reference-modules {
    display: grid;
    gap: 28px;
}

.doc-reference-module {
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.doc-reference-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 24px;
    align-items: start;
}

.doc-reference-side {
    display: grid;
    gap: 18px;
}

.doc-reference-note,
.doc-reference-list-card {
    padding: 24px;
    border: 1px solid rgba(36, 104, 142, 0.12);
    border-radius: 22px;
    background: linear-gradient(180deg, #f8fbfe 0%, #eef4f8 100%);
}

.doc-reference-list-card {
    margin-top: 24px;
}

.doc-brand-band {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.doc-brand-chip {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #ffffff;
    color: var(--primary-strong);
    font-weight: 700;
}

.doc-reference-lines {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.doc-reference-lines li {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(36, 104, 142, 0.12);
    color: var(--muted);
}

.doc-reference-lines li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.doc-reference-lines strong {
    color: var(--text);
}

.contact-facts {
    display: grid;
    gap: 16px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.contact-facts li {
    display: grid;
    gap: 6px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(36, 104, 142, 0.12);
}

.contact-facts li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.contact-facts__label {
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-facts__value,
.contact-facts__value a {
    color: var(--text);
}

.contact-partner-block {
    display: grid;
    gap: 14px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(36, 104, 142, 0.12);
}

.contact-partner-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-partner-card {
    display: grid;
    gap: 12px;
    justify-items: center;
    align-content: center;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #ffffff;
    text-align: center;
}

.contact-partner-card img {
    width: 122px;
    height: 64px;
    object-fit: contain;
}

/* —— İletişim sayfası: geniş layout, gruplu form, sakin kurumsal görünüm —— */
.contact-page__shell {
    width: min(1320px, calc(100% - 32px));
}

.contact-page .split-layout--contact {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
    gap: clamp(32px, 4.5vw, 56px) !important;
    align-items: start;
}

.contact-page__aside {
    position: sticky;
    top: 92px;
}

.contact-page__aside.info-card {
    padding: clamp(28px, 3vw, 40px);
}

.contact-page .form-card--contact {
    padding: clamp(28px, 3vw, 40px) clamp(28px, 3.5vw, 44px);
    border-radius: 22px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.65) inset,
        0 18px 44px rgba(23, 48, 66, 0.07);
}

.contact-page .form-card--contact:hover {
    transform: none;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.65) inset,
        0 18px 44px rgba(23, 48, 66, 0.07);
    border-color: var(--border);
}

.contact-form__header {
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(36, 104, 142, 0.14);
}

.contact-form__title {
    margin: 6px 0 0;
    font-size: clamp(1.35rem, 2.1vw, 1.65rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--text);
}

.contact-form__intro {
    margin: 14px 0 0;
    max-width: 52rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--muted);
}

.contact-form__group {
    margin: 0 0 26px;
}

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

.contact-form__group-title {
    margin: 0 0 14px;
    padding: 0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
}

.form-grid--contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
}

.form-grid--contact .form-grid__wide {
    grid-column: 1 / -1;
}

.contact-page .form-card--contact input,
.contact-page .form-card--contact textarea,
.contact-page .form-card--contact select {
    min-height: 46px;
    border-radius: 12px;
    font-size: 0.95rem;
}

.contact-page .form-card--contact textarea {
    min-height: 168px;
    resize: vertical;
    line-height: 1.55;
}

.contact-page .form-card--contact select {
    cursor: pointer;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
        linear-gradient(135deg, var(--muted) 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% + 3px),
        calc(100% - 16px) calc(50% + 3px);
    background-size: 6px 6px;
    background-repeat: no-repeat;
    padding-right: 40px;
}

.contact-form__actions {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(36, 104, 142, 0.12);
    display: grid;
    gap: 16px;
}

.contact-form__hint {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--muted);
}

.contact-form__hint a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.contact-form__hint a:hover {
    text-decoration: underline;
}

.contact-form__submit {
    min-height: 50px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.form-field--human-check {
    margin-top: 8px;
}

.form-field--human-check .form-human-input {
    max-width: 8rem;
}

.form-hp-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-page--map {
    padding-top: 0;
}

@media (max-width: 1020px) {
    .contact-page .split-layout--contact {
        grid-template-columns: 1fr;
        gap: 28px !important;
    }

    .contact-page__aside {
        position: static;
    }
}

@media (max-width: 640px) {
    .form-grid--contact {
        grid-template-columns: 1fr;
    }
}

.page-hero h1 {
    font-size: clamp(1.8rem, 2.4vw, 2.5rem);
}

.section-heading h2,
.cta-panel h2 {
    font-size: clamp(1.45rem, 2vw, 2rem);
}

@media (max-width: 1100px) {
    .doc-hero-slide__content,
    .doc-reference-grid {
        grid-template-columns: 1fr;
    }

    .doc-hero-aside {
        justify-items: stretch;
    }

    .doc-hero-panel,
    .doc-hero-mini-list,
    .doc-hero-mini-card {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .doc-stat-grid,
    .doc-partner-grid,
    .doc-action-grid,
    .contact-partner-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .doc-hero-slide {
        min-height: auto;
        padding: 84px 0 74px;
    }

    .doc-hero-slide__content {
        min-height: auto;
        gap: 22px;
    }

    .doc-hero-copy h1 {
        max-width: 12ch;
        font-size: clamp(2.2rem, 10vw, 3.2rem);
    }

    .doc-hero-mini-card {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .doc-reference-module {
        padding: 24px;
    }
}

/* 2026 layout refresh */
.brand-mark__logo-wrap,
.brand-mark--clean .brand-mark__logo-wrap {
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.brand-mark__logo,
.footer-logo {
    width: 118px;
}

.section-kicker--light {
    color: rgba(233, 245, 255, 0.92);
}

.section-kicker--light::before {
    background: currentColor;
}

.section-heading--wide {
    max-width: 900px;
}

.top-space {
    margin-top: 34px;
}

.top-space-xs {
    margin-top: 18px;
}

.inner-hero {
    position: relative;
    overflow: hidden;
    padding: 112px 0 76px;
    border-bottom: 1px solid rgba(188, 204, 215, 0.65);
    background: linear-gradient(135deg, #123b57 0%, #1a5275 42%, #24688e 100%);
}

.inner-hero__media,
.inner-hero__veil {
    position: absolute;
    inset: 0;
}

.inner-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-hero__veil {
    background:
        linear-gradient(115deg, rgba(8, 22, 35, 0.86) 0%, rgba(12, 39, 58, 0.74) 40%, rgba(15, 47, 70, 0.3) 100%),
        radial-gradient(circle at top right, rgba(0, 149, 235, 0.24), transparent 28%);
}

.inner-hero .shell {
    position: relative;
    z-index: 2;
}

.inner-hero__content {
    max-width: 760px;
}

.inner-hero__content--compact {
    max-width: 640px;
}

/* Yasal sayfalar: üst bant metni header ile aynı shell genişliğinde (dar sütun yok) */
.inner-hero--privacy .inner-hero__content,
.inner-hero--privacy .inner-hero__content.inner-hero__content--compact {
    max-width: none;
}

.inner-hero__content h1 {
    margin: 12px 0 14px;
    color: #ffffff;
    font-size: clamp(2.1rem, 4vw, 3.35rem);
    letter-spacing: -0.04em;
}

.inner-hero__content p {
    max-width: 62ch;
    color: rgba(235, 245, 250, 0.88);
    font-size: 1.02rem;
}

.inner-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.home-stage {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(188, 204, 215, 0.58);
    background: #0f3148;
}

.home-stage__slider {
    position: relative;
    min-height: clamp(620px, 84vh, 860px);
}

.home-stage__slider .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.home-stage__slider .hero-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.home-stage__slide {
    min-height: inherit;
}

.home-stage__image,
.home-stage__overlay {
    position: absolute;
    inset: 0;
}

.home-stage__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-stage__overlay {
    background:
        linear-gradient(110deg, rgba(6, 18, 28, 0.86) 0%, rgba(11, 37, 55, 0.72) 42%, rgba(20, 65, 95, 0.24) 100%),
        linear-gradient(180deg, rgba(6, 18, 28, 0.24) 0%, rgba(6, 18, 28, 0.5) 100%);
}

.home-stage__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 340px);
    gap: 42px;
    align-items: end;
    min-height: inherit;
    padding: 150px 0 112px;
}

.home-stage__copy h1 {
    margin: 14px 0 18px;
    max-width: 11ch;
    color: #ffffff;
    font-size: clamp(2.9rem, 6vw, 5.45rem);
    line-height: 0.97;
    letter-spacing: -0.055em;
}

.home-stage__copy p {
    max-width: 58ch;
    color: rgba(237, 245, 249, 0.9);
    font-size: 1.07rem;
}

.home-stage__video-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: rgba(237, 245, 249, 0.9);
    font-weight: 700;
}

.home-stage__panel {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.2);
}

.home-stage__panel-label {
    display: inline-block;
    margin-bottom: 12px;
    color: rgba(237, 245, 249, 0.76);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-stage__panel strong {
    display: block;
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.25;
}

.home-stage__panel-grid {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.home-stage__panel-card {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(9, 27, 40, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-stage__panel-card span {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 800;
}

.home-stage__panel-card p,
.intro-card p:last-child,
.reference-sidecard p:last-child {
    margin-bottom: 0;
}

.home-stage__dots {
    position: relative;
    z-index: 3;
    margin-top: -64px;
    margin-bottom: 24px;
}

.home-stage__dots .hero-dot {
    width: 13px;
    height: 13px;
    border: 0;
    background: rgba(255, 255, 255, 0.35);
}

.home-stage__dots .hero-dot.is-active {
    width: 42px;
    background: #ffffff;
}

.home-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.home-metric {
    padding: 22px 24px;
    border: 1px solid rgba(188, 204, 215, 0.72);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
}

.home-metric strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
    font-size: 1.35rem;
    font-weight: 800;
}

.home-metric span {
    color: var(--muted);
    font-size: 0.95rem;
}

.logo-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
    margin-bottom: 34px;
}

.logo-strip__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(188, 204, 215, 0.72);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
}

.logo-strip__item img {
    width: 92px;
    height: 48px;
    object-fit: contain;
    filter: saturate(0.96);
}

.logo-strip__item span {
    color: var(--text);
    font-weight: 700;
}

.focus-grid,
.partner-showcase,
.action-grid,
.service-strip,
.reference-module__grid {
    display: grid;
    gap: 22px;
}

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

.focus-card,
.action-card,
.service-strip__card,
.reference-list-card,
.intro-card,
.reference-sidecard {
    padding: 24px;
    border: 1px solid rgba(188, 204, 215, 0.72);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
}

.intro-card--plain {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.focus-card__index,
.action-card__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: rgba(36, 104, 142, 0.11);
    color: var(--primary-strong);
    font-weight: 800;
}

.focus-card h3,
.action-card h3,
.partner-showcase__card h3,
.listing-card h3,
.reference-module__head h2,
.article-card h2,
.form-card h2,
.news-card h3,
.value-card h3,
.vision-card h2 {
    margin: 0 0 12px;
    font-size: clamp(1.18rem, 2vw, 1.62rem);
    letter-spacing: -0.03em;
}

.section-heading h2,
.cta-panel h2 {
    margin: 10px 0 12px;
    font-size: clamp(1.62rem, 3vw, 2.42rem);
}

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

.partner-showcase__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    padding: 28px;
    border: 1px solid rgba(188, 204, 215, 0.72);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
}

.partner-showcase__card .detail-list {
    flex: 1 1 auto;
    min-height: 0;
    margin-top: 16px;
    margin-bottom: 0;
}

.partner-showcase__card .button {
    align-self: flex-start;
    flex-shrink: 0;
    margin-top: clamp(26px, 3.2vw, 36px);
}

.partner-showcase__logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 58px;
    margin-bottom: 18px;
}

.partner-showcase__logo img {
    max-width: 140px;
    max-height: 56px;
    object-fit: contain;
}

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

.listing-preview {
    margin-top: 32px;
}

.listing-card {
    overflow: hidden;
    border: 1px solid rgba(188, 204, 215, 0.72);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-soft);
}

.listing-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #dfe8ee;
}

.listing-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.listing-card:hover .listing-card__image {
    transform: scale(1.035);
}

.listing-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(12, 43, 62, 0.78);
    color: #ffffff;
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.listing-card__body {
    padding: 22px 22px 24px;
}

.listing-card__topline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.listing-card__meta {
    display: grid;
    gap: 8px;
    margin: 0 0 18px;
    padding-left: 1rem;
    color: var(--muted);
}

.listing-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.listing-card__video {
    display: inline-flex;
    align-items: center;
    color: var(--primary-strong);
    font-weight: 700;
}

.exchange-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
    gap: 28px;
    align-items: start;
}

.exchange-filterbar {
    display: grid;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(188, 204, 215, 0.72);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
}

.filter-control {
    display: grid;
    gap: 8px;
}

.filter-control span {
    color: var(--text);
    font-size: 0.84rem;
    font-weight: 700;
}

.filter-control select,
.filter-control input {
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(188, 204, 215, 0.9);
    border-radius: 16px;
    background: #ffffff;
}

.exchange-filterbar__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.button-secondary--compact {
    min-height: 44px;
    padding: 0 18px;
}

.exchange-filterbar__summary {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

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

.reference-modules {
    display: grid;
    gap: 34px;
}

.reference-module {
    display: grid;
    gap: 22px;
}

.reference-module__head {
    max-width: 840px;
}

.reference-module__grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.8fr);
    align-items: start;
}

.reference-feature {
    overflow: hidden;
    border: 1px solid rgba(188, 204, 215, 0.72);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.reference-feature__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.reference-feature__body {
    padding: 24px;
}

.reference-feature__meta,
.reference-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.reference-lines {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.reference-lines li {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 224, 231, 0.72);
    color: var(--muted);
}

.reference-lines li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.brand-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 22px;
}

.brand-chip {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(36, 104, 142, 0.09);
    color: var(--primary-strong);
    font-size: 0.82rem;
    font-weight: 700;
}

.reference-card--simple {
    overflow: hidden;
    border: 1px solid rgba(188, 204, 215, 0.72);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-soft);
}

.reference-card--simple .reference-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.reference-card--simple .reference-card__meta,
.reference-card--simple h3,
.reference-card--simple strong,
.reference-card--simple p {
    padding-left: 22px;
    padding-right: 22px;
}

.reference-card--simple .reference-card__meta {
    margin-top: 22px;
}

.reference-card--simple p {
    padding-bottom: 24px;
}

.detail-panel--surface {
    padding: 24px;
    border: 1px solid rgba(188, 204, 215, 0.72);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
}

.detail-panel--surface strong {
    display: block;
    margin-bottom: 16px;
    color: var(--text);
    font-size: 1.08rem;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.social-links__item {
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    border: 0;
    color: #ffffff;
    font-weight: 700;
}

.social-links__item--linkedin {
    background: #0a66c2;
}

.social-links__item--youtube {
    background: #ff0033;
}

.social-links__item--instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.social-links__item--facebook {
    background: #1877f2;
}

@media (max-width: 1080px) {
    .home-stage__inner,
    .exchange-toolbar,
    .reference-module__grid {
        grid-template-columns: 1fr;
    }

    .home-stage__copy h1 {
        max-width: 13ch;
    }

    .home-stage__panel {
        max-width: 460px;
    }
}

@media (max-width: 900px) {
    .home-metrics,
    .focus-grid,
    .partner-showcase,
    .action-grid,
    .service-strip,
    .social-links {
        grid-template-columns: 1fr;
    }

    .home-stage__inner {
        padding: 138px 0 90px;
    }

    .home-stage__copy h1 {
        font-size: clamp(2.45rem, 8vw, 4rem);
    }
}

@media (max-width: 760px) {
    .inner-hero {
        padding: 102px 0 64px;
    }

    .home-stage__slider {
        min-height: 560px;
    }

    .home-stage__inner {
        gap: 24px;
        padding: 124px 0 82px;
    }

    .home-stage__copy h1 {
        max-width: none;
        font-size: clamp(2.2rem, 11vw, 3.5rem);
    }

    .inner-hero__content h1 {
        font-size: clamp(1.9rem, 8vw, 2.75rem);
    }

    .logo-strip,
    .home-metrics {
        gap: 14px;
    }

    .exchange-filterbar {
        padding: 18px;
    }

    .listing-card__actions,
    .exchange-filterbar__actions,
    .inner-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* refinement pass */
.section {
    padding: 92px 0;
}

.section-tight {
    padding: 38px 0 0;
}

.section-heading {
    margin-bottom: 38px;
}

.section-heading h2,
.cta-panel h2 {
    font-size: clamp(1.48rem, 2.6vw, 2.12rem);
}

.inner-hero {
    padding: 104px 0 72px;
}

.inner-hero__content {
    max-width: 700px;
}

.inner-hero__content h1 {
    font-size: clamp(1.9rem, 3.2vw, 2.85rem);
}

.inner-hero__content p {
    max-width: 58ch;
    font-size: 0.98rem;
}

.home-stage .shell {
    width: min(1140px, calc(100% - 42px));
}

.home-stage__slider {
    min-height: clamp(540px, 72vh, 700px);
}

.home-stage__inner {
    grid-template-columns: minmax(0, 0.96fr) minmax(260px, 300px);
    gap: 52px;
    align-items: center;
    padding: 132px 0 94px;
}

.home-stage__copy {
    max-width: 640px;
}

.home-stage__copy h1 {
    max-width: 10.8ch;
    margin: 12px 0 16px;
    font-size: clamp(2.35rem, 4.7vw, 4.25rem);
}

.home-stage__copy p {
    max-width: 54ch;
    font-size: 1rem;
}

.home-stage__signal {
    display: inline-flex;
    gap: 8px;
    margin-bottom: 18px;
}

.home-stage__signal span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.home-stage__signal span:nth-child(2) {
    opacity: 0.72;
}

.home-stage__signal span:nth-child(3) {
    opacity: 0.5;
}

.home-stage__panel {
    padding: 22px;
    border-radius: 22px;
}

.home-stage__panel strong {
    font-size: 1.14rem;
}

.home-stage__dots {
    margin-top: -42px;
    margin-bottom: 18px;
}

.card-grid,
.vision-grid,
.split-layout {
    gap: 30px;
}

.focus-grid,
.partner-showcase,
.action-grid,
.service-strip,
.reference-module__grid {
    gap: 28px;
}

.logo-strip {
    margin-bottom: 42px;
}

.listing-preview {
    margin-top: 42px;
}

.exchange-toolbar {
    gap: 36px;
}

.reference-modules {
    gap: 42px;
}

.reference-module {
    gap: 28px;
}

.reference-module__head {
    max-width: 760px;
}

.reference-lines {
    gap: 12px;
}

.intro-card,
.reference-list-card,
.reference-sidecard,
.focus-card,
.action-card,
.service-strip__card {
    padding: 28px;
}

@media (max-width: 1080px) {
    .home-stage__inner {
        gap: 34px;
        padding: 124px 0 86px;
    }

    .home-stage__copy h1 {
        max-width: 12ch;
        font-size: clamp(2.2rem, 6vw, 3.7rem);
    }
}

@media (max-width: 760px) {
    .section {
        padding: 74px 0;
    }

    .section-tight {
        padding: 30px 0 0;
    }

    .home-stage .shell {
        width: min(100%, calc(100% - 28px));
    }

    .home-stage__slider {
        min-height: 500px;
    }

    .home-stage__inner {
        gap: 22px;
        padding: 114px 0 74px;
    }

    .home-stage__copy h1 {
        max-width: none;
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .home-stage__panel {
        max-width: none;
    }

    .card-grid,
    .vision-grid,
    .split-layout,
    .focus-grid,
    .partner-showcase,
    .action-grid,
    .service-strip,
    .reference-module__grid {
        gap: 20px;
    }
}

/* final consistency pass */
.shell--mid {
    width: min(1040px, calc(100% - 42px));
}

.section-heading--wide,
.reference-module__head {
    max-width: 720px;
}

.inner-hero {
    padding: 96px 0 64px;
}

.inner-hero__content h1 {
    font-size: clamp(1.68rem, 2.7vw, 2.34rem);
}

.inner-hero__content p {
    max-width: 54ch;
    font-size: 0.94rem;
}

.home-stage__slider {
    min-height: clamp(420px, 56vh, 520px);
}

.home-stage__inner {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 250px);
    gap: 34px;
    padding: 92px 0 54px;
}

.home-stage__copy {
    max-width: 640px;
}

.home-stage__signal {
    gap: 6px;
    margin-bottom: 14px;
}

.home-stage__signal span {
    width: 6px;
    height: 6px;
}

.home-stage__copy h1 {
    max-width: 14.4ch;
    margin: 8px 0 12px;
    font-size: clamp(1.54rem, 2.9vw, 2.42rem);
    line-height: 1.06;
}

.home-stage__copy p {
    max-width: 56ch;
    font-size: 0.9rem;
}

.home-stage__panel {
    max-width: 250px;
    padding: 16px;
    border-radius: 18px;
}

.home-stage__panel strong {
    font-size: 0.92rem;
}

.home-stage__panel-card span {
    font-size: 1.24rem;
}

.hero-slider__nav {
    position: absolute;
    inset: 50% 18px auto 18px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
}

.hero-slider__arrow {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(10, 31, 45, 0.34);
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(6, 19, 28, 0.14);
    backdrop-filter: blur(12px);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.hero-slider__arrow span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    line-height: 1;
    transform: translateY(-1px);
}

.hero-slider__arrow:hover,
.hero-slider__arrow:focus-visible {
    background: rgba(12, 43, 61, 0.56);
    border-color: rgba(255, 255, 255, 0.28);
    transform: scale(1.03);
}

.hero-slider__arrow:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.44);
    outline-offset: 3px;
}

.home-stage__nav {
    inset-inline: 18px;
}

.rich-text {
    color: var(--muted);
}

.rich-text > *:first-child {
    margin-top: 0;
}

.rich-text > *:last-child {
    margin-bottom: 0;
}

.rich-text p,
.rich-text ul,
.rich-text ol,
.rich-text blockquote,
.rich-text pre {
    margin: 0 0 16px;
}

.rich-text ul,
.rich-text ol {
    padding-left: 22px;
}

.rich-text li + li {
    margin-top: 6px;
}

.rich-text h1,
.rich-text h2,
.rich-text h3 {
    margin: 22px 0 12px;
    color: var(--text);
    letter-spacing: -0.03em;
}

.rich-text h1 {
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
}

.rich-text h2 {
    font-size: clamp(1.22rem, 1.9vw, 1.5rem);
}

.rich-text h3 {
    font-size: clamp(1.08rem, 1.6vw, 1.24rem);
}

.rich-text blockquote {
    padding: 14px 18px;
    border-left: 3px solid rgba(36, 104, 142, 0.28);
    border-radius: 0 18px 18px 0;
    background: rgba(236, 244, 249, 0.8);
    color: var(--text);
}

.rich-text a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(36, 104, 142, 0.26);
    text-underline-offset: 3px;
}

.rich-text pre,
.rich-text code {
    font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
}

.rich-text--compact p,
.rich-text--compact ul,
.rich-text--compact ol,
.rich-text--compact blockquote {
    margin-bottom: 12px;
}

.equipment-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.equipment-gallery__item {
    overflow: hidden;
    border: 1px solid rgba(22, 54, 75, 0.1);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(18, 39, 54, 0.08);
}

.equipment-gallery__item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.equipment-gallery__item--featured {
    grid-column: span 2;
}

@media (max-width: 1080px) {
    .home-stage__slider {
        min-height: clamp(400px, 52vh, 500px);
    }

    .home-stage__inner {
        gap: 26px;
        padding: 88px 0 50px;
    }

    .home-stage__copy h1 {
        max-width: 15ch;
        font-size: clamp(1.44rem, 3.8vw, 2.16rem);
    }

    .hero-slider__nav,
    .home-stage__nav {
        inset-inline: 12px;
    }

    .hero-slider__arrow {
        width: 42px;
        height: 42px;
    }

    .hero-slider__arrow span {
        font-size: 1.6rem;
    }

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

@media (max-width: 760px) {
    .shell--mid {
        width: min(100%, calc(100% - 28px));
    }

    .inner-hero {
        padding: 88px 0 56px;
    }

    .home-stage__slider {
        min-height: 400px;
    }

    .home-stage__inner {
        gap: 14px;
        padding: 82px 0 42px;
    }

    .home-stage__copy h1 {
        max-width: none;
        font-size: clamp(1.42rem, 7.2vw, 2rem);
    }

    .home-stage__copy p {
        font-size: 0.86rem;
    }

    .hero-slider__nav,
    .home-stage__nav {
        inset: auto 10px 108px 10px;
        transform: none;
    }

    .hero-slider__arrow {
        width: 38px;
        height: 38px;
    }

    .hero-slider__arrow span {
        font-size: 1.35rem;
    }

    .home-stage__panel {
        padding: 14px;
    }

    .equipment-gallery {
        grid-template-columns: 1fr;
    }

    .equipment-gallery__item--featured {
        grid-column: auto;
    }
}

/* exchange and references refinement */
.exchange-filterbar {
    gap: 16px;
}

.exchange-filterbar__fields {
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: 16px;
}

.exchange-filterbar__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 4px;
    border-top: 1px solid rgba(188, 204, 215, 0.52);
}

.exchange-filterbar__summary {
    white-space: nowrap;
}

.button-secondary--compact {
    white-space: nowrap;
}

.reference-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    padding: 30px 32px;
    border: 1px solid rgba(188, 204, 215, 0.72);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.96));
    box-shadow: var(--shadow-soft);
}

.reference-intro__head h2 {
    margin: 0;
    font-size: clamp(1.28rem, 2vw, 1.84rem);
    letter-spacing: -0.035em;
    line-height: 1.16;
}

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

.reference-module--structured {
    padding: 30px 32px;
    border: 1px solid rgba(188, 204, 215, 0.72);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.96));
    box-shadow: var(--shadow-soft);
}

.reference-sidecard--structured {
    gap: 18px;
}

.reference-list-card--structured {
    margin-top: 4px;
}

.reference-list-card__head {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.reference-list-card__head p {
    margin: 0;
}

.reference-register {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(212, 224, 231, 0.72);
}

.reference-register--compact {
    margin: 2px 0 0;
}

.reference-register__row {
    display: grid;
    grid-template-columns: minmax(220px, 0.56fr) minmax(0, 1fr);
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(212, 224, 231, 0.72);
}

.reference-register__meta {
    display: grid;
    gap: 6px;
}

.reference-register__meta strong {
    margin: 0;
    color: var(--text);
    font-size: 0.98rem;
}

.reference-register__meta span {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.reference-register__body {
    display: grid;
    gap: 8px;
}

.reference-register__title {
    color: var(--text);
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.45;
}

.reference-register__body p {
    margin: 0;
    color: var(--muted);
}

@media (max-width: 1080px) {
    .exchange-filterbar__fields,
    .reference-intro,
    .reference-register__row {
        grid-template-columns: 1fr;
    }

    .exchange-filterbar__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .exchange-filterbar__summary {
        white-space: normal;
    }
}

@media (max-width: 760px) {
    .reference-module--structured,
    .reference-intro {
        padding: 22px;
        border-radius: 22px;
    }

    .exchange-filterbar__fields {
        gap: 12px;
    }

    .reference-register__row {
        gap: 10px;
        padding: 14px 0;
    }
}

/* home premium motion pass */
.home-stage {
    --home-hero-height: 560px;
}

.home-stage__slider {
    height: var(--home-hero-height);
    min-height: var(--home-hero-height);
}

.home-stage__slide {
    min-height: var(--home-hero-height);
}

.home-stage__inner {
    min-height: var(--home-hero-height);
    box-sizing: border-box;
    align-items: center;
    padding: 86px 0 70px;
}

.home-stage__copy {
    max-width: 620px;
}

.home-stage__copy h1 {
    max-width: 12.8ch;
    font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.home-stage__copy p {
    max-width: 56ch;
    font-size: 0.92rem;
}

.home-stage__panel {
    max-width: 264px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.18);
}

.home-stage__panel-card {
    background: rgba(8, 28, 40, 0.28);
}

.home-stage__slider .hero-slide {
    transition: opacity 0.65s ease, visibility 0.65s ease;
}

.home-stage__image {
    transform: scale(1.05);
    transition: transform 6.8s ease;
}

.home-stage__slider .hero-slide.is-active .home-stage__image {
    transform: scale(1);
}

.home-stage__copy,
.home-stage__panel {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.home-stage__slider .hero-slide.is-active .home-stage__copy,
.home-stage__slider .hero-slide.is-active .home-stage__panel {
    opacity: 1;
    transform: none;
}

.home-stage__dots {
    margin-top: -28px;
}

.has-motion [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.has-motion [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.has-motion .home-metric:nth-child(2) {
    transition-delay: 0.08s;
}

.has-motion .home-metric:nth-child(3) {
    transition-delay: 0.16s;
}

.has-motion .home-metric:nth-child(4) {
    transition-delay: 0.24s;
}

.home-metrics {
    gap: 20px;
}

.home-metric {
    position: relative;
    overflow: hidden;
    padding: 28px 24px 22px;
    border: 1px solid rgba(186, 205, 220, 0.78);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 253, 0.96));
    box-shadow: 0 20px 44px rgba(22, 51, 72, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-metric::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, #0095eb, #24688e);
}

.home-metric:hover {
    transform: translateY(-6px);
    border-color: rgba(36, 104, 142, 0.26);
    box-shadow: 0 24px 48px rgba(16, 44, 63, 0.12);
}

.home-metric__value {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: clamp(1.72rem, 2.1vw, 2.28rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.045em;
}

.home-metric span {
    display: block;
    max-width: 18ch;
    line-height: 1.65;
}

.partner-ribbon {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 42px;
    padding: 24px;
    border: 1px solid rgba(188, 204, 215, 0.78);
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 253, 0.96));
    box-shadow: 0 22px 52px rgba(17, 46, 66, 0.08);
}

.partner-ribbon__map-frame {
    position: relative;
    overflow: hidden;
    min-height: 254px;
    border: 1px solid rgba(188, 204, 215, 0.66);
    border-radius: 26px;
    background:
        radial-gradient(circle at 18% 20%, rgba(0, 149, 235, 0.08), transparent 20%),
        linear-gradient(180deg, rgba(241, 247, 251, 0.98), rgba(233, 241, 247, 0.96));
}

.partner-ribbon__map-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02));
}

.partner-ribbon__map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
    mix-blend-mode: multiply;
}

.partner-ribbon__pins {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.partner-ribbon__pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 186px;
    padding: 12px 14px 12px 18px;
    border: 1px solid rgba(188, 204, 215, 0.86);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 16px 32px rgba(20, 47, 67, 0.12);
}

.partner-ribbon__pin::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #0095eb;
    box-shadow: 0 0 0 8px rgba(0, 149, 235, 0.14);
    transform: translateY(-50%);
}

.partner-ribbon__pin strong {
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 800;
}

.partner-ribbon__pin small {
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.45;
}

.partner-ribbon__pin--tct {
    top: 30%;
    left: 20%;
}

.partner-ribbon__pin--stem {
    top: 50%;
    left: 44%;
}

.partner-ribbon__items {
    display: grid;
    align-content: center;
    gap: 16px;
}

.partner-ribbon__item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px 16px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(188, 204, 215, 0.72);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 30px rgba(17, 44, 64, 0.06);
}

.partner-ribbon__item-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 94px;
    min-height: 48px;
}

.partner-ribbon__item-logo img {
    max-width: 100px;
    max-height: 48px;
    object-fit: contain;
}

.partner-ribbon__item-copy strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 800;
}

.partner-ribbon__item-copy span {
    color: var(--muted);
    font-size: 0.84rem;
}

.partner-ribbon__item em {
    grid-column: 2;
    color: var(--primary);
    font-style: normal;
    font-size: 0.84rem;
    font-weight: 700;
}

.partner-showcase--enhanced {
    gap: 24px;
}

.partner-showcase__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(36, 104, 142, 0.08);
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.partner-showcase__fact {
    display: inline-flex;
    margin: 12px 0 16px;
    color: var(--primary);
    font-size: 0.86rem;
    font-weight: 700;
}

@media (max-width: 1080px) {
    .home-stage {
        --home-hero-height: 520px;
    }

    .home-stage__inner {
        padding: 84px 0 60px;
    }

    .home-stage__copy h1 {
        font-size: clamp(1.6rem, 3.9vw, 2.28rem);
    }

    .partner-ribbon {
        grid-template-columns: 1fr;
    }

    .partner-ribbon__map-frame {
        min-height: 224px;
    }
}

@media (max-width: 760px) {
    .home-stage {
        --home-hero-height: 440px;
    }

    .home-stage__slider {
        height: var(--home-hero-height);
        min-height: var(--home-hero-height);
    }

    .home-stage__inner {
        min-height: var(--home-hero-height);
        padding: 74px 0 38px;
        gap: 14px;
    }

    .home-stage__copy h1 {
        max-width: none;
        font-size: clamp(1.38rem, 6.9vw, 1.96rem);
    }

    .home-stage__panel {
        max-width: none;
    }

    .home-stage__nav {
        inset: auto 10px 94px 10px;
        transform: none;
    }

    .home-stage__dots {
        margin-top: -22px;
    }

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

    .partner-ribbon {
        padding: 18px;
        border-radius: 24px;
    }

    .partner-ribbon__map-frame {
        min-height: 188px;
    }

    .partner-ribbon__pin {
        min-width: 150px;
        padding: 10px 12px 10px 16px;
    }

    .partner-ribbon__pin strong {
        font-size: 0.84rem;
    }

    .partner-ribbon__pin small {
        font-size: 0.72rem;
    }
}

@media (max-width: 540px) {
    .home-metrics {
        grid-template-columns: 1fr;
    }

    .partner-ribbon__pin {
        min-width: 130px;
    }

    .partner-ribbon__pin small {
        display: none;
    }

    .partner-ribbon__pin--tct {
        top: 28%;
        left: 12%;
    }

    .partner-ribbon__pin--stem {
        top: 54%;
        left: 38%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-stage__image,
    .home-stage__copy,
    .home-stage__panel,
    .hero-slider__arrow,
    .has-motion [data-reveal] {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* reference structure pass */
.reference-stack {
    display: grid;
    gap: 24px;
}

.reference-overview,
.reference-block,
.reference-panel,
.reference-featured,
.reference-meta-card {
    border: 1px solid rgba(188, 204, 215, 0.72);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.96));
    box-shadow: var(--shadow-soft);
}

.reference-overview,
.reference-block {
    border-radius: 28px;
}

.reference-overview {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    padding: 28px 30px;
}

.reference-overview__head h2,
.reference-block__head h2 {
    margin: 0;
    font-size: clamp(1.3rem, 2vw, 1.86rem);
    letter-spacing: -0.04em;
    line-height: 1.15;
}

.reference-overview__body p:last-child {
    margin-bottom: 0;
}

.reference-block {
    padding: 30px;
}

.reference-block__head {
    display: grid;
    gap: 10px;
    max-width: 760px;
    margin-bottom: 22px;
}

.reference-block__head p {
    margin: 0;
}

.reference-block__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    gap: 22px;
    align-items: start;
}

.reference-featured,
.reference-panel {
    overflow: hidden;
    border-radius: 24px;
}

.reference-featured__media {
    height: 260px;
    border-bottom: 1px solid rgba(188, 204, 215, 0.72);
    background: #eef4f7;
}

.reference-featured__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reference-featured__body,
.reference-panel {
    padding: 24px;
}

.reference-featured__body h3,
.reference-panel h3 {
    margin: 0;
    font-size: 1.16rem;
    letter-spacing: -0.03em;
}

.reference-featured__lead {
    margin: 0;
    color: var(--text);
    font-size: 0.98rem;
    font-weight: 700;
}

.reference-panel {
    display: grid;
    gap: 14px;
}

.reference-panel p:last-child {
    margin-bottom: 0;
}

.reference-panel--full {
    gap: 0;
}

.reference-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(36, 104, 142, 0.1);
    color: var(--primary);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.reference-sublist {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(212, 224, 231, 0.72);
}

.reference-sublist strong {
    color: var(--text);
}

.reference-sublist ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.reference-sublist li + li {
    margin-top: 8px;
}

.reference-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.reference-lines {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(212, 224, 231, 0.72);
}

.reference-lines__item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 224, 231, 0.72);
}

.reference-lines__line {
    display: grid;
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.reference-lines__company,
.reference-lines__detail {
    color: var(--text);
    font-weight: 700;
    line-height: 1.5;
}

.reference-lines__company em {
    color: var(--muted);
    font-style: normal;
    font-weight: 600;
}

.reference-lines__item p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.reference-brand-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.reference-brand {
    display: grid;
    place-items: center;
    min-height: 52px;
    padding: 10px 12px;
    border: 1px solid rgba(188, 204, 215, 0.72);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    font-size: 0.84rem;
    font-weight: 700;
    text-align: center;
}

.reference-meta-card {
    padding: 18px;
    border-radius: 18px;
}

.reference-meta-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--text);
}

.reference-meta-card p {
    margin: 0;
}

@media (max-width: 1080px) {
    .reference-overview,
    .reference-block__layout,
    .reference-lines__line,
    .reference-brand-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .reference-overview,
    .reference-block {
        padding: 22px;
        border-radius: 22px;
    }

    .reference-featured__body,
    .reference-panel {
        padding: 20px;
    }

    .reference-featured__media {
        height: 220px;
    }

    .reference-lines__item {
        padding: 13px 0;
    }
}

/* final cleanup pass */
.home-stage {
    --home-hero-height: 500px;
}

.home-stage__slider {
    height: var(--home-hero-height);
    min-height: var(--home-hero-height);
}

.home-stage__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    min-height: var(--home-hero-height);
    padding: 92px 0 78px;
    align-items: center;
}

.home-stage__copy {
    max-width: 700px;
}

.home-stage__copy h1 {
    max-width: 12.5ch;
    margin: 10px 0 14px;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.02;
}

.home-stage__copy p {
    max-width: 58ch;
    font-size: 0.98rem;
}

.home-stage__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.home-stage__highlights span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(7, 25, 36, 0.26);
    color: rgba(242, 247, 250, 0.94);
    font-size: 0.84rem;
    font-weight: 600;
}

.home-stage__dots {
    margin-top: -18px;
    margin-bottom: 18px;
}

.home-logo-strip {
    margin-bottom: 40px;
}

.home-logo-strip .logo-strip__item {
    align-items: center;
    justify-content: flex-start;
}

.home-logo-strip .logo-strip__item div {
    display: grid;
    gap: 4px;
}

.home-logo-strip .logo-strip__item small {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

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

.exchange-toolbar--stacked {
    grid-template-columns: 1fr;
    gap: 22px;
}

.exchange-toolbar--stacked .exchange-toolbar__copy {
    max-width: 760px;
}

.exchange-toolbar--stacked .exchange-filterbar {
    width: 100%;
}

.exchange-toolbar--stacked .exchange-filterbar__fields {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 16px;
}

.exchange-toolbar--stacked .exchange-filterbar__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(188, 204, 215, 0.62);
}

.exchange-toolbar--stacked .exchange-filterbar__actions {
    display: flex;
    justify-content: flex-end;
}

.exchange-toolbar--stacked .exchange-filterbar__summary {
    white-space: nowrap;
}

.analysis-intro-card {
    max-width: none;
}

.form-card--wide {
    max-width: none;
}

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

.reference-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.reference-summary-card {
    padding: 18px 20px;
    border: 1px solid rgba(188, 204, 215, 0.72);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.96));
    box-shadow: var(--shadow-soft);
}

.reference-summary-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 1.5rem;
    letter-spacing: -0.04em;
}

.reference-summary-card span {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 600;
}

@media (max-width: 1080px) {
    .home-stage {
        --home-hero-height: 460px;
    }

    .home-stage__copy h1 {
        font-size: clamp(1.82rem, 4.8vw, 3rem);
    }

    .exchange-toolbar--stacked .exchange-filterbar__fields,
    .form-card--wide .form-grid,
    .reference-summary-grid,
    .action-grid--two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .home-stage {
        --home-hero-height: 420px;
    }

    .home-stage__inner {
        padding: 78px 0 56px;
    }

    .home-stage__copy h1 {
        max-width: none;
        font-size: clamp(1.56rem, 7.4vw, 2.3rem);
    }

    .home-stage__copy p {
        font-size: 0.9rem;
    }

    .home-stage__highlights {
        gap: 8px;
    }

    .home-stage__highlights span {
        min-height: 34px;
        padding: 0 12px;
        font-size: 0.78rem;
    }

    .exchange-toolbar--stacked .exchange-filterbar__fields,
    .exchange-toolbar--stacked .exchange-filterbar__footer,
    .form-card--wide .form-grid,
    .reference-summary-grid,
    .action-grid--two {
        grid-template-columns: 1fr;
    }

    .exchange-toolbar--stacked .exchange-filterbar__footer {
        align-items: stretch;
    }

    .exchange-toolbar--stacked .exchange-filterbar__summary {
        white-space: normal;
    }
}

/* hero rescue pass */
.home-stage {
    --home-hero-height: 520px;
}

.home-stage__slider,
.home-stage__slide,
.home-stage__inner {
    min-height: var(--home-hero-height);
}

.home-stage__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 74px 0 62px;
    align-items: center;
}

.home-stage__copy {
    display: grid;
    align-content: center;
    width: min(760px, 100%);
    max-width: 760px;
}

.home-stage__copy h1 {
    max-width: 13.4ch;
    margin: 10px 0 14px;
    font-size: clamp(2.05rem, 3.35vw, 3.15rem);
    line-height: 1.01;
    text-wrap: balance;
}

.home-stage__copy--long h1 {
    max-width: 14.8ch;
    font-size: clamp(1.86rem, 2.9vw, 2.72rem);
}

.home-stage__copy p {
    max-width: 62ch;
    margin-bottom: 0;
    font-size: 0.96rem;
}

.home-stage__signal {
    margin-bottom: 10px;
}

.hero-actions {
    margin-top: 22px;
    gap: 12px;
}

.home-stage__video-link {
    margin-top: 14px;
}

.home-stage__nav {
    inset: 50% 18px auto 18px;
    transform: translateY(-50%);
}

@media (max-width: 1080px) {
    .home-stage {
        --home-hero-height: 480px;
    }

    .home-stage__inner {
        padding: 68px 0 56px;
    }

    .home-stage__copy h1 {
        max-width: 13.8ch;
        font-size: clamp(1.86rem, 4vw, 2.76rem);
    }
}

@media (max-width: 760px) {
    .home-stage {
        --home-hero-height: 430px;
    }

    .home-stage__inner {
        padding: 58px 0 44px;
    }

    .home-stage__copy h1,
    .home-stage__copy--long h1 {
        max-width: none;
        font-size: clamp(1.58rem, 6.4vw, 2.2rem);
    }

    .home-stage__copy p {
        font-size: 0.88rem;
    }

    .home-stage__nav {
        inset: 50% 10px auto 10px;
    }
}

/* exchange filter fix */
.exchange-filterbar {
    overflow: hidden;
}

.exchange-toolbar--stacked .exchange-filterbar__fields {
    align-items: end;
}

.filter-control,
.filter-control--search {
    min-width: 0;
}

.filter-control--search input[type="search"],
.filter-control--search input {
    display: block;
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(188, 204, 215, 0.9);
    border-radius: 16px;
    background: #ffffff;
    color: var(--text);
    appearance: none;
    -webkit-appearance: none;
}

.filter-control--search input[type="search"]::-webkit-search-decoration,
.filter-control--search input[type="search"]::-webkit-search-cancel-button,
.filter-control--search input[type="search"]::-webkit-search-results-button,
.filter-control--search input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

.exchange-toolbar--stacked .exchange-filterbar__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.exchange-toolbar--stacked .exchange-filterbar__summary {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    margin: 0;
    padding: 0 14px;
    border: 1px solid rgba(188, 204, 215, 0.8);
    border-radius: 999px;
    background: #ffffff;
    color: var(--primary-strong);
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
}

.exchange-toolbar--stacked .exchange-filterbar__actions {
    flex: 0 0 auto;
    justify-content: flex-end;
}

@media (max-width: 760px) {
    .exchange-toolbar--stacked .exchange-filterbar__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .exchange-toolbar--stacked .exchange-filterbar__summary {
        justify-content: center;
        white-space: normal;
    }

    .exchange-toolbar--stacked .exchange-filterbar__actions {
        justify-content: stretch;
    }
}

/* İkinci el: tek satır filtre — özet metni arama kutusu gibi görünmesin */
.exchange-filterbar--one-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 14px;
    padding: 12px 14px;
    border: 1px solid rgba(188, 204, 215, 0.85);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(19, 45, 63, 0.05);
}

.exchange-filterbar--one-line .filter-control--inline {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.exchange-filterbar--one-line .filter-control--inline > span {
    flex-shrink: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
}

.exchange-filterbar--one-line .filter-control--inline select,
.exchange-filterbar--one-line .filter-control--inline input[type="search"] {
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid rgba(188, 204, 215, 0.95);
    border-radius: 12px;
    background: #ffffff;
    color: var(--text);
    font: inherit;
    min-width: 0;
}

.exchange-filterbar--one-line .filter-control--grow {
    flex: 1 1 220px;
    min-width: min(100%, 200px);
}

.exchange-filterbar--one-line .filter-control--grow input[type="search"] {
    width: 100%;
}

.exchange-filterbar--one-line .exchange-filterbar__count {
    margin: 0;
    padding: 0 4px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
}

.exchange-filterbar--one-line .exchange-filterbar__cta {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 720px) {
    .exchange-filterbar--one-line {
        flex-direction: column;
        align-items: stretch;
    }

    .exchange-filterbar--one-line .exchange-filterbar__cta {
        margin-left: 0;
        justify-content: stretch;
    }

    .exchange-filterbar--one-line .exchange-filterbar__cta .button {
        width: 100%;
        justify-content: center;
    }
}

/* global network band — layout (harita görseli .global-network-band__map katmanında) */
.global-network-band {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.global-network-band > .shell {
    position: relative;
    z-index: 1;
}

.home-exchange-band {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(188, 204, 215, 0.72);
    border-radius: 34px;
    background-color: rgba(247, 251, 254, 0.92);
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(236, 246, 252, 0.68) 44%, rgba(218, 234, 246, 0.82) 100%),
        url("../images/official/world-map.webp");
    background-repeat: no-repeat, no-repeat;
    background-position: center, center center;
    background-size: cover, cover;
    box-shadow: 0 28px 64px rgba(21, 54, 81, 0.08);
}

.home-exchange-band__content {
    padding: clamp(38px, 5vw, 72px);
}

/* references redesign pass */
.reference-sections {
    display: grid;
    gap: 28px;
}

.reference-section {
    display: grid;
    gap: 24px;
    padding: 34px;
    border: 1px solid rgba(188, 204, 215, 0.76);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 252, 0.97));
    box-shadow: 0 20px 46px rgba(19, 45, 63, 0.08);
}

.reference-section__mast {
    display: grid;
    gap: 18px;
}

.reference-section__brand {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px 24px;
    align-items: center;
}

.reference-section__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 88px;
    padding: 14px 20px;
    border: 1px solid rgba(188, 204, 215, 0.72);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.reference-section__logo img {
    max-width: 120px;
    max-height: 54px;
    object-fit: contain;
}

.reference-section__brand-copy h2 {
    margin: 0 0 10px;
    font-size: clamp(1.42rem, 2.1vw, 2.04rem);
    letter-spacing: -0.04em;
    line-height: 1.12;
}

.reference-section__brand-copy p {
    max-width: 68ch;
    margin-bottom: 0;
}

.reference-section__tagline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.reference-section__tagline span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(36, 104, 142, 0.08);
    color: var(--primary-strong);
    font-size: 0.82rem;
    font-weight: 700;
}

.reference-section__hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
    gap: 22px;
    align-items: start;
}

.reference-showcase,
.reference-sheet,
.reference-ledger {
    border: 1px solid rgba(188, 204, 215, 0.72);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.reference-showcase {
    overflow: hidden;
}

.reference-showcase__media {
    height: 280px;
    background: #eef4f7;
}

.reference-showcase__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reference-showcase__body,
.reference-sheet,
.reference-ledger {
    padding: 24px;
}

.reference-showcase__body h3,
.reference-sheet h3,
.reference-ledger__head h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
    letter-spacing: -0.03em;
}

.reference-showcase__line {
    margin: 0 0 10px;
    color: var(--text);
    font-weight: 700;
}

.reference-sheet {
    display: grid;
    gap: 14px;
    align-content: start;
}

.reference-sheet__list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.reference-sheet__list li {
    line-height: 1.6;
}

.reference-sheet--brands {
    gap: 18px;
}

.reference-ledger {
    display: grid;
    gap: 18px;
}

.reference-ledger__head p {
    margin: 0;
}

.reference-ledger__table {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(212, 224, 231, 0.76);
}

.reference-ledger__row {
    display: grid;
    grid-template-columns: minmax(220px, 0.46fr) minmax(0, 1fr);
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(212, 224, 231, 0.76);
}

.reference-ledger__company {
    display: grid;
    gap: 6px;
}

.reference-ledger__company strong,
.reference-ledger__project strong {
    color: var(--text);
}

.reference-ledger__company span {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.reference-ledger__project {
    display: grid;
    gap: 8px;
}

.reference-ledger__project p {
    margin: 0;
}

.reference-section--tct {
    border-top: 4px solid rgba(36, 104, 142, 0.22);
}

.reference-section--stem {
    border-top: 4px solid rgba(79, 149, 171, 0.28);
}

.reference-section--msr {
    border-top: 4px solid rgba(201, 139, 71, 0.28);
}

@media (max-width: 1080px) {
    .reference-section__hero-grid,
    .reference-section__brand,
    .reference-ledger__row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .reference-section {
        padding: 24px;
        border-radius: 24px;
    }

    .reference-section__logo {
        min-width: 0;
        width: fit-content;
        padding: 12px 16px;
    }

    .reference-showcase__media {
        height: 220px;
    }

    .reference-showcase__body,
    .reference-sheet,
    .reference-ledger {
        padding: 20px;
    }

    .reference-ledger__row {
        padding: 14px 0;
    }
}

/* references unified pass */
.reference-unified {
    display: grid;
    gap: 28px;
}

.reference-group-flat {
    display: grid;
    gap: 24px;
    padding: 30px;
    border: 1px solid rgba(188, 204, 215, 0.78);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 253, 0.94));
    box-shadow: 0 20px 48px rgba(16, 44, 63, 0.08);
}

.reference-group-flat__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(205, 219, 229, 0.86);
}

.reference-group-flat__brand {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px 24px;
    align-items: center;
}

.reference-group-flat__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 68px;
    padding: 10px 16px;
    border: 1px solid rgba(200, 215, 225, 0.86);
    border-radius: 18px;
    background: #ffffff;
}

.reference-group-flat__logo img {
    max-width: 128px;
    max-height: 46px;
    object-fit: contain;
}

.reference-group-flat__copy h2 {
    margin: 10px 0 12px;
    font-size: clamp(1.46rem, 2.3vw, 2.08rem);
    letter-spacing: -0.04em;
    line-height: 1.12;
}

.reference-group-flat__copy p {
    max-width: 70ch;
    margin-bottom: 0;
}

.reference-group-flat__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.reference-group-flat__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(36, 104, 142, 0.18);
    background: rgba(36, 104, 142, 0.06);
    color: var(--primary-strong);
    font-size: 0.82rem;
    font-weight: 700;
}

.reference-group-flat__body {
    display: grid;
    grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
    gap: 28px;
    align-items: start;
}

.reference-group-flat__body--single {
    grid-template-columns: 1fr;
}

.reference-group-flat__summary,
.reference-group-flat__records {
    display: grid;
    gap: 14px;
    padding: 22px;
    border: 1px solid rgba(205, 219, 229, 0.86);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
}

.reference-group-flat__summary h3,
.reference-group-flat__records h3 {
    margin: 0;
    font-size: 1.16rem;
    letter-spacing: -0.03em;
}

.reference-group-flat__image {
    width: 100%;
    height: 248px;
    object-fit: cover;
    border-radius: 16px;
}

.reference-brand-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.reference-brand-list span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(36, 104, 142, 0.16);
    background: rgba(36, 104, 142, 0.05);
    color: var(--primary-strong);
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.5;
}

.reference-group-flat .reference-lines {
    border-top: 1px solid rgba(208, 221, 230, 0.82);
}

.reference-group-flat .reference-lines__item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(220, 230, 236, 0.72);
}

.reference-group-flat .reference-lines__item:last-child {
    border-bottom: 0;
}

.reference-group-flat .reference-lines__company {
    display: grid;
    gap: 4px;
}

.reference-group-flat .reference-lines__company em {
    display: block;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.reference-group-flat .reference-lines__detail {
    font-weight: 700;
    line-height: 1.45;
}

.reference-group-flat .reference-lines__detail p {
    margin-top: 6px;
    font-weight: 400;
    color: var(--muted);
}

@media (max-width: 1080px) {
    .reference-group-flat__head,
    .reference-group-flat__body,
    .reference-group-flat__brand {
        grid-template-columns: 1fr;
    }

    .reference-group-flat__meta {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .reference-group-flat {
        padding: 20px;
        gap: 18px;
    }

    .reference-group-flat__head {
        padding-bottom: 14px;
    }

    .reference-group-flat__copy h2 {
        font-size: clamp(1.3rem, 6vw, 1.78rem);
    }

    .reference-group-flat__summary,
    .reference-group-flat__records {
        padding: 16px;
    }

    .reference-group-flat__image {
        height: 190px;
    }
}

/* Hero content fix: prevent copy from sticking too low */
.home-stage {
    --home-hero-min-height: clamp(520px, 68vh, 700px);
}

.home-stage__slider,
.home-stage__slide,
.home-stage__inner {
    min-height: var(--home-hero-min-height);
    height: auto;
}

.home-stage__inner {
    align-items: center;
    padding-block: clamp(64px, 8vh, 96px);
}

.home-stage__copy {
    align-self: center;
    width: min(680px, 100%);
}

@media (max-width: 1080px) {
    .home-stage {
        --home-hero-min-height: clamp(460px, 62vh, 600px);
    }

    .home-stage__inner {
        padding-block: clamp(56px, 7vh, 82px);
    }
}

@media (max-width: 760px) {
    .home-stage {
        --home-hero-min-height: clamp(420px, 56vh, 520px);
    }

    .home-stage__inner {
        padding-block: clamp(48px, 6vh, 68px);
    }
}

/* references layout rescue */
.reference-unified {
    gap: 32px;
}

.reference-group-flat {
    font-size: 16px;
}

.reference-group-flat__head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
}

.reference-group-flat__brand {
    grid-template-columns: minmax(124px, 156px) minmax(0, 1fr);
    align-items: start;
    gap: 12px 20px;
}

.reference-group-flat__brand--no-logo {
    grid-template-columns: 1fr;
}

.reference-group-flat__copy h2 {
    max-width: none;
    margin: 8px 0 10px;
    font-size: clamp(1.62rem, 2.4vw, 2.14rem);
    line-height: 1.14;
}

.reference-group-flat__copy p {
    max-width: none;
    font-size: 1rem;
    line-height: 1.65;
}

.reference-group-flat__meta {
    justify-content: flex-start;
}

.reference-group-flat__body {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 22px;
}

.reference-group-flat__body.reference-group-flat__body--single {
    grid-template-columns: 1fr;
}

.reference-group-flat .reference-lines__line {
    grid-template-columns: minmax(190px, 0.68fr) minmax(0, 1fr);
    gap: 14px;
}

.reference-group-flat .reference-lines__company {
    font-size: 0.98rem;
}

.reference-group-flat .reference-lines__detail {
    font-size: 0.98rem;
}

@media (max-width: 980px) {
    .reference-group-flat__body,
    .reference-group-flat .reference-lines__line {
        grid-template-columns: 1fr;
    }

    .reference-group-flat .reference-lines__item {
        padding: 14px 0;
    }
}

@media (max-width: 760px) {
    .reference-group-flat__brand {
        grid-template-columns: 1fr;
    }

    .reference-group-flat__logo {
        min-width: 132px;
    }

    .reference-group-flat__copy h2 {
        font-size: clamp(1.32rem, 5.4vw, 1.84rem);
    }
}

/* references page alignment fix */
.references-page .shell {
    width: min(1260px, calc(100% - 40px));
    margin-inline: auto;
}

.references-page .reference-unified,
.references-page .reference-group-flat {
    width: 100%;
}

.references-page .article-card {
    max-width: none !important;
    width: 100%;
}

@media (max-width: 760px) {
    .references-page .shell {
        width: min(100%, calc(100% - 24px));
    }
}

/* sectors analysis form professional pass */
.analysis-form-section .shell--analysis {
    width: min(1320px, calc(100% - 40px));
    margin-inline: auto;
}

.analysis-intro-card--pro {
    display: grid;
    gap: 10px;
    padding: 28px 32px;
    border: 1px solid rgba(188, 204, 215, 0.78);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 250, 253, 0.95));
    box-shadow: 0 18px 44px rgba(16, 44, 63, 0.08);
}

.analysis-intro-card--pro h2 {
    margin: 6px 0 4px;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    letter-spacing: -0.03em;
}

.analysis-intro-card--pro p {
    max-width: 74ch;
    margin-bottom: 0;
}

.analysis-form-card {
    padding: 30px 32px;
    border: 1px solid rgba(188, 204, 215, 0.8);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 50px rgba(16, 44, 63, 0.1);
}

.analysis-form__section + .analysis-form__section {
    margin-top: 24px;
}

.analysis-form__title {
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(205, 219, 229, 0.8);
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.analysis-form-card .form-grid--analysis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
}

.analysis-form-card label span {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: var(--text);
}

.analysis-form-card input,
.analysis-form-card textarea {
    padding: 13px 14px;
    border-radius: 12px;
    border-color: rgba(188, 204, 215, 0.9);
    background: #ffffff;
}

.analysis-form-card textarea {
    min-height: 130px;
}

.analysis-form-card .button-block {
    width: auto;
    min-width: 280px;
    margin-top: 22px;
    margin-left: auto;
    display: inline-flex;
}

@media (max-width: 1240px) {
    .analysis-form-card .form-grid--analysis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .analysis-form-section .shell--analysis {
        width: min(100%, calc(100% - 24px));
    }

    .analysis-intro-card--pro,
    .analysis-form-card {
        padding: 20px;
    }

    .analysis-form-card .form-grid--analysis {
        grid-template-columns: 1fr;
    }

    .analysis-form-card .button-block {
        width: 100%;
        min-width: 0;
    }
}

/* exchange page width + pagination fix */
.exchange-page .shell--exchange {
    width: min(1380px, calc(100% - 40px));
    margin-inline: auto;
}

.exchange-page [data-equipment-grid] {
    width: 100%;
}

.exchange-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.exchange-pagination__pages {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.exchange-pagination__page {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    background: #ffffff;
    color: var(--text);
    font-weight: 700;
    cursor: pointer;
}

.exchange-pagination__page.is-active {
    border-color: var(--primary);
    background: var(--primary);
    color: #ffffff;
}

.exchange-pagination .button[disabled],
.exchange-pagination__page[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
}

@media (max-width: 760px) {
    .exchange-page .shell--exchange {
        width: min(100%, calc(100% - 24px));
    }

    .exchange-pagination {
        gap: 8px;
    }

    .exchange-pagination .button {
        padding-inline: 12px;
    }
}

.exchange-form-tabs .tab-buttons {
    gap: 12px;
}

.exchange-form-tabs .tab-panel.form-card {
    max-width: none;
    width: 100%;
}

.exchange-form-tabs .tab-panel .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

@media (max-width: 760px) {
    .exchange-form-tabs .tab-panel .form-grid {
        grid-template-columns: 1fr;
    }
}

.exchange-form-tabs .tab-panel.form-card .form-grid + .button {
    margin-top: 22px;
}

/* footer social links icon-only inline */
.site-footer .social-links {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
}

.site-footer .social-links__item {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-footer--clean .social-links__item--linkedin,
.site-footer--clean .social-links__item--youtube,
.site-footer--clean .social-links__item--instagram,
.site-footer--clean .social-links__item--facebook {
    background: rgba(255, 255, 255, 0.1);
}

.site-footer .social-links__item:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

.site-footer .social-links__item svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
}

.site-footer .social-links__item svg path {
    fill: currentColor;
}

@media (max-width: 760px) {
    .site-footer .social-links {
        overflow-x: auto;
        padding-bottom: 4px;
    }
}

.reference-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 10px;
}

.reference-pagination .button {
    min-width: 34px;
    padding-inline: 10px;
}

.reference-pagination__pages {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.reference-pagination__page {
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    background: #ffffff;
    color: var(--text);
    font-weight: 700;
    cursor: pointer;
}

.reference-pagination__page.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.reference-pagination .button[disabled],
.reference-pagination__page[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
}

/* header sub navigation */
.site-nav--clean .site-nav__item {
    position: relative;
    display: flex;
    align-items: center;
}

.site-nav--clean .site-subnav {
    position: absolute;
    /* flush to parent bottom — gap used to kill hover; spacing is padding inside panel */
    top: 100%;
    left: 0;
    display: none;
    min-width: 220px;
    padding: 10px 8px 8px;
    border: 1px solid rgba(23, 50, 58, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 28px rgba(23, 50, 58, 0.1);
    z-index: 120;
}

/* invisible hit strip so cursor path from link to panel never leaves the item */
.site-nav--clean .site-subnav::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -8px;
    height: 8px;
}

.site-nav--clean .site-subnav__inner {
    display: grid;
    gap: 4px;
}

.site-nav--clean .site-subnav a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    white-space: normal;
}

.site-nav--clean .site-nav__item.has-children:hover .site-subnav,
.site-nav--clean .site-nav__item.has-children:focus-within .site-subnav {
    display: block;
}

@media (max-width: 920px) {
    .site-nav--clean .site-nav__item {
        width: 100%;
        display: grid;
        gap: 6px;
    }

    .site-nav--clean .site-subnav {
        position: static;
        display: grid;
        min-width: 0;
        padding: 6px;
        box-shadow: none;
        border-radius: 10px;
    }

    .site-nav--clean .site-subnav::before {
        display: none;
    }
}

/* Haberler — e-bülten: e-posta ile Abone Ol yan yana, aralıklı */
.newsletter-form .newsletter-form__row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 14px 18px;
    margin-top: 6px;
}

.newsletter-form .newsletter-form__field {
    flex: 1 1 min(100%, 360px);
    min-width: 0;
    margin: 0;
}

.newsletter-form .newsletter-form__field input[type="email"] {
    width: 100%;
}

.newsletter-form .newsletter-form__submit {
    flex: 0 0 auto;
    width: auto;
    min-width: 140px;
    min-height: 48px;
    padding-inline: 22px;
}

@media (max-width: 640px) {
    .newsletter-form .newsletter-form__row {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-form .newsletter-form__submit {
        width: 100%;
    }
}

.footer-newsletter {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(23, 50, 58, 0.08);
}

.footer-newsletter__title {
    margin: 0 0 12px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text);
}

.footer-newsletter__flash {
    margin: 12px 0 0;
}

.site-footer--clean .footer-newsletter {
    border-top-color: rgba(255, 255, 255, 0.14);
}

.site-footer--clean .footer-newsletter__title {
    color: rgba(255, 255, 255, 0.95);
}

.newsletter-form--footer {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.newsletter-form--footer .newsletter-form__row {
    margin-top: 0;
}

.site-footer--clean .newsletter-form--footer .newsletter-form__row {
    align-items: center;
}

.site-footer--clean .newsletter-form--footer .newsletter-form__field--footer-email {
    margin: 0;
}

.site-footer--clean .newsletter-form--footer input[type="email"] {
    width: 100%;
    padding: 11px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.95rem;
}

.site-footer--clean .newsletter-form--footer input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.site-footer--clean .newsletter-form--footer input[type="email"]:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18);
}

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

.news-pagination__pages {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.news-pagination__page {
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    background: #ffffff;
    color: var(--text);
    font-weight: 700;
    cursor: pointer;
}

.news-pagination__page.is-active {
    border-color: var(--primary);
    background: var(--primary);
    color: #ffffff;
}

.news-pagination .button {
    min-width: 34px;
    padding-inline: 10px;
}

/* news detail width fix */
.shell--news-detail {
    width: min(1320px, calc(100% - 40px));
    margin-inline: auto;
}

.shell--news-detail .article-card {
    max-width: none;
}

/* compact hero normalization */
.home-stage {
    --home-hero-min-height: clamp(460px, 60vh, 620px) !important;
}

.home-stage__inner {
    padding-block: clamp(52px, 7vh, 82px) !important;
}

@media (max-width: 760px) {
    .shell--news-detail {
        width: min(100%, calc(100% - 24px));
    }

    .home-stage {
        --home-hero-min-height: clamp(390px, 52vh, 500px) !important;
    }

    .home-stage__inner {
        padding-block: clamp(40px, 5vh, 60px) !important;
    }
}

/* Dünya haritası: "Kurumsal Yaklaşım" — harita tüm bölümü kaplar (cover) */
.section.section-dark.global-network-band {
    position: relative;
    overflow: hidden;
    min-height: clamp(420px, 52vh, 680px);
    background: transparent !important;
    border-top: 1px solid rgba(36, 104, 142, 0.08);
    border-bottom: 1px solid rgba(36, 104, 142, 0.08);
}

.global-network-band__map {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(236, 246, 252, 0.55) 42%, rgba(218, 234, 246, 0.72) 100%),
        url("../images/official/world-map.webp");
    background-repeat: no-repeat, no-repeat;
    background-position: center, center center;
    background-size: cover, cover;
    opacity: 1;
}

@media (max-width: 760px) {
    .home-exchange-band {
        border-radius: 26px;
    }

    .home-exchange-band__content {
        padding: 28px 22px;
    }

    .global-network-band__map {
        background-size: cover, cover;
        background-position: center, center 28%;
    }

    .section.section-dark.global-network-band {
        min-height: clamp(340px, 58vh, 520px);
    }
}

.legal-card {
    max-width: none !important;
    display: grid;
    gap: 12px;
    line-height: 1.75;
}

.legal-card h2 {
    margin: 10px 0 0;
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
}

.legal-doc-section .shell {
    width: min(1280px, calc(100% - 40px));
    margin-inline: auto;
}

.legal-page {
    display: grid;
    grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
    gap: 28px 40px;
    align-items: start;
}

.legal-page__main {
    min-width: 0;
}

.legal-nav {
    position: sticky;
    top: 96px;
    padding: 18px 16px;
    border-radius: 16px;
    border: 1px solid rgba(188, 204, 215, 0.85);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.96));
    box-shadow: 0 12px 28px rgba(19, 45, 63, 0.06);
}

.legal-nav__kicker {
    display: block;
    margin-bottom: 12px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
}

.legal-nav__list {
    display: grid;
    gap: 6px;
}

.legal-nav__link {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text);
    text-decoration: none;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.legal-nav__link:hover {
    background: rgba(36, 104, 142, 0.08);
}

.legal-nav__link.is-active {
    background: rgba(36, 104, 142, 0.12);
    color: var(--primary-strong);
}

.legal-nav__link--button {
    color: var(--primary-strong);
}

.legal-nav__link--muted {
    color: var(--muted);
    font-weight: 500;
}

@media (max-width: 900px) {
    .legal-page {
        grid-template-columns: 1fr;
    }

    .legal-nav {
        position: static;
    }

    .legal-nav__list {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .legal-nav__link {
        text-align: center;
    }
}

/* Sabit müşteri hizmetleri balonu + yukarı çık */
.site-floats {
    position: fixed;
    z-index: 5000;
    inset: auto 0 0 0;
    pointer-events: none;
}

.site-chat-fab {
    position: fixed;
    left: max(16px, env(safe-area-inset-left, 0px));
    bottom: calc(96px + env(safe-area-inset-bottom, 0px));
    z-index: 5000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    pointer-events: auto;
}

.site-chat-fab__panel {
    position: relative;
    width: min(300px, calc(100vw - 32px));
    padding: 16px 16px 14px;
    border-radius: 18px;
    background: #ffffff;
    color: var(--text);
    border: 1px solid rgba(36, 104, 142, 0.12);
    box-shadow:
        0 22px 48px rgba(15, 45, 63, 0.18),
        0 4px 12px rgba(15, 45, 63, 0.08);
    transform-origin: 18px 100%;
    transform: translateY(10px) scale(0.96);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        visibility 0.22s step-end;
}

.site-chat-fab__panel::after {
    content: '';
    position: absolute;
    left: 22px;
    bottom: -7px;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-right: 1px solid rgba(36, 104, 142, 0.1);
    border-bottom: 1px solid rgba(36, 104, 142, 0.1);
    transform: rotate(45deg);
    border-radius: 0 0 3px 0;
}

.site-chat-fab.is-open .site-chat-fab__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition:
        opacity 0.22s ease,
        transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s step-start;
}

.site-chat-fab__panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.site-chat-fab__kicker {
    margin: 0 0 2px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-strong);
}

.site-chat-fab__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.site-chat-fab__close {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    margin: -6px -6px 0 0;
    border: 0;
    border-radius: 10px;
    background: rgba(36, 104, 142, 0.08);
    color: var(--text);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease;
}

.site-chat-fab__close:hover {
    background: rgba(36, 104, 142, 0.14);
}

.site-chat-fab__intro {
    margin: 0 0 14px;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--muted);
}

.site-chat-fab__note {
    margin: 0 0 12px;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--muted);
}

.site-chat-fab__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-chat-fab__wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.site-chat-fab__wa--primary {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.site-chat-fab__wa--primary:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.42);
}

.site-chat-fab__wa--contact {
    background: var(--primary-strong);
    box-shadow: 0 8px 20px rgba(24, 79, 113, 0.28);
}

.site-chat-fab__wa--contact:hover {
    box-shadow: 0 10px 26px rgba(24, 79, 113, 0.35);
}

.site-chat-fab__wa-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.site-chat-fab__secondary {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    text-align: center;
    padding: 4px 0;
}

.site-chat-fab__secondary:hover {
    text-decoration: underline;
}

.site-chat-fab__launcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 52px;
    min-width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: linear-gradient(145deg, #2be377, #1faa53);
    color: #ffffff;
    font-family: inherit;
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 14px 32px rgba(15, 45, 63, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-chat-fab__launcher:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(15, 45, 63, 0.26);
}

.site-chat-fab__launcher--fallback {
    /* Numara yokken de aynı WhatsApp yeşili; tıklanınca iletişim paneli açılır */
    background: linear-gradient(145deg, #2be377, #1faa53);
    opacity: 0.96;
}

.site-chat-fab__launcher-ring {
    position: absolute;
    inset: -5px;
    border-radius: inherit;
    border: 2px solid rgba(255, 255, 255, 0.35);
    animation: site-chat-fab-pulse 2.4s ease-out infinite;
    pointer-events: none;
}

.site-chat-fab__launcher-dot {
    position: absolute;
    top: 7px;
    right: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b8ffcf;
    border: 2px solid rgba(15, 60, 40, 0.35);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
    pointer-events: none;
}

.site-chat-fab__launcher-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    opacity: 0.95;
}

.site-chat-fab__launcher-icon--whatsapp {
    width: 26px;
    height: 26px;
}

.site-chat-fab__launcher-label {
    white-space: nowrap;
}

.site-chat-fab.is-open .site-chat-fab__launcher {
    box-shadow: 0 12px 28px rgba(15, 45, 63, 0.24);
}

@keyframes site-chat-fab-pulse {
    0% {
        transform: scale(1);
        opacity: 0.75;
    }

    70% {
        transform: scale(1.12);
        opacity: 0;
    }

    100% {
        transform: scale(1.12);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-chat-fab__panel,
    .site-chat-fab.is-open .site-chat-fab__panel {
        transition: none;
    }

    .site-chat-fab__launcher-ring {
        animation: none;
    }
}

.site-float {
    position: fixed;
    pointer-events: auto;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(15, 45, 63, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(15, 45, 63, 0.28);
}

.site-float__icon {
    width: 26px;
    height: 26px;
}

.site-float--top {
    right: max(16px, env(safe-area-inset-right, 0px));
    bottom: calc(96px + env(safe-area-inset-bottom, 0px));
    background: #ffffff;
    color: var(--primary-strong);
    border: 1px solid rgba(36, 104, 142, 0.2);
}

@media (max-width: 760px) {
    .site-chat-fab {
        bottom: calc(108px + env(safe-area-inset-bottom, 0px));
    }

    .site-float--top {
        bottom: calc(108px + env(safe-area-inset-bottom, 0px));
    }
}

.footer-bottom__meta-links {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 18px;
}

.footer-bottom__meta-links a,
.footer-cookie-button {
    color: inherit;
    opacity: 0.9;
    text-decoration: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    font: inherit;
    padding: 0;
}

.footer-bottom__meta-links a:hover,
.footer-cookie-button:hover {
    opacity: 1;
    text-decoration: underline;
}

.cookie-consent {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 140;
}

.cookie-consent__content {
    margin: 0 auto;
    max-width: 980px;
    background: #0f2436;
    color: #f5fbff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

.cookie-consent__content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-consent__content a {
    color: #7ad8ff;
}

.cookie-consent__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

@media (max-width: 760px) {
    .cookie-consent__content {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Hafif hover / geçiş dokunuşları (sistem hareket tercihi + JS ile html.has-motion) */
@media (prefers-reduced-motion: no-preference) {
    html.has-motion .text-link {
        position: relative;
    }

    html.has-motion .text-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 100%;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        transform: scaleX(0);
        transform-origin: left center;
        opacity: 0.75;
        transition: transform var(--motion-link) var(--ease-out-smooth);
    }

    html.has-motion .text-link:hover::after,
    html.has-motion .text-link:focus-visible::after {
        transform: scaleX(1);
    }

    html.has-motion .listing-card {
        transition:
            transform var(--motion-card) var(--ease-out-smooth),
            box-shadow 0.32s ease,
            border-color 0.28s ease;
    }

    html.has-motion .listing-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 28px 56px rgba(17, 46, 66, 0.11);
        border-color: rgba(36, 104, 142, 0.22);
    }

    html.has-motion .listing-card__video {
        transition: color 0.2s ease, transform 0.22s var(--ease-out-smooth);
    }

    html.has-motion .listing-card__video:hover,
    html.has-motion .listing-card__video:focus-visible {
        transform: translateX(3px);
        color: var(--primary);
    }

    html.has-motion .logo-strip__item {
        transition:
            transform var(--motion-card) var(--ease-out-smooth),
            box-shadow 0.3s ease,
            border-color 0.25s ease;
    }

    html.has-motion .logo-strip__item:hover {
        transform: translateY(-4px);
        border-color: rgba(36, 104, 142, 0.28);
        box-shadow: 0 16px 38px rgba(17, 46, 66, 0.09);
    }

    html.has-motion .logo-strip__item img {
        transition: transform 0.35s var(--ease-out-smooth), filter 0.35s ease;
    }

    html.has-motion .logo-strip__item:hover img {
        transform: scale(1.04);
        filter: saturate(1.06);
    }

    html.has-motion .focus-card,
    html.has-motion .action-card,
    html.has-motion .service-strip__card {
        transition:
            transform var(--motion-card) var(--ease-out-smooth),
            box-shadow 0.28s ease,
            border-color 0.25s ease;
    }

    html.has-motion .focus-card:hover,
    html.has-motion .action-card:hover,
    html.has-motion .service-strip__card:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 46px rgba(17, 46, 66, 0.1);
        border-color: rgba(36, 104, 142, 0.2);
    }

    html.has-motion .partner-showcase__card {
        transition:
            transform var(--motion-card) var(--ease-out-smooth),
            box-shadow 0.3s ease,
            border-color 0.25s ease;
    }

    html.has-motion .partner-showcase__card:hover {
        transform: translateY(-5px);
        box-shadow: 0 28px 54px rgba(17, 46, 66, 0.12);
        border-color: rgba(36, 104, 142, 0.24);
    }

    html.has-motion .brand-mark--clean .brand-mark__logo-wrap {
        transition:
            transform 0.3s var(--ease-out-smooth),
            box-shadow 0.25s ease,
            border-color 0.25s ease;
    }

    html.has-motion .brand-mark--clean:hover .brand-mark__logo-wrap {
        transform: translateY(-2px);
        box-shadow: 0 14px 32px rgba(17, 46, 66, 0.09);
        border-color: rgba(36, 104, 142, 0.24);
    }

    html.has-motion .site-nav a {
        transition:
            transform var(--motion-tap) var(--ease-out-smooth),
            background 0.2s ease,
            color 0.2s ease,
            box-shadow 0.2s ease;
    }

    html.has-motion .site-nav a:hover {
        transform: translateY(-2px);
    }

    html.has-motion .legal-nav__link {
        transition: background 0.22s ease, transform 0.22s var(--ease-out-smooth);
    }

    html.has-motion .legal-nav__link:hover {
        transform: translateX(3px);
    }

    html.has-motion .legal-nav__link--button:hover {
        transform: translateX(3px);
    }

    html.has-motion .footer-links a {
        transition: color 0.2s ease, transform 0.2s var(--ease-out-smooth);
    }

    html.has-motion .footer-links a:hover {
        transform: translateX(3px);
    }

    html.has-motion .site-footer .social-links__item {
        transition:
            transform 0.25s var(--ease-out-smooth),
            background 0.2s ease,
            border-color 0.2s ease;
    }

    html.has-motion .site-footer .social-links__item:hover {
        transform: translateY(-3px) scale(1.06);
    }

    html.has-motion .header-cta,
    html.has-motion .nav-cta-link {
        transition:
            transform 0.26s var(--ease-out-smooth),
            box-shadow 0.26s ease;
    }

    html.has-motion .header-cta:hover,
    html.has-motion .nav-cta-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 24px 44px rgba(23, 50, 58, 0.24);
    }

    html.has-motion .site-chat-fab__launcher:hover {
        transform: translateY(-3px) scale(1.03);
    }

    html.has-motion .button-primary:hover {
        box-shadow: 0 16px 34px rgba(36, 104, 142, 0.3);
    }

    html.has-motion .button:active {
        transform: translateY(0) scale(0.98);
        transition-duration: 0.08s;
    }

    html.has-motion .home-stage__video-link {
        transition: color 0.2s ease, transform 0.24s var(--ease-out-smooth);
    }

    html.has-motion .home-stage__video-link:hover,
    html.has-motion .home-stage__video-link:focus-visible {
        transform: translateX(4px);
    }

    html.has-motion .filter-control select,
    html.has-motion .filter-control input {
        transition:
            border-color 0.22s ease,
            box-shadow 0.22s ease,
            background-color 0.22s ease;
    }
}

@media (prefers-reduced-motion: reduce) {
    html.has-motion .tab-button:hover:not(.is-active) {
        transform: none;
    }
}

.site-nav__mobile-head,
.site-nav__mobile-close,
.site-nav__scrim {
    display: none;
}

.site-nav__panel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 0;
}

.site-nav__item-head {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.site-nav__item-head > a {
    min-width: 0;
}

.site-nav__parent-toggle {
    display: none;
}

.site-nav__mobile-title {
    margin: 0;
}

@media (min-width: 921px) {
    .menu-toggle {
        display: none !important;
    }

    .header-tools {
        display: flex !important;
        align-items: center;
    }

    .header-inner--clean {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 30px;
        min-height: 96px;
    }

    .site-nav--clean {
        position: static !important;
        inset: auto !important;
        width: auto !important;
        min-height: 0 !important;
        height: auto !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 2px;
        min-width: 0;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        overflow: visible !important;
        isolation: auto;
        z-index: auto !important;
    }

    .site-nav__mobile-head,
    .site-nav__scrim {
        display: none !important;
    }

    .site-nav__panel {
        position: static;
        width: auto;
        min-height: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 2px;
        padding: 0;
        background: transparent;
        box-shadow: none;
        overflow: visible;
        z-index: auto;
    }

    .site-nav--clean .site-nav__item-head,
    .site-nav--clean .site-subnav__inner {
        display: block;
    }

    .site-nav--clean .site-nav__parent-toggle {
        display: none !important;
    }

    .site-nav--clean .site-nav__item {
        position: relative;
        display: flex;
        align-items: center;
        width: auto;
        gap: 0;
    }

    .site-nav--clean .site-nav__item-head > a {
        display: inline-flex;
        width: auto;
        min-height: 42px;
    }

    .site-nav--clean .site-nav__item.has-children > .site-nav__item-head > a {
        font-weight: 700;
        background: transparent;
    }

    .site-nav--clean .site-subnav {
        position: absolute;
        top: 100%;
        left: 0;
        display: none;
        min-width: 220px;
        max-height: none !important;
        padding: 10px 8px 8px;
        border: 1px solid rgba(23, 50, 58, 0.12);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 14px 28px rgba(23, 50, 58, 0.1);
        opacity: 1 !important;
        visibility: visible !important;
        overflow: visible;
        z-index: 120;
    }

    .site-nav--clean .site-subnav__inner {
        display: grid;
        gap: 4px;
    }

    .site-nav--clean .site-subnav a {
        display: block;
        min-height: 0;
        padding: 8px 10px;
        border-radius: 8px;
        background: transparent;
        opacity: 1 !important;
        transform: none !important;
    }

    .site-nav--clean .site-nav__item.has-children:hover .site-subnav,
    .site-nav--clean .site-nav__item.has-children:focus-within .site-subnav {
        display: block;
    }
}

html.mobile-nav-open,
body.mobile-nav-open {
    overflow: hidden;
    height: 100%;
}

body.mobile-nav-open .site-header,
body.mobile-nav-open .site-header--clean {
    z-index: 12000;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body.mobile-nav-open .site-floats,
body.mobile-nav-open .cookie-consent {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 920px) {
    .menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 6600;
    }

    .header-topline__inner {
        min-height: auto;
        padding: 8px 0;
        gap: 12px 18px;
    }

    .header-topline__contact {
        flex-wrap: wrap;
        justify-content: center;
    }

    .site-nav__mobile-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        width: 100%;
        margin-bottom: 8px;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(20, 55, 79, 0.12);
    }

    .site-nav__mobile-title {
        color: rgba(20, 55, 79, 0.62);
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

    .site-nav__mobile-close {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        border: 1px solid rgba(20, 55, 79, 0.12);
        border-radius: 14px;
        background: #f6f9fb;
        cursor: pointer;
        flex-shrink: 0;
    }

    .site-nav__mobile-close span {
        position: absolute;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: #17323a;
    }

    .site-nav__mobile-close span:first-child {
        transform: rotate(45deg);
    }

    .site-nav__mobile-close span:last-child {
        transform: rotate(-45deg);
    }

    .site-nav--clean {
        position: fixed !important;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100vw;
        min-height: 100vh;
        min-height: 100svh;
        height: 100vh;
        height: 100svh;
        display: block !important;
        padding: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        background: rgba(255, 255, 255, 0.98);
        transition:
            opacity 0.24s ease,
            visibility 0.24s step-end;
        z-index: 12000;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
        isolation: isolate;
    }

    .site-nav__scrim {
        display: none !important;
    }

    .site-nav__panel {
        position: relative;
        width: 100%;
        min-height: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 10px;
        padding: max(18px, calc(env(safe-area-inset-top, 0px) + 12px)) 18px calc(24px + env(safe-area-inset-bottom, 0px));
        background: #ffffff;
        box-shadow: none;
        overflow: visible;
        transform: none;
        transition: none;
        pointer-events: auto;
        z-index: 1;
    }

    .site-nav--clean.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition:
            opacity 0.22s ease,
            visibility 0s step-start;
    }

    .site-nav--clean a {
        width: 100%;
        justify-content: flex-start;
        min-height: 54px;
        padding: 0 18px;
        border-radius: 18px;
        border: 1px solid rgba(20, 55, 79, 0.08);
        background: #ffffff;
        color: #17323a;
        font-size: 1.04rem;
        line-height: 1.35;
        white-space: normal;
        box-shadow: none;
    }

    .site-nav--clean a::after {
        display: none;
    }

    .site-nav--clean a.active,
    .site-nav--clean a:hover {
        background: rgba(36, 104, 142, 0.08);
        color: #17323a;
    }

    .site-nav--clean .site-nav__item {
        width: 100%;
        display: grid;
        gap: 8px;
    }

    .site-nav__item-head {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px;
    }

    .site-nav__parent-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        padding: 0;
        border: 1px solid rgba(20, 55, 79, 0.08);
        border-radius: 14px;
        background: #f6f9fb;
        color: #17323a;
        cursor: pointer;
        flex-shrink: 0;
        transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }

    .site-nav__parent-toggle::before {
        content: "";
        width: 10px;
        height: 10px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg) translateY(-1px);
        transition: transform 0.24s var(--ease-out-smooth);
    }

    .site-nav--clean .site-nav__item.is-open .site-nav__parent-toggle::before {
        transform: rotate(-135deg) translate(-1px, -1px);
    }

    .site-nav--clean .site-nav__item.has-children > .site-nav__item-head > a {
        font-weight: 800;
        background: rgba(36, 104, 142, 0.05);
    }

    .site-nav--clean .site-subnav {
        position: static;
        display: block;
        min-width: 0;
        padding: 0 0 0 14px;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition:
            max-height 0.34s var(--ease-out-smooth),
            opacity 0.22s ease,
            visibility 0.22s step-end,
            padding-top 0.22s ease;
    }

    .site-nav--clean .site-subnav::before {
        display: none;
    }

    .site-nav--clean .site-subnav__inner {
        display: grid;
        gap: 8px;
    }

    .site-nav--clean .site-nav__item.is-open .site-subnav {
        padding-top: 4px;
        opacity: 1;
        visibility: visible;
        transition:
            max-height 0.34s var(--ease-out-smooth),
            opacity 0.24s ease,
            visibility 0s step-start,
            padding-top 0.22s ease;
    }

    .site-nav--clean .site-subnav a {
        min-height: 44px;
        padding: 10px 14px;
        font-size: 0.92rem;
        color: #456170;
        background: #f7fafc;
        opacity: 0;
        transform: translateY(-6px);
        transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .site-nav--clean .site-nav__item.is-open .site-subnav a {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-cta-link {
        display: inline-flex !important;
        justify-content: center !important;
        margin-top: 12px;
        min-height: 56px;
        padding: 0 22px;
        border: 0;
        background: linear-gradient(135deg, #25d366, #1faa53);
        box-shadow: 0 18px 36px rgba(31, 170, 83, 0.22);
    }
}

@media (max-width: 760px) {
    .site-nav__panel {
        gap: 8px;
        width: 100%;
        padding: max(16px, calc(env(safe-area-inset-top, 0px) + 10px)) 14px calc(20px + env(safe-area-inset-bottom, 0px));
    }

    .site-nav__mobile-head {
        padding-bottom: 14px;
    }

    .site-nav__mobile-close {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .site-nav__parent-toggle {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .site-nav--clean a {
        min-height: 50px;
        padding: 0 16px;
        border-radius: 16px;
        font-size: 0.98rem;
    }

    .site-nav--clean .site-subnav {
        padding-left: 10px;
    }

    .section-kicker,
    .section-kicker--light {
        display: inline-block;
        margin-bottom: 12px;
        line-height: 1.45;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading h2,
    .cta-panel h2,
    .contact-form__title {
        margin: 14px 0 20px;
        line-height: 1.18;
        text-wrap: balance;
    }

    .page-hero h1,
    .inner-hero__content h1,
    .home-stage__copy h1 {
        margin: 16px 0 22px;
        line-height: 1.28;
        text-wrap: balance;
    }

    .section-heading p,
    .cta-panel p,
    .inner-hero__content p,
    .home-stage__copy p {
        margin-top: 0;
        line-height: 1.72;
    }

    .site-chat-fab {
        left: max(12px, env(safe-area-inset-left, 0px));
        bottom: calc(86px + env(safe-area-inset-bottom, 0px));
    }

    .site-chat-fab__launcher {
        width: 46px;
        min-width: 46px;
        height: 46px;
        min-height: 46px;
        padding: 0;
        gap: 0;
        box-shadow: 0 12px 28px rgba(15, 45, 63, 0.2);
    }

    .site-chat-fab__launcher-icon {
        width: 20px;
        height: 20px;
    }

    .site-chat-fab__launcher-icon--whatsapp {
        width: 22px;
        height: 22px;
    }

    .site-chat-fab__launcher-dot {
        top: 6px;
        right: 7px;
        width: 7px;
        height: 7px;
    }

    .site-chat-fab__launcher-label {
        display: none;
    }

    .site-float {
        width: 46px;
        height: 46px;
    }

    .site-float__icon {
        width: 20px;
        height: 20px;
    }

    .site-float--top {
        right: max(12px, env(safe-area-inset-right, 0px));
        bottom: calc(86px + env(safe-area-inset-bottom, 0px));
    }

    .cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-consent__content {
        gap: 12px;
        padding: 12px;
        border-radius: 12px;
    }

    .cookie-consent__content p {
        font-size: 0.84rem;
        line-height: 1.55;
    }

    .cookie-consent__actions {
        width: 100%;
        flex-wrap: wrap;
        gap: 8px;
    }

    .cookie-consent__actions .button {
        min-height: 38px;
        padding: 0 12px;
        font-size: 0.8rem;
    }
}

@media (min-width: 921px) {
    .home-stage__copy {
        width: min(52vw, 980px);
        max-width: min(52vw, 980px);
    }

    .home-stage__copy h1,
    .home-stage__copy--long h1 {
        width: 100%;
        max-width: none;
    }

    .home-stage__copy p {
        max-width: 72ch;
    }
}

@media (min-width: 921px) {
    .site-nav--clean {
        gap: 6px;
    }

    .site-nav__panel > a,
    .site-nav--clean .site-nav__item-head > a,
    .site-nav--clean .site-subnav a,
    .header-cta,
    .nav-cta-link,
    .site-nav__parent-toggle,
    .site-nav__mobile-close {
        box-shadow: none !important;
    }

    .site-nav__panel > a,
    .site-nav--clean .site-nav__item-head > a {
        transition:
            background-color 0.2s ease,
            border-color 0.2s ease,
            color 0.2s ease;
    }

    .site-nav__panel > a:hover,
    .site-nav__panel > a.active,
    .site-nav--clean .site-nav__item-head > a:hover,
    .site-nav--clean .site-nav__item-head > a.active,
    .site-nav--clean .site-nav__item.has-children:hover > .site-nav__item-head > a,
    .site-nav--clean .site-nav__item.has-children:focus-within > .site-nav__item-head > a {
        background: rgba(36, 104, 142, 0.1);
        border-color: rgba(36, 104, 142, 0.14);
        color: #153847;
    }

    .site-nav--clean .site-subnav {
        padding: 10px;
        border-color: rgba(36, 104, 142, 0.12);
        background: #f7fafc;
        box-shadow: none !important;
    }

    .site-nav--clean .site-subnav a {
        color: #264556;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .site-nav--clean .site-subnav a:hover,
    .site-nav--clean .site-subnav a.active {
        background: rgba(36, 104, 142, 0.08);
        color: #153847;
    }

    .header-cta,
    .nav-cta-link {
        transition:
            transform 0.22s var(--ease-out-smooth),
            filter 0.22s ease,
            background-color 0.22s ease;
    }

    html.has-motion .header-cta:hover,
    html.has-motion .nav-cta-link:hover {
        transform: translateY(-1px);
        box-shadow: none !important;
        filter: saturate(1.02) brightness(0.99);
    }
}

@media (max-width: 920px) {
    .site-nav__panel,
    .site-nav__mobile-close,
    .site-nav__parent-toggle,
    .site-nav--clean a,
    .site-nav--clean .site-subnav a,
    .nav-cta-link {
        box-shadow: none !important;
    }

    .site-nav__panel {
        background: #ffffff;
    }

    .site-nav__mobile-head {
        border-bottom-color: rgba(20, 55, 79, 0.08);
    }

    .site-nav__mobile-close,
    .site-nav__parent-toggle {
        background: #f7fafc;
        transition:
            background-color 0.2s ease,
            border-color 0.2s ease,
            color 0.2s ease,
            transform 0.2s ease;
    }

    .site-nav__mobile-close:hover,
    .site-nav__mobile-close:focus-visible,
    .site-nav__parent-toggle:hover,
    .site-nav__parent-toggle:focus-visible {
        background: #edf4f8;
        border-color: rgba(36, 104, 142, 0.14);
        color: #153847;
    }

    .site-nav--clean a {
        transition:
            background-color 0.2s ease,
            border-color 0.2s ease,
            color 0.2s ease;
    }

    .site-nav--clean a:hover,
    .site-nav--clean a.active,
    .site-nav--clean .site-nav__item.has-children > .site-nav__item-head > a:hover,
    .site-nav--clean .site-nav__item.has-children > .site-nav__item-head > a.active {
        background: rgba(36, 104, 142, 0.08);
        border-color: rgba(36, 104, 142, 0.14);
        color: #153847;
    }

    .site-nav--clean .site-nav__item.has-children > .site-nav__item-head > a {
        background: rgba(36, 104, 142, 0.04);
    }

    .site-nav--clean .site-subnav a {
        background: #f7fafc;
        color: #365463;
    }

    .site-nav--clean .site-subnav a:hover,
    .site-nav--clean .site-subnav a.active {
        background: #eef4f8;
        color: #153847;
    }

    .nav-cta-link:hover,
    .nav-cta-link:focus-visible {
        filter: saturate(1.02) brightness(0.99);
    }
}
