:root {
  --color-white: #FFFFFF;
  --color-blue: #0075BB;
  --color-gray: #E5E7EB;
  --color-light-gray: #F2F4F7;
  --color-dark-gray: #07111F;
  --header-height: 76px;
  --footer-height: 34px;
  --safe-x: clamp(58px, 4.4vw, 94px);
  --shadow-soft: 0 18px 45px rgba(23, 36, 55, .12);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background: var(--color-white);
  color: var(--color-dark-gray);
  scroll-behavior: smooth;
}

button, input, textarea, select { font-family: 'Inter', Arial, Helvetica, sans-serif; }
body { overflow-x: hidden; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-height);
  z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(17,24,39,.08);
  backdrop-filter: blur(14px);
}

.top-line {
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--color-dark-gray);
  opacity: .9;
}

.header-inner {
  height: 100%;
  padding: 0 var(--safe-x);
  display: grid;
  grid-template-columns: minmax(250px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.logo-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  cursor: pointer;
}

.logo-button img {
  display: block;
  width: 245px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 1.75vw, 34px);
  height: 100%;
  min-width: 0;
}

.nav-item {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--color-dark-gray);
  padding: 29px 0 24px;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: .92;
  white-space: nowrap;
}

.nav-item:hover,
.nav-item.active { color: var(--color-blue); opacity: 1; }

.nav-caret {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: .7;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.language-toggle {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(17,24,39,.14);
  background: var(--color-light-gray);
  border-radius: 999px;
}

.lang-pill {
  appearance: none;
  border: 0;
  background: transparent;
  color: #64748B;
  border-radius: 999px;
  height: 32px;
  min-width: 39px;
  padding: 0 12px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .06em;
  cursor: pointer;
}

.lang-pill.active { background: var(--color-blue); color: var(--color-white); }

.hamburger {
  appearance: none;
  border: 1px solid rgba(17,24,39,.16);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  background: var(--color-light-gray);
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark-gray);
  border-radius: 5px;
  position: absolute;
  left: 14px;
  transition: transform .22s ease, opacity .22s ease, top .22s ease;
}

.hamburger span:nth-child(1) { top: 21px; }
.hamburger span:nth-child(2) { top: 25px; }
.hamburger span:nth-child(3) { top: 29px; }
.hamburger.open span:nth-child(1) { top: 25px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 25px; transform: rotate(-45deg); }

.dropdown-panel {
  position: absolute;
  left: var(--safe-x);
  right: var(--safe-x);
  top: var(--header-height);
  background: var(--color-light-gray);
  border: 1px solid rgba(17,24,39,.12);
  box-shadow: 0 18px 38px rgba(20, 31, 48, .12);
  border-radius: 0 0 18px 18px;
  padding: 8px 10px;
  display: none;
  overflow: visible;
}

.dropdown-panel.open {
  display: block;
  animation: dropdownIn .18s ease-out both;
}

@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-grid {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}

.dropdown-intro,
.dropdown-card {
  appearance: none;
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.74);
  border-radius: 14px;
  min-height: 58px;
  max-height: 68px;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.dropdown-intro {
  width: min(230px, 18vw);
  flex: 0 0 min(230px, 18vw);
  padding: 9px 12px;
}

.dropdown-card {
  flex: 1 1 0;
  min-width: 0;
  padding: 9px 12px;
}

.dropdown-intro:hover,
.dropdown-card:hover {
  transform: translateY(-1px);
  border-color: rgba(0,117,187,.45);
  background: rgba(255,255,255,.96);
}

.dropdown-intro span {
  display: block;
  color: var(--color-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.dropdown-intro p,
.dropdown-card-desc {
  margin: 0;
  font-size: 11px;
  line-height: 1.22;
  color: #425166;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dropdown-card-title {
  margin: 0 0 4px 0;
  font-size: 13px;
  line-height: 1.12;
  font-weight: 900;
  color: var(--color-dark-gray);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.app { min-height: 100vh; }

.dynamic-story {
  position: relative;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 62%, #EEF5FA 100%);
}

.dynamic-stage {
  position: sticky;
  top: var(--header-height);
  height: calc(100vh - var(--header-height) - var(--footer-height));
  overflow: hidden;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 62%, #EEF5FA 100%);
}

.dynamic-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,117,187,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,117,187,.055) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .75;
  pointer-events: none;
}

.dynamic-image-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vh, 34px) clamp(72px, 8vw, 132px) clamp(64px, 9vh, 110px);
  transition: opacity .42s ease, transform .42s ease, filter .42s ease;
}

.dynamic-media {
  max-width: min(82vw, 1180px);
  max-height: min(76vh, 720px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 38px rgba(30,45,70,.16));
  border-radius: 30px;
}

.dynamic-stage.fading .dynamic-image-wrap,
.dynamic-stage.fading .right-card {
  opacity: 0;
  transform: translateY(8px) scale(.992);
  filter: blur(1.5px);
}

.right-card {
  position: absolute;
  right: clamp(42px, 5vw, 90px);
  bottom: clamp(52px, 7vh, 82px);
  z-index: 3;
  width: min(590px, 36vw);
  min-height: 74px;
  background: var(--color-light-gray);
  border: 1px solid rgba(17,24,39,.12);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(35, 48, 65, .13);
  padding: 15px 18px;
  transition: opacity .42s ease, transform .42s ease, filter .42s ease;
  cursor: default;
}

.right-card.clickable { cursor: pointer; }

.right-card-label {
  margin: 0 0 7px;
  color: var(--color-blue);
  font-size: 11px;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-weight: 900;
}

.right-card-desc {
  margin: 0;
  color: #3E4A5C;
  font-size: 15.5px;
  line-height: 1.58;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.scene-progress {
  position: absolute;
  left: var(--safe-x);
  bottom: clamp(58px, 8vh, 92px);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.progress-line {
  width: 2px;
  height: 130px;
  background: rgba(17,24,39,.12);
  position: relative;
}

.progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  background: var(--color-blue);
  height: 0%;
  transition: height .25s ease;
}

.progress-count {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .22em;
  color: var(--color-dark-gray);
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 48px;
  transform: translateX(-50%);
  z-index: 5;
  font-size: 0;
  color: var(--color-blue);
}

.section-index {
  background: var(--color-white);
  padding: 78px var(--safe-x) calc(var(--footer-height) + 92px);
  display: grid;
  gap: 118px;
}

.content-section {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(340px, .82fr) minmax(460px, 1.18fr);
  gap: clamp(56px, 7vw, 116px);
  align-items: center;
}

.content-section.image-left { grid-template-columns: minmax(460px, 1.18fr) minmax(340px, .82fr); }
.content-section.text-left .section-copy { justify-self: start; }
.content-section.text-left .section-visual { justify-self: end; }
.content-section.image-left .section-visual { justify-self: start; }
.content-section.image-left .section-copy { justify-self: start; }

.section-copy { max-width: 540px; }

.section-kicker { display: none; }

.section-title-link {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0 0 18px;
  color: var(--color-dark-gray);
  cursor: pointer;
  text-align: left;
  font-size: clamp(48px, 5.5vw, 78px);
  line-height: .94;
  font-weight: 900;
  letter-spacing: -.05em;
}

.section-title-link:hover { color: var(--color-blue); }

.section-copy p {
  margin: 0 0 24px;
  color: #3E4A5C;
  font-size: 19px;
  line-height: 1.55;
}

.section-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.section-copy li {
  position: relative;
  padding-left: 30px;
  color: #1E293B;
  font-size: 17px;
  line-height: 1.4;
}

.section-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .54em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-blue);
}

