:root {
  --ink: #11142d;
  --muted: #566176;
  --line: #d9deee;
  --paper: #f6f7fb;
  --white: #ffffff;
  --navy: #3C4998;
  --blue: #3C4998;
  --blue-2: #E00A14;
  --accent: #E00A14;
  --shadow: 0 18px 50px rgba(60, 73, 152, 0.16);
  --radius: 8px;
  --container: 1320px;
}

/* Shared inner-page content, used below the existing master header/footer. */
.inner-page { padding: 0 0 84px; background: var(--paper); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; color: var(--muted); font-size: 13px; }
.breadcrumb a, .text-link { color: var(--navy); font-weight: 800; }
.inner-page__heading { max-width: 740px; margin-bottom: 35px; }
.inner-page__heading h1, .article__header h1 { margin: 8px 0 13px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(32px, 4vw, 52px); line-height: 1.12; letter-spacing: -0.055em; }
.inner-page__heading p { max-width: 610px; margin: 0; color: var(--muted); font-size: 17px; }
.news-listing { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.news-listing__item { display: grid; grid-template-columns: 172px 1fr; overflow: hidden; min-height: 202px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .2s ease, box-shadow .2s ease; }
.news-listing__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-listing__image img { width: 100%; height: 100%; object-fit: cover; }
.news-listing__body { padding: 19px 20px; }
.news-listing__body time, .article__header time { color: var(--accent); font-size: 12px; font-weight: 800; }
.news-listing__body h2 { margin: 6px 0 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; line-height: 1.32; letter-spacing: -0.035em; }
.news-listing__body p { display: -webkit-box; overflow: hidden; margin: 0 0 12px; color: var(--muted); font-size: 14px; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.text-link { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; }
.text-link svg { width: 16px; }
.article { max-width: 950px; }
.article__header { max-width: 850px; margin: 0 auto 31px; text-align: center; }
.article__header .eyebrow { justify-content: center; }
.article__cover { width: 100%; max-height: 530px; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.article__content { max-width: 780px; margin: 36px auto 23px; font-size: 17px; }
.article__content > :first-child { font-size: 20px; line-height: 1.65; }
.article__content h2 { margin: 34px 0 14px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 25px; letter-spacing: -0.04em; }
.article__content p { margin: 0 0 20px; }
.article__back { margin-left: calc((100% - 780px) / 2); }

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--white);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__panel {
  width: min(100%, 240px);
  text-align: center;
}

.preloader__logo {
  width: 188px;
  height: 70px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.preloader__bar {
  width: 100%;
  height: 2px;
  background: #e8ebf5;
  border-radius: 999px;
  overflow: hidden;
}

.preloader__progress {
  display: block;
  height: 100%;
  background: var(--navy);
  border-radius: inherit;
  transform-origin: left center;
  animation: preloaderProgress 1.1s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

@keyframes preloaderProgress {
  0% { transform: scaleX(0); }
  65% { transform: scaleX(0.72); }
  100% { transform: scaleX(1); }
}

@media (max-width: 480px) {
  .preloader {
    padding: 16px;
  }

  .preloader__panel {
    width: min(100%, 220px);
  }

  .preloader__logo {
    width: 164px;
    height: 62px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

body.menu-open {
  overflow: hidden;
}

body.service-file-modal-open {
  overflow: hidden;
}

body.partner-detail-modal-open {
  overflow: hidden;
}

body.article-gallery-modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(224, 10, 20, 0.45);
  outline-offset: 3px;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 100;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  clip: auto;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.topbar {
  color: rgba(255, 255, 255, 0.9);
  background: #17215a;
  font-size: 13px;
}

.topbar__inner,
.topbar__contact,
.topbar__actions,
.socials {
  display: flex;
  align-items: center;
}

.topbar__inner {
  justify-content: space-between;
  gap: 20px;
  min-height: 38px;
}

.topbar__contact,
.topbar__actions {
  gap: 18px;
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar svg {
  width: 15px;
  height: 15px;
}

.socials {
  gap: 8px;
}

.socials a {
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: background 180ms ease;
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(60, 73, 152, 0.1);
  backdrop-filter: blur(14px);
}

.navbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 82px;
}

.brand img {
  width: 180px;
  height: 62px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.primary-nav > a,
.nav-item > button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 44px;
  padding: 0 12px;
  color: #1f2d42;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}

.primary-nav > a:hover,
.nav-item > button:hover,
.nav-item:hover > button,
.nav-item:focus-within > button {
  color: var(--navy);
  background: #f0f2ff;
}

.nav-item {
  position: relative;
}

.nav-item > button > svg {
  width: 14px;
  height: 14px;
  transition: transform 200ms ease;
}

.nav-item:hover > button > svg {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 60;
  min-width: 640px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(60, 73, 152, 0.18), 0 8px 20px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  overflow: auto;
}

.mega-menu--narrow {
  min-width: 440px;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-menu__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.mega-menu__cols--2 {
  grid-template-columns: repeat(2, 1fr);
}

.mega-menu__col {
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}

.mega-menu__col:last-child {
  border-right: 0;
}

.mega-menu__col--featured {
  background: var(--paper);
}

.mega-menu__group strong {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--navy);
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mega-menu__group strong svg {
  width: 15px;
  height: 15px;
}

.mega-menu__group a {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  padding: 8px 8px;
  margin: 0 -8px;
  color: var(--ink);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  transition: background 160ms ease, color 160ms ease;
}

.mega-menu__group a:hover {
  background: #f0f2ff;
  color: var(--navy);
}

.mega-menu__group a > svg {
  width: 15px;
  height: 15px;
  margin-top: 1px;
  color: var(--muted);
  transition: color 160ms ease;
}

.mega-menu__group a:hover > svg {
  color: var(--navy);
}

@media (min-width: 1181px) {
  .mega-menu {
    max-height: calc(100vh - 140px);
  }
}

.mega-menu__group a span {
  grid-column: 2;
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
  margin-top: -1px;
}

.mega-menu__highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #f0f2ff 0%, #e8eafc 100%);
  border-radius: 8px;
  border: 1px solid #d4d9f5;
  cursor: pointer;
  transition: border-color 160ms ease;
}

.mega-menu__highlight:hover {
  border-color: var(--navy);
}

.mega-menu__highlight > svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--navy);
}

.mega-menu__highlight strong {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.mega-menu__highlight span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.mega-menu__cta {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.mega-menu__cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  transition: background 160ms ease;
}

.mega-menu__cta a:hover {
  background: #2d3880;
}

.mega-menu__cta a svg {
  width: 14px;
  height: 14px;
}

.navbar__cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.button,
.icon-button,
.language-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
}

.button {
  gap: 8px;
  padding: 0 16px;
  border: 1px solid transparent;
  font-size: 14px;
}

.button svg {
  width: 17px;
  height: 17px;
}

.button--accent {
  color: var(--white);
  background: var(--accent);
}

.button--accent:hover {
  background: #b80810;
}

.button--light {
  color: var(--navy);
  background: #f0f2ff;
  border-color: #ccd3f6;
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.09);
}

.icon-button,
.language-pill {
  width: 44px;
  border: 1px solid var(--line);
  color: var(--navy);
  background: var(--white);
}

.language-switcher {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
}

.language-pill {
  min-height: 32px;
  width: auto;
  padding: 0 9px;
  font-size: 11px;
  text-decoration: none;
}

.language-pill.is-active {
  color: var(--white);
  background: var(--navy);
}

.language-trigger {
  gap: 5px;
  cursor: pointer;
}

.language-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform 160ms ease;
}

.language-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 80;
  min-width: 92px;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.language-menu .language-option {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  color: var(--navy);
  background: transparent;
}

.language-menu .language-option:hover,
.language-menu .language-option:focus-visible {
  background: #f0f2ff;
}

.icon-button svg {
  width: 19px;
  height: 19px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--navy);
  border: 0;
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #17215a 0%, #3C4998 56%, #eef1ff 56%, #f8f9ff 100%);
}

.hero__slides,
.hero__slide {
  position: absolute;
  inset: 0;
}

.hero__slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1fr);
  align-items: center;
  gap: 54px;
  min-height: 620px;
  max-width: 1320px;
  padding-top: 36px;
  padding-bottom: 58px;
}

