/* ================================================================
   MYD — Mikro-Yeterlilikler Derneği
   styles.css — Global Stylesheet
   ================================================================ */

/* ── 1. Custom Properties ─────────────────────────────────────── */
:root {
  /* Brand palette */
  --myd-blue: #1e81b0;
  --myd-cream: #eeeee4;
  --myd-orange: #e28743;
  --myd-sand: #eab676;
  --myd-sky: #76b5c5;
  --myd-brown-dark: #21130d;
  --myd-brown: #873e23;
  --myd-sky-light: #abdbe3;
  --myd-navy: #063970;
  --myd-deep-blue: #154c79;

  /* Semantic tokens */
  --background: var(--myd-cream);
  --foreground: var(--myd-brown-dark);
  --primary: var(--myd-navy);
  --primary-soft: var(--myd-deep-blue);
  --accent: var(--myd-orange);
  --accent-soft: var(--myd-sand);
  --info: var(--myd-blue);
  --surface-blue: var(--myd-sky-light);

  /* Typography */
  --font-heading:
    "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --container-max: 1200px;
  --container-padding: 1.5rem;
  --radius: 0.5rem;
  --radius-lg: 1rem;

  /* Shadows */
  --shadow-sm:
    0 1px 4px rgba(6, 57, 112, 0.07), 0 1px 2px rgba(6, 57, 112, 0.04);
  --shadow-md:
    0 4px 16px rgba(6, 57, 112, 0.1), 0 2px 6px rgba(6, 57, 112, 0.06);
  --shadow-lg:
    0 10px 30px rgba(6, 57, 112, 0.13), 0 4px 12px rgba(6, 57, 112, 0.07);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-normal: 250ms ease;
  --t-slow: 400ms ease;

  /* Text colours */
  --text-secondary: rgba(33, 19, 13, 0.68);

  /* Header */
  --header-h: 72px;
}

/* ── 2. Reset & Base ──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--foreground);
  background-color: var(--background);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}
p {
  line-height: 1.75;
}

/* ── 3. Typography ────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--primary);
}
h1 {
  font-size: clamp(2.1rem, 5vw, 3.25rem);
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

/* ── 4. Layout Utilities ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}
.section {
  padding-block: var(--space-4xl);
}
.section--sm {
  padding-block: var(--space-3xl);
}
.section--lg {
  padding-block: 5rem;
}
.section--alt {
  background: rgba(171, 219, 227, 0.12);
}
.section--white {
  background: white;
}

/* ── 5. Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(238, 238, 228, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(6, 57, 112, 0.09);
  transition: box-shadow var(--t-normal);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}
.site-header > .container {
  height: 100%;
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  flex-shrink: 0;
}
.site-header__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.site-header__brand-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  max-width: 170px;
}

/* Desktop nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}
.site-nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  padding-block: var(--space-xs);
  position: relative;
  transition: color var(--t-fast);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--t-normal);
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link.active::after {
  background: var(--primary);
}

/* ── 5b. Language Switcher ────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(6, 57, 112, 0.18);
  border-radius: 6px;
  padding: 3px;
  background: rgba(6, 57, 112, 0.03);
}
.lang-btn {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 4px;
  color: var(--primary-soft);
  transition: all var(--t-fast);
}
.lang-btn.active,
.lang-btn:hover {
  background: var(--primary);
  color: white;
}

/* ── 5c. Header Actions ───────────────────────────────────────── */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

/* ── 5d. Mobile Menu Button ───────────────────────────────────── */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius);
  transition: background var(--t-fast);
}
.mobile-menu-btn:hover {
  background: rgba(6, 57, 112, 0.07);
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--t-normal);
}
.mobile-menu-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── 5e. Mobile Menu ──────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--background);
  z-index: 99;
  padding: var(--space-xl) var(--container-padding);
  overflow-y: auto;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform var(--t-normal),
    opacity var(--t-normal);
}
.mobile-menu.is-open {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: var(--space-xl);
}
.mobile-menu__link {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.85rem var(--space-lg);
  border-radius: var(--radius);
  color: var(--foreground);
  border-left: 3px solid transparent;
  transition: all var(--t-fast);
}
.mobile-menu__link:hover,
.mobile-menu__link.active {
  background: rgba(6, 57, 112, 0.06);
  color: var(--primary);
  border-left-color: var(--accent);
}
.mobile-menu__footer {
  border-top: 1px solid rgba(6, 57, 112, 0.11);
  padding-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* ── 6. Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--t-normal);
  min-height: 44px;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--primary-soft);
  border-color: var(--primary-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--accent {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.btn--accent:hover {
  background: #c97030;
  border-color: #c97030;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-1px);
}

.btn--outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
}

.btn--sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
  min-height: 36px;
}
.btn--lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
  min-height: 50px;
}
.btn--full {
  width: 100%;
}

