:root {
    --primary: #E30613;
    --primary-dark: #C8102E;
    --navy: #0F172A;
    --text: #111827;
    --muted: #4B5563;
    --bg: #F3F4F6;
    --border: #E5E7EB;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }
html, body { margin:0; padding:0; font-family:Inter, Arial, Helvetica, sans-serif; color:var(--text); background:var(--white); }
a { text-decoration:none; }
.container { width:min(1280px, calc(100% - 32px)); margin:0 auto; }

.web-header {
    background:var(--white);
    border-bottom:1px solid var(--border);
    position:sticky;
    top:0;
    z-index:20;
}

.web-header .container {
    min-height:76px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
}

.brand {
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--text);
    min-width:0;
}

.brand-mark,
.brand-logo-wrap {
    width:44px;
    height:44px;
    border-radius:12px;
    display:grid;
    place-items:center;
    overflow:hidden;
    background:var(--primary);
    color:var(--white);
    font-weight:700;
    flex:0 0 44px;
}

.brand-logo-wrap {
    background:var(--white);
    border:1px solid var(--border);
}

.brand-logo {
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.brand-sub { color:var(--muted); font-size:13px; }
.web-nav { display:flex; gap:16px; flex-wrap:wrap; }
.web-nav a { color:var(--text); font-weight:500; }
.admin-link, .button { display:inline-flex; align-items:center; justify-content:center; height:44px; padding:0 16px; border-radius:12px; font-weight:600; }
.admin-link, .button-primary { background:var(--primary); color:var(--white); }
.button-secondary { background:var(--white); color:var(--primary); border:1px solid var(--primary); }

.hero { padding:56px 0 28px; background:linear-gradient(180deg, #fff 0%, #f8fafc 100%); }
.hero-card { padding:36px; border-radius:24px; background:var(--white); border:1px solid var(--border); box-shadow:var(--shadow); }
.eyebrow { display:inline-block; padding:6px 10px; border-radius:999px; background:rgba(227,6,19,.08); color:var(--primary); font-size:12px; font-weight:700; text-transform:uppercase; margin-bottom:16px; }
.hero h1 { margin:0 0 12px; font-size:clamp(28px, 5vw, 48px); line-height:1.1; color:var(--navy); }
.hero p { margin:0; max-width:840px; color:var(--muted); font-size:18px; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:24px; }

.status-grid { padding:16px 0 32px; }
.grid-3 { display:grid; grid-template-columns:repeat(3, minmax(0, 1fr)); gap:16px; }
.info-card,
.contact-summary-card {
    padding:22px;
    border:1px solid var(--border);
    border-radius:18px;
    background:var(--white);
    box-shadow:var(--shadow);
}
.info-card h3,
.contact-summary-card h2 { margin-top:0; margin-bottom:10px; }
.info-card p { margin:0; color:var(--muted); }

.contact-summary-section { padding:0 0 56px; }
.contact-summary-grid { display:grid; grid-template-columns:repeat(2, minmax(0, 1fr)); gap:16px; }
.contact-summary-list { list-style:none; padding:0; margin:0; display:grid; gap:14px; }
.contact-summary-list li { display:grid; gap:4px; padding-bottom:14px; border-bottom:1px solid var(--border); }
.contact-summary-list li:last-child { border-bottom:none; padding-bottom:0; }
.contact-summary-list span { color:var(--muted); font-size:14px; }
.contact-summary-list strong { font-size:16px; line-height:1.5; }

.map-embed-frame,
.map-embed-empty {
    min-height:320px;
    border:1px dashed var(--border);
    border-radius:18px;
    overflow:hidden;
    background:var(--bg);
}

.map-embed-frame iframe {
    width:100%;
    min-height:320px;
    border:0;
    display:block;
}

.map-embed-empty {
    display:grid;
    place-items:center;
    color:var(--muted);
    padding:24px;
    text-align:center;
}

.web-footer {
    padding:32px 0 18px;
    border-top:1px solid var(--border);
    background:var(--white);
}

.footer-grid {
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr;
    gap:24px;
}

.footer-brand-block strong,
.footer-contact-block h3 {
    display:block;
    margin-bottom:12px;
    color:var(--navy);
}

.footer-brand-block p,
.footer-muted {
    color:var(--muted);
    margin:0;
    line-height:1.7;
}

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

.footer-list li {
    color:var(--muted);
}

.footer-list span {
    color:var(--text);
    font-weight:600;
    margin-right:6px;
}

.footer-socials {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.footer-socials a {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:38px;
    padding:0 14px;
    border-radius:999px;
    border:1px solid var(--border);
    color:var(--text);
    background:var(--bg);
}

.footer-bottom {
    margin-top:24px;
    padding-top:18px;
    border-top:1px solid var(--border);
}

.footer-bottom p {
    margin:0;
    color:var(--muted);
}

@media (max-width: 991px) {
    .web-header .container {
        flex-direction:column;
        align-items:flex-start;
        padding:16px 0;
    }

    .grid-3,
    .contact-summary-grid,
    .footer-grid {
        grid-template-columns:1fr;
    }
}

.home-section {
    padding: 0 0 32px;
}

.alt-section {
    padding-top: 12px;
}

.section-grid {
    display: grid;
    gap: 16px;
}

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

.content-panel,
.page-hero-card,
.page-content-card,
.sidebar-card,
.news-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.soft-panel {
    background: #F8FAFC;
}

.section-head {
    margin-bottom: 14px;
}

.section-head h2,
.page-hero-card h1,
.sidebar-card h3,
.news-card h3 {
    margin: 0 0 8px;
    color: var(--navy);
}

.section-kicker {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(227, 6, 19, .08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-head-inline {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 16px;
}

.section-head-inline p,
.page-hero-card p,
.content-panel p,
.news-card p,
.prose-content,
.lead-text {
    color: var(--muted);
    line-height: 1.8;
}

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

.mini-links a,
.text-link {
    color: var(--primary);
    font-weight: 600;
}

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

.news-card-body {
    display: grid;
    gap: 10px;
}

.news-card-empty {
    grid-column: 1 / -1;
}

.news-date {
    color: var(--muted);
    font-size: 14px;
}

.compact-list li {
    gap: 2px;
}

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

.page-section {
    padding: 0 0 48px;
}

.prose-content {
    white-space: normal;
}

.page-with-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 16px;
}

.sidebar-links {
    display: grid;
    gap: 12px;
}

.sidebar-links a {
    color: var(--text);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.pagination-wrap {
    margin-top: 24px;
}

.pagination-wrap nav > div:first-child {
    display: none;
}

.pagination-wrap nav > div:last-child {
    display: flex;
    justify-content: center;
}

.pagination-wrap svg {
    width: 16px;
    height: 16px;
}

.pagination-wrap span,
.pagination-wrap a {
    border-radius: 10px !important;
}

@media (max-width: 991px) {
    .section-grid-2,
    .news-grid,
    .page-with-sidebar,
    .section-head-inline {
        grid-template-columns: 1fr;
        display: grid;
    }
}


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

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

.org-card,
.event-card {
    display: grid;
    gap: 14px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.org-card h3,
.event-card h3 {
    margin: 0;
    color: var(--navy);
}

.org-card p,
.event-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.org-meta {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

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

.event-card {
    grid-template-columns: 92px 1fr;
    align-items: start;
}

.event-date-box {
    border-radius: 18px;
    background: #F8FAFC;
    border: 1px solid var(--border);
    min-height: 92px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 10px;
}

.event-date-box strong {
    display: block;
    font-size: 30px;
    line-height: 1;
    color: var(--navy);
}

.event-date-box span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
}

.event-card-body {
    display: grid;
    gap: 10px;
}

.event-meta-list,
.detail-meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.event-meta-list li,
.detail-meta-list li {
    color: var(--muted);
}

.detail-meta-list li {
    display: grid;
    gap: 4px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.detail-meta-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-meta-list span {
    color: var(--muted);
    font-size: 14px;
}

.detail-meta-list strong {
    color: var(--text);
    font-weight: 600;
}

.lead-text {
    color: var(--navy);
    font-size: 18px;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .organization-grid,
    .event-grid,
    .placeholder-grid,
    .page-with-sidebar {
        grid-template-columns: 1fr;
    }

    .event-card {
        grid-template-columns: 1fr;
    }

    .event-date-box {
        min-height: 78px;
    }
}


.page-hero {
    padding: 42px 0 18px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.page-hero-card-rich {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    gap: 20px;
    align-items: center;
}

.page-hero-copy p {
    color: var(--muted);
    margin: 0;
    line-height: 1.8;
}

.page-hero-media {
    min-height: 240px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg);
}

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

.page-hero-media-square {
    aspect-ratio: 1 / 1;
    min-height: auto;
}

.page-section {
    padding: 0 0 32px;
}

.page-section-tight {
    padding-top: 0;
}

.org-card-rich {
    padding: 0;
    overflow: hidden;
}

.org-card-body {
    padding: 22px;
    display: grid;
    gap: 10px;
}

.org-card-media {
    height: 180px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.org-card-media-square {
    height: 220px;
}

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

.org-person-card .org-meta {
    min-height: 56px;
}

.detail-meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.detail-meta-list li {
    display: grid;
    gap: 4px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.detail-meta-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.detail-meta-list span {
    color: var(--muted);
    font-size: 14px;
}

.detail-meta-list strong {
    font-size: 15px;
    line-height: 1.6;
    word-break: break-word;
}

.sidebar-social-block {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.sidebar-social-block h4 {
    margin: 0 0 12px;
    color: var(--navy);
}

.sidebar-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sidebar-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
}

@media (max-width: 991px) {
    .page-hero-card-rich,
    .page-with-sidebar {
        grid-template-columns: 1fr;
    }

    .page-hero-media-square {
        max-width: 320px;
    }
}


/* Paket 4M+4P */
.card-media {
    position: relative;
    aspect-ratio: 16 / 9;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: linear-gradient(135deg, #0F172A 0%, #1f2937 100%);
}

.card-media img,
.card-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-media-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.92);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 13px;
}

.news-card,
.event-card,
.media-card,
.doc-card,
.press-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.news-card-body,
.event-card-body,
.media-card-body,
.doc-card-body,
.press-card-body {
    padding: 22px;
}

.event-grid,
.news-grid,
.media-grid,
.press-doc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.event-grid .event-card {
    display: block;
}

.event-date-box {
    width: 72px;
    min-width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(227, 6, 19, .08);
    color: var(--primary);
    display: grid;
    place-items: center;
    text-align: center;
    margin-bottom: 16px;
}

.event-date-box strong {
    font-size: 24px;
    line-height: 1;
}

.event-date-box span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.page-hero-media {
    margin-top: 18px;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 16 / 6;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
}

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

.video-stage {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: #000;
    aspect-ratio: 16 / 9;
    margin-top: 18px;
    box-shadow: var(--shadow);
}

.video-stage iframe,
.video-stage video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.media-card .media-meta,
.press-card .press-meta,
.doc-card .doc-meta,
.news-card .news-date {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 13px;
}

.doc-download {
    margin-top: 14px;
}

.doc-download a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
}

.detail-sidebar {
    display: grid;
    gap: 18px;
}

.detail-sidebar .content-panel {
    padding: 20px;
}

.inline-meta-list,
.event-meta-list,
.footer-list,
.contact-summary-list,
.doc-meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.doc-meta-list li,
.event-meta-list li {
    color: var(--muted);
}

.press-doc-grid .content-panel {
    height: 100%;
}

.embed-note {
    margin-top: 10px;
    font-size: 13px;
    color: var(--muted);
}

@media (max-width: 991px) {
    .news-grid,
    .event-grid,
    .media-grid,
    .press-doc-grid,
    .related-grid {
        grid-template-columns: 1fr 1fr;
    }

    .detail-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .news-grid,
    .event-grid,
    .media-grid,
    .press-doc-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }
}

.hero-split .hero-card-split{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(360px,.85fr);gap:28px;align-items:center}.hero-copy{min-width:0}.hero-visual{min-height:320px;border-radius:22px;overflow:hidden;border:1px solid var(--border);background:linear-gradient(135deg,#fff 0%,#f8fafc 100%)}.hero-visual img{display:block;width:100%;height:100%;object-fit:cover}.hero-visual-placeholder{height:100%;min-height:320px;display:grid;place-items:center;text-align:center;padding:28px;background:radial-gradient(circle at top left,rgba(227,6,19,.09),transparent 32%),radial-gradient(circle at bottom right,rgba(15,23,42,.08),transparent 30%),#fff}.hero-visual-placeholder strong{display:block;font-size:28px;color:var(--navy)}.hero-visual-placeholder span{display:block;margin-top:10px;color:var(--muted)}.footer-links-block-inner{display:grid;gap:10px}.footer-links-block-inner a{color:var(--text)}@media (max-width: 991px){.hero-split .hero-card-split{grid-template-columns:1fr}.hero-visual{order:-1;min-height:240px}}


.hp-field{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;opacity:0;pointer-events:none}
.form-security-note{margin:0 0 8px;font-size:13px;color:var(--muted)}

.site-topbar {
    background: var(--navy);
    color: rgba(255,255,255,.86);
    font-size: 13px;
}

.site-topbar a {
    color: rgba(255,255,255,.86);
}

.site-topbar-inner {
    min-height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.site-topbar-left,
.site-topbar-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

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

.brand-texts {
    display: grid;
    gap: 4px;
}

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

.web-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 12px;
    color: var(--text);
    font-weight: 600;
}

.nav-item.is-active > a,
.nav-item > a:hover {
    color: var(--primary);
    background: rgba(227, 6, 19, .06);
}

.nav-dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    min-width: 250px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 10px;
    display: none;
    z-index: 30;
}

.nav-item.has-children:hover .nav-dropdown {
    display: block;
}

.nav-dropdown a {
    display: block;
    padding: 11px 12px;
    border-radius: 12px;
    color: var(--text);
}

.nav-dropdown a:hover,
.nav-dropdown a.is-active {
    background: rgba(227, 6, 19, .06);
    color: var(--primary);
}

.admin-link-soft {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.admin-link-soft:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--white);
    padding: 0;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background: var(--navy);
}

.mobile-menu {
    border-top: 1px solid var(--border);
    background: var(--white);
}

.mobile-menu-inner {
    padding: 16px 0 20px;
    display: grid;
    gap: 10px;
}

.mobile-nav-item {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 6px 10px;
}

.mobile-nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.mobile-nav-row a {
    display: block;
    padding: 10px 0;
    color: var(--text);
    font-weight: 600;
}

.mobile-submenu-toggle {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--white);
}

.mobile-submenu {
    display: grid;
    gap: 6px;
    padding: 8px 0 10px 0;
}

.mobile-submenu a {
    display: block;
    padding: 8px 0 8px 12px;
    color: var(--muted);
}

.footer-grid-premium {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 24px;
}

.footer-link-block h3,
.footer-contact-block h3 {
    margin-top: 0;
    margin-bottom: 14px;
    color: var(--navy);
}

.footer-link-list {
    display: grid;
    gap: 10px;
}

.footer-link-list a {
    color: var(--muted);
}

.footer-link-list a:hover {
    color: var(--primary);
}

.footer-contact-cards {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.footer-contact-cards a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    width: fit-content;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    border-top: 1px solid var(--border);
    margin-top: 26px;
    padding-top: 18px;
}

@media (max-width: 1200px) {
    .header-actions {
        gap: 12px;
    }

    .nav-item > a {
        padding: 0 10px;
    }
}

@media (max-width: 991px) {
    .site-topbar-inner,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-shell {
        min-height: 76px;
    }

    .web-nav,
    .header-actions .admin-link-soft {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-block;
    }

    .footer-grid-premium {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .site-topbar-left,
    .site-topbar-right {
        width: 100%;
        gap: 8px;
    }

    .brand {
        max-width: calc(100% - 64px);
    }

    .brand-sub {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .footer-grid-premium {
        grid-template-columns: 1fr;
    }
}


/* MENU UX HOTFIX 03 */
.nav-item.has-children {
    padding-bottom: 12px;
    margin-bottom: -12px;
}

.nav-item.has-children::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}

.nav-item.has-children > a {
    padding-right: 34px;
}

.nav-item.has-children > a::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
    transition: transform .18s ease, top .18s ease;
}

.nav-dropdown {
    top: calc(100% + 2px);
}

.nav-item.has-children:hover .nav-dropdown,
.nav-item.has-children:focus-within .nav-dropdown {
    display: block;
}

.nav-item.has-children:hover > a::after,
.nav-item.has-children:focus-within > a::after {
    top: 52%;
    transform: translateY(-50%) rotate(225deg);
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    left: 20px;
    top: -7px;
    width: 14px;
    height: 14px;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    transform: rotate(45deg);
}

.nav-item > a {
    position: relative;
}

@media (max-width: 991px) {
    .nav-item.has-children {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .nav-item.has-children::after {
        display: none;
    }
}


.site-topbar { background: var(--navy); color: rgba(255,255,255,.94); }
.site-topbar-inner { min-height: 44px; display:flex; align-items:center; justify-content:space-between; gap:16px; }
.site-topbar-left,.site-topbar-right { display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.topbar-link { display:inline-flex; align-items:center; gap:8px; color:rgba(255,255,255,.96); font-size:14px; font-weight:500; }
.topbar-icon,.social-icon-link { display:inline-flex; align-items:center; justify-content:center; }
.topbar-icon { width:18px; height:18px; }
.topbar-icon svg,.social-icon-link svg { width:100%; height:100%; }
.social-icon-link { width:18px; height:18px; color:rgba(255,255,255,.92); }
.brand-logo-wrap,.brand-mark { width:64px; height:64px; flex-basis:64px; border-radius:16px; }
.brand-texts { display:grid; gap:2px; }
.brand-line-primary { font-size:18px; line-height:1.2; letter-spacing:-.01em; }
.brand-line-secondary { font-size:14px; line-height:1.3; }
.hero-split-premium .hero-card-homepage { display:grid; grid-template-columns:minmax(0,1.6fr) minmax(320px,.9fr); gap:22px; padding:0; overflow:hidden; background:transparent; border:none; box-shadow:none; }
.hero-slider-panel,.hero-president-card { border:1px solid var(--border); border-radius:28px; overflow:hidden; background:var(--white); box-shadow:var(--shadow); }
.hero-slider-panel { position:relative; min-height:420px; }
.hero-slider-track,.hero-slide { position:absolute; inset:0; }
.hero-slide { opacity:0; visibility:hidden; transition:opacity .45s ease, visibility .45s ease; }
.hero-slide.is-active { opacity:1; visibility:visible; }
.hero-slide img { width:100%; height:100%; object-fit:cover; display:block; }
.hero-slide-overlay { position:absolute; inset:0; background:linear-gradient(90deg, rgba(15,23,42,.74) 0%, rgba(15,23,42,.38) 48%, rgba(15,23,42,.18) 100%); }
.hero-slider-content { position:relative; z-index:2; max-width:640px; padding:52px 46px 78px; color:var(--white); }
.hero-slider-content h1,.hero-slider-content p { color:var(--white); }
.hero-slider-content p { max-width:560px; }
.hero-slider-content .button-secondary { background:rgba(255,255,255,.96); border-color:rgba(255,255,255,.96); color:var(--primary); }
.hero-slider-arrow { position:absolute; top:50%; transform:translateY(-50%); z-index:3; width:46px; height:46px; border:none; border-radius:999px; background:rgba(255,255,255,.92); color:var(--navy); font-size:28px; line-height:1; cursor:pointer; box-shadow:0 12px 30px rgba(15,23,42,.16); }
.hero-slider-arrow-prev { left:18px; }
.hero-slider-arrow-next { right:18px; }
.hero-slider-dots { position:absolute; left:46px; bottom:28px; z-index:3; display:flex; align-items:center; gap:10px; }
.hero-slider-dot { width:12px; height:12px; border-radius:999px; border:1px solid rgba(255,255,255,.7); background:rgba(255,255,255,.32); cursor:pointer; }
.hero-slider-dot.is-active { width:34px; background:var(--white); }
.hero-president-card { display:grid; grid-template-rows:1fr auto; }
.hero-president-media { position:relative; min-height:390px; background:#F8FAFC; }
.hero-president-media img { width:100%; height:100%; object-fit:cover; display:block; }
.hero-president-content { padding:24px 24px 28px; }
.hero-president-content h2 { margin:0 0 14px; font-size:clamp(26px,3.2vw,36px); line-height:1.12; color:var(--navy); }
.hero-president-actions { display:flex; flex-wrap:wrap; gap:10px; }
.button-sm { height:42px; padding-inline:16px; }
.hero-slider-panel .eyebrow { background:rgba(255,255,255,.18); color:var(--white); }
@media (max-width:1200px){ .hero-split-premium .hero-card-homepage { grid-template-columns:1fr; } }
@media (max-width:991px){ .site-topbar-inner,.site-topbar-left,.site-topbar-right { align-items:flex-start; } .site-topbar-inner { flex-direction:column; padding:12px 0; } .brand-logo-wrap,.brand-mark { width:56px; height:56px; flex-basis:56px; } .hero-slider-content { padding:32px 24px 74px; } .hero-slider-dots { left:24px; bottom:22px; } .hero-slider-arrow { width:40px; height:40px; font-size:24px; } .hero-president-media { min-height:320px; } }
@media (max-width:640px){ .topbar-link { font-size:13px; } .brand-line-primary { font-size:16px; } .brand-line-secondary { font-size:13px; } .hero-slider-content { padding:28px 20px 70px; } .hero-president-content { padding:20px; } }

/* Paket A+B+C — görsel hiyerarşi, galeri/video, footer ve responsive polish */
.header-shell {
    min-height: 94px;
    gap: 22px;
}

.header-actions {
    gap: 18px;
}

.web-nav {
    gap: 6px;
}

.nav-item > a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 12px;
    font-weight: 600;
}

.nav-item.is-active > a,
.nav-item > a:hover {
    background: rgba(227, 6, 19, .07);
    color: var(--primary);
}

.site-topbar {
    box-shadow: inset 0 -1px 0 rgba(255,255,255,.06);
}

.site-topbar-inner {
    min-height: 50px;
}

.topbar-pill {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
}

.topbar-pill-accent {
    background: rgba(255,255,255,.12);
}

.social-icon-link {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    transition: transform .2s ease, background .2s ease;
}

.social-icon-link:hover {
    background: rgba(255,255,255,.16);
    transform: translateY(-1px);
}

.brand {
    gap: 14px;
}

.brand-line-primary {
    font-size: 19px;
    font-weight: 800;
}

.brand-line-secondary {
    font-size: 14px;
    letter-spacing: .01em;
}

.brand-logo-wrap,
.brand-mark {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
}

.hero-split-premium {
    padding: 30px 0 24px;
}

.hero-split-premium .hero-card-homepage {
    grid-template-columns: minmax(0, 1.72fr) minmax(340px, .92fr);
    gap: 24px;
}

.hero-slider-panel,
.hero-president-card {
    border-radius: 30px;
}

.hero-slider-panel {
    min-height: 500px;
}

.hero-slide-overlay {
    background:
        linear-gradient(90deg, rgba(15,23,42,.90) 0%, rgba(15,23,42,.58) 48%, rgba(15,23,42,.28) 100%),
        linear-gradient(180deg, rgba(227,6,19,.18) 0%, rgba(15,23,42,0) 45%);
}

.hero-slider-content {
    display: flex;
    align-items: flex-end;
    height: 100%;
    max-width: 100%;
    padding: 34px;
}

.hero-slider-surface {
    width: min(640px, 100%);
    padding: 30px 30px 28px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.06) 100%);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, .22);
}

.hero-slider-surface h1 {
    margin-bottom: 14px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
    letter-spacing: -.03em;
}

.hero-slider-surface p {
    max-width: 58ch;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,.88);
}

.hero-slider-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-micro-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.96);
}

.hero-slider-content .hero-actions {
    margin-top: 24px;
}

.hero-slider-content .button {
    min-width: 172px;
}

.hero-president-card {
    grid-template-rows: minmax(330px, 1fr) auto;
}

.hero-president-media {
    min-height: 330px;
    background: #eef2f7;
}

.hero-president-media img {
    object-position: center top;
}

.hero-president-content {
    padding: 24px 24px 26px;
}

.hero-president-content h2 {
    margin-bottom: 8px;
    font-size: clamp(28px, 2.6vw, 38px);
    line-height: 1.05;
}

.hero-president-role {
    margin: 0 0 12px;
    color: var(--navy);
    font-weight: 700;
}

.hero-president-summary {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.hero-president-actions {
    margin-top: 18px;
}

.home-section-tight {
    padding-top: 4px;
}

.intro-strip-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
}

.info-feature-card {
    min-height: 100%;
}

.mini-links-premium {
    margin-top: 14px;
}

.mini-links-premium a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
}

.news-card-polished,
.event-card-polished,
.gallery-card,
.list-panel,
.cta-panel,
.contact-cta-panel {
    box-shadow: 0 18px 36px rgba(15, 23, 42, .08);
}

.news-card-polished h3,
.gallery-card h3 {
    font-size: 20px;
    line-height: 1.35;
}

.news-card-polished p,
.gallery-card p,
.event-card-polished p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.event-grid {
    gap: 18px;
}

.event-card-polished {
    border-radius: 22px;
}

.event-card-polished .event-card-body {
    display: grid;
    gap: 14px;
}

.organization-grid-polished {
    gap: 18px;
}

.video-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
    gap: 18px;
    align-items: stretch;
}

