/* CMS page blocks — premium editorial system */

/* Clip-animation maskeleri konumlu kapsayıcı olmadan tüm sayfayı kaplayabiliyor */
.pg-block .xb-clip-animation {
    position: relative;
    overflow: hidden;
}

.pg-block.section-padding {
    padding-top: clamp(3rem, 6.5vw, 5.5rem);
    padding-bottom: clamp(3rem, 6.5vw, 5.5rem);
}

.pg-block.section-padding.pt-0 {
    padding-top: clamp(1.25rem, 2.5vw, 2rem);
}

.pg-block + .pg-block.section-padding {
    padding-top: clamp(2.25rem, 4.5vw, 3.75rem);
}

/* ── Hero (editoryal bölünmüş) ── */
.pg-hero--editorial {
    position: relative;
    padding-top: clamp(3.25rem, 7vw, 5.75rem);
}

.pg-hero__stage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(3, 7, 13, 0.12);
    background: #fff;
}

.pg-hero__panel {
    padding: clamp(1.75rem, 4vw, 3rem);
    background: linear-gradient(155deg, #001433 0%, #002d72 48%, #0a3d8c 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 320px;
}

.pg-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
    padding: 0.4rem 0.85rem 0.4rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.92);
}

.pg-hero__title {
    color: #fff;
    line-height: 1.1;
    max-width: 14ch;
}

.pg-hero__points {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.pg-hero__points li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pg-hero__points-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.7rem;
}

.pg-hero__points li strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.pg-hero__points li small {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.8rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.72);
}

.pg-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: auto;
    padding-top: 1.75rem;
}

.pg-hero__stat {
    flex: 1 1 120px;
    min-width: 0;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
}

.pg-hero__stat strong {
    display: block;
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.pg-hero__stat span {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.76rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
}

.pg-hero__media {
    position: relative;
    min-height: 280px;
    background: #e8eef7;
}

.pg-hero__media-main {
    height: 100%;
    min-height: inherit;
}

.pg-hero__media-main img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.pg-hero__play {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 1.75rem;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--theme, #002D72);
    font-size: 1.05rem;
    box-shadow: 0 16px 40px rgba(3, 7, 13, 0.22);
    border: 4px solid rgba(255, 255, 255, 0.9);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.pg-hero__play:hover {
    transform: translateX(-50%) scale(1.06);
    background: var(--theme, #002D72);
    color: #fff;
    box-shadow: 0 20px 48px rgba(0, 31, 77, 0.35);
}

.pg-hero__play-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(0, 45, 114, 0.18);
    animation: pg-hero-pulse 2.4s ease-out infinite;
    pointer-events: none;
}

.pg-hero__play i {
    position: relative;
    margin-left: 3px;
}

@keyframes pg-hero-pulse {
    0% { transform: scale(0.92); opacity: 0.9; }
    70% { transform: scale(1.18); opacity: 0; }
    100% { transform: scale(1.18); opacity: 0; }
}

@media (min-width: 992px) {
    .pg-hero__stage {
        grid-template-columns: 0.92fr 1.08fr;
        min-height: 460px;
    }

    .pg-hero__panel {
        min-height: 460px;
    }

    .pg-hero__media {
        min-height: 460px;
    }

    .pg-hero__media-main img {
        min-height: 460px;
    }

    .pg-hero__play {
        left: 46%;
        top: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
    }

    .pg-hero__play:hover {
        transform: translate(-50%, -50%) scale(1.06);
    }
}

/* ── Editorial text ── */
.pg-editorial--split {
    position: relative;
    overflow: hidden;
}

.pg-editorial__dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 45, 114, 0.08) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.35;
    pointer-events: none;
    mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}

.pg-editorial__split {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(3, 7, 13, 0.08),
        0 0 0 1px rgba(0, 45, 114, 0.06);
}

.pg-editorial__aside {
    background: linear-gradient(155deg, #001f4d 0%, #002d72 48%, #0a4a9e 100%);
    color: #fff;
    padding: clamp(2rem, 4vw, 3rem);
    position: relative;
    overflow: hidden;
}

.pg-editorial__aside::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.14) 0%, transparent 42%);
    pointer-events: none;
}