.section-visual {
  display: grid;
  place-items: center;
  min-height: 390px;
  border-radius: 30px;
  background: var(--color-light-gray);
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.section-visual img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.static-page {
  padding: calc(var(--header-height) + 48px) var(--safe-x) calc(var(--footer-height) + 70px);
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.static-block {
  max-width: 1120px;
  margin: 0 auto 34px;
  background: var(--color-white);
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(35, 48, 65, .10);
  overflow: hidden;
}

.static-media-frame {
  width: 100%;
  height: min(52vh, 540px);
  min-height: 300px;
  display: grid;
  place-items: center;
  background: var(--color-light-gray);
  border-bottom: 1px solid rgba(17,24,39,.08);
}

.static-media-frame img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.static-text { padding: clamp(24px, 4vw, 46px); }
.static-text h2 { margin: 0 0 16px; font-size: clamp(28px, 3vw, 42px); letter-spacing: -.03em; }
.static-text p { margin: 0 0 20px; color: #3E4A5C; font-size: 18px; line-height: 1.65; }
.static-list { margin: 18px 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.static-list li { padding: 14px 16px; border-radius: 14px; background: var(--color-light-gray); color: var(--color-dark-gray); font-weight: 700; }
.static-button { margin-top: 24px; display: inline-flex; align-items: center; min-height: 44px; border-radius: 999px; padding: 0 20px; background: var(--color-blue); color: var(--color-white); text-decoration: none; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 900; }


.home-cta {
  margin: 0 var(--safe-x) calc(var(--footer-height) + 32px);
  padding: clamp(38px, 4vw, 58px) clamp(34px, 5vw, 72px);
  min-height: 260px;
  border-top: 1px solid rgba(17,24,39,.10);
  background: linear-gradient(135deg, #FFFFFF 0%, #F4F7FA 100%);
  display: grid;
  grid-template-columns: minmax(360px, 1.2fr) minmax(320px, .8fr);
  gap: clamp(38px, 6vw, 94px);
  align-items: center;
  cursor: pointer;
}

.home-cta-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(38px, 4.7vw, 68px);
  line-height: .98;
  letter-spacing: -.055em;
  color: var(--color-dark-gray);
  max-width: 850px;
}

.home-cta-copy p {
  margin: 0;
  color: #3E4A5C;
  font-size: 16px;
  line-height: 1.6;
  max-width: 790px;
}

.home-cta-info {
  display: grid;
  gap: 0;
}

.home-cta-info div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid rgba(17,24,39,.11);
}

.home-cta-info span {
  color: var(--color-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
}

.home-cta-info strong {
  font-size: 15px;
  color: var(--color-dark-gray);
}

.home-cta-links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  padding-top: 18px;
}

.home-cta-links a {
  color: #334155;
  text-decoration: none;
  font-size: 14px;
}

.home-cta-links a:hover { color: var(--color-blue); }

.bottom-bar {
  position: fixed;
  inset: auto 0 0 0;
  min-height: var(--footer-height);
  z-index: 110;
  background: var(--color-blue);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px var(--safe-x);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-align: center;
  cursor: pointer;
}

.drawer { position: fixed; inset: 0; z-index: 120; display: none; }
.drawer.open { display: block; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(17,24,39,.34); }
.drawer-panel { position: absolute; right: 0; top: 0; bottom: 0; width: min(520px, 94vw); background: var(--color-white); box-shadow: -18px 0 55px rgba(17,24,39,.25); padding: 26px 28px 50px; overflow-y: auto; animation: drawerIn .22s ease-out both; }
@keyframes drawerIn { from { transform: translateX(25px); opacity: .6; } to { transform: translateX(0); opacity: 1; } }
.drawer-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 34px; }
.drawer-head img { width: 230px; height: auto; }
.drawer-close { appearance: none; border: 1px solid rgba(17,24,39,.14); background: var(--color-light-gray); color: var(--color-dark-gray); width: 46px; height: 46px; border-radius: 50%; font-size: 28px; line-height: 1; cursor: pointer; }
.drawer-group { border-top: 1px solid rgba(17,24,39,.10); padding: 18px 0; }
.drawer-main { appearance: none; background: transparent; border: 0; color: var(--color-dark-gray); font-size: 24px; font-weight: 900; cursor: pointer; padding: 0; letter-spacing: -.02em; }
.drawer-children { margin-top: 12px; display: grid; gap: 8px; }
.drawer-child { appearance: none; border: 0; background: var(--color-light-gray); border-radius: 14px; padding: 13px 14px; cursor: pointer; text-align: left; }
.drawer-child strong { display: block; color: var(--color-dark-gray); font-size: 15px; margin-bottom: 4px; }
.drawer-child span { display: block; color: #566171; font-size: 13px; line-height: 1.35; }

.error-box { margin: calc(var(--header-height) + 80px) auto; max-width: 760px; padding: 34px; border: 1px solid #FCA5A5; border-radius: 22px; background: #FFF1F2; color: #7F1D1D; text-align: center; }

@media (max-width: 1280px) {
  :root { --safe-x: 48px; }
  .desktop-nav { gap: 18px; }
  .nav-item { font-size: 12px; letter-spacing: .09em; }
  .logo-button img { width: 220px; }
  .header-inner { grid-template-columns: 220px minmax(0, 1fr) auto; gap: 18px; }
  .right-card { width: min(620px, 46vw); }
}

@media (max-width: 920px) {
  :root { --header-height: 72px; --footer-height: 42px; --safe-x: 22px; }
  .desktop-nav { display: none; }
  .header-inner { display: flex; justify-content: space-between; padding: 0 var(--safe-x); }
  .logo-button img { width: 205px; }
  .language-toggle { height: 38px; }
  .lang-pill { min-width: 34px; height: 28px; padding: 0 9px; }
  .hamburger { width: 46px; height: 46px; }
  .hamburger span { left: 12px; width: 22px; }
  .dropdown-panel { display: none !important; }
  .dynamic-story { height: auto !important; }
  .dynamic-stage { position: relative; top: auto; height: auto; min-height: calc(100vh - var(--header-height) - var(--footer-height)); padding-top: var(--header-height); }
  .dynamic-image-wrap { position: relative; inset: auto; height: 52vh; padding: 22px; }
  .dynamic-media { max-width: 94vw; max-height: 48vh; }
  .right-card { position: relative; right: auto; bottom: auto; width: calc(100% - 40px); margin: 18px 20px 84px; }
  .scene-progress, .scroll-hint { display: none; }
  .content-section, .content-section.image-left, .content-section.text-left { grid-template-columns: 1fr; gap: 24px; }
  .content-section.image-left .section-visual, .content-section.image-left .section-copy, .content-section.text-left .section-visual, .content-section.text-left .section-copy { order: initial; justify-self: stretch; }
  .home-cta { grid-template-columns: 1fr; margin-left: 20px; margin-right: 20px; }
  .section-title-link { font-size: 44px; }
  .section-visual { min-height: 320px; }
}

@media (max-width: 620px) {
  .header-actions { gap: 8px; }
  .logo-button img { width: 175px; }
  .language-toggle { display: none; }
  .static-page { padding-left: 20px; padding-right: 20px; }
  .static-media-frame { height: 300px; }
  .drawer-panel { padding-left: 22px; padding-right: 22px; }
  .section-index { padding-left: 20px; padding-right: 20px; }
}


/* V6 final alignment safeguards */
.dropdown-panel { max-height: none; }
.dropdown-grid { overflow: visible; }
.dropdown-card, .dropdown-intro { overflow: hidden; }
.section-title-link { text-decoration: none; }
.section-visual { border-radius: 34px; }
.section-visual img { border-radius: 28px; }
.dynamic-media { object-fit: contain; }
.static-media, .section-visual img { object-fit: contain; }

@media (max-width: 620px) {
  .home-cta { padding: 32px 20px; }
  .home-cta-info div { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
}

/* V9 requested-only adjustments: static separation, hamburger alignment, CTA/section sizing */
.header-actions { align-items: center; }
.hamburger {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}
.hamburger span {
  width: 20px;
  left: 10px;
}
.hamburger span:nth-child(1) { top: 17px; }
.hamburger span:nth-child(2) { top: 20px; }
.hamburger span:nth-child(3) { top: 23px; }
.hamburger.open span:nth-child(1) { top: 20px; }
.hamburger.open span:nth-child(3) { top: 20px; }

.static-block { overflow: hidden; }
.static-media-frame {
  height: clamp(300px, 42vh, 440px);
  padding: clamp(18px, 2.2vw, 30px);
  align-items: center;
  justify-items: center;
}
.static-media-frame img {
  max-width: 100%;
  max-height: 100%;
}
.static-text {
  position: relative;
  z-index: 2;
  background: var(--color-white);
  border-top: 1px solid rgba(17,24,39,.08);
  padding-top: clamp(22px, 3vw, 34px);
}

.home-cta {
  min-height: 190px;
  padding-top: clamp(26px, 3vw, 40px);
  padding-bottom: clamp(26px, 3vw, 40px);
}
.home-cta-copy h2 {
  font-size: clamp(27px, 3.3vw, 48px);
  line-height: 1.02;
}

.section-index {
  gap: 136px;
}
.content-section {
  max-width: 1480px;
  grid-template-columns: minmax(330px, .72fr) minmax(620px, 1.28fr);
}
.content-section.image-left {
  grid-template-columns: minmax(620px, 1.28fr) minmax(330px, .72fr);
}
.section-title-link {
  font-size: clamp(34px, 3.85vw, 55px);
  margin-bottom: 16px;
}
.section-copy p {
  margin: 0 0 26px;
  padding: 12px 16px;
  border-left: 5px solid var(--color-blue);
  background: var(--color-light-gray);
  border-radius: 0 14px 14px 0;
}
.section-visual {
  width: 100%;
  min-height: 420px;
}

.drawer-panel {
  width: min(416px, 80vw);
}

@media (max-width: 920px) {
  .hamburger { width: 38px; height: 38px; flex-basis: 38px; }
  .hamburger span { width: 18px; left: 9px; }
  .hamburger span:nth-child(1) { top: 15px; }
  .hamburger span:nth-child(2) { top: 18px; }
  .hamburger span:nth-child(3) { top: 21px; }
  .hamburger.open span:nth-child(1) { top: 18px; }
  .hamburger.open span:nth-child(3) { top: 18px; }
  .content-section,
  .content-section.image-left,
  .content-section.text-left { grid-template-columns: 1fr; }
  .section-title-link { font-size: 36px; }
  .section-visual { min-height: 320px; }
  .home-cta-copy h2 { font-size: 34px; }
  .drawer-panel { width: min(416px, 82vw); }
}

/* V10 fixed-only adjustments: keep V9 layout, correct only requested items */
.dynamic-image-wrap {
  padding-left: var(--safe-x);
  padding-right: var(--safe-x);
}
.dynamic-media {
  max-width: min(calc(100vw - (2 * var(--safe-x))), 1480px);
  max-height: min(76vh, 720px);
}
.section-copy p {
  padding: 0;
  border-left: 0;
  background: transparent;
  border-radius: 0;
}
.section-extra {
  margin: 0 0 24px;
  padding: 12px 16px;
  border-left: 5px solid var(--color-blue);
  background: var(--color-light-gray);
  border-radius: 0 14px 14px 0;
  color: #3E4A5C;
  font-size: 16px;
  line-height: 1.55;
}
.static-block {
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  display: grid;
  gap: 24px;
}
.static-media-frame {
  background: var(--color-white);
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(35, 48, 65, .10);
  overflow: hidden;
}
.static-text {
  background: var(--color-white);
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(35, 48, 65, .08);
}
.special-link-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
}
.special-link-button {
  min-width: 220px;
  justify-content: center;
}
@media (max-width: 920px) {
  .dynamic-media { max-width: calc(100vw - 40px); }
  .special-link-row { justify-content: flex-start; }
}



/* V12 requested-only fixes: static page image/text separation + special middle page template */
.static-page {
  display: grid;
  gap: 28px;
}
.static-block {
  display: grid;
  gap: 24px;
}
.static-media-frame {
  height: auto !important;
  min-height: 0 !important;
  padding: clamp(20px, 2.5vw, 34px) !important;
  overflow: visible !important;
}
.static-media-frame img,
.static-media {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: none !important;
  object-fit: contain !important;
  display: block;
}
.static-text {
  margin-top: 0 !important;
  position: relative;
  z-index: 2;
}
.special-page-template {
  max-width: 1180px;
  margin: 0 auto;
}
.special-media-card,
.special-description-card {
  background: var(--color-white);
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(35,48,65,.10);
  overflow: hidden;
}
.special-media-frame {
  width: 100%;
  display: grid;
  gap: 18px;
  padding: clamp(20px, 2.5vw, 34px);
  background: var(--color-light-gray);
}
.special-media {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  border-radius: 18px;
  background: var(--color-white);
}
.special-link-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 0 0;
}
.special-description-card {
  padding: clamp(28px, 4vw, 52px);
}
.special-description-card h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.special-description-card p {
  margin: 0 0 18px;
  color: #3E4A5C;
  font-size: 17px;
  line-height: 1.7;
}
.special-description-card p:last-child { margin-bottom: 0; }
@media (max-width: 920px) {
  .special-page-template { max-width: none; }
  .special-link-row { justify-content: flex-start; }
}


/* V13 requested-only fixes: ToBom/Fastener rich special content styling + special image slider */
.special-slider {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 320px;
}
.special-slider .special-media {
  position: absolute;
  inset: clamp(16px, 2vw, 28px);
  width: calc(100% - clamp(32px, 4vw, 56px)) !important;
  height: calc(100% - clamp(32px, 4vw, 56px)) !important;
  object-fit: contain !important;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}
.special-slider .special-media.active {
  opacity: 1;
}
.special-rich-html h2 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.25;
  color: #0d2a58;
  margin: 0 0 18px;
  letter-spacing: -.02em;
}
.special-rich-html h3 {
  margin: 26px 0 10px;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.3;
  color: #0d2a58;
}
.special-rich-html p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}
.special-rich-html ul {
  margin: 10px 0 0 18px;
  padding: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #222;
}
.special-rich-html li {
  margin: 6px 0;
}


/* V15 requested-only fixes: contact page address box + centered single-line bottom bar */
.bottom-bar {
  justify-content: center !important;
  text-align: center !important;
  white-space: nowrap;
  line-height: 1.35;
  min-height: var(--footer-height);
  padding-top: 7px;
  padding-bottom: 7px;
}

.contact-map-page {
  position: relative;
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
  padding: calc(var(--header-height) + 18px) var(--safe-x) calc(var(--footer-height) + 18px);
  background: var(--color-white);
}

.contact-map-frame {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--header-height) - var(--footer-height) - 36px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(17,24,39,.12);
  box-shadow: 0 18px 45px rgba(35,48,65,.10);
  background: var(--color-light-gray);
}