.hero__copy {
  max-width: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-2);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 660px;
  margin: 14px 0 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__visual {
  align-self: center;
  margin: 0;
  padding: 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(23, 33, 90, 0.2);
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 390px;
  object-fit: cover;
  border-radius: 6px;
}

.hero__visual figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 2px 2px;
}

.hero__visual span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__visual strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.25;
  text-align: right;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(60, 73, 152, 0.18);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 10px 28px rgba(23, 33, 90, 0.16);
}

.hero__arrow--prev {
  left: 22px;
}

.hero__arrow--next {
  right: 22px;
}

.hero__dots {
  position: absolute;
  bottom: 44px;
  left: 50%;
  z-index: 5;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero__dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

.hero__dots button.is-active {
  background: var(--accent);
  border-color: var(--accent);
}

.smart-search {
  position: relative;
  z-index: 8;
  margin-top: -38px;
}

.smart-search__box {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 10px 12px 10px 22px;
  background: var(--white);
  border: 1px solid #cdd4f2;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.smart-search svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.smart-search input {
  min-width: 0;
  min-height: 48px;
  border: 0;
  color: var(--ink);
  font-size: 16px;
}

.smart-search input:focus {
  outline: 0;
}

.smart-search button,
.event-panel button {
  min-height: 48px;
  padding: 0 22px;
  color: var(--white);
  background: var(--navy);
  border: 0;
  border-radius: var(--radius);
  font-weight: 700;
}

.smart-search__suggestions,
.search-overlay__suggestions {
  position: absolute;
  z-index: 12;
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: #dfe3f3;
  box-shadow: 0 18px 35px rgba(23, 33, 90, .16);
}

.smart-search__suggestions {
  top: calc(100% + 8px);
  left: 0;
  right: 0;
}

.search-overlay__row {
  position: relative;
}

.search-overlay__suggestions {
  top: calc(100% + 8px);
  left: 0;
  right: 0;
}

.smart-search__suggestions[hidden],
.search-overlay__suggestions[hidden] {
  display: none;
}

.search-suggestion {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 15px;
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
}

.search-suggestion:hover,
.search-suggestion:focus-visible,
.search-suggestion.is-active {
  background: #f0f2ff;
}

.search-suggestion__icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--blue);
  background: #eef0fb;
}

