/* ==========================================================
   GOVERNOR — Statik site stil dosyası
   Marka tokenları (Governor_Design_System.md ile birebir):
     brand-700 #005763 / brand-500 #398B93 / detail #2A2744
     surface #FFFFFF / surface-muted #F6F6F6 / ink #333333 / body #4F4F4F
   ========================================================== */

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat');
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --brand-50: #EAF3F4;
  --brand-100: #D2E5E7;
  --brand-200: #A8CBCF;
  --brand-300: #78ADB3;
  --brand-400: #4E9298;
  --brand-500: #398B93;
  --brand-600: #1D6F78;
  --brand-700: #005763;
  --brand-800: #00454E;
  --brand-900: #00363D;
  --detail: #2A2744;
  --ink: var(--brand-700);
  --body-text: #4F4F4F;
  --ink-400: #767676;
  --line: #E3E3E3;
  --line-strong: #CFCFCF;
  --surface: #FFFFFF;
  --surface-muted: #F6F6F6;
  --radius-sm: 0;
  --radius: 0;
  --radius-md: 0;
  --radius-lg: 0;
  --content-max: 1340px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--body-text);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { color: var(--ink); margin: 0 0 .5em; font-weight: 600; }

.container { max-width: var(--content-max); margin: 0 auto; padding: 0 20px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: .08em;
  font-weight: 600;
  color: var(--brand-600);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; display: inline-block; width: 22px; height: 2px; background: var(--brand-500); flex-shrink: 0; }
.hero .eyebrow::before { background: var(--brand-300); }
.h-display { font-size: clamp(2.25rem, 5vw, 4.25rem); line-height: 1.08; font-weight: 700; letter-spacing: -.01em; }
.h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); line-height: 1.15; font-weight: 600; letter-spacing: -.01em; }
.h3 { font-size: 1.375rem; line-height: 1.3; font-weight: 600; }
.section { padding: 72px 0; }
.section-muted { background: var(--surface-muted); }
.lede { font-size: 1.125rem; color: var(--body-text); max-width: 640px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 0;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn-primary { background: var(--brand-700); color: #fff; }
.btn-primary:hover { background: var(--brand-800); }
.btn-outline { background: transparent; color: var(--brand-700); border-color: var(--brand-700); }
.btn-outline:hover { background: var(--brand-700); color: #fff; }
.btn-light { background: #fff; color: var(--brand-700); }
.btn-light:hover { background: var(--brand-50); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: inline-flex; align-items: center; }
.logo-img { height: 38px; width: auto; display: block; }
.logo-img-footer { height: 68px; }
.logo-img-admin { height: 44px; }
.logo-img-login { height: 52px; margin: 0 auto 20px; }
.nav-desktop { display: flex; align-items: center; gap: 32px; }
.nav-desktop a { font-weight: 500; font-size: 13.5px; letter-spacing: .02em; color: var(--ink); transition: color .2s; }
.nav-desktop a:hover, .nav-desktop a.active { color: var(--brand-700); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 8px; flex-shrink: 0; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 1px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

body.menu-open { overflow: hidden; }

.mobile-menu {
  display: none;
  position: fixed; inset: 76px 0 0 0;
  background: #fff; z-index: 49;
  padding: 8px 24px 28px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; flex-direction: column; }
.mobile-menu-nav { display: flex; flex-direction: column; }
.mobile-menu-nav a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 2px;
  font-size: 16.5px; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu-nav a .chev { color: var(--brand-300); flex-shrink: 0; transition: transform .2s ease, color .2s ease; }
.mobile-menu-nav a:active .chev { transform: translateX(3px); }
.mobile-menu-nav a.active { color: var(--brand-700); }
.mobile-menu-nav a.active .chev { color: var(--brand-700); }
.mobile-menu-cta { margin-top: 24px; width: 100%; }

@media (max-width: 880px) {
  .nav-desktop, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
}

/* Hero */
.hero {
  position: relative;
  background: var(--brand-700);
  color: #fff;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 120px 0;
  overflow: hidden;
  box-sizing: border-box;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transform: translateX(-6%) scale(1.22);
  transition: opacity 1.8s ease, transform 1.8s ease;
}
.hero-bg-slide.is-active { opacity: 1; transform: translateX(0) scale(1.22); z-index: 1; }
@media (max-width: 700px) {
  .hero { min-height: calc(100vh - 76px); padding: 100px 0; }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(0deg, rgba(0,30,35,.38) 0%, rgba(0,30,35,0) 40%),
    linear-gradient(100deg, rgba(0,30,35,.88) 0%, rgba(0,30,35,.56) 32%, rgba(0,30,35,.18) 58%, rgba(0,30,35,0) 80%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; }
.hero .eyebrow { color: var(--brand-100); }
.hero p.lede { color: var(--brand-100); max-width: 620px; }
.hero-actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
@media (prefers-reduced-motion: reduce) {
  .hero-bg-slide { transition: opacity 1.8s ease; transform: none !important; }
}

/* Stats section (ayrı bölüm, hero dışında) */
.stats-section { background: var(--brand-700); padding: 88px 0 24px; }
.stats-section .stats-list { margin-top: 0; }
.stats-section .stats-list-row { padding: 34px 0; }
.stats-section .stats-list-num { font-size: clamp(5rem, 13vw, 10rem); gap: 14px; }
.stats-section .stats-list-num .plus { font-size: .5em; }
.stats-section .stats-list-label { font-size: 17px; letter-spacing: .07em; }
@media (max-width: 640px) {
  .stats-section { padding: 48px 0 8px; }
  .stats-section .stats-list-row { padding: 22px 0; }
  .stats-section .stats-list-num { font-size: clamp(3.25rem, 15vw, 5rem); }
}

/* Grids & cards */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 28px;
  transition: border-color .15s ease;
}
.card:hover { border-color: var(--brand-700); }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 14.5px; margin: 0; }

.project-card, .news-card { overflow: hidden; padding: 0; }
.project-card .thumb, .news-card .thumb {
  aspect-ratio: 16/10; background: var(--surface-muted);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-400); font-size: 13px;
  border-bottom: 1px solid var(--line);
}
.project-card .body, .news-card .body { padding: 22px; }
.project-card .tag, .news-card .tag { display: block; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-500); font-weight: 600; margin-bottom: 10px; }

.project-toggle, .news-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; padding: 0; border: none; background: none;
  font-size: 13px; font-weight: 700; letter-spacing: .01em;
  color: var(--brand-700); cursor: pointer;
}
.project-toggle:hover, .news-toggle:hover { color: var(--brand-500); }
.project-toggle .chev, .news-toggle .chev { transition: transform .25s ease; flex-shrink: 0; }
.project-card.is-open .project-toggle .chev, .news-card.is-open .news-toggle .chev { transform: rotate(180deg); }

.project-details, .news-details {
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .4s ease, opacity .3s ease;
}
.project-card.is-open .project-details { max-height: 640px; opacity: 1; }
.news-card.is-open .news-details { max-height: 1400px; opacity: 1; }
.project-details-inner, .news-details-inner { padding-top: 16px; margin-top: 2px; border-top: 1px solid var(--line); }
.project-details-inner p, .news-details-inner p { font-size: 14.5px; line-height: 1.65; color: var(--ink); margin: 0 0 12px; }
.news-details-inner p:last-child { margin-bottom: 0; }

.project-stats { display: flex; gap: 28px; margin-bottom: 14px; }
.project-stat { display: flex; flex-direction: column; }
.project-stat strong { font-size: 1.6rem; font-weight: 800; color: var(--brand-700); line-height: 1; font-variant-numeric: tabular-nums; }
.project-stat span { font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-400); margin-top: 5px; }