.video-stage-compact {
    margin-top: 0;
    aspect-ratio: 16 / 8.6;
}

.video-aside-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-aside-card h3 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.18;
    color: var(--navy);
}

.video-aside-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

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

.gallery-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
}

.gallery-card-media {
    aspect-ratio: 4 / 3;
}

.gallery-card-body {
    display: grid;
    gap: 10px;
    padding: 22px;
}

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

.list-panel {
    padding: 24px;
}

.list-panel h3 {
    margin: 0 0 16px;
    color: var(--navy);
}

.dashboard-list-web {
    display: grid;
    gap: 12px;
}

.dashboard-list-item {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #fff;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.dashboard-list-item:hover {
    border-color: rgba(227, 6, 19, .22);
    box-shadow: 0 10px 22px rgba(15, 23, 42, .06);
    transform: translateY(-1px);
}

.dashboard-list-item strong {
    color: var(--navy);
}

.dashboard-list-item span,
.dashboard-empty {
    color: var(--muted);
    font-size: 14px;
}

.dashboard-empty {
    padding: 18px;
    border: 1px dashed var(--border);
    border-radius: 16px;
    background: #fbfbfc;
}

.empty-state-card {
    display: grid;
    place-items: center;
    min-height: 220px;
    padding: 28px;
    border: 1px dashed var(--border);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.empty-state-card-full {
    grid-column: 1 / -1;
}

.empty-state-text {
    max-width: 460px;
    text-align: center;
}

.empty-state-text h3 {
    margin: 0 0 10px;
    color: var(--navy);
}

.empty-state-text p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

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

.home-section-bottom {
    padding-bottom: 42px;
}

.cta-panel-primary {
    background: linear-gradient(180deg, rgba(227, 6, 19, .05) 0%, rgba(227, 6, 19, .02) 100%);
}

.contact-cta-panel {
    background: linear-gradient(180deg, rgba(15, 23, 42, .04) 0%, rgba(15, 23, 42, .01) 100%);
}

.footer-grid-premium {
    align-items: start;
    gap: 26px;
}

.footer-brand-premium {
    padding-right: 12px;
}

.footer-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 10px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(227, 6, 19, .08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--navy);
    background: var(--white);
}

