/* ==========================================
   İÇ SAYFALAR — ortak tasarım
   Hizmetler, projeler, hakkımızda, referanslar, galeri, SSS gibi sayfalar
   bu dosyayı paylaşır. Ana sayfanın dili korunur: beyaz/gri bölümler, köşe
   etiketleri, Montserrat 900 başlıklar, sarı vurgular, koyu hap butonlar.
   ========================================== */

.ip {
    --ink: #0d0d0d;
    --brand: #ffdd00;
    --cream: #f4f3f1;
    --dark: #1c1c1c;
    --muted: #5a5a5a;
    --line: rgba(13, 13, 13, 0.12);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --gutter: clamp(16px, 2.5vw, 32px);

    display: block;
    color: var(--ink);
}

/* --- Sayfa başlığı --- */
.ip__hero {
    position: relative;
    margin: 0 12px 12px;
    padding: clamp(72px, 11vh, 132px) var(--gutter) clamp(36px, 6vh, 64px);
    background: #fff;
}

.ip__eyebrow,
.ip__count {
    position: absolute;
    top: clamp(24px, 4vh, 40px);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ip__eyebrow {
    left: var(--gutter);
}

.ip__eyebrow span {
    width: 8px;
    height: 8px;
    background: var(--brand);
    box-shadow: 0 0 0 1px var(--ink);
}

.ip__eyebrow--static {
    position: static;
    margin-bottom: 10px;
}

.ip__count {
    right: var(--gutter);
    color: rgba(13, 13, 13, 0.5);
}

.ip__count strong {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.ip__title {
    margin: 0;
    max-width: 18ch;
    font-size: clamp(2.2rem, 5.4vw, 5rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.ip__lead {
    max-width: 62ch;
    margin: clamp(16px, 2.6vh, 26px) 0 0;
    font-size: clamp(0.92rem, 1.05vw, 1.05rem);
    line-height: 1.7;
    color: var(--muted);
}

/* --- Butonlar --- */
.ip__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 26px;
    margin-top: clamp(20px, 3.4vh, 32px);
}

.ip__cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    height: 56px;
    padding: 0 7px 0 22px;
    border-radius: 12px;
    background: var(--dark);
    color: #f2f2f2;
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.6);
    transition: background 0.3s ease, translate 0.3s var(--ease);
}

.ip__cta--sm {
    height: 48px;
    padding-left: 18px;
    font-size: 0.86rem;
}

.ip__cta-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--brand);
    color: var(--ink);
    transition: transform 0.4s var(--ease);
}

.ip__cta--sm .ip__cta-icon {
    width: 36px;
    height: 36px;
}

.ip__cta-icon svg {
    width: 15px;
    height: 15px;
}

.ip__cta:hover {
    background: #000;
    translate: 0 -2px;
}

.ip__cta:hover .ip__cta-icon {
    transform: rotate(45deg);
}

.ip__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    background-image: linear-gradient(var(--brand), var(--brand));
    background-repeat: no-repeat;
    background-position: 0 92%;
    background-size: 0% 0.35em;
    transition: background-size 0.4s var(--ease);
}

.ip__link:hover {
    background-size: 100% 0.35em;
}

.ip__link svg {
    width: 16px;
    height: 16px;
    transition: translate 0.3s var(--ease);
}

.ip__link:hover svg {
    translate: 4px 0;
}

.ip__link--light {
    color: #f2f2f2;
    background-image: linear-gradient(var(--brand), var(--brand));
}

/* --- Başlık altı kısayol bağlantıları --- */
.ip__jump {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: clamp(22px, 3.6vh, 34px);
    padding-top: clamp(18px, 3vh, 28px);
    border-top: 1px solid var(--line);
}

.ip__jump a {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px var(--line);
    color: var(--ink);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.ip__jump a:hover {
    background: var(--brand);
    box-shadow: inset 0 0 0 1px var(--ink);
}

/* --- Gövde --- */
.ip__body {
    margin: 0 12px 12px;
    padding: clamp(40px, 7vh, 80px) var(--gutter);
    background: var(--cream);
}

.ip__h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3.6vw, 3.2rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.ip__empty {
    margin: 0;
    padding: clamp(32px, 6vh, 64px);
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--muted);
}

/* --- Hizmet kalemi --- */
.svci {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(24px, 4vw, 64px);
    padding: clamp(28px, 5vh, 56px) 0;
    border-bottom: 1px solid var(--line);
}

.svci:last-child {
    border-bottom: 0;
}

.svci.is-flip .svci__media {
    order: 2;
}

.svci__media {
    margin: 0;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    aspect-ratio: 4 / 3;
}

.svci__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale 1s var(--ease);
}

.svci:hover .svci__media img {
    scale: 1.04;
}

.svci__num {
    margin: 0 0 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: rgba(13, 13, 13, 0.45);
}