.contact-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-address-box {
  position: fixed;
  right: var(--safe-x);
  bottom: calc(var(--footer-height) + 54px);
  z-index: 20;
  max-width: min(460px, calc(100vw - (2 * var(--safe-x))));
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--color-light-gray);
  color: var(--color-dark-gray);
  border: 1px solid rgba(17,24,39,.10);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  text-align: right;
}

@media (max-width: 920px) {
  .contact-map-page {
    padding-left: 20px;
    padding-right: 20px;
  }
  .contact-address-box {
    right: 20px;
    left: 20px;
    max-width: none;
    bottom: calc(var(--footer-height) + 30px);
  }
}

.contact-address-box a{color:var(--color-blue);font-weight:700;text-decoration:none;}
.contact-address-box a:hover{text-decoration:underline;}

.scroll-arrow {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  color: var(--color-blue);
  font-weight: 900;
  animation: scrollArrowPulse 1.6s ease-in-out infinite;
}
@keyframes scrollArrowPulse {
  0%, 100% { transform: translateY(0); opacity: .75; }
  50% { transform: translateY(4px); opacity: 1; }
}
.static-copy {
  color: #3E4A5C;
  font-size: 18px;
  line-height: 1.65;
}
.home-cta-info strong a {
  color: var(--color-dark-gray);
  text-decoration: none;
}
.home-cta-info strong a:hover { color: var(--color-blue); }
.linkedin-inline { display: inline-flex; align-items: center; gap: 10px; }
.linkedin-icon {
  width: 20px; height: 20px; border-radius: 4px; background: #0A66C2; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; line-height: 1; font-weight: 900; font-family: 'Inter', Arial, Helvetica, sans-serif;
}
.contact-address-box > div { margin: 0 0 4px; }
.contact-address-box > div:last-child { margin-bottom: 0; }

