/* ZM Pillar — Editorial × Interactive tasarım dili
   Renk: ISOTEC mavi #0d71b9, dark accent #1e3a8a, graphite #374151 */

:root {
    --zmp-blue: #0d71b9;
    --zmp-blue-dark: #1e3a8a;
    --zmp-graphite: #374151;
    --zmp-ink: #111827;
    --zmp-muted: #6b7280;
    --zmp-bg: #fafafa;
    --zmp-bg-tint: #eff6ff;
    --zmp-success: #16a34a;
    --zmp-warn: #ca8a04;
    --zmp-danger: #dc2626;
}

.zmp { background: #fff; color: var(--zmp-ink); }

/* ---------- HERO (full-bleed, animated) ---------- */
/* Enfold container/main padding override — hero mavi alanı direkt menü altına otursun
   (ana sayfa davranışı: menü → hero, beyaz boşluk yok) */
body.zm-hub-page #main {
    padding-top: 0 !important;
}
body.zm-hub-page .template-page,
body.zm-hub-page main.template-page {
    padding-top: 0 !important;
}
body.zm-hub-page #main .container_wrap_first,
body.zm-hub-page #main .container_wrap_first > .container {
    padding-top: 0 !important;
    border-top: 0 !important;
}
body.zm-hub-page #main .entry-content-wrapper,
body.zm-hub-page #main .post-entry {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.zmp { margin-top: 0; padding-top: 0; }

.zmp__hero {
    position: relative;
    min-height: 60vh;
    color: #fff;
    overflow: hidden;
    /* Full-bleed: Enfold container'ından viewport kenarına taş */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    display: flex;
    align-items: center;
}
.zmp__hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(96, 165, 250, 0.5), transparent 55%),
        radial-gradient(circle at 15% 75%, rgba(30, 64, 175, 0.4), transparent 50%),
        linear-gradient(135deg, #0b1e4f 0%, var(--zmp-blue-dark) 40%, var(--zmp-blue) 100%);
    z-index: 0;
    animation: zmp-bg-shift 18s ease-in-out infinite alternate;
}
.zmp__hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
}
@keyframes zmp-bg-shift {
    0%   { background-position: 0% 0%, 0% 0%, 0% 0%; }
    100% { background-position: 8% 4%, -6% -3%, 0% 0%; }
}

/* Grid overlay pattern — sürekli hareket eden ışık çizgileri */
.zmp__hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 40%, transparent 100%);
    animation: zmp-grid-drift 28s linear infinite;
    opacity: 0.8;
}
@keyframes zmp-grid-drift {
    from { background-position: 0 0, 0 0; }
    to   { background-position: 56px 56px, 56px 56px; }
}

/* Floating glow orbs */
.zmp__hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    will-change: transform;
}
.zmp__hero-orb--1 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.55), transparent 70%);
    top: -10%; right: -8%;
    animation: zmp-orb-float-1 14s ease-in-out infinite alternate;
    transform: translate(var(--px, 0), var(--py, 0));
    transition: transform 0.3s ease-out;
}
.zmp__hero-orb--2 {
    width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.45), transparent 70%);
    bottom: -15%; left: -10%;
    animation: zmp-orb-float-2 18s ease-in-out infinite alternate;
    transform: translate(var(--px, 0), var(--py, 0));
    transition: transform 0.3s ease-out;
}
.zmp__hero-orb--3 {
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.35), transparent 70%);
    top: 40%; left: 55%;
    animation: zmp-orb-float-3 22s ease-in-out infinite alternate;
    transform: translate(var(--px, 0), var(--py, 0));
    transition: transform 0.3s ease-out;
}
.zmp__hero-orb--4 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.4), transparent 70%);
    top: 65%; right: 35%;
    animation: zmp-orb-float-4 19s ease-in-out infinite alternate;
    transform: translate(var(--px, 0), var(--py, 0));
    transition: transform 0.3s ease-out;
}
@keyframes zmp-orb-float-1 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-60px, 40px) scale(1.15); }
}
@keyframes zmp-orb-float-2 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(80px, -50px) scale(1.1); }
}
@keyframes zmp-orb-float-3 {
    from { transform: translate(0, 0) scale(0.9); }
    to   { transform: translate(-40px, 60px) scale(1.2); }
}
@keyframes zmp-orb-float-4 {
    from { transform: translate(0, 0) scale(1.05); }
    to   { transform: translate(55px, -35px) scale(0.9); }
}