.svci__title {
    margin: 0;
    font-size: clamp(1.5rem, 2.8vw, 2.6rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.svci__summary {
    margin: 14px 0 0;
    max-width: 58ch;
    font-size: clamp(0.9rem, 1vw, 1rem);
    line-height: 1.7;
    font-weight: 600;
}

.svci__text {
    margin-top: 12px;
    max-width: 62ch;
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--muted);
}

.svci__text p {
    margin: 0 0 10px;
}

.svci__text ul,
.svci__text ol {
    margin: 12px 0;
    padding-left: 1.1em;
}

.svci__text li {
    margin-bottom: 6px;
}

.svci__text strong {
    color: var(--ink);
}

.svci__text h3,
.svci__text h4 {
    margin: 18px 0 8px;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.svci__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 22px;
    margin-top: clamp(18px, 3vh, 26px);
}

/* --- Sık sorulan sorular --- */
.ip__faq {
    margin: 0 12px 12px;
    padding: clamp(48px, 8vh, 96px) var(--gutter);
    background: #fff;
}

.ip__faq-head {
    margin-bottom: clamp(20px, 3.4vh, 36px);
}

.ip__faq-list {
    display: grid;
    gap: 10px;
    max-width: 980px;
}

/* --- SSS: arama kutusu --- */
.ip-faq-search {
    max-width: 560px;
    margin-top: clamp(20px, 3vh, 32px);
}

.ip-faq-search__field {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 18px 4px 16px;
    border-radius: 999px;
    background: #fff;
    box-shadow: inset 0 0 0 1.5px var(--line);
    transition: box-shadow 0.25s ease;
}

.ip-faq-search__field:focus-within {
    box-shadow: inset 0 0 0 2px var(--ink);
}

.ip-faq-search__icon {
    flex: none;
    display: grid;
    place-items: center;
    color: var(--muted);
}

.ip-faq-search__icon svg {
    width: 19px;
    height: 19px;
}

/* Etiket ekran okuyucular için; görsel olarak gizli */
.ip-faq-search__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
}

.ip-faq-search input {
    flex: 1;
    min-width: 0;
    height: 46px;
    border: 0;
    background: none;
    font: inherit;
    font-size: 0.92rem;
    color: var(--ink);
    outline: none;
}

.ip-faq-search input::placeholder {
    color: var(--muted);
}

/* --- SSS: kategori grupları --- */
.ip-faq-group + .ip-faq-group {
    margin-top: clamp(32px, 5vh, 56px);
}

.ip-faq-group__title {
    display: flex;
    align-items: baseline;
    gap: 12px;
    max-width: 980px;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
    font-size: clamp(1.05rem, 1.6vw, 1.45rem);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.ip-faq-group__count {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--muted);
}

/* Soru başlıkları H3 olarak işaretlendi; görünüm summary'den gelir */
.ip-faq__q h3 {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: 1.35;
}

.ip-faq {
    border-radius: 16px;
    background: var(--cream);
    overflow: hidden;
}

.ip-faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: clamp(16px, 2.4vh, 22px) clamp(18px, 2.4vw, 28px);
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    cursor: pointer;
    list-style: none;
}

.ip-faq__q::-webkit-details-marker {
    display: none;
}

.ip-faq__icon {
    position: relative;
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--brand);
    transition: transform 0.35s var(--ease);
}

.ip-faq__icon::before,
.ip-faq__icon::after {
    content: '';
    position: absolute;
    inset: 50% 25%;
    height: 2px;
    background: var(--ink);
    translate: 0 -1px;
}

.ip-faq__icon::after {
    rotate: 90deg;
    transition: opacity 0.3s ease;
}

.ip-faq[open] .ip-faq__icon {
    transform: rotate(180deg);
}

.ip-faq[open] .ip-faq__icon::after {
    opacity: 0;
}

.ip-faq__a {
    padding: 0 clamp(18px, 2.4vw, 28px) clamp(18px, 2.6vh, 24px);
    max-width: 78ch;
    font-size: 0.94rem;
    line-height: 1.75;
    color: var(--muted);
}

.ip-faq__a p {
    margin: 0 0 10px;
}

/* --- Kapanış bandı --- */
.ip__end {
    margin: 0 12px 12px;
    padding: clamp(56px, 10vh, 120px) var(--gutter);
    background: var(--dark);
    color: #f2f2f2;
    text-align: center;
}

.ip__end-eyebrow {
    margin: 0 0 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand);
}

.ip__end-title {
    margin: 0 auto;
    max-width: 18ch;
    font-size: clamp(1.9rem, 4.4vw, 4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.ip__end-text {
    max-width: 58ch;
    margin: clamp(14px, 2.4vh, 22px) auto 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(242, 242, 242, 0.7);
}

.ip__end-text strong {
    color: #fff;
}

.ip__end .ip__actions {
    justify-content: center;
}

.ip__end .ip__cta {
    background: var(--brand);
    color: var(--ink);
}

.ip__end .ip__cta-icon {
    background: var(--ink);
    color: var(--brand);
}

.ip__end .ip__cta:hover {
    background: #fff;
}

/* --- Kart ızgarası (projeler, referanslar, galeri, videolar) --- */
.ip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(clamp(240px, 26vw, 340px), 1fr));
    gap: clamp(12px, 1.6vw, 22px);
}

.ip-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 20px 40px -32px rgba(13, 13, 13, 0.5);
    transition: translate 0.4s var(--ease), box-shadow 0.4s ease;
}

.ip-card:hover {
    translate: 0 -6px;
    box-shadow: 0 34px 50px -30px rgba(13, 13, 13, 0.55);
}

.ip-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--cream);
}

.ip-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: scale 1s var(--ease);
    filter: grayscale(1);
}

.ip-card:hover .ip-card__media img {
    scale: 1.05;
    filter: grayscale(0);
}

/* Görseli henüz panelden yüklenmemiş kartlar için marka bloğu */
.ip-card__media--mark {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 1px 1px, rgba(13, 13, 13, 0.14) 1px, transparent 0) 0 0 / 16px 16px,
        var(--brand);
}

.ip-card__initials {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
    color: var(--ink);
    transition: scale 0.6s var(--ease);
}