.footer-social-icon svg {
    width: 18px;
    height: 18px;
}

.footer-bottom-premium {
    margin-top: 28px;
    padding-top: 18px;
}

.footer-bottom-premium p:last-child {
    font-weight: 600;
    color: var(--navy);
}

@media (max-width: 1200px) {
    .hero-split-premium .hero-card-homepage,
    .video-feature-grid,
    .intro-strip-grid {
        grid-template-columns: 1fr;
    }

    .hero-president-card {
        grid-template-columns: minmax(280px, .95fr) minmax(0, 1fr);
        grid-template-rows: 1fr;
    }

    .hero-president-media {
        min-height: 100%;
    }
}

@media (max-width: 991px) {
    .site-topbar-inner,
    .site-topbar-left,
    .site-topbar-right {
        align-items: flex-start;
    }

    .site-topbar-inner {
        flex-direction: column;
        padding: 12px 0;
    }

    .brand-logo-wrap,
    .brand-mark {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }

    .header-shell {
        min-height: 84px;
    }

    .brand-line-primary {
        font-size: 17px;
    }

    .hero-split-premium .hero-card-homepage,
    .gallery-grid,
    .media-hub-grid,
    .bottom-action-grid,
    .organization-grid,
    .news-grid,
    .event-grid,
    .footer-grid-premium {
        grid-template-columns: 1fr;
    }

    .hero-slider-panel {
        min-height: 440px;
    }

    .hero-slider-content {
        padding: 24px;
    }

    .hero-slider-surface {
        padding: 24px 20px 22px;
    }

    .hero-slider-surface h1 {
        font-size: clamp(30px, 7vw, 42px);
    }

    .hero-president-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .hero-president-media {
        min-height: 320px;
    }

    .hero-president-content {
        padding: 22px 20px 24px;
    }

    .video-aside-card h3 {
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .topbar-link {
        width: 100%;
        justify-content: flex-start;
    }

    .site-topbar-left,
    .site-topbar-right {
        width: 100%;
        gap: 8px;
    }

    .brand {
        max-width: calc(100% - 64px);
    }

    .brand-line-primary {
        font-size: 16px;
    }

    .brand-line-secondary {
        font-size: 12px;
    }

    .hero-slider-content {
        padding: 18px;
    }

    .hero-slider-surface {
        padding: 20px 18px 20px;
        border-radius: 22px;
    }

    .hero-slider-content .button,
    .hero-president-actions .button,
    .video-aside-actions .button,
    .bottom-action-grid .button {
        width: 100%;
    }

    .hero-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .hero-slider-dots {
        left: 18px;
        bottom: 20px;
    }

    .gallery-card-body,
    .list-panel,
    .content-panel,
    .news-card-body,
    .event-card-body {
        padding: 20px;
    }
}


/* Hero slider only mode + CTA strip */
.hero-gallery-mode .hero-slider-panel-clean {
    min-height: 500px;
    background: #F8FAFC;
}
.hero-gallery-mode .hero-slide-overlay,
.hero-gallery-mode .hero-slider-content {
    display: none !important;
}
.hero-gallery-mode .hero-slide img {
    object-fit: cover;
    object-position: center;
}
.hero-gallery-mode .hero-slider-arrow {
    background: rgba(255,255,255,.94);
    color: var(--navy);
}
.hero-gallery-mode .hero-slider-dot {
    border-color: rgba(255,255,255,.95);
    background: rgba(255,255,255,.42);
}
.hero-gallery-mode .hero-slider-dot.is-active {
    background: var(--white);
}
.home-cta-strip-wrap {
    padding-top: 0;
}
.home-cta-strip-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 28px 30px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: linear-gradient(180deg, #fff 0%, #fcfcfd 100%);
    box-shadow: var(--shadow);
}
.home-cta-strip-copy h2 {
    margin: 0 0 10px;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.12;
    color: var(--navy);
}
.home-cta-strip-copy p {
    margin: 0;
    color: var(--muted);
    max-width: 720px;
}
.home-cta-strip-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}
.button-pill-xl {
    min-width: 220px;
    height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 16px;
    box-shadow: 0 12px 28px rgba(15,23,42,.08);
}
.button-pill-xl.button-secondary {
    background: #fff;
}
@media (max-width: 1200px) {
    .hero-gallery-mode .hero-slider-panel-clean {
        min-height: 460px;
    }
    .home-cta-strip-card {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }
    .home-cta-strip-actions {
        justify-content: flex-start;
    }
}
@media (max-width: 991px) {
    .hero-gallery-mode .hero-slider-panel-clean {
        min-height: 340px;
    }
}
@media (max-width: 640px) {
    .home-cta-strip-card {
        padding: 22px 18px;
        border-radius: 20px;
    }
    .button-pill-xl {
        width: 100%;
        min-width: 0;
    }
}