.card-date {
  display: block; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-400); font-weight: 600; padding-bottom: 12px; margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

/* Hizmet kartları (fotoğraf üstte, metin altta, tek çerçeve içinde) */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
@media (max-width: 980px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .service-grid { grid-template-columns: 1fr; gap: 24px; } }
.service-row {
  position: relative;
  display: flex; flex-direction: column;
  border: 1px solid var(--brand-50);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: border-color .2s ease;
}
.service-row:hover { border-color: var(--brand-700); }
.service-row .thumb {
  position: relative;
  width: 100%; aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-muted); flex-shrink: 0;
}
.service-row .thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s ease;
}
.service-row:hover .thumb img { transform: scale(1.06); }
.service-row .thumb .icon { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--brand-700); }
.service-row .num-badge {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  background: var(--brand-700); color: #fff;
  font-size: 16px; font-weight: 700; letter-spacing: .03em;
  line-height: 1; padding: 13px 18px;
  transition: background-color .2s ease;
}
.service-row:hover .num-badge { background: var(--detail); }
.service-row .body { padding: 22px 22px 26px; }
.service-row .accent-line { display: block; width: 40px; height: 3px; background: var(--brand-500); margin-bottom: 16px; transition: width .35s ease; }
.service-row:hover .accent-line { width: 110px; }
.service-row h3 { margin-bottom: 10px; font-size: 1.45rem; }
.service-row p { font-size: 16px; margin: 0; }
@media (prefers-reduced-motion: reduce) {
  .service-row .thumb img, .service-row .accent-line, .team-info .accent-line, .about-mv-body .accent-line { transition: none; }
  .service-row:hover .thumb img { transform: none; }
}