/* ── 7. Section Heading ───────────────────────────────────────── */
.section-heading {
  margin-bottom: var(--space-3xl);
}
.section-heading--center {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-3xl);
}

.section-heading__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.section-heading__label::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-heading__title {
  color: var(--primary);
  margin-bottom: var(--space-md);
}
.section-heading__subtitle {
  font-size: 1.02rem;
  color: rgba(33, 19, 13, 0.7);
  line-height: 1.75;
}

/* ── 8. Card (generic) ────────────────────────────────────────── */
.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(6, 57, 112, 0.07);
  transition:
    transform var(--t-normal),
    box-shadow var(--t-normal);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ── 9. Mission Card ──────────────────────────────────────────── */
.mission-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(6, 57, 112, 0.07);
  border-top: 3px solid var(--info);
  transition:
    transform var(--t-normal),
    box-shadow var(--t-normal);
}
.mission-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--accent);
}

.mission-card__num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--surface-blue);
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.mission-card__title {
  font-family: var(--font-heading);
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}
.mission-card__text {
  font-size: 0.875rem;
  color: rgba(33, 19, 13, 0.68);
  line-height: 1.65;
}

/* ── 10. Focus Card ───────────────────────────────────────────── */
.focus-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(6, 57, 112, 0.07);
  display: flex;
  gap: var(--space-lg);
  transition:
    transform var(--t-normal),
    box-shadow var(--t-normal);
}
.focus-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.focus-card__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(171, 219, 227, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.focus-card__title {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}
.focus-card__text {
  font-size: 0.875rem;
  color: rgba(33, 19, 13, 0.68);
  line-height: 1.65;
}

/* ── 11. Report Card ──────────────────────────────────────────── */
.report-cards-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.report-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(6, 57, 112, 0.07);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition:
    transform var(--t-normal),
    box-shadow var(--t-normal);
}
.report-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.report-card__org {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--info);
}
.report-card__title {
  font-family: var(--font-heading);
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
}
.report-card__text {
  font-size: 0.855rem;
  color: rgba(33, 19, 13, 0.68);
  line-height: 1.65;
  flex: 1;
}
.report-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--surface-blue);
  color: var(--primary-soft);
}
.report-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(6, 57, 112, 0.07);
  margin-top: auto;
}
.report-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.855rem;
  font-weight: 600;
  color: var(--info);
  transition: color var(--t-fast);
}
.report-card__link:hover {
  color: var(--primary);
}
.report-card__link svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ── 12. Trust Chips ──────────────────────────────────────────── */
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(171, 219, 227, 0.25);
  color: var(--primary-soft);
  border: 1px solid rgba(171, 219, 227, 0.55);
}
.trust-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--info);
  flex-shrink: 0;
}

/* ── 13. Hero ─────────────────────────────────────────────────── */
.hero {
  padding-top: calc(var(--space-4xl) + var(--space-xl));
  padding-bottom: var(--space-4xl);
  overflow: hidden;
  position: relative;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.hero__eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.hero__title {
  color: var(--primary);
  margin-bottom: var(--space-lg);
}
.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(33, 19, 13, 0.7);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  max-width: 510px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.hero__illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__illustration svg,
.hero__illustration img {
  width: 100%;
  max-width: 500px;
}

/* ── 14. Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-soft) 100%
  );
  padding: var(--space-4xl) 0 var(--space-3xl);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 80%,
      rgba(30, 129, 176, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(171, 219, 227, 0.1) 0%,
      transparent 50%
    );
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.page-hero__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--surface-blue);
  margin-bottom: var(--space-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.page-hero__label::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.page-hero__title {
  color: white;
  margin-bottom: var(--space-lg);
  font-size: clamp(2rem, 4vw, 2.9rem);
}
.page-hero__subtitle {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.78;
  max-width: 620px;
}

/* ── 15. Dark Section ─────────────────────────────────────────── */
.section--dark {
  background: var(--primary);
  color: white;
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 80% 50%,
    rgba(21, 76, 121, 0.55) 0%,
    transparent 65%
  );
}
.section--dark .section-heading__label {
  color: var(--accent-soft);
}
.section--dark .section-heading__title {
  color: white;
}
.section--dark .section-heading__subtitle {
  color: rgba(255, 255, 255, 0.76);
}
.section--dark p {
  color: rgba(255, 255, 255, 0.8);
}
.section--dark .editorial-text {
  color: rgba(255, 255, 255, 0.82);
}