/* Public anasayfa premium revizyonu + Sesini Duyur Beyoğlu */
.button-dark {
    background: var(--navy);
    color: var(--white);
    border: 1px solid var(--navy);
}
.button-dark:hover {
    background: #111c33;
    border-color: #111c33;
}
.home-cta-strip-card-premium {
    position: relative;
    overflow: hidden;
}
.home-cta-strip-card-premium::after {
    content: '';
    position: absolute;
    right: -90px;
    top: -90px;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: rgba(227, 6, 19, .07);
    pointer-events: none;
}
.home-cta-strip-actions-3 {
    position: relative;
    z-index: 1;
    max-width: 740px;
}
.card-clickable h3 a,
.event-card-rich h3 a,
.gallery-card h3 a {
    color: var(--navy);
}
.card-clickable h3 a:hover,
.event-card-rich h3 a:hover,
.gallery-card h3 a:hover,
.gallery-title-button:hover {
    color: var(--primary);
}
.card-media-link,
.event-media-link {
    display: block;
    color: inherit;
}
.event-card-rich {
    position: relative;
    padding: 0;
    display: block;
}
.event-card-media {
    aspect-ratio: 16 / 10;
    border-bottom: 1px solid var(--border);
}
.event-date-box-floating {
    position: absolute;
    left: 16px;
    top: 16px;
    margin: 0;
    background: rgba(255,255,255,.94);
    box-shadow: 0 14px 26px rgba(15, 23, 42, .15);
}
.event-meta-list-icons li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.section-head-centered {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}
.section-head-centered h2 {
    margin: 0;
    font-size: clamp(26px, 3.2vw, 38px);
    color: var(--navy);
    letter-spacing: -.02em;
}
.leadership-section {
    padding-top: 18px;
}
.leadership-stack {
    display: grid;
    gap: 20px;
}
.leadership-card {
    display: grid;
    grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: var(--white);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
    min-height: 460px;
}
.leadership-card-reverse {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
}
.leadership-card-reverse .leadership-media {
    order: 2;
}
.leadership-media {
    min-height: 460px;
    background: linear-gradient(135deg, #0F172A 0%, #25324a 60%, #E30613 140%);
}
.leadership-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.leader-photo-placeholder {
    height: 100%;
    min-height: 360px;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.95);
    background:
        radial-gradient(circle at 28% 18%, rgba(227,6,19,.38), transparent 24%),
        radial-gradient(circle at 78% 78%, rgba(255,255,255,.15), transparent 28%),
        linear-gradient(135deg, #0F172A 0%, #1f2d48 68%, #C8102E 130%);
}
.leader-photo-placeholder span {
    width: 132px;
    height: 132px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.12);
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -.04em;
}
.leadership-copy {
    padding: clamp(24px, 4vw, 42px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 460px;
    overflow: hidden;
}
.leadership-copy h3 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.08;
    letter-spacing: -.03em;
}
.leadership-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.85;
}
.read-more-panel {
    margin-top: 18px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}