.pg-editorial__watermark {
    position: absolute;
    right: -0.15em;
    bottom: -0.2em;
    font-size: clamp(6rem, 14vw, 10rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.07);
    pointer-events: none;
    user-select: none;
}

.pg-editorial__aside-inner {
    position: relative;
    z-index: 1;
    max-width: 28ch;
}

.pg-editorial__eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.pg-editorial__title {
    margin: 0;
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    line-height: 1.18;
    color: #fff;
}

.pg-editorial__aside-line {
    display: block;
    width: 56px;
    height: 3px;
    margin-top: 1.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
}

.pg-editorial__main {
    position: relative;
    background: #fff;
    padding: clamp(2rem, 4vw, 3rem);
}

.pg-editorial__quote {
    position: absolute;
    top: 0.75rem;
    left: 1.25rem;
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1;
    color: rgba(0, 45, 114, 0.06);
    pointer-events: none;
    font-family: Georgia, "Times New Roman", serif;
}

.pg-editorial__body--dropcap > p:first-of-type::first-letter {
    float: left;
    margin: 0.08em 0.18em 0 0;
    font-size: 3.2em;
    font-weight: 800;
    line-height: 0.82;
    color: var(--theme, #002D72);
}

.pg-editorial__body.news-details-content p,
.pg-editorial__body.news-details-content li {
    font-size: 1.05rem;
    line-height: 1.82;
    color: rgba(3, 7, 13, 0.76);
}

@media (min-width: 992px) {
    .pg-editorial__split {
        grid-template-columns: minmax(280px, 36%) 1fr;
    }
}

/* ── Split media ── */
.pg-split__visual-wrap {
    position: relative;
}

.pg-split__visual-frame {
    position: absolute;
    inset: -12px -12px 12px 12px;
    border-radius: 28px;
    border: 2px solid rgba(0, 45, 114, 0.12);
    pointer-events: none;
    z-index: 0;
}

.pg-split__visual-ring {
    position: absolute;
    bottom: -8%;
    right: -6%;
    width: clamp(100px, 18vw, 180px);
    opacity: 0.5;
    pointer-events: none;
    animation: pg-spin-slow 26s linear infinite;
    z-index: 2;
}

.pg-split__visual-ring img {
    width: 100%;
    height: auto;
}

.pg-split__panel-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(90deg, var(--theme, #002D72) 0%, rgba(59, 111, 184, 0.65) 55%, transparent 100%);
}

.pg-split--overlap .pg-split__overlap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

.pg-split__visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 26px 64px rgba(3, 7, 13, 0.12);
}

.pg-split__visual img {
    width: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
}

.pg-split__visual-index {
    position: absolute;
    right: 1rem;
    bottom: 0.5rem;
    font-size: clamp(4rem, 10vw, 6.5rem);
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.22);
    pointer-events: none;
    user-select: none;
}

.pg-split__panel {
    position: relative;
    background: #fff;
    border-radius: 22px;
    padding: clamp(1.75rem, 3.5vw, 2.5rem);
    border: 1px solid rgba(0, 45, 114, 0.08);
    box-shadow: 0 24px 60px rgba(3, 7, 13, 0.08);
}

.pg-split__panel--solo {
    text-align: center;
}

.pg-split--text-only .pg-split__body {
    max-width: 68ch;
    margin-inline: auto;
}

.pg-split__body.news-details-content p {
    font-size: 1.04rem;
    line-height: 1.78;
    color: rgba(3, 7, 13, 0.74);
}

@media (min-width: 992px) {
    .pg-split--overlap .pg-split__overlap {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 0;
    }

    .pg-split--overlap:not(.pg-split--reverse) .pg-split__panel {
        margin-left: -4.5rem;
        z-index: 2;
    }

    .pg-split--overlap.pg-split--reverse .pg-split__overlap {
        direction: rtl;
    }

    .pg-split--overlap.pg-split--reverse .pg-split__overlap > * {
        direction: ltr;
    }

    .pg-split--overlap.pg-split--reverse .pg-split__panel {
        margin-right: -4.5rem;
        z-index: 2;
    }
}

/* ── Feature mosaic ── */
.pg-values--mosaic {
    position: relative;
    overflow: hidden;
}

.pg-values__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 45, 114, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 90% 80%, rgba(59, 111, 184, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.pg-values__line {
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 45, 114, 0.08), transparent);
    pointer-events: none;
    display: none;
}