.zmp__hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: clamp(2.5rem, 8vw, 5.5rem) 1.5rem;
}

/* Solar paneli silueti — GES bağlamı görsel metaforu */
.zmp__hero-panels {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.zmp__hero-panel {
    opacity: 0.1;
    transform-origin: center;
    animation: zmp-panel-pulse 9s ease-in-out infinite;
}
.zmp__hero-panel:nth-child(2) { animation-delay: -3s; animation-duration: 11s; }
.zmp__hero-panel:nth-child(3) { animation-delay: -5s; animation-duration: 10s; }
@keyframes zmp-panel-pulse {
    0%, 100% { opacity: 0.08; }
    50%      { opacity: 0.18; }
}

/* Yükselen metalik partiküller — Zn-Al-Mg iyon metaforu */
.zmp__hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.zmp__hero-particles span {
    position: absolute;
    left: calc(var(--i) * 7% - 3%);
    bottom: -20px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow:
        0 0 8px rgba(147, 197, 253, 0.9),
        0 0 14px rgba(96, 165, 250, 0.5);
    animation: zmp-particle-rise calc(11s + (var(--i) * 0.55s)) linear infinite;
    animation-delay: calc(var(--i) * -0.8s);
    opacity: 0;
}
@keyframes zmp-particle-rise {
    0%   { transform: translate(0, 0); opacity: 0; }
    8%   { opacity: 0.9; }
    92%  { opacity: 0.75; }
    100% { transform: translate(calc(var(--i) * 2px - 14px), -120vh); opacity: 0; }
}

/* Shine sweep — soldan sağa geçen parlaklık süpürmesi */
.zmp__hero-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        transparent 0%,
        transparent 42%,
        rgba(255, 255, 255, 0.05) 47%,
        rgba(255, 255, 255, 0.16) 50%,
        rgba(255, 255, 255, 0.05) 53%,
        transparent 58%,
        transparent 100%
    );
    background-size: 260% 100%;
    background-position: 150% 0%;
    animation: zmp-shine-sweep 14s ease-in-out 3s infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes zmp-shine-sweep {
    0%, 12%  { background-position: 150% 0%; }
    48%      { background-position: -60% 0%; }
    65%, 100% { background-position: -150% 0%; }
}