.search-suggestion__icon svg {
  width: 16px;
  height: 16px;
}

.search-suggestion__content {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.search-suggestion__content small {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.search-suggestion__content strong,
.search-suggestion__content > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-suggestion__content strong { color: var(--navy); font-size: 14px; }
.search-suggestion__content > span { color: #69718b; font-size: 12px; }
.search-suggestions__message { padding: 15px; color: #69718b; background: var(--white); font-size: 13px; }

.section {
  padding: 64px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading--compact {
  align-items: center;
}

.section-heading h2 {
  margin: 6px 0 0;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  color: var(--blue);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.text-link svg {
  width: 18px;
  height: 18px;
}

.quick-access__all {
  flex-shrink: 0;
  margin-left: auto;
  white-space: nowrap;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.quick-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(60, 73, 152, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.quick-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.22;
  color: var(--ink);
}

.quick-card svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  padding: 5px;
  color: var(--navy);
  background: #eef0ff;
  border-radius: 6px;
}

.quick-card span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.quick-card:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(60, 73, 152, 0.12);
}

.quick-card:hover svg {
  color: var(--white);
  background: var(--navy);
}

.quick-card:hover strong {
  color: var(--navy);
}

.gundem-section {
  background: var(--paper);
}

.knowledge-section {
  background: var(--white);
}

.gundem-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.85fr;
  gap: 20px;
  align-items: start;
}

.gundem-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(60, 73, 152, 0.08);
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 0;
  overflow: hidden;
}

.gundem-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.gundem-block__head h2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
}

.gundem-block__head h2 svg {
  width: 18px;
  height: 18px;
  color: var(--navy);
}

.gundem-block__head > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.gundem-block__head > a svg {
  width: 14px;
  height: 14px;
}

.gundem-block__tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  background: #fafbff;
  overflow-x: auto;
}

.gundem-block__tabs button {
  flex: 0 0 auto;
  padding: 10px 16px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 160ms ease, border-color 160ms ease;
}

.gundem-block__tabs button:hover {
  color: var(--ink);
}

.gundem-block__tabs button.is-active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

.gundem-block__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0;
}

.gundem-hero-news {
  position: relative;
  display: block;
  overflow: hidden;
}

.gundem-hero-news img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 320ms ease, opacity 400ms ease;
}

.gundem-hero-news.is-transitioning img {
  opacity: 0.6;
  transform: scale(1.02);
}

.gundem-hero-news:hover img {
  transform: scale(1.03);
}

.gundem-hero-news__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 20px;
  background: linear-gradient(0deg, rgba(17, 20, 45, 0.92) 0%, transparent 100%);
  color: var(--white);
}

.gundem-hero-news__overlay time {
  font-size: 11px;
  font-weight: 700;
  opacity: 0.8;
}

.gundem-hero-news__overlay strong {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.gundem-news-items {
  padding: 6px 0;
}

.gundem-news-items a {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--line);
  border-left: 3px solid transparent;
  transition: background 300ms ease, border-color 300ms ease, padding-left 300ms ease;
}