@media (min-width: 1200px) {
    .pg-values__line {
        display: block;
    }
}

.pg-values__intro {
    max-width: 640px;
    margin-bottom: 2.25rem;
}

.pg-mosaic {
    display: grid;
    gap: 1.15rem;
    grid-template-columns: 1fr;
}

.pg-mosaic__item {
    position: relative;
    padding: 1.65rem 1.6rem 1.75rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(0, 45, 114, 0.08);
    box-shadow: 0 16px 42px rgba(3, 7, 13, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pg-mosaic__shine {
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.45) 48%, transparent 100%);
    transform: skewX(-18deg);
    transition: left 0.55s ease;
    pointer-events: none;
}

.pg-mosaic__item:hover .pg-mosaic__shine {
    left: 140%;
}

.pg-mosaic__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(3, 7, 13, 0.11);
    border-color: rgba(0, 45, 114, 0.14);
}

.pg-mosaic__item--lead {
    background:
        linear-gradient(145deg, #001f4d 0%, #002d72 52%, #0c3f8f 100%),
        radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.16) 0%, transparent 42%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.pg-mosaic__item--lead h3,
.pg-mosaic__item--lead p {
    color: #fff;
}

.pg-mosaic__item--lead p {
    color: rgba(255, 255, 255, 0.82);
}

.pg-mosaic__item--lead .pg-mosaic__index {
    color: rgba(255, 255, 255, 0.28);
}

.pg-mosaic__item--lead .pg-mosaic__icon {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.pg-mosaic__index {
    position: absolute;
    top: 0.65rem;
    right: 0.85rem;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    color: rgba(0, 45, 114, 0.07);
    pointer-events: none;
}

.pg-mosaic__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 1.1rem;
    border-radius: 14px;
    background: rgba(0, 45, 114, 0.08);
    color: var(--theme, #002D72);
}

.pg-mosaic__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.pg-mosaic__item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--header, #03070d);
}

.pg-mosaic__item p {
    font-size: 0.96rem;
    line-height: 1.68;
    color: rgba(3, 7, 13, 0.64);
}

@media (min-width: 768px) {
    .pg-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .pg-mosaic {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-auto-rows: minmax(130px, auto);
    }

    .pg-mosaic__item--lead {
        grid-column: 1 / span 7;
        grid-row: span 2;
    }

    .pg-mosaic__item:not(.pg-mosaic__item--lead):nth-child(2) {
        grid-column: 8 / span 5;
    }

    .pg-mosaic__item:not(.pg-mosaic__item--lead):nth-child(3) {
        grid-column: 8 / span 5;
    }

    .pg-mosaic__item:not(.pg-mosaic__item--lead):nth-child(4) {
        grid-column: 1 / span 12;
    }

    .pg-mosaic__item:not(.pg-mosaic__item--lead):nth-child(n+5) {
        grid-column: span 4;
    }
}

/* ── Metrics / stats ── */
.pg-metrics__showcase {
    display: grid;
    gap: 1.5rem;
    align-items: stretch;
}

.pg-metrics__intro {
    padding: 0.25rem 0 0.5rem;
}

.pg-metrics__intro-card {
    padding: 1.5rem 1.35rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(0, 45, 114, 0.08);
    box-shadow: 0 18px 48px rgba(3, 7, 13, 0.06);
}

.pg-metrics__intro-line {
    display: block;
    width: 48px;
    height: 3px;
    margin-top: 1.25rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--theme, #002D72), rgba(0, 45, 114, 0.2));
}

.pg-metrics__counter-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 31, 77, 0.35) 0%, transparent 55%, rgba(0, 45, 114, 0.25) 100%);
    pointer-events: none;
    z-index: 1;
}

.pg-metrics__counter .counter-wrapper {
    position: relative;
    z-index: 2;
}

.pg-metrics__kicker {
    display: inline-block;
    margin-bottom: 0.65rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(0, 45, 114, 0.5);
}