/* V18: right description card spacing */
.right-card-desc { line-height: 1.58; font-weight: 600; }
.right-card { padding: 15px 18px; }

/* ===================== MODERN DOKUNUŞLAR (V20) ===================== */

/* Sayfa geçişi fade */
@keyframes pageFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.app.page-fade { animation: pageFadeIn .32s ease-out both; }

/* Scroll fade-in reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.reveal-in { opacity: 1; transform: none; }

/* Kart hover: hafif büyüme + gölge */
.static-block,
.dropdown-card,
.dropdown-intro,
.special-description-card {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, opacity .55s ease;
}
.static-block:hover { transform: translateY(-3px) scale(1.005); box-shadow: 0 26px 60px rgba(35,48,65,.16); }
.dropdown-card:hover, .dropdown-intro:hover { transform: translateY(-2px) scale(1.01); box-shadow: 0 10px 26px rgba(23,36,55,.14); }

/* Görsel lazy-load + blur açılış */
.img-blur-load { filter: blur(14px); opacity: .55; transition: filter .5s ease, opacity .5s ease; }
.img-blur-load.img-loaded { filter: blur(0); opacity: 1; }

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
  .app.page-fade, .reveal { animation: none; transition: none; opacity: 1; transform: none; }
  .img-blur-load { filter: none; opacity: 1; }
}
/* ===================== TEKLIF AL FORMU ===================== */
.quote-block { max-width: 760px; }
.quote-form { display: grid; gap: 16px; margin-top: 8px; }
.quote-label { display: grid; gap: 6px; font-size: 13px; font-weight: 800; letter-spacing: .04em; color: var(--color-dark-gray); }
.quote-input {
  width: 100%;
  border: 1px solid rgba(17,24,39,.16);
  border-radius: 12px;
  background: var(--color-white);
  color: var(--color-dark-gray);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 14px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.quote-input:focus { outline: none; border-color: var(--color-blue); box-shadow: 0 0 0 3px rgba(0,117,187,.14); }
.quote-textarea { resize: vertical; min-height: 130px; }
.quote-file { padding: 10px 12px; background: var(--color-light-gray); cursor: pointer; }
.quote-submit { border: 0; cursor: pointer; justify-self: start; }
.quote-submit:disabled { opacity: .55; cursor: not-allowed; }
.quote-alert { padding: 13px 16px; border-radius: 12px; font-size: 14px; font-weight: 700; line-height: 1.4; }
.quote-alert-err { background: #FFF1F2; border: 1px solid #FCA5A5; color: #7F1D1D; }
.quote-alert-ok { background: #ECFDF5; border: 1px solid #6EE7B7; color: #065F46; }
.quote-mailnote { margin: 6px 0 0; font-size: 13px; color: #3E4A5C; }

/* ===================== YAN YANA STATIK BLOK (görsel sol, metin sağ) ===================== */
.static-block-side {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1.15fr);
  align-items: stretch;
}
.static-block-side .static-media-frame {
  height: 100%;
  min-height: 340px;
  border-bottom: 0;
  border-right: 1px solid rgba(17,24,39,.08);
  padding: 18px;
}
.static-block-side .static-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.static-block-side .static-copy {
  color: #3E4A5C;
  font-size: 17px;
  line-height: 1.7;
}
@media (max-width: 860px) {
  .static-block-side { grid-template-columns: 1fr; }
  .static-block-side .static-media-frame {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid rgba(17,24,39,.08);
  }
}

/* ===================== SOLDA ÜST ÜSTE GÖRSELLER (StepViewer vb.) ===================== */
.static-media-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  place-items: center;
  height: auto;
}
.static-media-stack img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}
.static-block-side .static-media-stack { min-height: 420px; }
@media (max-width: 860px) {
  .static-media-stack { min-height: 0; }
  .static-block-side .static-media-stack { min-height: 0; }
  .static-media-stack img { max-height: 260px; }
}

/* ===================== DÖNEN GÖRSEL (custom software) + FOOTER COPYRIGHT ===================== */
.static-media-rotator { position: relative; }
.static-media-rotator .rotator-img {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: calc(100% - 36px);
  max-height: calc(100% - 36px);
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}
.static-media-rotator .rotator-img.rotator-active { opacity: 1; }
.static-block-side .static-media-rotator { min-height: 380px; }

.bottom-bar { position: fixed; inset: auto 0 0 0; }
.bottom-bar .footer-copy {
  position: absolute;
  right: var(--safe-x);
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  opacity: .75;
  letter-spacing: .04em;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .bottom-bar .footer-copy { position: static; transform: none; display: block; font-size: 9px; margin-left: 10px; }
}

/* ===================== DİKEY AÇILIR MENÜ (nav dropdown) ===================== */
.dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}
.dropdown-list .dropdown-intro,
.dropdown-list .dropdown-item {
  width: 100%;
  flex: none;
  max-height: none;
  min-height: 0;
  padding: 10px 14px;
}
.dropdown-list .dropdown-intro { border-bottom: 1px solid rgba(17,24,39,.10); border-radius: 12px; }
.dropdown-list .dropdown-card-desc { -webkit-line-clamp: 2; }