/* Section header row */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; gap: 24px; flex-wrap: wrap; }

/* Stats */
.stats-note { font-size: 13px; color: var(--brand-200); margin-top: 24px; opacity: .85; }

.stats-list { margin-top: 56px; border-top: 1px solid rgba(255,255,255,.18); }
.stats-list-row {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 38px 0; border-bottom: 1px solid rgba(255,255,255,.18);
}
.stats-list-num { display: flex; align-items: baseline; gap: 10px; font-size: clamp(3.25rem, 9vw, 6.5rem); font-weight: 800; color: #fff; line-height: 1; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.stats-list-num .plus { color: var(--brand-200); font-size: .55em; font-weight: 700; }
.stats-list-label { font-size: 15px; letter-spacing: .05em; text-transform: uppercase; color: var(--brand-200); text-align: right; font-weight: 600; flex-shrink: 0; }
@media (max-width: 640px) {
  .stats-list-row { flex-direction: column; align-items: flex-start; gap: 8px; padding: 28px 0; }
  .stats-list-label { text-align: left; }
}

/* Forms */
.form-grid { display: grid; gap: 18px; }
label { display: block; font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
input, textarea, select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line-strong);
  border-radius: 0; font-family: inherit; font-size: 15px; color: var(--ink);
  background: #fff;
}
input:focus, textarea:focus, select:focus { outline: 2px solid var(--brand-300); outline-offset: 1px; border-color: var(--brand-500); }
textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 13px; color: var(--ink-400); margin-top: 8px; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-row input { width: auto; margin-top: 3px; }
.checkbox-row label { margin: 0; font-weight: 400; font-size: 13.5px; color: var(--body-text); }