.pg-metrics__title {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    line-height: 1.2;
    color: var(--header, #03070d);
    max-width: 20ch;
}

.pg-metrics__counter.counter-section {
    padding: 0;
    min-height: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 28px 68px rgba(0, 31, 77, 0.2);
}

.pg-metrics__counter .counter-wrapper {
    margin: 0;
}

.pg-metrics__strip.counter-wrapper {
    min-height: clamp(220px, 28vw, 300px);
}

@media (min-width: 992px) {
    .pg-metrics__showcase {
        grid-template-columns: minmax(220px, 28%) 1fr;
        gap: 2rem;
        align-items: center;
    }

    .pg-metrics__intro {
        padding: 1rem 0;
    }
}

/* ── FAQ ── */
.pg-faq__aside-card {
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 22px;
    background: linear-gradient(155deg, #001f4d 0%, #002d72 50%, #0a4a9e 100%);
    color: #fff;
    box-shadow: 0 24px 64px rgba(0, 31, 77, 0.2);
    position: relative;
    overflow: hidden;
}

.pg-faq__aside-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.14) 0%, transparent 45%);
    pointer-events: none;
}

.pg-faq__aside-card > * {
    position: relative;
    z-index: 1;
}

.pg-faq__title {
    color: #fff;
    margin-bottom: 0.75rem;
}

.pg-faq__lead {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.pg-faq__aside-line {
    display: block;
    width: 52px;
    height: 3px;
    margin-top: 1.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
}

.pg-faq .grt-faq-content-1 {
    margin-left: 0;
}

.pg-faq__accordion .block {
    border-radius: 14px !important;
    margin-bottom: 0.75rem;
    box-shadow: 0 8px 28px rgba(3, 7, 13, 0.04);
    transition: box-shadow 0.25s ease;
}

.pg-faq__accordion .block:hover {
    box-shadow: 0 14px 36px rgba(3, 7, 13, 0.08);
}

/* ── Vision tabs (görsel + metin) ── */
.pg-tabs-shell {
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(0, 45, 114, 0.08);
    box-shadow: 0 24px 64px rgba(3, 7, 13, 0.06);
    overflow: hidden;
}

.pg-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding: 0.75rem 0.75rem 0;
    margin: 0;
    list-style: none;
    border-bottom: 1px solid rgba(0, 45, 114, 0.08);
    background: linear-gradient(180deg, rgba(0, 45, 114, 0.05) 0%, #fff 100%);
}

.pg-tabs-nav__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.8rem 1.1rem;
    border: 1px solid transparent;
    border-radius: 12px 12px 0 0;
    background: transparent;
    color: rgba(3, 7, 13, 0.62);
    font-size: 0.86rem;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pg-tabs-nav__btn:hover,
.pg-tabs-nav__btn:focus-visible {
    color: var(--theme, #002D72);
    background: rgba(0, 45, 114, 0.05);
}

.pg-tabs-nav__btn.active {
    color: var(--theme, #002D72);
    background: #fff;
    border-color: rgba(0, 45, 114, 0.1);
    border-bottom-color: #fff;
    margin-bottom: -1px;
    box-shadow: 0 -2px 0 var(--theme, #002D72) inset;
}

.pg-tabs-nav__index {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    opacity: 0.4;
}

.pg-tabs-panels {
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.pg-tabs-pane {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

.pg-tabs-pane__visual {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    max-height: 320px;
    box-shadow: 0 16px 42px rgba(3, 7, 13, 0.1);
}

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

.pg-tabs-pane__visual-cap {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(0, 31, 77, 0.72);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pg-tabs-pane__title {
    margin-bottom: 0.85rem;
}

.pg-tabs-pane__body.news-details-content p {
    font-size: 1.02rem;
    line-height: 1.78;
    color: rgba(3, 7, 13, 0.72);
}

@media (min-width: 992px) {
    .pg-tabs-pane {
        grid-template-columns: 0.95fr 1.05fr;
        gap: 2rem;
    }
}

/* ── Değerler grid (görsel yok) ── */
.pg-values__head {
    margin-bottom: 2rem;
}

.pg-values__grid {
    display: grid;
    gap: 1.15rem;
    grid-template-columns: 1fr;
}

.pg-values__card {
    position: relative;
    padding: 1.65rem 1.5rem 1.7rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(0, 45, 114, 0.08);
    box-shadow: 0 14px 40px rgba(3, 7, 13, 0.05);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pg-values__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--theme, #002D72) 0%, rgba(0, 45, 114, 0.35) 100%);
}

.pg-values__card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 45, 114, 0.14);
    box-shadow: 0 22px 52px rgba(3, 7, 13, 0.09);
}

.pg-values__card-num {
    position: absolute;
    top: 0.85rem;
    right: 1rem;
    font-size: 2.15rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(0, 45, 114, 0.06);
}

.pg-values__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1.1rem;
    border-radius: 16px;
    background: linear-gradient(145deg, #f4f7fb 0%, #e8eef7 100%);
    border: 1px solid rgba(0, 45, 114, 0.1);
    color: var(--theme, #002D72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.pg-values__card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.pg-values__card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.45rem;
}

.pg-values__card p {
    font-size: 0.94rem;
    line-height: 1.65;
    color: rgba(3, 7, 13, 0.64);
}

@media (min-width: 768px) {
    .pg-values__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ── Hakkımızda ── */
.pg-about__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
}

.pg-about__visual {
    position: relative;
    min-height: 320px;
}

.pg-about__visual-frame {
    position: relative;
    height: 100%;
    min-height: inherit;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(3, 7, 13, 0.1);
}

.pg-about__visual-frame img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    display: block;
}

.pg-about__stat-badge {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
    padding: 1rem 1.15rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 40px rgba(3, 7, 13, 0.12);
    max-width: calc(100% - 2.5rem);
}

.pg-about__stat-badge strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    color: var(--theme, #002D72);
    margin-bottom: 0.35rem;
}

.pg-about__stat-badge span {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(3, 7, 13, 0.72);
    line-height: 1.4;
}

.pg-about__secondary {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
    width: 120px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(3, 7, 13, 0.18);
}

.pg-about__secondary img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.pg-about__video-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 45, 114, 0.35);
    color: #fff;
    font-size: 1.1rem;
    transition: background 0.2s ease;
}

.pg-about__video-btn:hover {
    background: rgba(0, 45, 114, 0.55);
    color: #fff;
}

.pg-about__content {
    padding: 0.25rem 0;
}

.pg-about__lead.news-details-content p {
    font-size: 1.06rem;
    line-height: 1.82;
    color: rgba(3, 7, 13, 0.72);
}

.pg-about__highlights {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.pg-about__highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0, 45, 114, 0.08);
    box-shadow: 0 8px 24px rgba(3, 7, 13, 0.04);
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(3, 7, 13, 0.78);
}

.pg-about__highlight-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-muted-bg, #E8EEF7);
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--theme, #002D72);
}

@media (min-width: 992px) {
    .pg-about__layout {
        grid-template-columns: 1.08fr 0.92fr;
        gap: 2.5rem;
    }

    .pg-about__visual {
        min-height: 520px;
    }

    .pg-about__visual-frame,
    .pg-about__visual-frame img {
        min-height: 520px;
    }
}

/* ── Kaynaklarımız (sol sekme) ── */
.pg-heritage-tabs__shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(0, 45, 114, 0.08);
    box-shadow: 0 24px 64px rgba(3, 7, 13, 0.07);
    overflow: hidden;
}