.ip-card:hover .ip-card__initials {
    scale: 1.08;
}

.ip-card__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: clamp(14px, 1.8vw, 20px);
}

.ip-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 2px;
}

.ip-card__tag {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(13, 13, 13, 0.06);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(13, 13, 13, 0.65);
    transition: background 0.3s ease, color 0.3s ease;
}

.ip-card:hover .ip-card__tag {
    background: var(--brand);
    color: var(--ink);
}

.ip-card__title {
    margin: 0;
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.ip-card__text {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ip a:focus-visible,
.ip button:focus-visible,
.ip summary:focus-visible {
    outline: 3px solid var(--ink);
    outline-offset: 3px;
}

/* --- Tablet --- */
@media (max-width: 1023px) {
    .svci {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .svci.is-flip .svci__media {
        order: 0;
    }

    .ip__title {
        max-width: none;
    }
}

/* --- Telefon --- */
@media (max-width: 620px) {
    .ip__hero,
    .ip__body,
    .ip__faq,
    .ip__end {
        margin-inline: 8px;
    }

    .ip__count {
        display: none;
    }

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

    .ip__cta {
        justify-content: space-between;
    }

    .ip__jump {
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
    }

    .ip__jump::-webkit-scrollbar {
        display: none;
    }

    .ip__jump a {
        flex: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ip-card,
    .ip-card__media img,
    .svci__media img,
    .ip__cta,
    .ip-faq__icon {
        transition: none !important;
    }
}

/* Filtre hapları (projeler sayfası) buton olarak da kullanılır */
.ip__jump button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    box-shadow: inset 0 0 0 1px var(--line);
    color: var(--ink);
    font: inherit;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.ip__jump button b {
    font-size: 0.68rem;
    font-weight: 800;
    color: rgba(13, 13, 13, 0.45);
}

.ip__jump button:hover {
    background: #f6f5f3;
}

.ip__jump button.is-active {
    background: var(--brand);
    box-shadow: inset 0 0 0 1px var(--ink);
}

/* --- Referans logoları --- */
.ip-logos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(clamp(150px, 16vw, 220px), 1fr));
    gap: clamp(10px, 1.2vw, 16px);
}

.ip-logo {
    display: grid;
    place-items: center;
    aspect-ratio: 3 / 2;
    padding: clamp(14px, 1.8vw, 24px);
    border-radius: 16px;
    background: #fff;
    text-decoration: none;
    color: var(--ink);
    transition: translate 0.4s var(--ease), box-shadow 0.4s ease;
}

.ip-logo:hover {
    translate: 0 -4px;
    box-shadow: 0 24px 40px -30px rgba(13, 13, 13, 0.55);
}

.ip-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.75;
    transition: filter 0.35s ease, opacity 0.35s ease;
}

.ip-logo:hover img {
    filter: none;
    opacity: 1;
}

.ip-logo__name {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-align: center;
}

/* --- Fotoğraf galerisi --- */
.ip-masonry {
    columns: 4 clamp(200px, 20vw, 300px);
    column-gap: clamp(10px, 1.2vw, 16px);
}

.ip-shot {
    position: relative;
    margin: 0 0 clamp(10px, 1.2vw, 16px);
    break-inside: avoid;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
}

.ip-shot img {
    display: block;
    width: 100%;
    height: auto;
    transition: scale 1s var(--ease);
}

.ip-shot:hover img {
    scale: 1.04;
}

.ip-shot figcaption {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(28, 28, 28, 0.88);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    translate: 0 calc(100% + 14px);
    opacity: 0;
    transition: translate 0.45s var(--ease), opacity 0.35s ease;
}

.ip-shot:hover figcaption {
    translate: 0 0;
    opacity: 1;
}

/* --- Video kartı --- */
.ip-card--video {
    cursor: default;
}

.ip-card__media--video {
    aspect-ratio: 16 / 9;
}

.ip-card__media--video iframe,
.ip-card__media--video video {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

/* --- Yazı düzeni (hakkımızda, kurumsal sayfalar) --- */
.ip-article {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: clamp(24px, 4vw, 64px);
}

.ip-article__media {
    margin: 0;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
}

.ip-article__media img {
    display: block;
    width: 100%;
    height: auto;
}

.ip-article__text {
    font-size: clamp(0.92rem, 1.05vw, 1.02rem);
    line-height: 1.85;
    color: var(--muted);
}

.ip-article__text h2,
.ip-article__text h3 {
    margin: 26px 0 10px;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--ink);
}

.ip-article__text p {
    margin: 0 0 14px;
}

.ip-article__text ul,
.ip-article__text ol {
    margin: 14px 0;
    padding-left: 1.2em;
}

.ip-article__text strong {
    color: var(--ink);
}

/* --- Form --- */
.ip-form-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
    gap: clamp(20px, 3vw, 48px);
    align-items: start;
}

.ip-form {
    display: grid;
    gap: clamp(14px, 2vh, 20px);
    padding: clamp(20px, 3vw, 40px);
    border-radius: 20px;
    background: #fff;
}

.ip-form__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(12px, 1.6vw, 20px);
}

.ip-field {
    display: grid;
    gap: 8px;
    min-width: 0;
    border: 0;
    padding: 0;
    margin: 0;
}

.ip-field > span,
.ip-field legend {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(13, 13, 13, 0.6);
}