.alert { padding: 14px 18px; border-radius: 0; font-size: 14px; margin-bottom: 18px; }
.alert-success { background: #EAF6EE; color: #1E6B3A; border: 1px solid #BFE6CB; }
.alert-error { background: #FCEDEC; color: #A32A22; border: 1px solid #F3C3BF; }

/* Contact info list */
.info-list { display: grid; gap: 22px; }
.info-list .item { display: flex; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.info-list .item:last-child { border-bottom: none; padding-bottom: 0; }
.info-list .ic {
  width: 22px; height: 22px;
  color: var(--brand-700); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.info-list strong { display: block; color: var(--ink); font-size: 14px; }
.info-list span { font-size: 14px; }

/* Footer */
.site-footer { background: var(--detail); color: #D7D4DF; padding: 64px 0 32px; }
.site-footer h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.site-footer a { color: #D7D4DF; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid li { margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid #3D3856; margin-top: 48px; padding-top: 24px; font-size: 12.5px; color: #9B97AE; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.badge { display: inline-block; font-size: 11.5px; letter-spacing: .04em; text-transform: uppercase; padding: 4px 9px; border-radius: 0; background: var(--brand-50); color: var(--brand-700); font-weight: 600; }
.empty-note { color: var(--ink-400); font-size: 14px; padding: 32px 0; text-align: center; }

/* Fade up animation */
.fade-up { animation: fadeUp 450ms ease-out both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ===== Hakkımızda ===== */
.about-story { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.about-story .story-media { aspect-ratio: 4 / 5; overflow: hidden; background: var(--surface-muted); }
.about-story .story-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-story .story-text .eyebrow { margin-bottom: 18px; }
.about-story .story-text p { font-size: 16px; line-height: 1.75; margin: 0 0 16px; color: var(--body-text); white-space: pre-line; }
.about-story .story-text p:last-child { margin-bottom: 0; }
@media (max-width: 880px) {
  .about-story { grid-template-columns: 1fr; gap: 32px; }
  .about-story .story-media { aspect-ratio: 16 / 10; }
}

.about-mv-panel { padding: 76px 0; background: #EDEFF0; }
.about-mv-panel.is-dark { background: var(--brand-700); color: #fff; }
.about-mv-panel.is-dark h2, .about-mv-panel.is-dark .eyebrow { color: #fff; }
.about-mv-panel.is-dark .eyebrow::before { background: var(--brand-200); }
.about-mv-panel.is-dark p { color: var(--brand-100); }
.about-mv-inner { display: grid; grid-template-columns: 140px 1fr; gap: 48px; align-items: start; }
.about-mv-num { width: 84px; height: 84px; color: var(--brand-500); }
.about-mv-num svg { width: 100%; height: 100%; }
.about-mv-panel.is-dark .about-mv-num { color: var(--brand-100); }
.about-mv-body .accent-line { display: block; width: 40px; height: 3px; background: var(--brand-500); margin-bottom: 16px; transition: width .35s ease; }
.about-mv-panel:hover .accent-line { width: 110px; }
.about-mv-panel.is-dark .accent-line { background: var(--brand-200); }
.about-mv-body h2 { margin-bottom: 18px; }
.about-mv-body p { font-size: 18px; line-height: 1.7; max-width: 760px; margin: 0; }
@media (max-width: 760px) {
  .about-mv-inner { grid-template-columns: 1fr; gap: 16px; }
  .about-mv-num { width: 56px; height: 56px; }
}

/* ===== Kadromuz ===== */
.team-list { display: flex; flex-direction: column; }
.team-row {
  display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: center;
  padding: 56px 0; border-bottom: 1px solid var(--line);
}
.team-row:first-child { padding-top: 0; }
.team-row:last-child { border-bottom: none; padding-bottom: 0; }
.team-row.is-reverse { grid-template-columns: 1fr 340px; }
.team-row.is-reverse .team-photo { order: 2; }
.team-photo { width: 100%; aspect-ratio: 3 / 4; overflow: hidden; background: var(--surface-muted); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-info .accent-line { display: block; width: 40px; height: 3px; background: var(--brand-500); margin-bottom: 16px; transition: width .35s ease; }
.team-row:hover .accent-line { width: 110px; }
.team-info h3 { font-size: 1.7rem; font-weight: 400; margin: 0 0 16px; color: var(--body-text); line-height: 1.25; }
.team-info h3 strong { font-weight: 800; color: var(--brand-700); }
.team-info .role {
  display: inline-block; background: var(--brand-700); color: #fff;
  font-size: 12.5px; letter-spacing: .07em; text-transform: uppercase; font-weight: 600;
  padding: 10px 20px; margin-bottom: 16px;
}
.team-social { display: flex; gap: 10px; margin-bottom: 18px; }
.team-social a {
  display: flex; align-items: center; justify-content: center; width: 38px; height: 38px;
  border-radius: 50%; border: 1px solid var(--line); color: var(--brand-700);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.team-social a:hover { background: var(--brand-700); color: #fff; border-color: var(--brand-700); }
.team-info p { font-size: 15.5px; line-height: 1.75; margin: 0; color: var(--body-text); text-align: justify; }
@media (max-width: 900px) {
  .team-row { grid-template-columns: 280px 1fr; gap: 40px; }
  .team-row.is-reverse { grid-template-columns: 1fr 280px; }
}
@media (max-width: 700px) {
  .team-row, .team-row.is-reverse { grid-template-columns: 1fr; gap: 22px; padding: 32px 0; }
  .team-row.is-reverse .team-photo { order: 0; }
  .team-photo { max-width: 320px; aspect-ratio: 3 / 4; }
  .team-info p { text-align: left; }
}

/* ===== Admin ===== */
.admin-body { background: var(--surface-muted); min-height: 100vh; }
.admin-login { max-width: 380px; margin: 12vh auto; background: #fff; padding: 36px; border: 1px solid var(--line); text-align: center; }
.admin-login h2 { text-align: left; }
.admin-login .form-grid { text-align: left; }
.admin-shell { display: flex; min-height: 100vh; }
.admin-side { width: 240px; background: var(--brand-900); color: #fff; padding: 24px 16px; flex-shrink: 0; }
.admin-side .logo { color: #fff; padding: 0 8px 24px; }
.admin-side .logo span { color: var(--brand-300); }
.admin-side nav a { display: block; padding: 12px 12px; border-radius: 0; color: var(--brand-100); font-size: 14.5px; margin-bottom: 4px; }
.admin-side nav a.active, .admin-side nav a:hover { background: var(--brand-700); color: #fff; }
.admin-main { flex: 1; padding: 32px; max-width: 1100px; }
.admin-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); }
.admin-table th, .admin-table td { padding: 12px 16px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--line); }
.admin-table th { background: var(--surface-muted); font-weight: 600; color: var(--ink); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table .row-actions { display: flex; gap: 8px; }
.admin-table .row-actions button { font-size: 13px; padding: 6px 12px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-danger { background: #fff; color: #B3261E; border: 1px solid #F3C3BF; }
.btn-danger:hover { background: #FCEDEC; }
.modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.45); display: none; align-items: center; justify-content: center; z-index: 100; padding: 24px; }
.modal-backdrop.open { display: flex; }
.modal { background: #fff; border-radius: 0; padding: 28px; max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto; }
.modal h3 { margin-bottom: 20px; }
.modal-actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 24px; }
.logout-link { color: var(--brand-200); font-size: 13px; cursor: pointer; }