/* V32 mobile fit: home page fits phone screens */
@media (max-width: 620px) {
  .dynamic-stage { min-height: 0; padding-top: calc(var(--header-height) + 6px); padding-bottom: 8px; }
  .dynamic-image-wrap { height: auto; max-height: 40vh; padding: 10px 14px; }
  .dynamic-media { max-width: 92vw; max-height: 36vh; border-radius: 18px; }
  .right-card { width: calc(100% - 28px); margin: 10px 14px 20px; padding: 12px 14px; }
  .right-card-label { font-size: 10px; letter-spacing: .22em; margin-bottom: 5px; }
  .right-card-desc { font-size: 13.5px; line-height: 1.4; }
  .section-title-link { font-size: 26px; line-height: 1.15; }
  .section-visual { min-height: 200px; }
  .section-visual img { border-radius: 18px; }
  .content-section, .content-section.image-left, .content-section.text-left { gap: 16px; }
  .section-copy p, .section-extra { font-size: 14px; }
  .home-cta-copy h2 { font-size: 26px; }
}

/* V33 mobile: tap-to-advance scenes, show scene counter + tap hint */
@media (max-width: 920px) {
  .dynamic-stage { cursor: pointer; }
  .scene-progress {
    display: block;
    position: absolute;
    top: calc(var(--header-height) + 10px);
    right: 16px;
    left: auto;
    bottom: auto;
    z-index: 4;
  }
  .progress-line { display: none; }
  .progress-count {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    color: var(--color-blue);
    background: rgba(255,255,255,.85);
    border: 1px solid rgba(0,117,187,.25);
    border-radius: 999px;
    padding: 4px 10px;
  }
  .scroll-hint { display: none; }
}

/* V34 mobile: blue bottom info bar fits phone screens */
@media (max-width: 760px) {
  :root { --footer-height: 54px; }
  .bottom-bar {
    white-space: normal;
    flex-wrap: wrap;
    font-size: 10.5px;
    letter-spacing: .02em;
    line-height: 1.3;
    padding: 6px 12px;
    row-gap: 2px;
  }
  .bottom-bar .footer-copy { font-size: 9px; margin-left: 8px; white-space: normal; }
}

/* V36 mobile: language switch visible in top bar next to menu button */
@media (max-width: 620px) {
  .language-toggle {
    display: flex;
    height: 34px;
    padding: 2px;
    gap: 2px;
  }
  .lang-pill {
    min-width: 30px;
    height: 26px;
    padding: 0 8px;
    font-size: 11px;
  }
  .header-actions { gap: 6px; }
  .logo-button img { width: 148px; }
  .hamburger { width: 42px; height: 42px; }
  .hamburger span { left: 11px; width: 20px; }
}

/* ===================== SÜREKLİ KAYAN REFERANS ŞERİDİ (ref1 - ref10) ===================== */
:root {
  --reference-strip-height: 88px;
  --reference-frame-width: clamp(126px, 11vw, 188px);
  --reference-frame-gap: 14px;
}

.reference-filmstrip {
  position: fixed;
  left: 0;
  right: 0;
  bottom: var(--footer-height);
  height: var(--reference-strip-height);
  z-index: 108;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.24), rgba(238,245,249,.58));
  border-top: 1px solid rgba(0,117,187,.16);
  box-shadow: 0 -8px 24px rgba(7,17,31,.055);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.reference-filmstrip-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
}

.reference-filmstrip-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: max-content;
  height: 100%;
  will-change: transform;
  animation: referenceFilmstripMoveRightToLeft 46s linear infinite;
}