.ip-field input,
.ip-field textarea {
    width: 100%;
    padding: 14px 16px;
    box-sizing: border-box;
    border: 0;
    border-radius: 12px;
    background: var(--cream);
    box-shadow: inset 0 0 0 1px var(--line);
    color: var(--ink);
    font: inherit;
    font-size: 0.95rem;
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.ip-field textarea {
    resize: vertical;
    line-height: 1.6;
}

.ip-field input:focus,
.ip-field textarea:focus {
    outline: none;
    background: #fff;
    box-shadow: inset 0 0 0 2px var(--ink);
}

.ip-choices {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ip-choice {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: var(--cream);
    box-shadow: inset 0 0 0 1px var(--line);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.ip-choice input {
    accent-color: var(--ink);
    width: 16px;
    height: 16px;
}

.ip-choice:has(input:checked) {
    background: var(--brand);
    box-shadow: inset 0 0 0 1px var(--ink);
}

.ip-form__submit {
    justify-self: start;
    border: 0;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}

.ip-form__ok,
.ip-form__err {
    margin: 0;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
}

.ip-form__ok {
    background: rgba(24, 160, 88, 0.12);
    color: #16733f;
}

.ip-form__err {
    list-style: none;
    background: rgba(214, 45, 32, 0.1);
    color: #a32219;
}

.ip-form__err li + li {
    margin-top: 6px;
}

/* --- Form yan sütunu --- */
.ip-aside {
    padding: clamp(20px, 2.6vw, 32px);
    border-radius: 20px;
    background: var(--dark);
    color: #f2f2f2;
}

.ip-aside__title {
    margin: 0 0 18px;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.ip-aside__row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: inherit;
    text-decoration: none;
}

/* Satır başındaki ikon kutusu */
.ip-aside__icon {
    flex: none;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-top: 2px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--brand);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
}

.ip-aside__icon svg {
    width: 19px;
    height: 19px;
}

.ip-aside__row[href]:hover .ip-aside__icon {
    background: var(--brand);
    color: var(--ink);
    transform: translateY(-2px);
}

.ip-aside__text {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.ip-aside__text span {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(242, 242, 242, 0.5);
}

.ip-aside__text strong {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.ip-aside__row[href]:hover .ip-aside__text strong {
    color: var(--brand);
}

/* WhatsApp satırı kendi rengiyle ayrışır */
.ip-aside__row--wa .ip-aside__icon {
    background: rgba(37, 211, 102, 0.16);
    color: #25d366;
}

.ip-aside__row--wa:hover .ip-aside__icon {
    background: #25d366;
    color: #0d0d0d;
}

/* Bot tuzağı alanı: ekranda görünmez ama ekran okuyucuya da gizli kalır */
.ip-form__trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.ip-aside__note {
    margin: 18px 0 0;
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(242, 242, 242, 0.6);
}

@media (max-width: 1023px) {
    .ip-article,
    .ip-form-wrap {
        grid-template-columns: minmax(0, 1fr);
    }

    .ip-masonry {
        columns: 2 clamp(150px, 40vw, 260px);
    }
}

@media (max-width: 620px) {
    .ip-masonry {
        columns: 1;
    }

    .ip-shot figcaption {
        translate: 0 0;
        opacity: 1;
    }
}

/* ==========================================
   İÇ SAYFALAR — hareket ve derinlik katmanı
   Ana sayfanın diliyle aynı: maskenin altından gelen dev başlık, son kelimede
   sarı fosforlu kalem, arkada dev soluk kelime, kaydırdıkça beliren bloklar,
   eğik duran görsel çerçeveleri ve dönen rozetli kapanış bandı.
   ========================================== */

/* --- Başlık bandı --- */
.ip__hero {
    overflow: hidden;
    isolation: isolate;
}

/* Arkadaki dev soluk kelime */
.ip__ghost {
    position: absolute;
    z-index: 0;
    right: calc(var(--gutter) * -0.4);
    bottom: -0.22em;
    margin: 0;
    font-size: clamp(5rem, 15vw, 15rem);
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -0.06em;
    color: rgba(13, 13, 13, 0.035);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

/* Mutlak konumlu köşe etiketleri hariç tutulur, yoksa konumları bozulur */
.ip__hero > *:not(.ip__ghost):not(.ip__eyebrow):not(.ip__count):not(.ip__crumbs) {
    position: relative;
    z-index: 1;
}

.ip__hero > .ip__eyebrow,
.ip__hero > .ip__count,
.ip__hero > .ip__crumbs {
    z-index: 2;
}

/* Kırıntı navigasyonu */
.ip__crumbs {
    position: absolute;
    top: clamp(24px, 4vh, 40px);
    left: 50%;
    translate: -50% 0;
    z-index: 2;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(13, 13, 13, 0.45);
}

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

.ip__crumbs a:hover {
    color: var(--ink);
}

/* Başlık kelimeleri: maskenin altından yukarı */
.ip-word {
    display: inline-block;
    padding: 0.14em 0.03em 0.18em;
    margin: -0.14em -0.03em -0.18em;
    overflow: hidden;
    vertical-align: top;
}

.ip-word__in {
    display: inline-block;
    transform: translateY(112%);
    transition: transform 1s var(--ease);
    transition-delay: calc(var(--i) * 80ms + 80ms);
}

.ip.is-ready .ip-word__in {
    transform: none;
}

/* Son kelimenin altına sarı fosforlu kalem */
.ip-word:last-child .ip-word__in {
    background-image: linear-gradient(var(--brand), var(--brand));
    background-repeat: no-repeat;
    background-position: 0 86%;
    background-size: 0% 0.24em;
    transition: transform 1s var(--ease), background-size 0.8s var(--ease);
    transition-delay: calc(var(--i) * 80ms + 80ms), 0.9s;
}

.ip.is-ready .ip-word:last-child .ip-word__in {
    background-size: 100% 0.24em;
}

/* Başlık altındaki metin ve butonlar başlıktan sonra gelir */
.ip__lead,
.ip__hero .ip__actions,
.ip__jump {
    opacity: 0;
    translate: 0 16px;
    transition: opacity 0.9s ease, translate 0.9s var(--ease);
}

.ip__lead { transition-delay: 0.35s; }
.ip__hero .ip__actions { transition-delay: 0.45s; }
.ip__jump { transition-delay: 0.55s; }

.ip.is-ready .ip__lead,
.ip.is-ready .ip__hero .ip__actions,
.ip.is-ready .ip__jump {
    opacity: 1;
    translate: 0 0;
}

/* --- Kaydırdıkça beliren bloklar --- */
[data-reveal] {
    opacity: 0;
    translate: 0 32px;
    transition: opacity 0.8s ease, translate 1s var(--ease);
    transition-delay: calc(min(var(--i, 0), 6) * 70ms);
}

[data-reveal].is-in {
    opacity: 1;
    translate: 0 0;
}

/* --- Hizmet kalemi: numara büyür, görsel hafifçe eğik durur --- */
.svci__num {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.74rem;
}

.svci__num::after {
    content: '';
    width: clamp(28px, 4vw, 64px);
    height: 1px;
    background: var(--ink);
    opacity: 0.25;
}

.svci__media {
    rotate: -1.4deg;
    transition: rotate 0.6s var(--ease), box-shadow 0.5s ease;
    box-shadow: 0 30px 60px -40px rgba(13, 13, 13, 0.55);
}

.svci.is-flip .svci__media {
    rotate: 1.4deg;
}

.svci:hover .svci__media {
    rotate: 0deg;
    box-shadow: 0 40px 70px -36px rgba(13, 13, 13, 0.6);
}

/* Başlığın altı, satırın üzerine gelince sarıyla çizilir */
.svci__title {
    background-image: linear-gradient(var(--brand), var(--brand));
    background-repeat: no-repeat;
    background-position: 0 92%;
    background-size: 0% 0.2em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    transition: background-size 0.55s var(--ease);
}

.svci:hover .svci__title {
    background-size: 100% 0.2em;
}

/* --- Kartlar: numara ve sarı çerçeve --- */
.ip-card {
    isolation: isolate;
}

.ip-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    box-shadow: inset 0 0 0 0 var(--brand);
    pointer-events: none;
    transition: box-shadow 0.35s ease;
}

.ip-card:hover::after {
    box-shadow: inset 0 0 0 3px var(--brand);
}

.ip-card__index {
    position: absolute;
    z-index: 3;
    top: 12px;
    left: 14px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    transition: background 0.3s ease;
}

.ip-card:hover .ip-card__index {
    background: var(--brand);
}

/* --- Galeri: tıklanınca büyüyen kareler --- */
.ip-shot {
    cursor: zoom-in;
}

.ip-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: grid;
    place-items: center;
    padding: clamp(16px, 4vw, 56px);
    background: rgba(13, 13, 13, 0.92);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.ip-lightbox.is-open {
    opacity: 1;
}

.ip-lightbox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 14px;
    scale: 0.96;
    transition: scale 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ip-lightbox.is-open img {
    scale: 1;
}

.ip-lightbox__close {
    position: absolute;
    top: clamp(12px, 3vw, 28px);
    right: clamp(12px, 3vw, 28px);
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: #ffdd00;
    color: #0d0d0d;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

/* --- Kısayol çubuğunda okunan hizmet --- */
.ip__jump a.is-active {
    background: var(--ink);
    color: #fff;
    box-shadow: inset 0 0 0 1px var(--ink);
}

/* --- Kapanış bandı: dönen rozet ve noktalı doku --- */
.ip__end {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background-color: var(--dark);
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1.2px);
    background-size: 18px 18px;
}

.ip__badge {
    position: absolute;
    top: 50%;
    right: clamp(20px, 6vw, 96px);
    translate: 0 -50%;
    width: clamp(92px, 9vw, 132px);
    color: var(--brand);
}

.ip__badge svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

.ip__badge text {
    font-size: 9.4px;
    font-weight: 800;
    letter-spacing: 0.08em;
    fill: #f2f2f2;
    transform-origin: 60px 60px;
    animation: ip-spin 18s linear infinite;
}

.ip__badge circle {
    fill: var(--brand);
}

.ip__badge path {
    fill: none;
    stroke: var(--ink);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes ip-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
    .ip__badge {
        display: none;
    }
}

@media (max-width: 620px) {
    .ip__crumbs {
        display: none;
    }

    .ip__ghost {
        font-size: 26vw;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ip-word__in,
    .ip__lead,
    .ip__jump,
    [data-reveal],
    .svci__media {
        transition: none !important;
    }

    .ip__badge text {
        animation: none;
    }
}

/* Görseli olmayan kurumsal sayfalarda metin tek sütun, rahat okunur genişlikte */
.ip-article--single {
    grid-template-columns: minmax(0, 1fr);
    max-width: 86ch;
}

/* Gizlenen öğeler gerçekten gizlensin: .ip-card gibi display tanımlı kurallar
   [hidden] özniteliğini eziyordu, filtreler bu yüzden çalışmıyordu */
.ip [hidden] {
    display: none !important;
}

/* ==========================================
   BLOG, YAZI VE İLETİŞİM BÖLÜMLERİ
   ========================================== */

.ip__body--light {
    background: #fff;
}

/* --- Öne çıkan yazı --- */
.ip-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border-radius: 24px;
    background: var(--cream);
    color: inherit;
    text-decoration: none;
    transition: box-shadow 0.4s ease;
}

.ip-feature:hover {
    box-shadow: 0 40px 70px -46px rgba(13, 13, 13, 0.6);
}

.ip-feature__media {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 11;
}

.ip-feature__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale 1s var(--ease);
}

.ip-feature:hover .ip-feature__media img {
    scale: 1.04;
}

.ip-feature__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: clamp(22px, 3.4vw, 52px);
}

.ip-feature__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(13, 13, 13, 0.5);
}

.ip-feature__title {
    margin: 0;
    font-size: clamp(1.4rem, 2.6vw, 2.4rem);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.ip-feature__text {
    max-width: 52ch;
    font-size: 0.94rem;
    line-height: 1.7;
    color: var(--muted);
}

.ip-card__date {
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(13, 13, 13, 0.45);
}

/* --- Yazı sayfası --- */
.ip__title--article {
    max-width: 24ch;
    font-size: clamp(2rem, 4.2vw, 3.8rem);
}

.ip__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: clamp(14px, 2.2vh, 20px) 0 0;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(13, 13, 13, 0.5);
}

.ip-cover {
    margin: 0 12px 12px;
    overflow: hidden;
    border-radius: 24px;
    background: var(--cream);
    aspect-ratio: 21 / 9;
}

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

.ip-article__text--wide {
    max-width: 74ch;
    margin: 0 auto;
    font-size: clamp(0.98rem, 1.15vw, 1.12rem);
    line-height: 1.9;
    color: #2b2b2b;
}

.ip-article__text--wide h2 {
    margin: 36px 0 12px;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.ip-article__text--wide h3 {
    margin: 28px 0 10px;
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
}

.ip-article__text--wide img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 18px 0;
}

.ip-article__text--wide blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    border-left: 4px solid var(--brand);
    background: var(--cream);
    border-radius: 0 14px 14px 0;
    font-weight: 600;
    color: var(--ink);
}