.gundem-news-items a:last-child {
  border-bottom: 0;
}

.gundem-news-items a:hover,
.gundem-news-items a.is-highlight {
  background: #f8f9ff;
  border-left: 3px solid var(--navy);
  padding-left: 9px;
}

.gundem-news-items img {
  width: 56px;
  height: 42px;
  border-radius: 4px;
  object-fit: cover;
}

.gundem-news-items time {
  display: block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 2px;
}

.gundem-news-items strong {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.gundem-announce-list {
  padding: 4px 0;
}

.gundem-announce-list a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 11px 18px;
  border-bottom: 1px solid var(--line);
  transition: background 160ms ease;
}

.gundem-announce-list a:last-child {
  border-bottom: 0;
}

.gundem-announce-list a:hover {
  background: #f8f9ff;
}

.gundem-announce-list time {
  flex-shrink: 0;
  min-width: 40px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.gundem-announce-list strong {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.mini-calendar {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}

.mini-calendar__header {
  text-align: center;
  margin-bottom: 8px;
}

.mini-calendar__header strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

.mini-calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 4px;
}

.mini-calendar__days span {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  padding: 2px 0;
}

.mini-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.mini-calendar__grid span {
  font-size: 11px;
  padding: 3px 0;
  border-radius: 3px;
  color: var(--ink);
}

.mini-calendar__grid span.is-today {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
}

.mini-calendar__grid span.has-event {
  background: rgba(60, 73, 152, 0.1);
  color: var(--navy);
  font-weight: 700;
}

.gundem-event-list {
  padding: 4px 0;
}

.gundem-ev {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  transition: background 300ms ease;
}

.gundem-ev:last-child {
  border-bottom: 0;
}

.gundem-ev:hover,
.gundem-ev.is-highlight {
  background: #f8f9ff;
}

.gundem-ev.is-highlight .gundem-ev__date {
  background: var(--navy);
  color: var(--white);
}

.gundem-ev.is-highlight .gundem-ev__date span,
.gundem-ev.is-highlight .gundem-ev__date small {
  color: var(--white);
}

.gundem-ev__date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 50px;
  background: var(--navy);
  border-radius: 6px;
  color: var(--white);
}

.gundem-ev__date span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.gundem-ev__date small {
  font-size: 10px;
  font-weight: 700;
  opacity: 0.75;
  margin-top: 2px;
}

.gundem-ev__info strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.gundem-ev__info span {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.gundem-ev__info span svg {
  width: 12px;
  height: 12px;
}

.knowledge-grid,
.metric-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.knowledge-grid a {
  min-height: 170px;
  padding: 24px;
}

.knowledge-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--blue);
}

.knowledge-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.economy-section {
  background: linear-gradient(180deg, #f1f3ff 0%, #fbfcff 100%);
}

.metric-grid div {
  padding: 24px;
}

.metric-grid strong {
  display: block;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.metric-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 750;
}

.osb-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.osb-strip article {
  min-height: 150px;
  padding: 22px;
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(60, 73, 152, 0.95), rgba(24, 31, 84, 0.84)),
    url("https://www.gebzeto.org.tr/wp-content/uploads/2024/12/gosb.jpg") center / cover;
}

.osb-strip span {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.project-grid a {
  overflow: hidden;
}

.project-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.project-grid strong {
  min-height: 76px;
  padding: 18px;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.partner-logos span {
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(60, 73, 152, 0.07);
  font-weight: 700;
  text-align: center;
}

.assistant-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
}

.assistant-widget button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  min-height: 54px;
  padding: 0;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 700;
}

.assistant-widget span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-footer {
  color: var(--ink);
}

/* Layer 1 — Ana içerik */
.footer-layer-1 {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.3fr;
  gap: 32px;
  padding: 52px 0 44px;
}

.footer-brand {
  padding-right: 16px;
}

.footer-tobb-logo {
  width: 130px;
  height: auto;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-tobb-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-tobb-links a {
  display: block;
  padding: 5px 0;
  font-size: 13px;
  color: var(--muted);
  transition: color 160ms ease, padding-left 160ms ease;
}

.footer-tobb-links a:hover {
  color: var(--navy);
  padding-left: 4px;
}

.footer-links h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-links a {
  display: block;
  padding: 5px 0;
  font-size: 13px;
  color: var(--muted);
  transition: color 160ms ease, padding-left 160ms ease;
}

.footer-links a:hover {
  color: var(--navy);
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--muted);
}