.reference-filmstrip-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: var(--reference-frame-gap);
  height: 100%;
  padding: 8px var(--reference-frame-gap) 8px 0;
}

/* Sade görsel hücresi: film deliği, koyu çerçeve veya film kenarı yoktur. */
.reference-frame {
  position: relative;
  flex: 0 0 var(--reference-frame-width);
  width: var(--reference-frame-width);
  height: calc(var(--reference-strip-height) - 16px);
  overflow: hidden;
  border: 0;
  border-radius: 9px;
  background: transparent;
  box-shadow: none;
  opacity: .76;
  transform: translateZ(0);
}

.reference-frame::before,
.reference-frame::after {
  content: none;
  display: none;
}

.reference-frame-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 9px;
  box-shadow: none;
  opacity: 0;
  filter: saturate(.88) contrast(.97);
  transition: opacity .35s ease;
  user-select: none;
}

.reference-frame.is-loaded .reference-frame-image { opacity: .90; }
.reference-frame.is-missing { display: none; }

/* İki aynı grup kullanıldığı için 0 konumundan -50% konumuna geçiş
   görselleri kesintisiz biçimde sağdan sola taşır. */
@keyframes referenceFilmstripMoveRightToLeft {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* Sabit kayan şerit sayfa içeriğini kapatmasın. */
.dynamic-stage {
  height: calc(100vh - var(--header-height) - var(--footer-height) - var(--reference-strip-height));
}
.section-index {
  padding-bottom: calc(var(--footer-height) + var(--reference-strip-height) + 92px);
}
.static-page {
  padding-bottom: calc(var(--footer-height) + var(--reference-strip-height) + 70px);
}
.home-cta {
  margin-bottom: calc(var(--footer-height) + var(--reference-strip-height) + 32px);
}
.contact-map-page {
  min-height: calc(100vh - var(--header-height) - var(--footer-height) - var(--reference-strip-height));
  padding-bottom: calc(var(--footer-height) + var(--reference-strip-height) + 18px);
}
.contact-map-frame {
  min-height: calc(100vh - var(--header-height) - var(--footer-height) - var(--reference-strip-height) - 36px);
}
.contact-address-box {
  bottom: calc(var(--footer-height) + var(--reference-strip-height) + 22px);
}

@media (max-width: 920px) {
  :root {
    --reference-strip-height: 68px;
    --reference-frame-width: 108px;
    --reference-frame-gap: 9px;
  }
  .reference-filmstrip-track { animation-duration: 34s; }
  .reference-filmstrip-group { padding-top: 6px; padding-bottom: 6px; }
  .reference-frame {
    height: calc(var(--reference-strip-height) - 12px);
    border-radius: 7px;
  }
  .reference-frame-image { border-radius: 7px; }
  .dynamic-stage {
    min-height: calc(100vh - var(--header-height) - var(--footer-height) - var(--reference-strip-height));
  }
  .contact-address-box {
    bottom: calc(var(--footer-height) + var(--reference-strip-height) + 16px);
  }
}

@media (max-width: 620px) {
  :root {
    --reference-strip-height: 60px;
    --reference-frame-width: 92px;
    --reference-frame-gap: 8px;
  }
  .reference-filmstrip-track { animation-duration: 30s; }
}

/* Referans şeridi istenen sürekli hareketi korur.
   Diğer sayfa animasyonlarının azaltılması bu şeridi durdurmaz. */
@media (prefers-reduced-motion: reduce) {
  .reference-filmstrip-track {
    animation-name: referenceFilmstripMoveRightToLeft;
    animation-play-state: running;
  }
}


/* ===================== ANA SAYFA DUYURUSU + TAM EKRAN GÖRSEL ===================== */
.home-stage .dynamic-image-wrap {
  padding-right: clamp(455px, 34vw, 590px);
}

.home-stage .dynamic-media {
  max-width: min(58vw, 940px);
}

.home-announcement-card {
  position: absolute;
  top: clamp(22px, 3vh, 38px);
  right: clamp(24px, 3.6vw, 64px);
  z-index: 7;
  width: clamp(320px, 27vw, 445px);
  padding: 20px;
  border: 1px solid rgba(17,24,39,.13);
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 22px 54px rgba(35,48,65,.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: width .28s ease, padding .28s ease, box-shadow .22s ease;
}

.home-announcement-toggle {
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.home-announcement-title {
  margin: 0;
  color: var(--color-blue);
  font-size: clamp(19px, 1.45vw, 24px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.home-announcement-toggle-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-blue);
  color: #FFFFFF;
  font-size: 25px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0,117,187,.22);
  transition: transform .2s ease, background .2s ease;
}

.home-announcement-toggle:hover .home-announcement-toggle-icon,
.home-announcement-toggle:focus-visible .home-announcement-toggle-icon {
  transform: scale(1.06);
  background: #005f98;
}

.home-announcement-toggle:focus-visible {
  outline: 3px solid rgba(0,117,187,.2);
  outline-offset: 6px;
  border-radius: 8px;
}

.home-announcement-content {
  display: grid;
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 14px;
  overflow: hidden;
  transition: grid-template-rows .28s ease, opacity .2s ease, margin-top .28s ease;
}

.home-announcement-card.is-collapsed {
  width: clamp(270px, 21vw, 345px);
  padding: 16px 18px;
}

.home-announcement-card.is-collapsed .home-announcement-content {
  grid-template-rows: 0fr;
  opacity: 0;
  margin-top: 0;
  pointer-events: none;
}

.home-announcement-content-inner {
  min-height: 0;
  overflow: hidden;
}

.home-announcement-list[hidden],
.home-announcement-detail[hidden] {
  display: none !important;
}

.home-announcement-list {
  display: grid;
  gap: 10px;
}

.home-announcement-list-item {
  appearance: none;
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(17,24,39,.11);
  border-radius: 14px;
  background: var(--color-light-gray);
  color: var(--color-dark-gray);
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.home-announcement-list-item:hover,
.home-announcement-list-item:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0,117,187,.46);
  background: #FFFFFF;
  box-shadow: 0 10px 24px rgba(35,48,65,.11);
  outline: none;
}

.home-announcement-list-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-blue);
  box-shadow: 0 0 0 4px rgba(0,117,187,.10);
}

.home-announcement-list-name {
  min-width: 0;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: .025em;
}

.home-announcement-list-date {
  color: #566171;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.home-announcement-detail {
  animation: announcementDetailIn .22s ease-out both;
}

@keyframes announcementDetailIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: none; }
}

.home-announcement-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(17,24,39,.10);
}