.ip-article__text--wide a {
    color: var(--ink);
    text-decoration: none;
    background-image: linear-gradient(var(--brand), var(--brand));
    background-repeat: no-repeat;
    background-position: 0 92%;
    background-size: 100% 0.3em;
}

/* --- Paylaşım --- */
.ip-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    max-width: 74ch;
    margin: clamp(28px, 5vh, 48px) auto 0;
    padding-top: clamp(18px, 3vh, 26px);
    border-top: 1px solid var(--line);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(13, 13, 13, 0.5);
}

.ip-share a {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px var(--line);
    color: var(--ink);
    text-decoration: none;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.ip-share a:hover {
    background: var(--brand);
    box-shadow: inset 0 0 0 1px var(--ink);
}

/* --- İletişim: sosyal bağlantılar ve harita --- */
.ip-aside__social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ip-aside__social a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    color: #f2f2f2;
    font-size: 0.76rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}

.ip-aside__social a svg {
    width: 16px;
    height: 16px;
    flex: none;
}

.ip-aside__social a:hover {
    background: var(--brand);
    color: var(--ink);
}

.ip-map {
    margin: 0 12px 12px;
    overflow: hidden;
    border-radius: 24px;
    line-height: 0;
    background: var(--cream);
}

.ip-map iframe {
    width: 100%;
    height: clamp(300px, 46vh, 520px);
    border: 0;
    filter: grayscale(1) contrast(1.05);
    transition: filter 0.4s ease;
}