.pg-heritage-tabs__nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin: 0;
    padding: 1rem;
    list-style: none;
    background: linear-gradient(180deg, rgba(0, 45, 114, 0.04) 0%, #fff 100%);
    border-bottom: 1px solid rgba(0, 45, 114, 0.08);
}

.pg-heritage-tabs__btn {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid transparent;
    border-radius: 14px;
    background: transparent;
    color: rgba(3, 7, 13, 0.62);
    font-size: 0.9rem;
    font-weight: 700;
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pg-heritage-tabs__btn:hover,
.pg-heritage-tabs__btn:focus-visible {
    color: var(--theme, #002D72);
    background: rgba(0, 45, 114, 0.05);
}

.pg-heritage-tabs__btn.active {
    color: var(--theme, #002D72);
    background: #fff;
    border-color: rgba(0, 45, 114, 0.12);
    box-shadow: 0 8px 24px rgba(3, 7, 13, 0.06);
}

.pg-heritage-tabs__btn-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-muted-bg, #E8EEF7);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--theme, #002D72);
}

.pg-heritage-tabs__btn.active .pg-heritage-tabs__btn-num {
    background: var(--theme, #002D72);
    color: #fff;
}

.pg-heritage-tabs__panels {
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.pg-heritage-tabs__pane {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

.pg-heritage-tabs__visual {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    box-shadow: 0 18px 46px rgba(3, 7, 13, 0.1);
}

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

.pg-heritage-tabs__visual-cap {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(0, 31, 77, 0.78);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
}

.pg-heritage-tabs__title {
    margin-bottom: 0.85rem;
}

.pg-heritage-tabs__body.news-details-content p {
    font-size: 1.02rem;
    line-height: 1.78;
    color: rgba(3, 7, 13, 0.72);
}

@media (min-width: 992px) {
    .pg-heritage-tabs__shell {
        grid-template-columns: 260px 1fr;
        gap: 0;
    }

    .pg-heritage-tabs__nav {
        padding: 1.25rem 1rem;
        border-bottom: 0;
        border-right: 1px solid rgba(0, 45, 114, 0.08);
    }

    .pg-heritage-tabs__pane {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 991.98px) {
    .pg-heritage-tabs__nav {
        flex-direction: row;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.75rem;
    }

    .pg-heritage-tabs__btn {
        flex: 0 0 auto;
        min-width: 180px;
    }
}

.pg-split__network-visual {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 28px 68px rgba(3, 7, 13, 0.12);
}

.pg-split__network-visual img {
    width: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
}

.pg-split__network-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 31, 77, 0.15) 0%, rgba(0, 31, 77, 0.55) 100%);
    pointer-events: none;
}

.pg-split__network-chips {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    z-index: 2;
}

.pg-split__network-chip {
    flex: 1 1 100px;
    padding: 0.75rem 0.9rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 28px rgba(3, 7, 13, 0.12);
}

.pg-split__network-chip strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--theme, #002D72);
    line-height: 1.1;
}

.pg-split__network-chip span {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.76rem;
    font-weight: 600;
    color: rgba(3, 7, 13, 0.58);
}

.pg-split__network-panel {
    padding: 0.25rem 0;
}

/* ── Rakamlarla Kardelen (hero mavi kart) ── */
.pg-stats__stage {
    border-radius: 26px;
    overflow: hidden;
    padding: clamp(1.5rem, 3.5vw, 2.75rem);
    background: linear-gradient(155deg, #001433 0%, #002d72 48%, #0a3d8c 100%);
    box-shadow: 0 32px 80px rgba(3, 7, 13, 0.14);
}

.pg-stats__stage--image {
    background-size: cover;
    background-position: center;
    position: relative;
}

.pg-stats__stage--image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, rgba(0, 20, 51, 0.88) 0%, rgba(0, 45, 114, 0.82) 48%, rgba(10, 61, 140, 0.78) 100%);
    pointer-events: none;
}

.pg-stats__stage--image .pg-stats__grid {
    position: relative;
    z-index: 1;
}

.pg-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.pg-stats__card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 130px;
    padding: 1.25rem 1.15rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    text-align: center;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.pg-stats__card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
}