.footer-contact svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 3px;
  color: var(--navy);
  opacity: 0.6;
}

.footer-contact a {
  display: inline;
  padding: 0;
  color: var(--muted);
}

.footer-contact a:hover {
  color: var(--navy);
  padding-left: 0;
}

.footer-app {
  display: inline-block;
  margin-top: 14px;
  opacity: 0.85;
  transition: opacity 200ms ease;
}

.footer-app:hover {
  opacity: 1;
}

.footer-app img {
  height: 34px;
  width: auto;
}

/* Layer 2 — Logo + Sosyal medya */
.footer-layer-2 {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.footer-mid__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-mid__left p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.footer-social a:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.footer-social a svg {
  width: 15px;
  height: 15px;
}

/* Layer 3 — Sertifikalar + Copyright */
.footer-layer-3 {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-wrap {
  padding: 18px 0;
}

.footer-cert-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cert-logos img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 200ms ease;
}

.footer-cert-logos img:hover {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom__links {
  display: flex;
  gap: 16px;
}

.footer-bottom__links a {
  display: inline;
  padding: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 160ms ease;
}

.footer-bottom__links a:hover {
  color: var(--white);
}

/* Chairman + Odamız Section */
.chairman-section {
  padding: 64px 0;
  background: var(--white);
}

.chairman-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

.chairman-left {
  text-align: center;
}

.chairman-portrait {
  margin-bottom: 16px;
}

.chairman-portrait img {
  width: 200px;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(60, 73, 152, 0.14);
  display: block;
  margin: 0 auto;
}

.chairman-identity h3 {
  margin: 0 0 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
}

.chairman-identity > span {
  display: block;
  font-size: 12px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 12px;
}

.chairman-identity__summary {
  max-width: 250px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.chairman-social {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.chairman-social a {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease, border-color 180ms ease;
}

.chairman-social a:hover {
  background: var(--navy);
  border-color: var(--navy);
}

.chairman-social a:hover svg {
  color: var(--white);
}

.chairman-social svg {
  width: 14px;
  height: 14px;
  color: var(--navy);
}

.chairman-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.chairman-message .eyebrow {
  margin-bottom: 6px;
}

.chairman-message h2 {
  margin: 0 0 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}

.chairman-message p {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.chairman-message p:last-of-type {
  margin-bottom: 20px;
}

.chairman-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.chairman-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  background: var(--navy);
  color: var(--white);
  border-radius: 6px;
  text-decoration: none;
  transition: background 200ms ease;
}

.chairman-btn:hover {
  background: #2d3a7a;
}

.chairman-btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.chairman-btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.chairman-btn svg {
  width: 14px;
  height: 14px;
}

.chairman-figures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--paper);
  border-radius: 8px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.chairman-figure {
  text-align: center;
  padding: 18px 12px;
  border-right: 1px solid var(--line);
}

.chairman-figure:last-child {
  border-right: 0;
}

.chairman-figure strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.chairman-figure span {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}


/* Showcase Section — Projeler + Anlaşmalı Kurumlar */
/* Projects Section */
.projects-section {
  background: var(--white);
}

.projects-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
}

.projects-intro .eyebrow {
  margin-bottom: 8px;
}

.projects-intro h2 {
  margin: 0 0 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}

.projects-intro p {
  margin: 0 0 20px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

.projects-intro__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  background: var(--navy);
  color: var(--white);
  border-radius: 6px;
  text-decoration: none;
  transition: background 200ms ease;
}

.projects-intro__btn:hover {
  background: #2d3a7a;
}

.projects-intro__btn svg {
  width: 14px;
  height: 14px;
}

.projects-slider {
  min-width: 0;
}

.project-swiper {
  overflow: hidden;
  position: relative;
}

.project-swiper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 48px;
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(to left, var(--white), transparent);
}

.project-swiper .swiper-slide {
  width: 300px;
  height: auto;
  display: block;
}

.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: box-shadow 200ms ease, transform 200ms ease;
  display: block;
  text-decoration: none;
}

.project-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.project-card__img {
  position: relative;
  overflow: hidden;
}

.project-card__img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease;
}

.project-card:hover .project-card__img img {
  transform: scale(1.04);
}

.project-card__status {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 3px;
}

.project-card__status--active {
  background: #e8f5e9;
  color: #2e7d32;
}

.project-card__status--done {
  background: #e3f2fd;
  color: #1565c0;
}

.project-card__info {
  padding: 16px 18px;
}

.project-card__info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 6px;
}