.ip-map:hover iframe {
    filter: none;
}

@media (max-width: 1023px) {
    .ip-feature {
        grid-template-columns: minmax(0, 1fr);
    }

    .ip-cover {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 620px) {
    .ip-cover,
    .ip-map {
        margin-inline: 8px;
    }
}

/* --- Hizmet kartları --- */
.ip-grid--services {
    grid-template-columns: repeat(auto-fill, minmax(clamp(260px, 30vw, 400px), 1fr));
}

.ip-card--service .ip-card__media {
    aspect-ratio: 16 / 11;
    background: #fff;
}

.ip-card--service .ip-card__media img {
    object-fit: contain;
    padding: clamp(10px, 1.6vw, 22px);
    box-sizing: border-box;
}

.ip-card--service .ip-card__body {
    gap: 10px;
    padding: clamp(18px, 2vw, 26px);
}

.ip-card--service .ip-card__title {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
}

.ip-card__more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.ip-card__more-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--brand);
    color: var(--ink);
    transition: transform 0.4s var(--ease);
}

.ip-card__more-icon svg {
    width: 14px;
    height: 14px;
}

.ip-card:hover .ip-card__more-icon {
    transform: rotate(45deg);
}

/* Hizmet detayında görsel sütunu sayfa ile birlikte kaymaz, yerinde kalır */
.ip-article__media--sticky {
    position: sticky;
    top: 96px;
}

/* Bağlantı listesi (diğer hizmetler) üst çizgisiz kullanılır */
.ip__jump--plain {
    margin-top: clamp(16px, 2.6vh, 24px);
    padding-top: 0;
    border-top: 0;
    opacity: 1;
    translate: none;
}

/* ==========================================
   VİZYON & MİSYON — manifesto düzeni
   Her bölüm ekrana sabitlenen büyük bir karttır; kaydırdıkça metin kelime
   kelime koyulaşır, arkadaki dev başlık yana kayar, rozet döner.
   ========================================== */