.pg-stats__number {
    display: block;
    font-size: clamp(2rem, 4.5vw, 2.85rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 0.35rem;
}

.pg-stats__label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
}

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

    .pg-stats__card {
        min-height: 150px;
        padding: 1.5rem 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .pg-stats__grid {
        grid-template-columns: 1fr;
    }
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .pg-hero__title {
        max-width: none;
    }

    .pg-split--overlap.pg-split--reverse .pg-split__overlap {
        direction: ltr;
    }

    .pg-about__visual {
        min-height: 380px;
    }

    .pg-about__visual-frame,
    .pg-about__visual-frame img {
        min-height: 380px;
    }
}

@media (max-width: 575.98px) {
    .pg-hero__panel {
        padding: 1.35rem;
    }

    .pg-hero__stat {
        flex: 1 1 calc(50% - 0.65rem);
    }

    .pg-tabs-nav {
        flex-direction: column;
        padding-bottom: 0.5rem;
    }

    .pg-tabs-nav__btn {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 0;
    }

    .pg-tabs-nav__btn.active {
        margin-bottom: 0;
    }

    .pg-tabs-pane__visual {
        max-height: 220px;
    }

    .pg-split__network-chip {
        flex: 1 1 calc(50% - 0.55rem);
    }

    .pg-faq__aside {
        margin-bottom: 0.5rem;
    }
}