.read-more-panel summary {
    width: fit-content;
    cursor: pointer;
    color: var(--primary);
    font-weight: 700;
    list-style: none;
}
.read-more-panel summary::-webkit-details-marker {
    display: none;
}
.read-more-panel summary::after {
    content: ' ↓';
}
.read-more-content {
    margin-top: 14px;
    max-height: 230px;
    overflow-y: auto;
    padding-right: 12px;
    color: var(--muted);
    line-height: 1.85;
    scrollbar-width: thin;
    scrollbar-color: rgba(227, 6, 19, .55) rgba(15, 23, 42, .08);
}
.read-more-content::-webkit-scrollbar {
    width: 8px;
}
.read-more-content::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, .08);
    border-radius: 999px;
}
.read-more-content::-webkit-scrollbar-thumb {
    background: rgba(227, 6, 19, .55);
    border-radius: 999px;
}
.read-more-panel[open] summary::after {
    content: ' ↑';
}
.read-more-panel p {
    margin-top: 14px;
}
.gallery-lightbox-trigger,
.gallery-title-button {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: inherit;
    cursor: pointer;
    font: inherit;
    color: inherit;
}
.gallery-lightbox-trigger img {
    transition: transform .35s ease;
}
.gallery-lightbox-trigger:hover img {
    transform: scale(1.04);
}
.gallery-title-button {
    color: var(--navy);
    font-weight: 700;
    line-height: 1.35;
}
.yrb-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, .84);
}
.yrb-lightbox.is-open {
    display: flex;
}
.yrb-lightbox-dialog {
    position: relative;
    width: min(980px, 100%);
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.yrb-lightbox img {
    display: block;
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    background: #000;
}
.yrb-lightbox-title {
    padding: 14px 18px;
    margin: 0;
    color: #fff;
    background: rgba(0,0,0,.62);
    font-weight: 700;
}
.yrb-lightbox-close {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,.94);
    color: var(--navy);
    font-size: 24px;
    cursor: pointer;
}
.voice-hero {
    padding: 34px 0 28px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.voice-hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 22px;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: var(--white);
    box-shadow: var(--shadow);
}
.voice-hero-copy {
    padding: clamp(26px, 4vw, 46px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.voice-hero-copy h1 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.02;
    letter-spacing: -.04em;
}
.voice-hero-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
    max-width: 68ch;
}
.voice-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}
.voice-hero-points span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(227, 6, 19, .08);
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
}
.voice-hero-media {
    min-height: 420px;
    background: #0F172A;
}
.voice-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.voice-layout {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: 20px;
    align-items: start;
}
.voice-info-panel {
    position: sticky;
    top: 120px;
}
.voice-info-panel h2,
.voice-form-card h2 {
    margin: 0 0 12px;
    color: var(--navy);
}
.voice-info-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}
.voice-info-list li {
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #F8FAFC;
    color: var(--text);
}
.voice-form {
    display: grid;
    gap: 16px;
}
.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.voice-form .form-group label span,
.voice-consent strong {
    color: var(--primary);
}
.voice-form .form-group small {
    color: var(--muted);
}
.form-success-box,
.form-error-box {
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 16px;
    line-height: 1.6;
}
.form-success-box {
    background: #ECFDF5;
    color: #047857;
    border: 1px solid #A7F3D0;
}
.form-error-box {
    background: #FEF2F2;
    color: #B91C1C;
    border: 1px solid #FECACA;
}
.form-error-box ul {
    margin: 8px 0 0;
    padding-left: 18px;
}
.voice-submit-row {
    display: flex;
    justify-content: flex-end;
}
@media (max-width: 1200px) {
    .home-cta-strip-actions-3 {
        max-width: none;
    }
    .leadership-card,
    .leadership-card-reverse,
    .voice-hero-card,
    .voice-layout {
        grid-template-columns: 1fr;
    }
    .leadership-card-reverse .leadership-media {
        order: 0;
    }
    .voice-info-panel {
        position: static;
    }
}
@media (max-width: 640px) {
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    .leadership-card {
        min-height: auto;
    }
    .leadership-copy {
        max-height: none;
        overflow: visible;
    }
    .read-more-content {
        max-height: 260px;
    }
    .voice-hero-media,
    .leadership-media,
    .leader-photo-placeholder {
        min-height: 280px;
    }
    .voice-submit-row .button {
        width: 100%;
    }
}