.home-announcement-detail-label {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.home-announcement-detail-label strong {
  color: var(--color-dark-gray);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: .025em;
}

.home-announcement-detail-label time {
  color: #64748B;
  font-size: 11px;
  font-weight: 800;
}

.home-announcement-back {
  appearance: none;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--color-blue);
  color: #FFFFFF;
  box-shadow: 0 8px 18px rgba(0,117,187,.22);
  font-size: 25px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}

.home-announcement-back:hover,
.home-announcement-back:focus-visible {
  transform: scale(1.07);
  background: #005f98;
  outline: none;
}

.home-announcement-card.is-collapsed .home-announcement-content-inner {
  min-height: 0;
}

.home-stage.announcement-collapsed .dynamic-image-wrap {
  padding-right: var(--safe-x);
}

.home-stage.announcement-collapsed .dynamic-media {
  max-width: min(calc(100vw - (2 * var(--safe-x))), 1480px);
}

.home-announcement-media {
  appearance: none;
  width: 100%;
  min-height: 235px;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 16px;
  background: var(--color-light-gray);
  cursor: zoom-in;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.home-announcement-media:hover,
.home-announcement-media:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0,117,187,.48);
  box-shadow: 0 14px 30px rgba(35,48,65,.13);
  outline: none;
}

.home-announcement-media img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.home-announcement-hint {
  margin: 11px 0 0;
  color: #566171;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
}

.home-announcement-card.is-missing .home-announcement-media,
.home-announcement-card.is-missing .home-announcement-hint {
  display: none;
}

body.announcement-modal-open {
  overflow: hidden !important;
}

.announcement-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 44px);
  background: rgba(7,17,31,.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, visibility .18s ease;
}

.announcement-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.announcement-modal.is-closing {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.announcement-modal-panel {
  position: relative;
  width: min(96vw, 1500px);
  height: min(92vh, 980px);
  display: grid;
  place-items: center;
}

.announcement-modal-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  background: #FFFFFF;
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
}

.announcement-modal-close {
  appearance: none;
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 50%;
  background: var(--color-blue);
  color: #FFFFFF;
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}

.announcement-modal-close:hover,
.announcement-modal-close:focus-visible {
  transform: scale(1.08);
  background: #005f98;
  outline: none;
}

@media (max-width: 1280px) and (min-width: 921px) {
  .home-stage .dynamic-image-wrap {
    padding-right: 390px;
  }
  .home-stage .dynamic-media {
    max-width: 57vw;
  }
  .home-announcement-card {
    right: 24px;
    width: 350px;
    padding: 17px;
  }
  .home-announcement-media {
    min-height: 205px;
  }
}

@media (max-width: 920px) {
  .home-stage {
    padding-bottom: calc(var(--reference-strip-height) + 22px);
  }
  .home-stage .dynamic-image-wrap {
    padding-right: 22px;
  }
  .home-stage .dynamic-media {
    max-width: 94vw;
  }
  .home-stage .right-card {
    margin-bottom: 14px;
  }
  .home-announcement-card {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% - 40px);
    margin: 0 20px;
    padding: 18px;
  }
  .home-announcement-card.is-collapsed {
    width: calc(100% - 40px);
    padding: 14px 18px;
  }
  .home-announcement-media {
    min-height: 250px;
    aspect-ratio: 16 / 10;
  }
  .announcement-modal {
    padding: 14px;
  }
  .announcement-modal-panel {
    width: 100%;
    height: 92vh;
  }
  .announcement-modal-close {
    top: 2px;
    right: 2px;
    width: 48px;
    height: 48px;
    font-size: 31px;
  }
}