/* Entrance animations — fade-up cascade */
.zmp__label,
.zmp__title,
.zmp__lede,
.zmp__scroll-hint {
    opacity: 0;
    transform: translateY(24px);
    animation: zmp-fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.zmp__label { animation-delay: 0.15s; }
.zmp__title { animation-delay: 0.35s; }
.zmp__lede { animation-delay: 0.65s; }
.zmp__scroll-hint { animation-delay: 0.95s; }

@keyframes zmp-fade-up {
    to { opacity: 1; transform: translateY(0); }
}

/* Reduce motion — erişilebilirlik */
@media (prefers-reduced-motion: reduce) {
    .zmp__hero-bg,
    .zmp__hero-grid,
    .zmp__hero-orb,
    .zmp__hero-panel,
    .zmp__hero-particles span,
    .zmp__hero-shine,
    .zmp__label,
    .zmp__label-dot,
    .zmp__title,
    .zmp__title-shimmer,
    .zmp__lede,
    .zmp__scroll-hint,
    .zmp__scroll-hint-arrow {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .zmp__title-shimmer {
        -webkit-text-fill-color: #fff !important;
        color: #fff !important;
        background: none !important;
    }
}

/* Label — pulsing glass badge */
.zmp__label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.38rem 0.95rem 0.38rem 0.75rem;
    background: rgba(96, 165, 250, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 99px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 1.4rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(13, 71, 161, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.zmp__label-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #60a5fa;
    box-shadow: 0 0 8px rgba(96, 165, 250, 0.9);
    animation: zmp-dot-pulse 2s ease-in-out infinite;
}
@keyframes zmp-dot-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 6px rgba(96, 165, 250, 0.85);
    }
    50% {
        transform: scale(1.4);
        box-shadow: 0 0 18px rgba(96, 165, 250, 1), 0 0 28px rgba(59, 130, 246, 0.75);
    }
}

/* Title — modern sans-serif display + metalik shimmer */
.zmp__title,
.zmp h1.zmp__title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    font-weight: 700 !important;
    font-size: clamp(2.25rem, 6vw, 4.25rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.035em !important;
    color: #ffffff !important;
    margin: 0 0 1.5rem !important;
    padding-top: 1.25rem !important;
}
.zmp__title-shimmer,
.zmp .zmp__title-shimmer {
    display: inline !important;
    background: linear-gradient(
        100deg,
        #ffffff 0%,
        #ffffff 38%,
        #c7d2fe 47%,
        #e0f2fe 50%,
        #c7d2fe 53%,
        #ffffff 62%,
        #ffffff 100%
    ) !important;
    background-size: 260% 100% !important;
    background-position: 150% 0% !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    animation: zmp-shimmer 7s ease-in-out 1.8s infinite;
}
@keyframes zmp-shimmer {
    0%   { background-position: 150% 0%; }
    50%  { background-position: -60% 0%; }
    100% { background-position: -150% 0%; }
}
.zmp__title em {
    font-style: normal;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72em;
    display: inline-block;
    margin: 0 0.15em;
}
.zmp__title-break { display: inline-block; }

.zmp__lede,
.zmp .zmp__lede {
    font-size: clamp(1rem, 1.6vw, 1.2rem) !important;
    color: rgba(255, 255, 255, 0.92) !important;
    max-width: 820px;
    line-height: 1.6 !important;
    margin: 0 0 2.2rem;
}
.zmp__lede strong,
.zmp .zmp__lede strong {
    color: #ffffff !important;
    font-weight: 600 !important;
    display: block !important;
    font-size: 1.1em !important;
    margin-bottom: 0.55rem;
    letter-spacing: -0.005em;
}

/* Scroll hint — glass pill + animated chevron */
.zmp__scroll-hint,
a.zmp__scroll-hint {
    display: inline-flex !important;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1.4rem !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    border-radius: 99px !important;
    text-decoration: none !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s, color 0.25s;
}
.zmp__scroll-hint:hover,
a.zmp__scroll-hint:hover {
    color: #1e3a8a !important;
    background: #ffffff !important;
    border-color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}
.zmp__scroll-hint-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    font-size: 1rem;
    animation: zmp-arrow-bounce 1.8s ease-in-out infinite;
}
@keyframes zmp-arrow-bounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(4px); }
}
.zmp__scroll-hint:hover .zmp__scroll-hint-arrow {
    animation-duration: 0.9s;
}

/* ---------- SECTIONS ---------- */
.zmp__section {
    padding: clamp(3rem, 7vw, 5rem) 1.5rem;
    scroll-margin-top: 80px;
}
.zmp__container { max-width: 1200px; margin: 0 auto; }
.zmp__label-secondary {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--zmp-blue);
    margin: 0 0 0.75rem;
    font-weight: 600;
}
.zmp__h2 {
    font-family: Georgia, serif;
    font-weight: 300;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--zmp-ink);
    margin: 0 0 1.5rem;
    max-width: 900px;
}
.zmp__h2--tight { max-width: none; white-space: nowrap; }
@media (max-width: 500px) {
    .zmp__h2--tight { white-space: normal; }
}
.zmp__drill-in {
    margin-top: 1.5rem;
    font-size: 0.95rem;
}
.zmp__drill-in a {
    color: var(--zmp-blue);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s;
}
.zmp__drill-in a:hover { border-bottom-color: var(--zmp-blue); }

/* ---------- WHY (Özet) — havadar metric kartları ---------- */
.zmp__why { background: var(--zmp-bg); }
.zmp__why-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}
@media (max-width: 1100px) { .zmp__why-list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px)  { .zmp__why-list { grid-template-columns: 1fr; } }