/* Topbar premium revizyonu — sadece public üst bilgi bandı */
.site-topbar-premium {
    background: radial-gradient(circle at 12% 0%, rgba(255,255,255,.08), transparent 28%), linear-gradient(90deg, #0F172A 0%, #111B31 52%, #0F172A 100%);
    color: rgba(255,255,255,.92);
    box-shadow: inset 0 -1px 0 rgba(255,255,255,.08);
}
.site-topbar-inner-premium { min-height:46px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.topbar-contact-list,.topbar-social-list { display:flex; align-items:center; flex-wrap:nowrap; }
.topbar-contact-list { gap:14px; min-width:0; }
.topbar-social-list { gap:10px; flex:0 0 auto; }
.topbar-contact-link { display:inline-flex; align-items:center; gap:8px; min-height:30px; color:rgba(255,255,255,.94); font-size:13.5px; font-weight:600; letter-spacing:-.01em; line-height:1; white-space:nowrap; transition:color .18s ease, opacity .18s ease, transform .18s ease; }
.topbar-contact-link:hover,.topbar-contact-link:focus-visible { color:#FFFFFF; opacity:1; transform:translateY(-1px); outline:none; }
.topbar-contact-link:focus-visible,.topbar-social-link:focus-visible { box-shadow:0 0 0 3px rgba(227,6,19,.32); }
.topbar-contact-icon { width:24px; height:24px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; flex:0 0 24px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.10); color:rgba(255,255,255,.96); }
.topbar-contact-icon svg,.topbar-social-link svg { width:14px; height:14px; display:block; fill:currentColor; }
.topbar-separator { width:1px; height:18px; display:inline-block; background:rgba(255,255,255,.16); }
.topbar-social-link { width:34px; height:34px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; color:rgba(255,255,255,.92); background:rgba(255,255,255,.055); border:1px solid rgba(255,255,255,.10); box-shadow:inset 0 1px 0 rgba(255,255,255,.08); font-size:13px; font-weight:800; transition:transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease; }
.topbar-social-link:hover,.topbar-social-link:focus-visible { color:#FFFFFF; background:rgba(227,6,19,.88); border-color:rgba(227,6,19,.92); transform:translateY(-1px); outline:none; }
@media (max-width:991px) { .site-topbar-inner-premium { min-height:44px; flex-direction:row; align-items:center; padding:6px 0; gap:12px; } .topbar-contact-list { width:auto; flex:1 1 auto; gap:10px; overflow:hidden; } .topbar-contact-email,.topbar-contact-email + .topbar-separator { display:none; } .topbar-contact-link { font-size:13px; } .topbar-social-list { width:auto; gap:8px; justify-content:flex-end; } .topbar-social-link { width:32px; height:32px; } }
@media (max-width:640px) { .site-topbar-inner-premium { justify-content:space-between; } .topbar-contact-list { gap:8px; } .topbar-contact-whatsapp,.topbar-contact-whatsapp + .topbar-separator,.topbar-contact-phone + .topbar-separator { display:none; } .topbar-contact-icon { width:26px; height:26px; flex-basis:26px; } .topbar-contact-link { min-height:32px; max-width:100%; } .topbar-social-link { width:30px; height:30px; } }

/* Sesini Duyur Beyoğlu — premium form düzeltmesi */
.voice-form-card {
    padding: clamp(22px, 3vw, 32px);
}
.voice-form-card .section-head {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.voice-form-card .section-head h2 {
    font-size: clamp(22px, 2.2vw, 28px);
    letter-spacing: -.02em;
}
.voice-form {
    gap: 18px;
}
.voice-form .form-grid-2 {
    gap: 18px 22px;
}
.voice-form .form-group {
    min-width: 0;
}
.voice-form .form-group label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
}
.voice-form .form-group label span,
.voice-consent strong {
    color: var(--primary);
}
.voice-form input[type="text"],
.voice-form input[type="tel"],
.voice-form input[type="email"],
.voice-form select,
.voice-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #D8DEE8;
    border-radius: 14px;
    background: #FFFFFF;
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    line-height: 1.35;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.voice-form input[type="text"],
.voice-form input[type="tel"],
.voice-form input[type="email"],
.voice-form select {
    height: 50px;
    padding: 0 14px;
}
.voice-form select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 42px;
    background-image:
        linear-gradient(45deg, transparent 50%, #64748B 50%),
        linear-gradient(135deg, #64748B 50%, transparent 50%);
    background-position:
        calc(100% - 20px) 21px,
        calc(100% - 14px) 21px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}
.voice-form textarea {
    min-height: 148px;
    resize: vertical;
    padding: 14px;
}
.voice-form input::placeholder,
.voice-form textarea::placeholder {
    color: #94A3B8;
}
.voice-form input:focus,
.voice-form select:focus,
.voice-form textarea:focus {
    border-color: rgba(227, 6, 19, .62);
    box-shadow: 0 0 0 4px rgba(227, 6, 19, .10);
    background: #FFFFFF;
}
.voice-form input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 1px dashed #CBD5E1;
    border-radius: 14px;
    background: #F8FAFC;
    color: var(--muted);
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
}
.voice-form input[type="file"]::file-selector-button {
    margin-right: 12px;
    border: 0;
    border-radius: 999px;
    padding: 9px 14px;
    background: var(--navy);
    color: #FFFFFF;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
}
.voice-form .form-group small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}
.checkbox-card.voice-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 2px;
    padding: 14px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    color: var(--text);
    line-height: 1.6;
}
.checkbox-card.voice-consent input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--primary);
    flex: 0 0 18px;
}
.voice-submit-row {
    margin-top: 4px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
.voice-submit-row .button-pill-xl {
    min-width: 230px;
    height: 54px;
    border-radius: 999px;
    box-shadow: 0 14px 28px rgba(227, 6, 19, .20);
}
.hp-field {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}
@media (max-width: 1200px) {
    .voice-layout {
        gap: 18px;
    }
}
@media (max-width: 760px) {
    .voice-form-card {
        padding: 20px;
        border-radius: 20px;
    }
    .voice-form .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .voice-form input[type="text"],
    .voice-form input[type="tel"],
    .voice-form input[type="email"],
    .voice-form select {
        height: 48px;
    }
    .voice-submit-row {
        justify-content: stretch;
    }
    .voice-submit-row .button-pill-xl {
        width: 100%;
        min-width: 0;
    }
}

/* Sesini Duyur Beyoğlu hero görsel revizyonu */
.voice-hero-photo-section {
    padding: 34px 0 28px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.voice-hero-card.voice-hero-photo-card {
    position: relative;
    display: flex;
    align-items: center;
    min-height: clamp(440px, 36vw, 560px);
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .10);
    isolation: isolate;
}

.voice-hero-photo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, .99) 0%,
            rgba(255, 255, 255, .97) 28%,
            rgba(255, 255, 255, .80) 43%,
            rgba(255, 255, 255, .34) 60%,
            rgba(255, 255, 255, 0) 76%
        );
    pointer-events: none;
}