/* ── 16. CTA Section ──────────────────────────────────────────── */
.cta-section {
  background: var(--primary);
  padding: var(--space-4xl) 0;
  text-align: center;
}
.cta-section__inner {
  max-width: 640px;
  margin-inline: auto;
}
.cta-section__title {
  color: white;
  margin-bottom: var(--space-lg);
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.cta-section__text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.78;
  margin-bottom: var(--space-2xl);
}

/* ── 17. Grids ────────────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

/* ── 18. Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.82);
  padding: var(--space-4xl) 0 var(--space-xl);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}
.site-footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.site-footer__logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.site-footer__brand-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}
.site-footer__desc {
  font-size: 0.855rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: var(--space-lg);
}
.site-footer__heading {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-soft);
  margin-bottom: var(--space-lg);
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer__link {
  font-size: 0.855rem;
  color: rgba(255, 255, 255, 0.68);
  transition: color var(--t-fast);
}
.site-footer__link:hover {
  color: white;
}
.site-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.855rem;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: var(--space-md);
}
.site-footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
}
.site-footer__contact-item a {
  color: rgba(255, 255, 255, 0.68);
  transition: color var(--t-fast);
}
.site-footer__contact-item a:hover {
  color: white;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  padding-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.site-footer__copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ── 19. FAQ Accordion ────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: white;
  border-radius: var(--radius);
  border: 1px solid rgba(6, 57, 112, 0.09);
  overflow: hidden;
}
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: background var(--t-fast);
}
.faq-item__trigger:hover {
  background: rgba(171, 219, 227, 0.13);
}
.faq-item__trigger[aria-expanded="true"] {
  background: rgba(6, 57, 112, 0.04);
}
.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform var(--t-normal);
}
.faq-item__trigger[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
}
.faq-item__panel {
  padding: 0 var(--space-xl);
  max-height: 0;
  overflow: hidden;
  transition:
    max-height var(--t-slow),
    padding-bottom var(--t-slow);
}
.faq-item__panel.is-open {
  display: block; /* override [hidden] attr */
  max-height: 500px;
  padding-bottom: var(--space-xl);
}
.faq-item__panel p {
  font-size: 0.935rem;
  color: rgba(33, 19, 13, 0.72);
  line-height: 1.78;
}

/* ── 20. Contact Form ─────────────────────────────────────────── */
.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}
.form-group {
  margin-bottom: var(--space-lg);
}
.form-label {
  display: block;
  font-size: 0.855rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem var(--space-md);
  border: 1.5px solid rgba(6, 57, 112, 0.16);
  border-radius: var(--radius);
  color: var(--foreground);
  background: #fafaf7;
  transition:
    border-color var(--t-fast),
    box-shadow var(--t-fast);
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--info);
  box-shadow: 0 0 0 3px rgba(30, 129, 176, 0.13);
}
.form-input.is-error,
.form-textarea.is-error {
  border-color: #dc2626;
}
.form-error {
  display: block;
  font-size: 0.78rem;
  color: #dc2626;
  margin-top: 4px;
}
.form-textarea {
  resize: vertical;
  min-height: 130px;
}
.form-notice {
  font-size: 0.8rem;
  color: rgba(33, 19, 13, 0.52);
  margin-top: var(--space-sm);
}
.form-success {
  display: none;
  padding: var(--space-lg);
  background: rgba(30, 129, 176, 0.09);
  border: 1px solid rgba(30, 129, 176, 0.22);
  border-radius: var(--radius);
  color: var(--primary-soft);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  margin-top: var(--space-md);
}
.form-success.is-visible {
  display: block;
}
.form-server-error {
  display: none;
  padding: var(--space-lg);
  background: rgba(220, 53, 69, 0.07);
  border: 1px solid rgba(220, 53, 69, 0.25);
  border-radius: var(--radius);
  color: #b91c1c;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  margin-top: var(--space-md);
  line-height: 1.55;
}
.form-server-error.is-visible {
  display: block;
}