.zmp__why-item {
    background: #fff;
    padding: 2.25rem 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
    min-height: 240px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.zmp__why-item::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--zmp-blue) 0%, #60a5fa 50%, var(--zmp-blue-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.zmp__why-item::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(13, 113, 185, 0.06), transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.zmp__why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(13, 113, 185, 0.12);
    border-color: rgba(13, 113, 185, 0.35);
}
.zmp__why-item:hover::before { transform: scaleX(1); }
.zmp__why-item:hover::after  { opacity: 1; }

.zmp__why-metric {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}
.zmp__why-number {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
    font-size: clamp(2.6rem, 3.6vw, 3.25rem);
    font-weight: 800;
    color: var(--zmp-blue);
    line-height: 1;
    letter-spacing: -0.045em;
    display: inline-flex;
    align-items: baseline;
}
.zmp__why-number--std {
    font-size: clamp(1.65rem, 2.2vw, 1.95rem);
    letter-spacing: -0.015em;
    font-weight: 800;
}
.zmp__why-unit {
    font-size: 0.95rem;
    color: var(--zmp-muted);
    font-weight: 500;
    font-style: normal;
    margin-left: 0.35em;
    letter-spacing: 0;
}
.zmp__why-badge {
    display: inline-block;
    padding: 0;
    background: transparent;
    color: var(--zmp-graphite);
    border-radius: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 0;
    white-space: nowrap;
}
.zmp__why-label {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.95rem;
    color: var(--zmp-muted);
    line-height: 1.65;
    margin: 0;
    flex: 1;
    padding-top: 0.4rem;
}

/* ---------- TERMS ---------- */
.zmp__terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.zmp__term {
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-left: 3px solid var(--zmp-blue);
    border-radius: 4px;
}
.zmp__term-name {
    font-weight: 600;
    color: var(--zmp-ink);
    margin: 0 0 0.3rem;
    font-size: 0.95rem;
}
.zmp__term-def {
    font-size: 0.82rem;
    color: var(--zmp-muted);
    line-height: 1.5;
    margin: 0;
}