.voice-hero-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
    z-index: 0;
}

.voice-hero-copy.voice-hero-copy-on-photo {
    position: relative;
    z-index: 2;
    width: min(58%, 660px);
    padding: clamp(28px, 5vw, 58px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.voice-hero-copy-on-photo .section-kicker {
    width: fit-content;
    max-width: 100%;
    box-shadow: 0 12px 30px rgba(227, 6, 19, .08);
}

.voice-hero-copy-on-photo h1 {
    max-width: 620px;
    text-shadow: 0 1px 0 rgba(255,255,255,.65);
}

.voice-hero-copy-on-photo p {
    max-width: 610px;
    color: #334155;
    text-shadow: 0 1px 0 rgba(255,255,255,.55);
}

@media (max-width: 1100px) {
    .voice-hero-card.voice-hero-photo-card {
        min-height: 500px;
    }

    .voice-hero-copy.voice-hero-copy-on-photo {
        width: min(68%, 660px);
    }

    .voice-hero-photo-card::before {
        background:
            linear-gradient(90deg,
                rgba(255,255,255,.99) 0%,
                rgba(255,255,255,.96) 35%,
                rgba(255,255,255,.70) 58%,
                rgba(255,255,255,.14) 82%
            );
    }
}

@media (max-width: 760px) {
    .voice-hero-photo-section {
        padding: 18px 0 20px;
    }

    .voice-hero-card.voice-hero-photo-card {
        min-height: 640px;
        align-items: flex-end;
        border-radius: 24px;
    }

    .voice-hero-banner-img {
        object-position: 64% center;
    }

    .voice-hero-photo-card::before {
        background:
            linear-gradient(180deg,
                rgba(15, 23, 42, .05) 0%,
                rgba(15, 23, 42, .02) 34%,
                rgba(255, 255, 255, .78) 58%,
                rgba(255, 255, 255, .98) 100%
            );
    }

    .voice-hero-copy.voice-hero-copy-on-photo {
        width: 100%;
        margin: 14px;
        padding: 22px;
        border: 1px solid rgba(229, 231, 235, .92);
        border-radius: 22px;
        background: rgba(255, 255, 255, .92);
        box-shadow: 0 18px 44px rgba(15, 23, 42, .16);
        backdrop-filter: blur(10px);
    }

    .voice-hero-copy.voice-hero-copy-on-photo h1 {
        font-size: clamp(34px, 11vw, 46px);
    }

    .voice-hero-copy.voice-hero-copy-on-photo p {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 420px) {
    .voice-hero-card.voice-hero-photo-card {
        min-height: 600px;
    }

    .voice-hero-copy.voice-hero-copy-on-photo {
        margin: 10px;
        padding: 18px;
    }
}