.project-card__info p {
  margin: 0 0 12px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

.project-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}

.project-card__link svg {
  width: 12px;
  height: 12px;
}

.homepage-empty-state {
  margin: 0;
  padding: 24px 18px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

/* Partners Section */
.partners-section {
  background: var(--paper);
}

.partners-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.partners-head h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
}

.partners-head h2 svg {
  width: 18px;
  height: 18px;
  color: var(--navy);
}

.partners-head a {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.partners-head a svg {
  width: 13px;
  height: 13px;
}

.partner-swiper {
  --partner-card-width: 292px;
  overflow: hidden;
}

.partner-swiper .swiper-slide {
  width: var(--partner-card-width);
  max-width: calc(100vw - 32px);
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 86px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-sizing: border-box;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  text-decoration: none;
}

.partner-item:hover {
  border-color: var(--navy);
  box-shadow: 0 2px 12px rgba(60, 73, 152, 0.08);
}

.partner-item > img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}

.partner-item > div {
  min-width: 0;
}

.partner-item strong {
  display: block;
  overflow: hidden;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.partner-item span {
  display: -webkit-box;
  overflow: hidden;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.partner-detail-modal {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(17, 27, 64, .56);
}

.partner-detail-modal[hidden] {
  display: none;
}

.partner-detail-modal__dialog {
  position: relative;
  width: min(100%, 680px);
  max-height: min(88vh, 680px);
  overflow: auto;
  padding: 32px;
  border: 1px solid #dfe4ee;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(17, 27, 64, .22);
}

.partner-detail-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #dfe4ee;
  border-radius: 7px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
}

.partner-detail-modal__close svg {
  width: 17px;
  height: 17px;
}

.partner-detail-modal__layout {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.partner-detail-modal__logo-wrap {
  display: grid;
  min-height: 160px;
  padding: 18px;
  place-items: center;
  border-radius: 8px;
  background: #f4f6fb;
}

.partner-detail-modal__logo-wrap img {
  width: 100%;
  max-height: 124px;
  object-fit: contain;
}

.partner-detail-modal__body {
  min-width: 0;
  padding-top: 8px;
}

.partner-detail-modal__body h2 {
  margin: 7px 42px 12px 0;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.16;
}

.partner-detail-modal__body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.partner-detail-modal__website {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 42px;
  margin-top: 22px;
  padding: 9px 14px;
  border: 1px solid var(--navy);
  border-radius: 7px;
  color: var(--white);
  background: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.partner-detail-modal__website svg {
  width: 16px;
  height: 16px;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: start center;
  padding: 110px 16px 24px;
  background: rgba(23, 33, 90, 0.72);
  backdrop-filter: blur(8px);
}

body.search-overlay-open {
  overflow: hidden;
}

.search-overlay[hidden] {
  display: none;
}

.search-overlay__panel {
  position: relative;
  width: min(100%, 780px);
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.search-overlay__panel label {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.search-overlay__close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.search-overlay__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 8px 8px 8px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.search-overlay__row input {
  min-width: 0;
  min-height: 44px;
  border: 0;
}

.search-overlay__row input:hover,
.search-overlay__row input:focus {
  border: 0;
  outline: 0;
  box-shadow: none;
}

.search-overlay__row input:focus-visible {
  outline: 2px solid rgba(60, 73, 152, .42);
  outline-offset: 2px;
}

.search-overlay__row button {
  min-height: 44px;
  padding: 0 18px;
  color: var(--white);
  background: var(--navy);
  border: 0;
  border-radius: var(--radius);
  font-weight: 700;
}

@media (max-width: 1180px) {
  .navbar__inner {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: block;
    order: 3;
    justify-self: end;
  }

  .primary-nav {
    position: fixed;
    top: 120px;
    right: 16px;
    left: 16px;
    z-index: 70;
    display: none;
    max-height: calc(100vh - 140px);
    overflow: auto;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  body.menu-open .primary-nav {
    display: grid;
    justify-content: stretch;
  }

  .primary-nav > a,
  .nav-item > button {
    width: 100%;
    justify-content: space-between;
  }

  .mega-menu {
    position: static;
    min-width: 0;
    margin: 6px 0 14px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: var(--radius);
  }

  .mega-menu__cols {
    grid-template-columns: 1fr;
  }

  .mega-menu__col {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 16px;
  }

  .mega-menu__col:last-child {
    border-bottom: 0;
  }

  .navbar__cta .button {
    display: none;
  }

  .hero__content {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
    gap: 32px;
  }

  .hero__visual img {
    max-height: 330px;
  }

  .quick-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .chairman-layout {
    grid-template-columns: 220px 1fr;
    gap: 32px;
  }

  .chairman-portrait img {
    width: 180px;
    height: 220px;
  }

  .chairman-figures {
    grid-template-columns: repeat(2, 1fr);
  }

  .chairman-figure:nth-child(2) {
    border-right: 0;
  }

  .chairman-figure:nth-child(1),
  .chairman-figure:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .projects-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gundem-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gundem-block--events {
    grid-column: span 2;
  }

  .gundem-block--events .gundem-event-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .knowledge-grid,
  .metric-grid,
  .project-grid,
  .osb-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-main {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .footer-brand {
    grid-column: span 3;
    display: flex;
    align-items: center;
    gap: 24px;
    padding-right: 0;
  }

  .footer-tobb-logo {
    margin-bottom: 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .topbar {
    display: none;
  }

  .topbar__inner,
  .topbar__contact,
  .topbar__actions,
  .section-heading,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar__actions {
    display: none;
  }

  .navbar__inner {
    gap: 10px;
    min-height: 74px;
  }

  .brand img {
    width: 142px;
    height: 54px;
  }

  .navbar__cta {
    justify-content: end;
  }

  .language-switcher {
    margin-left: 0;
  }

  .primary-nav {
    top: 86px;
  }

  .hero {
    min-height: 720px;
    background: linear-gradient(180deg, #17215a 0%, #3C4998 68%, #eef1ff 68%, #f8f9ff 100%);
  }

  .hero__content {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 24px;
    min-height: 720px;
    padding-top: 24px;
    padding-bottom: 78px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero__arrow {
    display: none;
  }

  .hero__visual {
    padding: 8px;
  }

  .hero__visual img {
    max-height: 220px;
  }

  .hero__visual figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 10px 2px 2px;
  }

  .hero__visual strong {
    text-align: left;
  }

  .smart-search__box,
  .search-overlay__row {
    grid-template-columns: auto 1fr;
  }

  .smart-search button,
  .search-overlay__row button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .section {
    padding: 52px 0;
  }

  .quick-access__all {
    width: 100%;
  }

  .quick-grid,
  .knowledge-grid,
  .metric-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

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

  .chairman-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .chairman-left {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .chairman-portrait {
    margin-bottom: 0;
  }

  .chairman-portrait img {
    width: 100px;
    height: 120px;
  }

  .chairman-social {
    justify-content: flex-start;
  }

  .chairman-message h2 {
    font-size: 18px;
  }

  .chairman-figures {
    grid-template-columns: repeat(2, 1fr);
  }

  .chairman-figure:nth-child(2) {
    border-right: 0;
  }

  .chairman-figure:nth-child(1),
  .chairman-figure:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

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

  .project-swiper .swiper-slide {
    width: 260px;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    grid-column: span 1;
  }

  .footer-mid {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-cert-logos {
    justify-content: flex-start;
    gap: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .gundem-grid {
    grid-template-columns: 1fr;
  }

  .gundem-block--events {
    grid-column: auto;
  }

  .gundem-hero-news img {
    height: 200px;
  }

  .partner-detail-modal__dialog {
    padding: 24px;
  }

  .partner-detail-modal__layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .partner-detail-modal__logo-wrap {
    min-height: 120px;
  }

  .partner-detail-modal__logo-wrap img {
    max-height: 88px;
  }

  .partner-detail-modal__body {
    padding-top: 0;
  }

  .gundem-block--events .gundem-event-list {
    grid-template-columns: 1fr;
  }

  .featured-news__card img {
    min-height: 240px;
  }

  .featured-news__card div {
    padding: 22px;
  }

  .news-list a {
    grid-template-columns: 82px 1fr;
  }

  .news-list img {
    width: 82px;
    height: 68px;
  }

  .calendar-grid {
    gap: 5px;
  }

  .calendar-grid button {
    min-height: 48px;
  }

  .assistant-widget {
    right: 12px;
    bottom: 12px;
  }

  .assistant-widget button {
    width: 54px;
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* The admin-controlled section order is applied to the existing homepage surfaces. */
.homepage-layout {
  display: flex;
  flex-direction: column;
}

.homepage-layout > [data-homepage-section] {
  flex: 0 0 auto;
}

.homepage-layout > [data-homepage-section][data-homepage-order="10"] { order: 10; }
.homepage-layout > [data-homepage-section][data-homepage-order="20"] { order: 20; }
.homepage-layout > [data-homepage-section][data-homepage-order="30"] { order: 30; }
.homepage-layout > [data-homepage-section][data-homepage-order="40"] { order: 40; }
.homepage-layout > [data-homepage-section][data-homepage-order="50"] { order: 50; }
.homepage-layout > [data-homepage-section][data-homepage-order="60"] { order: 60; }
.homepage-layout > [data-homepage-section][data-homepage-order="70"] { order: 70; }
.homepage-layout > [data-homepage-section][data-homepage-order="80"] { order: 80; }
.homepage-layout > [data-homepage-section][data-homepage-visible="0"] { display: none; }

/* Admin-authored blocks stay in the same flex flow as their selected anchor section. */
.homepage-layout > .homepage-custom-section {
  display: block;
  flex: 0 0 auto;
  max-width: 100%;
  overflow-wrap: anywhere;
  width: 100%;
}

.homepage-custom-section img,
.homepage-custom-section video,
.homepage-custom-section iframe {
  max-width: 100%;
}

.homepage-custom-section img,
.homepage-custom-section video {
  height: auto;
}

/* Homepage popup: a functional dialog surface, kept separate from the page flow. */
body.homepage-popup-open { overflow: hidden; }
.homepage-popup { align-items:center; background:rgba(15,23,42,.72); display:flex; inset:0; justify-content:center; padding:20px; position:fixed; z-index:1200; }
.homepage-popup__dialog { background:var(--white); max-height:min(90vh,720px); max-width:680px; overflow:auto; position:relative; width:100%; }
.homepage-popup__close { align-items:center; background:rgba(17,20,45,.78); border:0; border-radius:50%; color:var(--white); display:grid; font-size:28px; height:38px; line-height:1; padding:0; place-items:center; position:absolute; right:14px; top:14px; width:38px; z-index:1; }
.homepage-popup__close:hover { background:var(--navy); }
.homepage-popup__image { background:var(--paper); max-height:360px; overflow:hidden; }
.homepage-popup__image img { height:auto; max-height:360px; object-fit:cover; width:100%; }
.homepage-popup__content { padding:30px 34px 34px; }
.homepage-popup__content h2 { color:var(--ink); font-family:'Plus Jakarta Sans',sans-serif; font-size:clamp(22px,3vw,32px); letter-spacing:-.04em; line-height:1.2; margin:0 0 14px; }
.homepage-popup__body { color:var(--muted); font-size:16px; line-height:1.7; white-space:normal; }
@media(max-width:600px){.homepage-popup{padding:12px}.homepage-popup__dialog{max-height:calc(100vh - 24px)}.homepage-popup__content{padding:25px 22px 26px}.homepage-popup__body{font-size:15px}.homepage-popup__close{right:10px;top:10px}}

.article-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 22px;
  background: rgba(10, 14, 28, .86);
}

.article-gallery-modal[hidden] {
  display: none;
}

.article-gallery-modal__dialog {
  position: relative;
  display: grid;
  width: min(100%, 1120px);
  max-height: calc(100vh - 44px);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
}

.article-gallery-modal__figure {
  display: grid;
  min-height: 0;
  margin: 0;
  place-items: center;
}

.article-gallery-modal__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 128px);
  object-fit: contain;
}

.article-gallery-modal__caption {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  font-weight: 700;
}

.article-gallery-modal__button {
  position: absolute;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  cursor: pointer;
}

.article-gallery-modal__button:hover,
.article-gallery-modal__button:focus-visible {
  background: rgba(255, 255, 255, .24);
  outline: 2px solid rgba(255, 255, 255, .72);
  outline-offset: 2px;
}

.article-gallery-modal__button svg {
  width: 22px;
  height: 22px;
}

.article-gallery-modal__close {
  top: 0;
  right: 0;
}

.article-gallery-modal__prev,
.article-gallery-modal__next {
  top: 50%;
  transform: translateY(-50%);
}

.article-gallery-modal__prev {
  left: 0;
}

.article-gallery-modal__next {
  right: 0;
}

@media (max-width: 640px) {
  .article-gallery-modal {
    padding: 12px;
  }

  .article-gallery-modal__dialog {
    max-height: calc(100vh - 24px);
  }

  .article-gallery-modal__image {
    max-height: calc(100vh - 112px);
  }

  .article-gallery-modal__button {
    width: 38px;
    height: 38px;
  }

  .article-gallery-modal__prev {
    left: 4px;
  }

  .article-gallery-modal__next,
  .article-gallery-modal__close {
    right: 4px;
  }
}