@media (max-width: 620px) {
  .home-stage {
    padding-bottom: calc(var(--reference-strip-height) + 14px);
  }
  .home-stage .dynamic-image-wrap {
    padding-right: 14px;
  }
  .home-announcement-card {
    width: calc(100% - 28px);
    margin: 0 14px;
    padding: 14px;
    border-radius: 17px;
  }
  .home-announcement-card.is-collapsed {
    width: calc(100% - 28px);
    padding: 12px 14px;
  }
  .home-announcement-toggle-icon {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    font-size: 22px;
  }
  .home-announcement-title {
    font-size: 17px;
  }
  .home-announcement-list-item {
    grid-template-columns: 8px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
  }
  .home-announcement-list-date {
    grid-column: 2;
    margin-top: -3px;
  }
  .home-announcement-detail-head {
    gap: 10px;
  }
  .home-announcement-back {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    font-size: 22px;
  }
  .home-announcement-media {
    min-height: 175px;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }
  .home-announcement-hint {
    font-size: 11px;
  }
  .announcement-modal-image {
    border-radius: 10px;
  }
  .announcement-modal-close {
    width: 44px;
    height: 44px;
    font-size: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .announcement-modal,
  .home-announcement-media,
  .announcement-modal-close,
  .home-announcement-content,
  .home-announcement-toggle-icon,
  .home-announcement-list-item,
  .home-announcement-back,
  .home-announcement-detail {
    transition: none;
    animation: none;
  }
}



/* V40: Duyuru satırına tıklayarak görseli aç / kapat */
.home-announcement-list-item[aria-expanded="true"] {
  border-color: rgba(0,117,187,.48);
  background: #FFFFFF;
  box-shadow: 0 10px 24px rgba(35,48,65,.11);
}

.home-announcement-list-item[aria-expanded="true"] .home-announcement-list-marker {
  box-shadow: 0 0 0 5px rgba(0,117,187,.15);
}

.home-announcement-list .home-announcement-detail {
  margin-top: 2px;
  padding-top: 2px;
}

.home-announcement-list .home-announcement-detail[hidden] {
  display: none !important;
}


/* V41: Duyurular başlığı sabit; yalnızca duyuru satırı görseli açıp kapatır */
.home-announcement-heading {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(17,24,39,.10);
}

.home-announcement-heading .home-announcement-title {
  display: block;
}

.home-announcement-content {
  margin-top: 14px;
}

.home-announcement-toggle,
.home-announcement-toggle-icon {
  display: none !important;
}

.home-announcement-card.is-collapsed {
  width: clamp(320px, 27vw, 445px);
  padding: 20px;
}

.home-announcement-card.is-collapsed .home-announcement-content {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 14px;
  pointer-events: auto;
}

.home-stage.announcement-collapsed .dynamic-image-wrap {
  padding-right: clamp(455px, 34vw, 590px);
}

.home-stage.announcement-collapsed .dynamic-media {
  max-width: min(58vw, 940px);
}

@media (max-width: 920px) {
  .home-announcement-card.is-collapsed {
    width: calc(100% - 40px);
    padding: 18px;
  }
}

@media (max-width: 620px) {
  .home-announcement-card.is-collapsed {
    width: calc(100% - 28px);
    padding: 15px;
  }
}


/* V42: Duyurular başlığında + / − ile bölüm açma-kapama */
.home-announcement-heading {
  min-height: 38px;
  padding: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.home-announcement-toggle {
  display: flex !important;
}

.home-announcement-toggle-icon {
  display: grid !important;
}

.home-announcement-card.is-collapsed {
  width: clamp(270px, 21vw, 345px);
  padding: 16px 18px;
}

.home-announcement-card.is-collapsed .home-announcement-content {
  grid-template-rows: 0fr;
  opacity: 0;
  margin-top: 0;
  pointer-events: none;
}

.home-stage.announcement-collapsed .dynamic-image-wrap {
  padding-right: var(--safe-x);
}

.home-stage.announcement-collapsed .dynamic-media {
  max-width: min(calc(100vw - (2 * var(--safe-x))), 1480px);
}

@media (max-width: 920px) {
  .home-announcement-card.is-collapsed {
    width: calc(100% - 40px);
    padding: 14px 18px;
  }
  .home-stage.announcement-collapsed .dynamic-image-wrap {
    padding-right: 22px;
  }
  .home-stage.announcement-collapsed .dynamic-media {
    max-width: 94vw;
  }
}

@media (max-width: 620px) {
  .home-announcement-card.is-collapsed {
    width: calc(100% - 28px);
    padding: 12px 14px;
  }
  .home-stage.announcement-collapsed .dynamic-image-wrap {
    padding-right: 14px;
  }
}


/* V43: Telefonlarda duyuru satırı doğrudan tam ekran görseli açar */
@media (max-width: 620px) {
  .home-announcement-detail,
  .home-announcement-list .home-announcement-detail,
  .home-announcement-list .home-announcement-detail:not([hidden]) {
    display: none !important;
  }

  .home-announcement-list-item,
  .home-announcement-list-item[aria-expanded="true"] {
    grid-template-columns: 8px minmax(0, 1fr);
    align-items: center;
    min-height: 58px;
    border-color: rgba(17,24,39,.10);
    background: rgba(255,255,255,.88);
    box-shadow: none;
  }

  .home-announcement-list-item:active {
    transform: scale(.985);
  }

  .home-announcement-list-date {
    grid-column: 2;
    margin-top: -2px;
  }

  .announcement-modal {
    padding: max(10px, env(safe-area-inset-top)) 10px max(10px, env(safe-area-inset-bottom));
  }

  .announcement-modal-panel {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
  }

  .announcement-modal-image {
    max-width: 100%;
    max-height: calc(100dvh - 20px);
    object-fit: contain;
  }

  .announcement-modal-close {
    top: max(8px, env(safe-area-inset-top));
    right: 8px;
    z-index: 3;
  }
}


/* ===================== HAKKIMIZDA > DUYURULARIMIZ SAYFASI ===================== */
.announcements-page {
  min-height: calc(100vh - var(--header-height) - var(--footer-height) - var(--reference-strip-height));
  padding: calc(var(--header-height) + 44px) var(--safe-x) calc(var(--footer-height) + var(--reference-strip-height) + 62px);
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F9FC 100%);
}

.announcements-page-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.announcements-page-heading {
  margin: 0 0 18px;
  color: var(--color-blue);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.announcement-page-card {
  width: 100%;
  border: 1px solid rgba(17,24,39,.11);
  border-radius: 20px;
  background: #FFFFFF;
  box-shadow: 0 18px 46px rgba(35,48,65,.10);
  overflow: hidden;
}

.announcement-page-item {
  appearance: none;
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 15px;
  padding: 18px 22px;
  border: 0;
  background: #FFFFFF;
  color: var(--color-dark-gray);
  text-align: left;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}

.announcement-page-item:hover,
.announcement-page-item:focus-visible {
  background: var(--color-light-gray);
  outline: none;
}

.announcement-page-marker {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-blue);
  box-shadow: 0 0 0 5px rgba(0,117,187,.10);
}

.announcement-page-item-title {
  font-size: clamp(17px, 1.65vw, 23px);
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: .015em;
}

.announcement-page-caret {
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--color-blue);
  border-bottom: 2px solid var(--color-blue);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .22s ease;
}

.announcement-page-card.is-open .announcement-page-caret {
  transform: rotate(225deg) translate(-1px, -1px);
}

.announcement-page-detail[hidden] {
  display: none !important;
}

.announcement-page-detail {
  padding: 0 22px 24px;
  border-top: 1px solid rgba(17,24,39,.08);
  animation: announcementPageDetailIn .24s ease-out both;
}

@keyframes announcementPageDetailIn {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: none; }
}

.announcement-page-media {
  appearance: none;
  width: 100%;
  min-height: 460px;
  max-height: 70vh;
  display: grid;
  place-items: center;
  margin-top: 22px;
  padding: clamp(14px, 2vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 18px;
  background: var(--color-light-gray);
  cursor: zoom-in;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.announcement-page-media:hover,
.announcement-page-media:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0,117,187,.46);
  box-shadow: 0 18px 40px rgba(35,48,65,.13);
  outline: none;
}

.announcement-page-media img {
  display: block;
  max-width: 100%;
  max-height: calc(70vh - 56px);
  width: auto;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  background: #FFFFFF;
  border-radius: 12px;
}

.announcement-page-hint {
  margin: 12px 0 0;
  color: #566171;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}

.announcement-page-card.is-missing .announcement-page-media,
.announcement-page-card.is-missing .announcement-page-hint {
  display: none;
}

@media (max-width: 920px) {
  .announcements-page {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: calc(var(--header-height) + 28px);
  }
  .announcement-page-media {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .announcements-page {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: calc(var(--header-height) + 20px);
  }
  .announcements-page-heading {
    margin-bottom: 12px;
    font-size: 10px;
  }
  .announcement-page-card {
    border-radius: 16px;
  }
  .announcement-page-item {
    min-height: 62px;
    grid-template-columns: 8px minmax(0, 1fr) 15px;
    gap: 11px;
    padding: 15px 14px;
  }
  .announcement-page-item-title {
    font-size: 15px;
  }
  .announcement-page-detail {
    padding: 0 12px 16px;
  }
  .announcement-page-media {
    min-height: 250px;
    margin-top: 12px;
    padding: 8px;
    border-radius: 13px;
  }
  .announcement-page-media img {
    max-height: 64vh;
    border-radius: 8px;
  }
  .announcement-page-hint {
    font-size: 11px;
  }
}