/* ── 21. Contact Info Cards ───────────────────────────────────── */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.contact-info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(6, 57, 112, 0.07);
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
}
.contact-info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--surface-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.contact-info-card__title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.contact-info-card__heading {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.contact-info-card__text {
  font-size: 0.875rem;
  color: rgba(33, 19, 13, 0.7);
  line-height: 1.6;
}
.contact-info-card__value {
  font-size: 0.875rem;
  color: rgba(33, 19, 13, 0.7);
  line-height: 1.6;
}
.contact-info-card__text a,
a.contact-info-card__text,
a.contact-info-card__value {
  color: var(--info);
  transition: color var(--t-fast);
}
.contact-info-card__text a:hover,
a.contact-info-card__text:hover,
a.contact-info-card__value:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* ── 22. Map Card ─────────────────────────────────────────────── */
.map-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(6, 57, 112, 0.07);
  overflow: hidden;
}
.map-placeholder {
  background: rgba(171, 219, 227, 0.18);
  border-radius: var(--radius);
  padding: var(--space-3xl) var(--space-xl);
  margin-bottom: var(--space-xl);
  border: 2px dashed rgba(6, 57, 112, 0.13);
  color: rgba(6, 57, 112, 0.5);
}
.map-placeholder p {
  font-size: 0.9rem;
  margin-top: var(--space-md);
  line-height: 1.6;
}

/* ── 23. Board Placeholder ────────────────────────────────────── */
.board-placeholder {
  background: rgba(171, 219, 227, 0.12);
  border: 2px dashed rgba(6, 57, 112, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  text-align: center;
  color: rgba(6, 57, 112, 0.5);
}
.board-placeholder p {
  font-size: 0.92rem;
  margin-top: var(--space-sm);
}

/* ── 23b. Board Member Cards ──────────────────────────────────── */
.board-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

/* Centre lone last card when count is odd */
.board-grid > .board-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - var(--space-lg) / 2);
  justify-self: center;
}

.board-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(6, 57, 112, 0.07);
  overflow: hidden;
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease;
  transition:
    box-shadow var(--t-normal),
    transform var(--t-normal);
}
.board-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* ── Header row: avatar + name/role/toggle ── */
.board-card__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  cursor: default;
}
.board-card__photo-wrap {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(6, 57, 112, 0.12);
  background: #e8f0f8;
}
.board-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.board-card__photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8f0f8 0%, #c8ddf0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.board-card__info {
  flex: 1;
  min-width: 0;
}
.board-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.2rem;
  line-height: 1.25;
}
.board-card__role {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--info);
  margin: 0 0 0.8rem;
}

/* ── Toggle pill button ── */
.board-card__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.75rem;
  border: 1.5px solid rgba(6, 57, 112, 0.22);
  border-radius: 999px;
  background: transparent;
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition:
    background var(--t-normal),
    border-color var(--t-normal),
    color var(--t-normal);
  font-family: inherit;
  line-height: 1;
}
.board-card__toggle:hover {
  background: rgba(6, 57, 112, 0.05);
  border-color: rgba(6, 57, 112, 0.38);
}
.board-card.is-open .board-card__toggle {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.board-card__toggle-hide {
  display: none;
}
.board-card.is-open .board-card__toggle-show {
  display: none;
}
.board-card.is-open .board-card__toggle-hide {
  display: inline;
}
.board-card__toggle-icon {
  display: block;
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.board-card.is-open .board-card__toggle-icon {
  transform: rotate(180deg);
}

/* ── Active card ring ── */
.board-card.is-open {
  border-color: rgba(6, 57, 112, 0.35);
  box-shadow:
    0 0 0 3px rgba(6, 57, 112, 0.1),
    var(--shadow-md);
}

/* ── Collapsible bio panel (grid-row trick) — kept for fallback ── */
.board-card__bio-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 380ms cubic-bezier(0.4, 0, 0.2, 1);
}
.board-card.is-open .board-card__bio-panel {
  grid-template-rows: 1fr;
}

/* ── Board detail row (full-width bio expander between grid rows) ── */
.board-detail-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.board-detail-row.is-open {
  grid-template-rows: 1fr;
}
.board-detail-row__inner {
  overflow: hidden;
}
.board-detail-row__body {
  position: relative;
  margin-top: 0.5rem;
  padding: 1.75rem 2rem;
  background: #f0f6fc;
  border: 1px solid rgba(6, 57, 112, 0.12);
  border-radius: var(--radius-lg);
  font-size: 0.88rem;
  line-height: 1.78;
  color: var(--text-secondary);
}
/* Notch arrow pointing up toward the active card */
.board-detail-row__body::before {
  content: "";
  position: absolute;
  top: -8px;
  width: 14px;
  height: 14px;
  background: #f0f6fc;
  border-left: 1px solid rgba(6, 57, 112, 0.12);
  border-top: 1px solid rgba(6, 57, 112, 0.12);
  transform: translateX(-50%) rotate(45deg);
}
.board-detail-row[data-col="0"] .board-detail-row__body::before {
  left: 25%;
}
.board-detail-row[data-col="1"] .board-detail-row__body::before {
  left: 75%;
}
.board-card__bio-inner {
  overflow: hidden;
}
.board-card__bio {
  padding: 1.25rem 1.5rem 1.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.72;
  margin: 0;
  border-top: 1px solid rgba(6, 57, 112, 0.08);
}
@media (max-width: 480px) {
  .board-grid {
    grid-template-columns: 1fr;
  }
  /* Cancel the lone-card centering on single-column */
  .board-grid > .board-card:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
    justify-self: auto;
  }

  /* Reduce hero CTA button size so they don't wrap awkwardly */
  .hero__actions .btn--lg {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  /* Tighter section vertical spacing */
  .section {
    padding-block: var(--space-3xl);
  }

  /* Smaller page-hero padding */
  .page-hero {
    padding: var(--space-2xl) 0 var(--space-xl);
  }

  /* Board card header padding on mobile */
  .board-card__header {
    padding: 1.1rem;
    gap: 1rem;
  }
  .board-card__photo-wrap {
    width: 72px;
    height: 72px;
  }
  .board-card__bio {
    padding: 1rem 1.1rem 1.25rem;
  }
  /* Center notch arrow on single-column layout */
  .board-detail-row[data-col="0"] .board-detail-row__body::before,
  .board-detail-row[data-col="1"] .board-detail-row__body::before {
    left: 50%;
  }

  /* Footer column gap */
  .site-footer__grid {
    gap: var(--space-xl);
  }

  /* Mobile menu links: slightly smaller for very small screens */
  .mobile-menu__link {
    font-size: 0.97rem;
    padding: 0.75rem var(--space-md);
  }
}

/* ── 24. Principle Card ───────────────────────────────────────── */
.principle-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(6, 57, 112, 0.07);
  border-left: 4px solid var(--info);
  transition:
    transform var(--t-normal),
    box-shadow var(--t-normal);
}
.principle-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--accent);
}
.principle-card__title {
  font-family: var(--font-heading);
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}
.principle-card__text {
  font-size: 0.875rem;
  color: rgba(33, 19, 13, 0.68);
  line-height: 1.65;
}