/* ---------- CLUSTERS ---------- */
.zmp__clusters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}
.zmp__cluster-card {
    display: block;
    padding: 1.75rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    color: var(--zmp-ink);
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.zmp__cluster-card:hover {
    border-color: var(--zmp-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 113, 185, 0.1);
}
.zmp__cluster-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    display: block;
}
.zmp__cluster-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
}
.zmp__cluster-desc {
    color: var(--zmp-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 0.75rem;
}
.zmp__cluster-arrow { color: var(--zmp-blue); font-weight: 500; font-size: 0.85rem; }

/* ---------- DOCS ---------- */
.zmp__docs { background: var(--zmp-bg); }
.zmp__docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}
.zmp__doc {
    background: #fff;
    padding: 1.25rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.zmp__doc-badge {
    display: inline-block;
    padding: 2px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 10px;
    width: fit-content;
    letter-spacing: 0.05em;
}
.zmp__doc-badge--open { background: #dcfce7; color: #16a34a; }
.zmp__doc-badge--gate { background: #fef3c7; color: #b45309; }
.zmp__doc-badge--contact { background: #fee2e2; color: #b91c1c; }
.zmp__doc-title { font-weight: 600; font-size: 0.95rem; margin: 0; }
.zmp__doc-desc { font-size: 0.8rem; color: var(--zmp-muted); margin: 0; line-height: 1.5; }
.zmp__doc-cta {
    margin-top: auto;
    font-size: 0.85rem;
    color: var(--zmp-blue);
    text-decoration: none;
    font-weight: 500;
}
.zmp__doc-cta:hover { text-decoration: underline; }

/* ---------- FAQ ---------- */
.zmp__faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.zmp__faq {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
}
.zmp__faq-q {
    width: 100%;
    text-align: left;
    padding: 1rem 1.25rem;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--zmp-ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: inherit;
}
.zmp__faq-q::after { content: "+"; color: var(--zmp-blue); font-size: 1.25rem; transition: transform 0.2s; }
.zmp__faq[open] .zmp__faq-q::after { transform: rotate(45deg); }
.zmp__faq-a {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--zmp-graphite);
}

/* ---------- CTA ---------- */
.zmp__cta {
    background: linear-gradient(135deg, var(--zmp-blue-dark), var(--zmp-blue));
    color: #fff;
    text-align: center;
}
.zmp__cta .zmp__h2 { color: #fff; margin-left: auto; margin-right: auto; }
.zmp__cta-lede { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin: 0 0 2rem; }
.zmp__cta-buttons { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.zmp .zmp__btn,
a.zmp__btn {
    padding: 0.95rem 1.9rem !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.01em !important;
    transition: transform 0.15s, background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s !important;
    display: inline-block !important;
    border: 2px solid transparent !important;
    box-shadow: none;
}
a.zmp__btn--primary,
.zmp .zmp__btn--primary {
    background: #fff !important;
    color: #1e3a8a !important;
    border-color: #fff !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18) !important;
}
a.zmp__btn--primary:hover,
.zmp .zmp__btn--primary:hover {
    background: #f9fafb !important;
    color: #1e3a8a !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28) !important;
}
a.zmp__btn--secondary,
.zmp .zmp__btn--secondary {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    border-color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
a.zmp__btn--secondary:hover,
.zmp .zmp__btn--secondary:hover {
    background: #fff !important;
    color: #1e3a8a !important;
    text-shadow: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}

/* ---------- CORROSION MATRIX — profesyonel dashboard ---------- */
.zmp-corr {
    position: relative;
    margin: 1.75rem 0 0;
    padding: 2rem 1.75rem 1.75rem;
    border-radius: 16px;
    background:
        radial-gradient(circle at 12% 0%, rgba(96, 165, 250, 0.22), transparent 50%),
        radial-gradient(circle at 88% 100%, rgba(59, 130, 246, 0.18), transparent 55%),
        linear-gradient(135deg, #0b1e4f 0%, var(--zmp-blue-dark) 55%, #1d4ed8 100%);
    box-shadow: 0 24px 60px rgba(13, 113, 185, 0.18);
    overflow: hidden;
}
.zmp-corr::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 95% 75% at 50% 50%, #000 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 95% 75% at 50% 50%, #000 40%, transparent 100%);
    pointer-events: none;
}

/* Özel head — grid ile row/col etiketlerini hizala, tablo semantic korunur */
.zmp-corr__head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 32% repeat(3, 1fr);
    gap: 10px;
    padding-bottom: 0.9rem;
    margin-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.zmp-corr__head-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    align-self: end;
    padding-left: 1.1rem;
}
.zmp-corr__head-cols {
    grid-column: 2 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.zmp-corr__col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.5rem 0.9rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #ffffff;
    text-align: center;
}
.zmp-corr__col::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(147, 197, 253, 0.9), transparent);
    border-radius: 2px;
}
.zmp-corr__col sup { font-size: 0.55em; opacity: 0.8; margin-left: 0.15em; }

/* Screen-reader-only thead (AT için ancak görsel olarak gizli) */
.zmp-corr__sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Tablo grid yapısı — row-label + 3 ZM hücresi
   Enfold'un table/tr/th default background'larını (rgb(252,252,252)) ezmek için !important */
.zmp-corr__table {
    position: relative;
    z-index: 1;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent !important;
    border: 0 !important;
    display: block;
}
.zmp-corr__table tbody {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    background: transparent !important;
}
.zmp-corr__row,
.zmp-corr .zmp-corr__row {
    display: grid;
    grid-template-columns: 32% repeat(3, 1fr);
    gap: 10px;
    align-items: stretch;
    background: transparent !important;
    border: 0 !important;
}

/* Row head — two-tone: sınıf (C2/C3) büyük + açıklama küçük */
.zmp-corr__rowhead,
.zmp-corr th.zmp-corr__rowhead {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
    padding: 1rem 1.1rem !important;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.22), rgba(30, 64, 175, 0.18)) !important;
    border: 1px solid rgba(147, 197, 253, 0.28) !important;
    border-left: 4px solid #60a5fa !important;
    border-radius: 10px !important;
    text-align: left !important;
    font-weight: 500 !important;
    color: #fff !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.zmp-corr__class {
    display: block;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
.zmp-corr__class-desc {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82) !important;
    line-height: 1.35;
}

/* Değer hücreleri — renkli heatmap */
.zmp-corr__cell,
.zmp-corr td.zmp-corr__cell {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.5rem !important;
    text-align: center !important;
    border-radius: 10px !important;
    font-weight: 800 !important;
    font-size: 1.3rem !important;
    line-height: 1;
    letter-spacing: -0.01em;
    cursor: help;
    position: relative;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
    border: 1px solid transparent;
}
.zmp-corr__cell::after {
    content: "yıl";
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-top: 0.35rem;
    opacity: 0.78;
}
.zmp-corr__cell[data-class="high"] {
    background: linear-gradient(135deg, #047857 0%, #10b981 100%);
    color: #ecfdf5;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 14px rgba(16, 185, 129, 0.28);
    border-color: rgba(52, 211, 153, 0.5);
}
.zmp-corr__cell[data-class="mid"] {
    background: linear-gradient(135deg, #b45309 0%, #f59e0b 100%);
    color: #fffbeb;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 14px rgba(245, 158, 11, 0.28);
    border-color: rgba(251, 191, 36, 0.5);
}
.zmp-corr__cell[data-class="low"] {
    background: linear-gradient(135deg, #991b1b 0%, #ef4444 100%);
    color: #fef2f2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 14px rgba(239, 68, 68, 0.32);
    border-color: rgba(248, 113, 113, 0.5);
}
.zmp-corr__cell:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 12px 28px rgba(0, 0, 0, 0.35);
    z-index: 2;
}

/* Legend — renk kod anahtarı */
.zmp-corr__legend {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.25rem;
    padding: 0.75rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.zmp-corr__legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}
.zmp-corr__legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    display: inline-block;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.zmp-corr__legend-dot--high { background: linear-gradient(135deg, #047857, #10b981); }
.zmp-corr__legend-dot--mid  { background: linear-gradient(135deg, #b45309, #f59e0b); }
.zmp-corr__legend-dot--low  { background: linear-gradient(135deg, #991b1b, #ef4444); }

.zmp-corr__caption {
    position: relative;
    z-index: 1;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 1rem;
    padding: 0;
    line-height: 1.65;
}
.zmp-corr__caption sup { font-size: 0.7em; margin-right: 0.15em; }
.zmp-corr__caption strong { color: #fff; font-weight: 700; margin-left: 0.5em; }

@media (max-width: 780px) {
    .zmp-corr { padding: 1.25rem 0.9rem; }
    .zmp-corr__head { grid-template-columns: 38% repeat(3, 1fr); gap: 6px; padding-bottom: 0.65rem; }
    .zmp-corr__head-label { font-size: 0.6rem; padding-left: 0.5rem; }
    .zmp-corr__head-cols { gap: 6px; }
    .zmp-corr__col { font-size: 0.82rem; padding: 0.35rem 0.25rem 0.7rem; }
    .zmp-corr__row { grid-template-columns: 38% repeat(3, 1fr); gap: 6px; }
    .zmp-corr__rowhead { padding: 0.7rem 0.6rem; border-left-width: 3px; }
    .zmp-corr__class { font-size: 1.1rem; }
    .zmp-corr__class-desc { font-size: 0.65rem; }
    .zmp-corr__cell { padding: 0.75rem 0.25rem; font-size: 0.95rem; }
    .zmp-corr__cell::after { font-size: 0.5rem; margin-top: 0.2rem; }
    .zmp-corr__legend { gap: 0.75rem; }
    .zmp-corr__legend-item { font-size: 0.7rem; }
}

/* ---------- MOBİL ---------- */
@media (max-width: 700px) {
    .zmp__hero { min-height: 50vh; }
    .zmp__cta-buttons { flex-direction: column; align-items: stretch; }
    .zmp__btn { text-align: center; }
    .zmp-corr__table { font-size: 0.8rem; }
    .zmp-corr__table th, .zmp-corr__table td { padding: 0.5rem 0.6rem; }
}