.mv {
    --mv-top: 96px;
    margin: 0 12px 12px;
}

/* Kayan başlık şeridi */
.mv__marquee {
    overflow: hidden;
    margin-bottom: 12px;
    padding: 18px 0;
    border-radius: 20px;
    background: var(--brand);
    color: var(--ink);
}

.mv__marquee-track {
    display: flex;
    width: max-content;
    animation: mv-marquee 38s linear infinite;
}

.mv__marquee-group {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-right: 28px;
}

.mv__marquee-group span {
    font-size: clamp(1.4rem, 3vw, 2.6rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.mv__marquee-group span:nth-of-type(even) {
    color: rgba(13, 13, 13, 0.35);
}

.mv__marquee-group i {
    flex: none;
    width: 18px;
    height: 18px;
    background: var(--ink);
    clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

@keyframes mv-marquee {
    to { transform: translateX(-50%); }
}

/* Kart için kaydırma alanı: kart bu alan boyunca sabit kalır */
.mv-slot {
    position: relative;
    height: 190svh;
}

.mv-slot + .mv-slot {
    margin-top: 12px;
}

.mv-card {
    --fg: var(--ink);
    --dim: rgba(13, 13, 13, 0.18);
    --ghost: rgba(13, 13, 13, 0.06);
    --progress: 0;

    position: sticky;
    top: var(--mv-top);
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: clamp(28px, 5vw, 96px);
    height: calc(100svh - var(--mv-top) - 16px);
    min-height: 480px;
    padding: clamp(28px, 5vw, 80px);
    box-sizing: border-box;
    border-radius: 28px;
    overflow: hidden;
    isolation: isolate;
    color: var(--fg);
}

.mv-card.is-dark {
    --fg: #f4f4f4;
    --dim: rgba(255, 255, 255, 0.16);
    --ghost: rgba(255, 255, 255, 0.04);
    background:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.07) 1px, transparent 0) 0 0 / 22px 22px,
        #111;
}

.mv-card.is-brand {
    background:
        radial-gradient(circle at 1px 1px, rgba(13, 13, 13, 0.1) 1px, transparent 0) 0 0 / 22px 22px,
        var(--brand);
}

/* Arkadaki dev başlık */
.mv-card__ghost {
    position: absolute;
    left: 0;
    bottom: -0.16em;
    z-index: -1;
    margin: 0;
    font-size: clamp(6rem, 19vw, 19rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
    white-space: nowrap;
    color: var(--ghost);
    translate: calc(8% - var(--progress) * 40%) 0;
    pointer-events: none;
    user-select: none;
}

.mv-card__head {
    position: relative;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.mv-card__num {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    opacity: 0.6;
}

.mv-card__title {
    margin: 0;
    font-size: clamp(2.4rem, 4.4vw, 5.2rem);
    font-weight: 900;
    line-height: 0.92;
    overflow-wrap: anywhere;
    width: fit-content;
    max-width: 100%;
    letter-spacing: -0.06em;
    text-wrap: balance;
}

.mv-card.is-dark .mv-card__title {
    background-image: linear-gradient(var(--brand), var(--brand));
    background-repeat: no-repeat;
    background-position: 0 88%;
    background-size: calc(var(--progress) * 100%) 0.14em;
}

.mv-card__badge {
    width: clamp(96px, 10vw, 140px);
    height: auto;
    overflow: visible;
    rotate: calc(var(--progress) * 360deg);
}

.mv-card__badge text {
    font-size: 10.4px;
    font-weight: 800;
    letter-spacing: 0.18em;
    fill: currentColor;
}

.mv-card__star {
    fill: var(--brand);
}

.mv-card.is-brand .mv-card__star {
    fill: var(--ink);
}

/* Metin: kelimeler kaydırdıkça koyulaşır */
.mv-card__text {
    position: relative;
}

.mv-card__text p {
    margin: 0 0 0.8em;
    font-size: clamp(1.15rem, 2.05vw, 2.05rem);
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.03em;
}

.mv-card__text p:last-child {
    margin-bottom: 0;
}

.mv-w {
    color: var(--dim);
    transition: color 0.25s ease;
}

.mv-w.is-on {
    color: var(--fg);
}

.mv-card.is-dark .mv-w.is-on.is-key {
    color: var(--brand);
}

/* Sabitleme olmayan ekranlar */
@media (max-width: 899px) {
    .mv-slot {
        height: auto;
    }

    .mv-card {
        position: relative;
        top: auto;
        grid-template-columns: minmax(0, 1fr);
        height: auto;
        min-height: 0;
        padding: 28px 22px 40px;
        border-radius: 22px;
    }

    .mv-card__head {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }

    .mv-card__num {
        flex: 1 0 100%;
    }

    .mv-card__title {
        flex: 1;
        font-size: clamp(2.4rem, 12vw, 4rem);
    }

    .mv-card__badge {
        width: 84px;
    }

    .mv-card__ghost {
        font-size: 34vw;
    }
}

/* ==========================================
   ÇEREZ POLİTİKASI — içindekiler + numaralı bölümler
   ========================================== */

.pol {
    display: grid;
    grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(20px, 4vw, 64px);
}

.pol__toc {
    position: sticky;
    top: 100px;
}

.pol__toc-card {
    padding: 24px;
    border-radius: 22px;
    background: var(--dark);
    color: #f2f2f2;
}

.pol__toc-card .ip__eyebrow span {
    box-shadow: none;
}

.pol__toc-list {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: none;
}

.pol__toc-list a {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(242, 242, 242, 0.55);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.25s ease, padding 0.35s var(--ease);
}

.pol__toc-list a span {
    flex: none;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

.pol__toc-list a:hover,
.pol__toc-list a.is-active {
    color: #fff;
    padding-left: 8px;
}

.pol__toc-list a.is-active span {
    color: var(--brand);
    opacity: 1;
}

.pol__toc-list a.is-active::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    width: 4px;
    height: 60%;
    border-radius: 0 4px 4px 0;
    background: var(--brand);
    translate: 0 -50%;
}

.pol__progress {
    height: 3px;
    margin-top: 20px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.pol__progress i {
    display: block;
    height: 100%;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
}

.pol__updated {
    margin: 14px 0 0;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(242, 242, 242, 0.5);
}

.pol__updated strong {
    color: #fff;
}

/* Giriş metni */
.pol__intro {
    position: relative;
    display: flex;
    gap: clamp(16px, 2.5vw, 32px);
    align-items: flex-start;
    margin-bottom: 12px;
    padding: clamp(24px, 3.4vw, 44px);
    border-radius: 22px;
    background: var(--brand);
    overflow: hidden;
}

.pol__cookie {
    flex: none;
    width: clamp(56px, 6vw, 84px);
    fill: var(--ink);
    animation: pol-spin 14s linear infinite;
}

.pol__cookie circle {
    fill: var(--brand);
}

@keyframes pol-spin {
    to { rotate: 360deg; }
}

.pol__intro-text p {
    margin: 0;
    font-size: clamp(1.02rem, 1.5vw, 1.4rem);
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.02em;
}

.pol__intro-text p + p {
    margin-top: 0.7em;
}

/* Bölümler */
.pol-sec {
    position: relative;
    display: grid;
    grid-template-columns: clamp(64px, 8vw, 120px) minmax(0, 1fr);
    gap: clamp(12px, 2vw, 28px);
    padding: clamp(24px, 3.4vw, 44px);
    border-radius: 22px;
    background: #fff;
    scroll-margin-top: 100px;
    transition: box-shadow 0.35s ease;
}

.pol-sec + .pol-sec {
    margin-top: 12px;
}

.pol-sec:hover {
    box-shadow: inset 0 0 0 2px var(--brand);
}

.pol-sec__num {
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.06em;
    color: rgba(13, 13, 13, 0.1);
    transition: color 0.35s ease;
}

.pol-sec.is-current .pol-sec__num,
.pol-sec:hover .pol-sec__num {
    color: var(--ink);
    text-shadow: 0.06em 0.06em 0 var(--brand);
}

.pol-sec__title {
    margin: 0 0 14px;
    font-size: clamp(1.35rem, 2.4vw, 2.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.pol-sec__body {
    font-size: clamp(0.92rem, 1vw, 1.02rem);
    line-height: 1.75;
    color: var(--muted);
}

.pol-sec__body p {
    margin: 0 0 12px;
}

.pol-sec__body p:last-child {
    margin-bottom: 0;
}

.pol-sec__body a {
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
    background-image: linear-gradient(var(--brand), var(--brand));
    background-repeat: no-repeat;
    background-position: 0 90%;
    background-size: 100% 0.4em;
}

/* Liste maddeleri kart ızgarası olur */
.pol-sec__body ul,
.pol-sec__body ol {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px;
    margin: 16px 0;
    padding: 0;
    list-style: none;
}

.pol-sec__body li {
    position: relative;
    padding: 18px 18px 18px 46px;
    border-radius: 16px;
    background: var(--cream);
    line-height: 1.6;
    transition: background 0.3s ease, translate 0.3s var(--ease);
}

.pol-sec__body li::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 22px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 35%, var(--ink) 1.5px, transparent 2px),
        radial-gradient(circle at 65% 62%, var(--ink) 1.5px, transparent 2px),
        var(--brand);
    box-shadow: 0 0 0 1.5px var(--ink);
}

.pol-sec__body li:hover {
    background: #fff5b8;
    translate: 0 -2px;
}

.pol-sec__body li strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--ink);
}

@media (max-width: 899px) {
    .pol {
        grid-template-columns: minmax(0, 1fr);
    }

    .pol__toc {
        position: static;
    }

    .pol-sec {
        grid-template-columns: minmax(0, 1fr);
        padding: 24px 20px;
    }

    .pol__intro {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mv__marquee-track,
    .pol__cookie {
        animation: none;
    }

    .mv-card__ghost,
    .mv-card__badge {
        translate: none;
        rotate: none;
    }

    .mv-w {
        color: var(--fg);
        transition: none;
    }
}

/* KVKK / gizlilik simgesi: dönmez, hafifçe nefes alır */
.pol__cookie--shield {
    animation: pol-pulse 3.2s ease-in-out infinite;
}

.pol__cookie--shield rect {
    fill: var(--brand);
}

.pol__cookie--shield .pol__shackle {
    stroke: var(--brand);
}

@keyframes pol-pulse {
    50% { scale: 1.08; }
}

@media (prefers-reduced-motion: reduce) {
    .pol__cookie--shield {
        animation: none;
    }
}

/* KVKK / gizlilik: madde işareti çerez yerine onay işareti */
.pol--legal .pol-sec__body li::before {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M3.5 7.2 6 9.6l4.6-5' fill='none' stroke='%230d0d0d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 100% no-repeat,
        var(--brand);
}