/* ── 25. Roadmap / Timeline ───────────────────────────────────── */
.roadmap {
  position: relative;
  max-width: 700px;
  margin-inline: auto;
}
.roadmap::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--info), rgba(171, 219, 227, 0.4));
  border-radius: 2px;
}
.roadmap-step {
  display: flex;
  gap: var(--space-xl);
  padding-bottom: var(--space-2xl);
  position: relative;
}
.roadmap-step:last-child {
  padding-bottom: 0;
}
.roadmap-step__dot {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--info);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  z-index: 1;
}
.roadmap-step__content {
  padding-top: 10px;
  flex: 1;
}
.roadmap-step__title {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.roadmap-step__text {
  font-size: 0.875rem;
  color: rgba(33, 19, 13, 0.68);
  line-height: 1.65;
}

/* ── 26. Coming Soon Card ─────────────────────────────────────── */
.coming-soon-card {
  border: 2px dashed rgba(6, 57, 112, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  background: rgba(171, 219, 227, 0.07);
}
.coming-soon-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--accent-soft);
  color: var(--primary);
  margin-bottom: var(--space-md);
}
.coming-soon-card p {
  font-size: 0.92rem;
  color: rgba(33, 19, 13, 0.62);
}

/* ── 27. Working-area Card ────────────────────────────────────── */
.work-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(6, 57, 112, 0.07);
  transition:
    transform var(--t-normal),
    box-shadow var(--t-normal);
}
.work-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.work-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(30, 129, 176, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--info);
  margin-bottom: var(--space-md);
}
.work-card__title {
  font-family: var(--font-heading);
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}
.work-card__text {
  font-size: 0.855rem;
  color: rgba(33, 19, 13, 0.68);
  line-height: 1.65;
}

/* ── 28. Who We Are Side Cards ────────────────────────────────── */
.who-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius);
  background: rgba(171, 219, 227, 0.18);
  border-left: 3px solid var(--info);
}
.who-card + .who-card {
  margin-top: 10px;
}
.who-card__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--info);
  margin-top: 1px;
}
.who-card__text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.5;
}

/* ── 29. Editorial Text Block ─────────────────────────────────── */
.editorial-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(33, 19, 13, 0.78);
}
.editorial-text p + p {
  margin-top: var(--space-lg);
}

/* ── 30. Reveal Animation ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ── 31. Skip Link ────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: var(--space-sm);
  z-index: 9999;
  background: var(--primary);
  color: white;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  left: var(--space-md);
}

/* ── 32. Vision two-col ───────────────────────────────────────── */
.vision-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.vision-layout__visual {
  display: flex;
  justify-content: center;
}
.vision-layout__visual svg {
  max-width: 400px;
  width: 100%;
}

/* ── 33. Who-we-are two-col ───────────────────────────────────── */
.who-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.who-layout > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-sm);
}

/* ── 34. Reports preview grid ─────────────────────────────────── */
.reports-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* ── 35. Contact layout ───────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

/* ── 36. Utilities ────────────────────────────────────────────── */
.text-center {
  text-align: center;
}
.mt-sm {
  margin-top: var(--space-sm);
}
.mt-md {
  margin-top: var(--space-md);
}
.mt-lg {
  margin-top: var(--space-lg);
}
.mt-xl {
  margin-top: var(--space-xl);
}
.mt-2xl {
  margin-top: var(--space-2xl);
}
.mb-md {
  margin-bottom: var(--space-md);
}
.mb-xl {
  margin-bottom: var(--space-xl);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── 37. Responsive — Tablet (≤1023px) ───────────────────────── */
@media (max-width: 1023px) {
  .site-nav__links,
  .site-header__actions .btn {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .mobile-menu {
    display: block;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__subtitle {
    max-width: 100%;
  }
  .hero__actions {
    justify-content: center;
  }
  .trust-chips {
    justify-content: center;
  }
  .hero__illustration {
    display: none;
  }

  .who-layout {
    grid-template-columns: 1fr;
  }
  .vision-layout {
    grid-template-columns: 1fr;
  }
  .vision-layout__visual {
    display: none;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .reports-preview {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ── 38. Responsive — Mobile (≤767px) ────────────────────────── */
@media (max-width: 767px) {
  :root {
    --container-padding: 1rem;
    --space-4xl: 3.5rem;
  }

  .site-header__brand-name {
    display: none;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .mission-card--wide {
    grid-column: span 1;
  }
  .btn {
    white-space: normal;
    text-align: center;
  }
  .reports-preview {
    grid-template-columns: 1fr;
  }

  .focus-card {
    flex-direction: column;
  }

  .contact-form {
    padding: var(--space-xl) var(--space-lg);
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .roadmap::before {
    left: 23px;
  }
  .roadmap-step__dot {
    width: 48px;
    height: 48px;
    font-size: 0.8rem;
  }
  .roadmap-step {
    gap: var(--space-lg);
  }

  .page-hero {
    padding: var(--space-3xl) 0 var(--space-2xl);
  }
  .hero {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
  }

  .cta-section {
    padding: var(--space-3xl) 0;
  }

  /* Section headings: remove fixed max-width so centred headings fill the viewport */
  .section-heading--center {
    max-width: 100%;
  }

  /* Page-hero subtitle: allow it to fill full width */
  .page-hero__subtitle {
    max-width: 100%;
  }

  /* Decorative images inside who-layout on about page */
  .who-layout > div:last-child > img {
    display: none;
  }

  /* Prevent long words (e.g. Turkish compound words) from causing overflow */
  h1,
  h2,
  h3,
  h4 {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  /* Tighten card padding on very small screens */
  .card,
  .mission-card,
  .focus-card,
  .work-card,
  .principle-card {
    padding: var(--space-lg);
  }

  /* Stack focus-card content so icon stays left-aligned */
  .focus-card {
    align-items: flex-start;
  }

  /* Ensure contact form fields are full-width */
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    width: 100%;
  }

  /* Who-cards on homepage: make them readable when stacked */
  .who-card {
    flex-direction: row;
    align-items: center;
  }
}

/* ── 39. Large desktop (≥1280px) ─────────────────────────────── */
@media (min-width: 1280px) {
  :root {
    --container-max: 1240px;
  }
}

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS EXTENSION
   ══════════════════════════════════════════════════════════════ */

/* ── A1. Reveal Variants ─────────────────────────────────────── */
.reveal--left {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal--left.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--right {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal--right.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--scale {
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal--scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.reveal--fade {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.reveal--fade.is-visible {
  opacity: 1;
}

/* ── A2. Hero entrance keyframes ─────────────────────────────── */
@keyframes myd-fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes myd-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Hero elements start invisible; body.hero-ready triggers them */
.hero__eyebrow,
.hero__title,
.hero__subtitle,
.hero__actions,
.trust-chips,
.hero__illustration {
  opacity: 0;
}

body.hero-ready .hero__eyebrow {
  animation: myd-fade-up 0.55s ease 0.08s forwards;
}
body.hero-ready .hero__title {
  animation: myd-fade-up 0.65s ease 0.22s forwards;
}
body.hero-ready .hero__subtitle {
  animation: myd-fade-up 0.6s ease 0.38s forwards;
}
body.hero-ready .hero__actions {
  animation: myd-fade-up 0.55s ease 0.52s forwards;
}
body.hero-ready .trust-chips {
  animation: myd-fade-up 0.5s ease 0.64s forwards;
}
body.hero-ready .hero__illustration {
  animation: myd-fade-in 0.9s ease 0.28s forwards;
}

/* ── A3. Page-hero entrance animation ────────────────────────── */
.page-hero__label,
.page-hero__title,
.page-hero__subtitle {
  opacity: 0;
}

body.hero-ready .page-hero__label {
  animation: myd-fade-up 0.5s ease 0.08s forwards;
}
body.hero-ready .page-hero__title {
  animation: myd-fade-up 0.65s ease 0.2s forwards;
}
body.hero-ready .page-hero__subtitle {
  animation: myd-fade-up 0.6s ease 0.36s forwards;
}

/* ── A4. Floating illustration ───────────────────────────────── */
@keyframes myd-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

body.hero-ready .hero__illustration img,
body.hero-ready .hero__illustration svg {
  animation: myd-float 5.5s ease-in-out 1.1s infinite;
}

/* ── A5. Contact info card icon pop on hover ─────────────────── */
@keyframes myd-icon-pop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.contact-info-card:hover .contact-info-card__icon {
  animation: myd-icon-pop 0.45s ease;
}

/* ── A6. FAQ item entrance (via stagger + reveal) ────────────── */
.faq-item {
  transition:
    box-shadow var(--t-normal),
    border-color var(--t-normal);
}
.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(6, 57, 112, 0.18);
}

/* ── A7. Roadmap step slide-in ───────────────────────────────── */
.roadmap-step {
  transition: opacity var(--t-normal);
}

/* ── A8. Section heading accent line grow ────────────────────── */
@keyframes myd-line-grow {
  from {
    width: 0;
  }
  to {
    width: 20px;
  }
}

.reveal.is-visible .section-heading__label::before,
.reveal--left.is-visible .section-heading__label::before,
.reveal--right.is-visible .section-heading__label::before {
  animation: myd-line-grow 0.5s ease 0.3s both;
}

/* ── A9. Reduced-motion overrides ────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal--left,
  .reveal--right,
  .reveal--scale,
  .reveal--fade {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__eyebrow,
  .hero__title,
  .hero__subtitle,
  .hero__actions,
  .trust-chips,
  .hero__illustration,
  .page-hero__label,
  .page-hero__title,
  .page-hero__subtitle {
    opacity: 1;
    animation: none !important;
  }

  body.hero-ready .hero__illustration img,
  body.hero-ready .hero__illustration svg {
    animation: none;
  }

  .contact-info-card:hover .contact-info-card__icon {
    animation: none;
  }
}

/* ── Bylaws PDF block ───────────────────────────────────────── */
.bylaws-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bylaws-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.bylaws-block__viewer {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border, #e2e8f0);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.bylaws-block__iframe {
  display: block;
  width: 100%;
  height: 780px;
  border: none;
}

@media (max-width: 768px) {
  .bylaws-block__viewer {
    display: none;
  }
}

/* ── IMCC Congress Poster ─────────────────────────────────────── */
.congress-poster-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.congress-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 1600px;
  height: 900px;
  background: #ffffff;
  transform-origin: top left;
  overflow: hidden;
  font-family: "Times New Roman", Times, serif;
}

.cp-main-logo {
  position: absolute;
  left: 245px;
  top: 35px;
  width: 415px;
  height: 450px;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.cp-title-divider {
  position: absolute;
  left: 733px;
  top: 70px;
  width: 3px;
  height: 408px;
  background: #08134a;
}

.cp-main-title {
  position: absolute;
  left: 795px;
  top: 85px;
  width: 650px;
  color: #151d4a;
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: 68px;
  line-height: 1.05;
  text-align: left;
  margin: 0;
}

.cp-main-title sup {
  font-size: 0.48em;
  font-weight: 400;
  vertical-align: super;
  line-height: 0;
}

.cp-subtitle {
  position: absolute;
  left: 795px;
  top: 420px;
  color: #151d4a;
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: 48px;
  letter-spacing: 20px;
  white-space: nowrap;
  margin: 0;
}

.cp-accent {
  color: #2395c3;
}

.cp-co-label {
  position: absolute;
  left: 0;
  top: 515px;
  width: 1600px;
  text-align: center;
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: 40px;
  color: #08134a;
  margin: 0;
}

.cp-co-line-left {
  position: absolute;
  left: 280px;
  top: 537px;
  width: 320px;
  height: 3px;
  background: #9597c1;
}

.cp-co-line-right {
  position: absolute;
  left: 1000px;
  top: 537px;
  width: 320px;
  height: 3px;
  background: #9597c1;
}

.cp-gazi-logo {
  position: absolute;
  left: 335px;
  top: 585px;
  width: 185px;
  height: 185px;
  object-fit: contain;
  display: block;
}

.cp-gazi-label {
  position: absolute;
  left: 280px;
  top: 785px;
  width: 290px;
  text-align: center;
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: 41px;
  color: #08134a;
  line-height: 1;
  margin: 0;
}

.cp-org-divider-left {
  position: absolute;
  left: 604px;
  top: 608px;
  width: 2px;
  height: 216px;
  background: #0b0d49;
}

.cp-association-logo {
  position: absolute;
  left: 720px;
  top: 575px;
  width: 180px;
  height: 190px;
  object-fit: contain;
  display: block;
}

.cp-association-label {
  position: absolute;
  left: 648px;
  top: 768px;
  width: 320px;
  text-align: center;
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: 33px;
  line-height: 0.95;
  color: #161970;
  margin: 0;
}

.cp-org-divider-right {
  position: absolute;
  left: 1014px;
  top: 608px;
  width: 2px;
  height: 216px;
  background: #0b0d49;
}

.cp-date-box {
  position: absolute;
  left: 1070px;
  top: 630px;
  width: 225px;
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cp-date-box::before,
.cp-date-box::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #2395c3;
  position: absolute;
  left: 0;
}
.cp-date-box::before {
  top: 0;
}
.cp-date-box::after {
  bottom: 0;
}

.cp-date-text {
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: 33px;
  line-height: 1.35;
  color: #08134a;
  text-align: center;
  margin: 0;
}

/* ── 30. Cookie Consent ───────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--myd-navy);
  color: #fff;
  padding: var(--space-lg) var(--container-padding);
  box-shadow: 0 -4px 24px rgba(6, 57, 112, 0.28);
  transform: translateY(110%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
#cookie-banner.is-visible {
  transform: translateY(0);
}
.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}
.cookie-banner__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--myd-sand);
}
.cookie-banner__text {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}
.cookie-banner__text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.cookie-banner__actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}
.cookie-btn-accept {
  background: var(--myd-orange);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.6rem 1.4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition:
    background var(--t-fast),
    transform var(--t-fast);
  white-space: nowrap;
}
.cookie-btn-accept:hover {
  background: #cb7530;
  transform: translateY(-1px);
}
.cookie-btn-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  padding: 0.6rem 1.4rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition:
    color var(--t-fast),
    border-color var(--t-fast);
  white-space: nowrap;
}
.cookie-btn-decline:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

/* Cookie declined reminder strip */
#cookie-declined-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8900;
  background: rgba(6, 30, 70, 0.97);
  backdrop-filter: blur(4px);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  padding: 0.6rem var(--container-padding);
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
#cookie-declined-bar.is-visible {
  display: flex;
}
.cookie-declined-bar__accept {
  background: var(--myd-orange);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.3rem 0.9rem;
  font-size: 0.78rem;
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--t-fast);
}
.cookie-declined-bar__accept:hover {
  background: #cb7530;
}

/* Form blocked by cookie decline */
.cookie-form-notice {
  display: none;
  background: rgba(226, 135, 67, 0.09);
  border: 1.5px solid rgba(226, 135, 67, 0.4);
  border-radius: var(--radius);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
  color: var(--myd-brown);
  line-height: 1.6;
}
.cookie-form-notice.is-visible {
  display: block;
}
.cookie-form-notice a {
  color: var(--myd-navy);
  font-weight: 700;
  text-decoration: underline;
}
.cookie-form-notice a:hover {
  color: var(--myd-blue);
}
.form-cookie-blocked {
  position: relative;
  pointer-events: none;
}
.form-cookie-blocked::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(238, 238, 228, 0.65);
  border-radius: var(--radius);
  backdrop-filter: blur(2px);
  z-index: 5;
  pointer-events: all;
}

@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }
  .cookie-banner__icon {
    display: none;
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1;
    text-align: center;
  }
}
