/* ============================================
   COP31 v5 — Custom Stylesheet
   Color Palette: Teal/Turquoise (Ocean)
   ============================================ */

/* ---------- Font Face ---------- */
@font-face {
  font-family: 'Space Grotesk';
  src: url('../../Space_Grotesk/static/SpaceGrotesk-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../../Space_Grotesk/static/SpaceGrotesk-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../../Space_Grotesk/static/SpaceGrotesk-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../../Space_Grotesk/static/SpaceGrotesk-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../../Space_Grotesk/static/SpaceGrotesk-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary: #0d9488;
  --primary-light: #14b8a6;
  --primary-dark: #0f766e;
  --primary-50: #f0fdfa;
  --primary-100: #ccfbf1;
  --primary-200: #99f6e4;
  --accent: #06b6d4;
  --accent-light: #22d3ee;
  --accent-dark: #0891b2;
  --dark: #0f172a;
  --dark-soft: #1e293b;
  --dark-muted: #334155;
  --text: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-warm: #f0fdfa;
  --card: #ffffff;
  --border: rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 24px 48px rgba(15, 23, 42, 0.15);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s ease;
  --font-primary: 'Outfit', 'Space Grotesk', -apple-system, sans-serif;
  --font-body: 'DM Sans', 'Space Grotesk', -apple-system, sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-top: 0;
}

/* ---------- Utility ---------- */
.section-cop {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-label img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(45%) sepia(85%) saturate(500%) hue-rotate(145deg) brightness(95%) contrast(90%);
}
.section-label.center { justify-content: center; }
.section-label.light { color: var(--primary-200); }
.section-label.light img {
  filter: brightness(0) saturate(100%) invert(90%) sepia(20%) saturate(300%) hue-rotate(145deg) brightness(105%);
}
.section-label i { font-size: 1rem; }

.section-header {
  max-width: 760px;
  margin: 0 auto 60px;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 16px;
  font-weight: 800;
}
.section-title.white { color: #fff; }
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}
.highlight-text {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.body-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ---------- Buttons ---------- */
.btn-cop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-cop.primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-cop.primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35);
}
.btn-cop.primary.light {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
}
.btn-cop.primary.light:hover {
  background: rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.8);
}
.btn-cop.ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-cop.ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-cop.outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-cop.outline:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35);
}

/* ========================================
   HEADER
   ======================================== */
.cop-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: all var(--transition);
  background: transparent;
}
.cop-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  padding: 14px 0;
}
.cop-header.scrolled .header-logo .logo-img {
  height: 62px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-logo .logo-img {
  height: 72px;
  width: auto;
  transition: all var(--transition);
}
.cop-header:not(.scrolled) .header-logo .logo-img {
  filter: drop-shadow(0 0 1px rgba(255,255,255,0.1));
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Selector */
.lang-wrap { position: relative; }
.lang-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}
.cop-header.scrolled .lang-selector {
  border-color: var(--border);
  background: var(--bg-soft);
  color: var(--dark);
}
.lang-selector .flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}
.lang-selector .lang-code { font-weight: 700; }
.lang-selector i { font-size: 0.7rem; transition: transform var(--transition); }
.lang-selector[aria-expanded="true"] i { transform: rotate(180deg); }
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--card);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  min-width: 140px;
  z-index: 200;
  overflow: hidden;
  border: 1px solid var(--border);
}
.lang-dropdown.open { display: block; }
.lang-dropdown button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  border: none;
  background: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
}
.lang-dropdown button:hover { background: var(--bg-warm); }
.lang-dropdown .flag-sm {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

/* UserWay Widget Position Override */
.userway_buttons_wrapper {
  top: auto !important;
  bottom: 32px !important;
  left: 76px !important;
  right: auto !important;
  transition: none !important;
}
.userway_buttons_wrapper .uwy.userway_p3 .uai {
  background-color: var(--primary-400) !important;
  opacity: 0.85 !important;
  width: 44px !important;
  height: 44px !important;
}
/* UserWay Panel - open on left */
iframe.uwif.userway_p3.uw-panel-left {
  right: auto !important;
  left: 0 !important;
  width: 420px !important;
  max-width: 100vw !important;
}

/* Menu Button */
.menu-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  color: #fff;
  cursor: pointer;
  transition: all var(--transition);
}
.menu-btn:hover {
  background: rgba(255,255,255,0.2);
}
.cop-header.scrolled .menu-btn {
  border-color: var(--border);
  background: var(--bg-soft);
  color: var(--dark);
}
.menu-btn-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-btn-bars span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all var(--transition);
}
.menu-btn-bars span:nth-child(2) { width: 14px; }
.menu-btn-text {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Fullscreen Menu Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--dark);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.menu-overlay-header {
  padding: 12px 0;
}
.menu-overlay-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-white { filter: brightness(0) invert(1); }
.menu-overlay-header .logo-img {
  height: 72px;
}
.menu-close-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  background: none;
  border-radius: 100px;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition);
}
.menu-close-btn:hover {
  background: rgba(255,255,255,0.1);
}
.menu-close-text {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.menu-overlay-body {
  flex: 1;
  display: flex;
  align-items: flex-start;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0 2rem;
}

/* ============================================
   Hamburger menu — Y1 "Calm focused" pattern
   Single typographic list (left), static COP31
   signature panel (right). Scan-fast, no decoration.
   ============================================ */
.menu-mega {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 4rem;
  width: 100%;
  align-items: start;
  padding: 1rem 0 2rem;
}

.menu-list { min-width: 0; }

.menu-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  counter-reset: menuItem;
}
.menu-nav-list li {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  counter-increment: menuItem;
}
.menu-nav-list li:last-child { border-bottom: none; }
.menu-nav-list a {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--font-primary);
  font-size: clamp(1.15rem, 1.9vw, 1.7rem);
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  padding: 0.85rem 0;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.3s ease;
}
.menu-nav-list a::before {
  content: counter(menuItem, decimal-leading-zero);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.32);
  font-variant-numeric: tabular-nums;
  width: 28px;
  flex-shrink: 0;
  transition: color 0.25s ease;
}
.menu-nav-list a::after {
  content: '';
  width: 0;
  height: 1.5px;
  background: var(--primary);
  margin-left: auto;
  transition: width 0.32s ease;
  align-self: center;
  flex-shrink: 0;
}
.menu-nav-list a:hover,
.menu-nav-list a.active {
  color: #fff;
  text-decoration: none;
  padding-left: 8px;
}
.menu-nav-list a:hover::before,
.menu-nav-list a.active::before { color: var(--primary); }
.menu-nav-list a:hover::after,
.menu-nav-list a.active::after { width: 36px; }

/* ----- COP31 signature panel (right) ----- */
.menu-signature {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  text-align: center;
  align-self: start;
}
.menu-signature-logo {
  width: 130px;
  height: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.menu-signature-divider {
  width: 32px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0.5rem auto;
}
.menu-signature-date {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.005em;
}
.menu-signature-place {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.menu-signature-place i {
  color: var(--primary);
  font-size: 0.8rem;
}
.menu-signature-foot {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-primary);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ----- Responsive ----- */
@media (max-width: 1023px) {
  .menu-mega { grid-template-columns: 1fr; gap: 2rem; }
  .menu-signature {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 2rem;
    text-align: left;
  }
  .menu-signature-logo { width: 90px; margin: 0; }
  .menu-signature-divider { display: none; }
  .menu-signature-foot { width: 100%; text-align: center; padding-top: 0.85rem; }
}

@media (max-width: 640px) {
  .menu-overlay-body { padding: 0.5rem 0 1.5rem; align-items: flex-start; }
  .menu-nav-list a { font-size: 1.1rem; padding: 0.7rem 0; gap: 0.85rem; }
  .menu-nav-list a::before { font-size: 0.65rem; width: 22px; }
  .menu-signature {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.25rem;
  }
  .menu-signature-logo { width: 110px; margin: 0 auto; }
  .menu-signature-divider { display: block; }
  .menu-signature-foot { padding-top: 1rem; }
}



@media (max-width: 480px) {
  .menu-btn-text { display: none; }
  .menu-btn {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    gap: 0;
  }
  .a11y-trigger { width: 42px; height: 42px; font-size: 1rem; }
  .lang-selector { height: 42px; padding: 0 14px; font-size: 0.82rem; }
  .menu-close-text { display: none; }
  .menu-close-btn {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    gap: 0;
  }
}

/* ========================================
   HERO
   ======================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.55) 0%,
    rgba(13, 148, 136, 0.25) 40%,
    rgba(15, 23, 42, 0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0 0 20px;
  opacity: 0.85;
  animation: heroFadeUp 1s ease 0.2s forwards;
  opacity: 0;
}
.hero-title {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin: 0 0 20px;
  animation: heroFadeUp 1s ease 0.4s forwards;
  opacity: 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-200) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subhead {
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 600px;
  animation: heroFadeUp 1s ease 0.6s forwards;
  opacity: 0;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  animation: heroFadeUp 1s ease 0.8s forwards;
  opacity: 0;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
}
.badge-icon { width: 32px; height: 32px; flex-shrink: 0; }
.badge-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-badge span {
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  animation: heroFadeUp 1s ease 1s forwards;
  opacity: 0;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  z-index: 2;
  color: #fff;
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 100px;
  position: relative;
}
.scroll-dot {
  width: 3px;
  height: 8px;
  border-radius: 100px;
  background: #fff;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease infinite;
}

@keyframes heroFadeUp {
  0% { transform: translateY(24px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes scrollDot {
  0% { transform: translate(-50%, 0); opacity: 0.3; }
  50% { transform: translate(-50%, 10px); opacity: 1; }
  100% { transform: translate(-50%, 18px); opacity: 0; }
}

/* ========================================
   ABOUT / WHAT IS COP
   ======================================== */
.about-section { background: var(--bg); overflow: hidden; }
.about-visual {
  position: relative;
  max-width: 520px;
  overflow: visible;
}
.about-watermark {
  position: absolute;
  min-width: 580px;
  width: 580px;
  height: auto;
  top: -160px;
  left: -160px;
  z-index: 0;
  user-select: none;
  color: var(--dark);
}
.amblem-piece {
  opacity: 0.06;
  cursor: pointer;
  pointer-events: all;
  will-change: opacity, fill;
  transition: opacity 0.6s ease, fill 0.6s ease;
}
.amblem-piece:hover {
  opacity: 0.85;
}
.amblem-piece[data-color="#00cc81"]:hover { fill: #00cc81 !important; }
.amblem-piece[data-color="#0061ff"]:hover { fill: #0061ff !important; }
.amblem-piece[data-color="#004aa9"]:hover { fill: #004aa9 !important; }
.amblem-piece[data-color="#ff0000"]:hover { fill: #ff0000 !important; }
.visual-main {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-video {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.visual-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  z-index: 2;
}
.accent-card {
  background: var(--primary);
  color: #fff;
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  text-align: center;
}
.accent-number {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}
.accent-number sup { font-size: 1.2rem; }
.accent-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.about-content { padding-left: 20px; }
.about-cards-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.about-info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.about-info-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.info-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-icon img {
  width: 42px;
  height: 42px;
}
.about-info-card h4 {
  font-size: 0.95rem;
  margin: 0;
  color: var(--dark);
}
.about-info-card p {
  margin: 2px 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========================================
   VISION (Presidency)
   ======================================== */
.vision-section {
  background: rgb(245, 249, 248);
}
.vision-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
}
.vision-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.vision-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.vision-icon {
  width: 66px;
  height: 66px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 2px solid transparent;
  background-color: transparent;
  transition: all 0.3s;
}
.vision-icon img { width: 44px; height: 44px; object-fit: contain; transition: filter 0.3s; }

.vision-card.dialogue .vision-icon {
  border-color: var(--accent);
}
.vision-card.dialogue .vision-icon img {
  filter: invert(35%) sepia(90%) saturate(1200%) hue-rotate(175deg) brightness(95%);
}
.vision-card.dialogue:hover .vision-icon {
  background-color: var(--accent);
}
.vision-card.dialogue:hover .vision-icon img {
  filter: brightness(0) invert(1);
}

.vision-card.consensus .vision-icon {
  border-color: var(--primary);
}
.vision-card.consensus .vision-icon img {
  filter: invert(55%) sepia(75%) saturate(600%) hue-rotate(130deg) brightness(95%);
}
.vision-card.consensus:hover .vision-icon {
  background-color: var(--primary);
}
.vision-card.consensus:hover .vision-icon img {
  filter: brightness(0) invert(1);
}

.vision-card.action .vision-icon {
  border-color: #4b7baa;
}
.vision-card.action .vision-icon img {
  filter: invert(48%) sepia(30%) saturate(600%) hue-rotate(175deg) brightness(88%);
}
.vision-card.action:hover .vision-icon {
  background-color: #4b7baa;
}
.vision-card.action:hover .vision-icon img {
  filter: brightness(0) invert(1);
}
.vision-card h3 {
  font-size: 1.5rem;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.vision-card.dialogue h3 { color: var(--accent); }
.vision-card.consensus h3 { color: var(--primary); }
.vision-card.action h3 { color: #4b7baa; }
.vision-sub {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.vision-body {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ========================================
   KEY VOICES — Accordion Expand Cards
   ======================================== */
.voices-section {
  background: var(--bg);
}

/* --- Voice Spotlight (Single Leader) --- */
.voice-spotlight {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Photo side */
.voice-spotlight-photo {
  position: relative;
  flex: 0 0 420px;
}
.voice-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.voice-photo-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.voice-spotlight:hover .voice-photo-frame img {
  transform: scale(1.03);
}
.voice-photo-accent {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--primary);
  opacity: 0.2;
  z-index: 0;
}

/* Content side */
.voice-spotlight-content {
  flex: 1;
  min-width: 0;
}
.voice-spotlight-role {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 12px;
  padding: 6px 16px;
  background: var(--primary-50);
  border-radius: 100px;
}
.voice-spotlight-name {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.voice-spotlight-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 4px;
  margin-bottom: 28px;
}
.voice-spotlight-quote {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  margin: 0 0 32px;
  padding: 0;
  border: none;
  line-height: 1.8;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--primary-200);
}
.voice-spotlight-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}
.voice-spotlight-link:hover {
  gap: 14px;
  color: var(--accent);
}
.voice-spotlight-link i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.voice-spotlight-link:hover i {
  transform: translateX(2px);
}

/* ========================================
   LEADERS SUMMIT
   ======================================== */
.summit-section {
  padding: 120px 0;
  position: relative;
  color: #fff;
}
.summit-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 50%, var(--primary-dark) 100%);
  z-index: 0;
}
.summit-overlay {
  position: absolute;
  inset: 0;
  background: url('../img/icons/card-bg.svg') center/cover no-repeat;
  opacity: 0.05;
}
.summit-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.summit-body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 32px;
}
.summit-quote {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--primary-200);
  margin: 0 0 40px;
  padding: 24px;
  border-left: 4px solid var(--primary);
  text-align: left;
  line-height: 1.6;
}

/* ========================================
   ACCESSIBILITY TRIGGER & PANEL
   ======================================== */
.a11y-trigger {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
}
.a11y-trigger:hover { background: rgba(255,255,255,0.2); color: #fff; }
.cop-header.scrolled .a11y-trigger { border-color: var(--border); background: var(--bg-soft); color: var(--text-muted); }
.cop-header.scrolled .a11y-trigger:hover { color: var(--primary); }

/* Overlay */
.a11y-overlay {
  position: fixed; inset: 0; z-index: 2999;
  background: rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.a11y-overlay.active { opacity: 1; visibility: visible; }

/* Panel */
.a11y-panel {
  position: fixed; top: 0; right: -400px; bottom: 0; z-index: 3000;
  width: 380px; max-width: 90vw;
  background: #fff;
  box-shadow: -8px 0 32px rgba(0,0,0,0.15);
  display: flex; flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.a11y-panel.active { right: 0; }
.a11y-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  background: #124da1; color: #fff;
}
.a11y-header-left {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.92rem; font-weight: 700;
}
.a11y-logo {
  height: 32px; width: auto;
  filter: brightness(0) invert(1);
}
.a11y-panel.active {
  border-left: 3px solid rgba(16, 68, 137, 0.5);
}
.a11y-close {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3); background: none;
  color: #fff; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.a11y-panel-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.a11y-group { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.a11y-group:last-child { border-bottom: none; margin-bottom: 0; }
.a11y-group-title {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 12px;
}
.a11y-control { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; }
.a11y-control > span { font-size: 0.88rem; font-weight: 500; color: var(--dark); }
.a11y-stepper { display: flex; align-items: center; gap: 2px; background: var(--bg-soft); border-radius: 8px; overflow: hidden; }
.a11y-step-btn {
  width: 34px; height: 34px; border: none; background: none;
  font-size: 1.1rem; font-weight: 600; color: var(--dark);
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.a11y-step-btn:hover { background: var(--primary-100); color: var(--primary); }
.a11y-step-val { width: 28px; text-align: center; font-size: 0.82rem; font-weight: 700; color: var(--primary); }
.a11y-toggles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.a11y-toggle-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--bg-soft);
  font-size: 0.78rem; font-weight: 600; color: var(--dark);
  cursor: pointer; transition: all 0.2s; text-align: left;
}
.a11y-toggle-btn i { font-size: 0.95rem; color: var(--text-muted); flex-shrink: 0; }
.a11y-toggle-btn:hover { border-color: var(--primary-200); }
.a11y-toggle-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.a11y-toggle-btn.active i { color: #fff; }
.a11y-toggle-btn.eco { grid-column: 1 / -1; }
.a11y-hint { font-size: 0.72rem; color: var(--text-light); margin: 8px 0 0; line-height: 1.5; }
.a11y-panel-footer {
  padding: 16px 24px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.a11y-reset {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: 8px;
  border: none; background: #fee2e2; color: #dc2626;
  font-size: 0.82rem; font-weight: 700; cursor: pointer; transition: background 0.2s;
}
.a11y-reset:hover { background: #fecaca; }
.a11y-shortcut { font-size: 0.72rem; color: var(--text-light); padding: 4px 10px; background: var(--bg-soft); border-radius: 6px; font-weight: 600; }

/* ========================================
   A11Y FEATURE CLASSES
   ======================================== */
body.a11y-readable-font, body.a11y-readable-font * { font-family: Arial, Helvetica, sans-serif !important; }
body.a11y-dyslexia-font, body.a11y-dyslexia-font * { font-family: 'Comic Sans MS', 'OpenDyslexic', cursive !important; word-spacing: 0.15em; letter-spacing: 0.05em; }
body.a11y-highlight-headings h1, body.a11y-highlight-headings h2, body.a11y-highlight-headings h3, body.a11y-highlight-headings h4 { outline: 3px solid var(--primary) !important; outline-offset: 4px; }
body.a11y-highlight-links a { outline: 2px solid #f59e0b !important; outline-offset: 2px; text-decoration: underline !important; }
body.a11y-dark-contrast { background: #1a1a1a !important; color: #e0e0e0 !important; }
body.a11y-dark-contrast .cop-header.scrolled { background: #1a1a1a !important; }
body.a11y-dark-contrast .section-cop { background: #1a1a1a !important; }
body.a11y-dark-contrast .bz-card, body.a11y-dark-contrast .gz-action-card, body.a11y-dark-contrast .faq-item, body.a11y-dark-contrast .accommodation-card-inner { background: #2a2a2a !important; border-color: #444 !important; color: #e0e0e0 !important; }
body.a11y-dark-contrast h1, body.a11y-dark-contrast h2, body.a11y-dark-contrast h3, body.a11y-dark-contrast h4, body.a11y-dark-contrast p, body.a11y-dark-contrast span { color: #e0e0e0 !important; }
body.a11y-high-contrast { background: #000 !important; color: #ff0 !important; }
body.a11y-high-contrast * { color: #ff0 !important; border-color: #ff0 !important; }
body.a11y-high-contrast a { color: #0ff !important; }
body.a11y-high-contrast .cop-header.scrolled, body.a11y-high-contrast .section-cop { background: #000 !important; }
body.a11y-invert-colors { filter: invert(1) hue-rotate(180deg); }
body.a11y-invert-colors img, body.a11y-invert-colors video { filter: invert(1) hue-rotate(180deg); }
body.a11y-grayscale { filter: grayscale(100%); }
body.a11y-stop-animations *, body.a11y-stop-animations *::before, body.a11y-stop-animations *::after { animation: none !important; transition: none !important; }
body.a11y-stop-animations [data-aos] { transform: none !important; opacity: 1 !important; }
body.a11y-hide-images img:not(.logo-img):not(.flag):not(.flag-sm) { visibility: hidden !important; }
body.a11y-hide-images video { display: none !important; }
body.a11y-hide-images .hero-bg-wrap, body.a11y-hide-images .video-bg { background: var(--dark); }
body.a11y-low-carbon video { display: none !important; }
body.a11y-low-carbon .hero-bg-wrap, body.a11y-low-carbon .video-bg { background: var(--dark); }
body.a11y-low-carbon .hero-overlay { background: rgba(15,23,42,0.92) !important; }
body.a11y-low-carbon, body.a11y-low-carbon * { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important; }
body.a11y-low-carbon img:not(.logo-img):not(.flag):not(.flag-sm):not(.partner-logo) { filter: grayscale(100%) !important; opacity: 0.8; }
body.a11y-low-carbon *, body.a11y-low-carbon *::before, body.a11y-low-carbon *::after { animation: none !important; transition: none !important; }
body.a11y-low-carbon [data-aos] { transform: none !important; opacity: 1 !important; }
body.a11y-low-carbon .about-watermark, body.a11y-low-carbon .gz-icon-float, body.a11y-low-carbon .hero-scroll-indicator, body.a11y-low-carbon .pres-amblem-hero, body.a11y-low-carbon .pres-photo-ring, body.a11y-low-carbon .voice-photo-accent { display: none !important; }
body.a11y-low-carbon .video-section .video-play-btn, body.a11y-low-carbon .video-section .video-label { display: none; }
body.a11y-big-cursor, body.a11y-big-cursor * { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Cpath d='M5 2l20 14-9 2 5 10-4 2-5-10-7 7z' fill='%23000' stroke='%23fff' stroke-width='1'/%3E%3C/svg%3E") 5 2, auto !important; }
body.a11y-focus-highlight *:focus { outline: 3px solid #f59e0b !important; outline-offset: 3px; box-shadow: 0 0 0 6px rgba(245,158,11,0.3) !important; }

/* ========================================
   BLUE ZONE
   ======================================== */
.bluezone-section {
  background: var(--bg-soft);
}
.bz-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  height: 100%;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bz-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.bz-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-100);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}
.bz-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--dark);
}
.bz-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}
.bz-location-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  padding: 24px 32px;
  background: var(--dark);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
}
.bz-location-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
}
.bz-location-item i {
  color: var(--primary-200);
  font-size: 1.1rem;
}

/* Blue Zone responsive */
@media (max-width: 767px) {
  .bz-card {
    padding: 28px 20px;
  }
  .bz-location-strip {
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .bz-card {
    padding: 24px 16px;
  }
  .bz-card-icon {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }
}

/* ========================================
   ACCOMMODATION
   ======================================== */
.accommodation-section {
  background: rgb(245, 249, 248);
}
.accommodation-card {
  max-width: 900px;
  margin: 0 auto;
}
.accommodation-card-inner {
  display: flex;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
}
.accommodation-info {
  flex: 1.4;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.accommodation-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-100);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
}
.accommodation-badge i {
  font-size: 0.9rem;
}
.accommodation-info h3 {
  font-size: 1.5rem;
  margin: 4px 0 0;
}
.accommodation-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
.accommodation-cta {
  margin-top: 8px;
  width: fit-content;
}
.accommodation-contact {
  flex: 1;
  background: var(--dark);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.accommodation-contact h4 {
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 4px;
  font-weight: 600;
}
.accommodation-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}
.accommodation-contact .contact-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.accommodation-contact .contact-item a:hover {
  color: var(--primary-200);
}
.accommodation-contact .contact-item i {
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--primary-light);
}

/* Accommodation responsive — tablet */
@media (max-width: 991px) {
  .accommodation-card {
    max-width: 100%;
  }
  .accommodation-card-inner {
    flex-direction: column;
  }
  .accommodation-info,
  .accommodation-contact {
    padding: 36px 32px;
  }
}

/* Accommodation responsive — mobile */
@media (max-width: 767px) {
  .accommodation-info,
  .accommodation-contact {
    padding: 28px 20px;
  }
  .accommodation-info h3 {
    font-size: 1.25rem;
  }
  .accommodation-info p {
    font-size: 0.9rem;
  }
  .accommodation-cta.btn-cop {
    width: 100%;
    justify-content: center;
  }
  .accommodation-contact h4 {
    font-size: 1rem;
  }
  .accommodation-contact .contact-item {
    font-size: 0.9rem;
  }
}

/* Accommodation responsive — small mobile */
@media (max-width: 480px) {
  .accommodation-info,
  .accommodation-contact {
    padding: 24px 16px;
  }
  .accommodation-badge {
    font-size: 0.7rem;
    padding: 5px 10px;
  }
  .accommodation-info h3 {
    font-size: 1.15rem;
  }
}

/* ========================================
   GREEN ZONE
   ======================================== */
.greenzone-section {
  background: var(--bg);
}
.gz-action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.gz-action-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gz-action-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.gz-action-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-100);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.gz-action-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--dark);
}
.gz-action-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  flex: 1;
  margin: 0 0 24px;
}
.gz-action-btn {
  width: fit-content;
}

.greenzone-contact {
  margin-top: 48px;
  padding: 40px 48px;
  background: linear-gradient(135deg, #064e3b, #0f766e);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  position: relative;
}
/* Arka planda yavaş hareket eden parlama */
.greenzone-contact::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
  animation: gzShine 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes gzShine {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30%, 20%); }
}
.gz-contact-content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.gz-contact-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}
.gz-contact-body {
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  max-width: 440px;
  line-height: 1.6;
  font-size: 0.95rem;
}
.greenzone-contact .btn-cop.primary {
  background: #fff;
  color: #064e3b;
  border-color: #fff;
  box-shadow: 0 4px 20px rgba(255,255,255,0.2);
  transition: all 0.3s;
}
.greenzone-contact .btn-cop.primary:hover {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 6px 30px rgba(255,255,255,0.35);
  transform: translateY(-2px);
}
.gz-contact-visual {
  flex-shrink: 0;
  width: 220px;
  height: 160px;
  position: relative;
  z-index: 1;
}
.gz-icon-float {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  font-size: 1.25rem;
  animation: gzFloat 4s ease-in-out infinite;
  transition: all 0.3s;
}
.gz-icon-float:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.gz-float-1 { top: 10px; left: 20px; animation-delay: 0s; animation-duration: 3.5s; }
.gz-float-2 { top: 55px; left: 90px; animation-delay: 0.6s; animation-duration: 4.5s; width: 62px; height: 62px; font-size: 1.45rem; background: rgba(255,255,255,0.16); }
.gz-float-3 { top: 5px; right: 30px; animation-delay: 1.2s; animation-duration: 3.8s; }
.gz-float-4 { bottom: 15px; left: 40px; animation-delay: 1.8s; animation-duration: 4.2s; width: 46px; height: 46px; font-size: 1.1rem; }
.gz-float-5 { bottom: 10px; right: 20px; animation-delay: 2.4s; animation-duration: 3.2s; }
@keyframes gzFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-6px) rotate(3deg); }
  50% { transform: translateY(-10px) rotate(0deg); }
  75% { transform: translateY(-4px) rotate(-3deg); }
}
@media (max-width: 767px) {
  .greenzone-contact {
    flex-direction: column;
    padding: 32px 24px;
    text-align: center;
  }
  .gz-contact-body {
    margin-left: auto;
    margin-right: auto;
  }
  .gz-contact-visual {
    width: 100%;
    height: 80px;
  }
  .gz-float-1 { top: 10px; left: 10%; }
  .gz-float-2 { top: 5px; left: 38%; }
  .gz-float-3 { top: 10px; right: 10%; }
  .gz-float-4 { display: none; }
  .gz-float-5 { display: none; }
}

/* ========================================
   VIDEO SECTION
   ======================================== */
.video-section {
  padding: 120px 0;
  position: relative;
  color: #fff;
}
.video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.video-bg-player {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  transition: opacity 1.5s ease;
}
.video-bg-player.vbg-b {
  opacity: 0;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.6);
}
.video-content {
  position: relative;
  z-index: 1;
}
.video-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}
.video-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all var(--transition);
  animation: pulse 2s ease infinite;
  border: 4px solid rgba(255,255,255,0.3);
}
.video-play-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
  color: #fff;
}
.video-play-btn i { margin-left: 4px; }
.video-label {
  margin-top: 16px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.7;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(13,148,136,0.4); }
  70% { box-shadow: 0 0 0 20px rgba(13,148,136,0); }
  100% { box-shadow: 0 0 0 0 rgba(13,148,136,0); }
}

/* ========================================
   NEWSLETTER / STAY TUNED
   ======================================== */
.newsletter-section { background: var(--bg); display: none; }
.newsletter-form-wrap {
  background: var(--bg-warm);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.newsletter-form .form-group {
  display: flex;
  gap: 12px;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--border);
  border-radius: 100px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition);
}
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--primary);
}
.newsletter-form input[type="email"]::placeholder {
  color: var(--text-light);
}
.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.countdown-item {
  text-align: center;
  padding: 16px 20px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  min-width: 80px;
}
.countdown-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.countdown-sep {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.4;
  padding-bottom: 18px;
}

/* ========================================
   FAQ
   ======================================== */
.faq-section { background: var(--bg-soft); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--card);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-toggle {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.faq-question[aria-expanded="true"] .faq-toggle {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}
.faq-answer.open { padding: 0 24px 20px; }
.faq-answer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* FAQ Tabs */
.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.faq-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid var(--border);
  border-radius: 100px;
  background: var(--card);
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.faq-tab:hover { border-color: var(--primary-200); color: var(--primary); }
.faq-tab.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.faq-tab i { font-size: 1rem; }
.faq-tab-panel { display: none; }
.faq-tab-panel.active { display: block; }
/* FAQ Category Accordion (Green Zone) */
.faq-category-group {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-category-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-soft);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-category-trigger:hover { background: var(--primary-100); }
.faq-category-trigger span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.faq-cat-toggle {
  color: var(--primary);
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}
.faq-category-trigger[aria-expanded="true"] .faq-cat-toggle {
  transform: rotate(180deg);
}
.faq-category-trigger[aria-expanded="true"] {
  background: var(--primary);
}
.faq-category-trigger[aria-expanded="true"] span {
  color: #fff;
}
.faq-category-trigger[aria-expanded="true"] .faq-cat-toggle {
  color: #fff;
}
.faq-cat-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-cat-items.expanded {
  max-height: none !important;
}
.faq-cat-items .faq-item:first-child {
  border-top: 1px solid var(--border);
}

/* ========================================
   FOOTER
   ======================================== */
.cop-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}
.footer-top {
  padding: 60px 0 32px;
}
.footer-widget { margin-bottom: 24px; }
.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin: 0 0 20px;
}
.footer-about {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.footer-about {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.6);
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.2s ease;
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 208, 122, 0.3);
}
.footer-social i {
  font-size: 1.1rem;
  color: #fff;
}
.footer-social img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

/* Disabled social icons (no link yet) */
.footer-social-disabled {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: default;
  opacity: 0.4;
  transition: all 0.2s ease;
}
.footer-social-disabled:hover {
  opacity: 0.7;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}
.footer-social-disabled img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.footer-title {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer-partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.partner-logo {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.partner-logo:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  margin-top: 16px;
}
.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  margin: 0;
  color: rgba(255,255,255,0.35);
}

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(13,148,136,0.3);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
  .section-cop { padding: 70px 0; }

  .about-visual { margin-bottom: 40px; max-width: 100%; }
  .about-content { padding-left: 0; }
  .newsletter-form-wrap { margin-top: 40px; }

  .voice-spotlight { gap: 40px; }
  .voice-spotlight-photo { flex: 0 0 340px; }
  .voice-photo-frame img { height: 440px; }

}

@media (max-width: 767px) {
  .hero-title { font-size: clamp(2rem, 6vw, 3rem); }
  .hero-scroll-indicator { display: none; }
  .hero-badges { flex-direction: column; align-items: center; }
  .hero-cta-group { flex-direction: column; width: 100%; padding: 0 20px; }
  .hero-cta-group .btn-cop { width: 100%; justify-content: center; }

  .visual-accent { position: relative; bottom: auto; right: auto; margin-top: 16px; }

  .voice-spotlight {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .voice-spotlight-photo {
    flex: none;
    max-width: 320px;
    margin: 0 auto;
  }
  .voice-photo-frame img {
    height: 400px;
  }
  .voice-photo-accent {
    top: 12px;
    left: 12px;
    right: -12px;
    bottom: -12px;
  }
  .voice-spotlight-quote {
    border-left: none;
    padding-left: 0;
    border-top: 3px solid var(--primary-200);
    padding-top: 20px;
    font-size: 1.05rem;
  }
  .voice-spotlight-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .newsletter-form .form-group { flex-direction: column; }
  .countdown { gap: 8px; justify-content: center; }
  .countdown-item { min-width: 60px; padding: 12px 14px; }
  .countdown-number { font-size: 1.8rem; }
  .countdown-sep { font-size: 1.5rem; }

  .summit-quote { font-size: 1.1rem; padding: 16px; }
  .faq-tabs { gap: 6px; }
  .faq-tab { padding: 10px 16px; font-size: 0.82rem; }

  .gz-action-grid {
    grid-template-columns: 1fr;
  }
  .gz-action-card {
    padding: 28px 20px;
  }

  .footer-partner-logos {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  .partner-logo { height: 50px; }
  .footer-widget { text-align: center; margin-bottom: 32px; }
  .footer-logo-img { margin-left: auto; margin-right: auto; }
  .footer-social { justify-content: center; }
  .footer-links { text-align: center; }
  .footer-links a:hover { padding-left: 0; }
}

@media (max-width: 480px) {
  .cop-header { padding: 12px 0; }
  .header-logo .logo-img { height: 40px; }
  .section-cop { padding: 50px 0; }
  .section-title { font-size: 1.6rem; }
  .gz-action-card { padding: 24px 16px; }
  .gz-action-btn { width: 100%; justify-content: center; }
  .faq-tabs { flex-direction: column; align-items: stretch; }
  .faq-tab { justify-content: center; }
}

/* ============================================
   PRESIDENT PAGE
   ============================================ */

/* Light-page header: transparent bg + dark text, white bg on scroll */
.pres-page .cop-header:not(.scrolled) { background: transparent; }
.pres-page .cop-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}
.pres-page .cop-header .lang-selector {
  color: var(--dark);
  border-color: var(--border);
  background: var(--bg-soft);
}
.pres-page .cop-header .menu-btn {
  border-color: var(--border);
  background: var(--bg-soft);
  color: var(--dark);
}
.pres-page .cop-header .a11y-trigger {
  border-color: var(--border);
  background: var(--bg-soft);
  color: var(--text-muted);
}
.pres-page .cop-header:not(.scrolled) .header-logo .logo-img { filter: none; }

/* --- Editorial Opening --- */
.pres-opening {
  position: relative;
  padding: 160px 0 100px;
  background: var(--bg-warm);
  overflow: hidden;
}
/* Large Floating Amblem */
.pres-amblem-hero {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%) rotate(-12deg);
  width: 520px;
  height: 520px;
  pointer-events: none;
  opacity: 0.04;
  animation: presAmblemFloat 20s ease-in-out infinite;
  z-index: 0;
}
.pres-amblem-hero img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes presAmblemFloat {
  0%, 100% { transform: translateY(-50%) rotate(-12deg) scale(1); }
  33% { transform: translateY(-52%) rotate(-10deg) scale(1.03); }
  66% { transform: translateY(-48%) rotate(-14deg) scale(0.97); }
}
.pres-opening-grid {
  display: flex;
  align-items: center;
  gap: 80px;
}
.pres-opening-text {
  flex: 1;
}
.pres-name-display {
  margin: 0 0 28px;
  line-height: 1;
}
.pres-name-line {
  display: block;
  font-family: var(--font-primary);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.pres-name-line.accent {
  color: var(--primary);
  position: relative;
}
.pres-tagline-wrap {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pres-tagline-line {
  flex: 0 0 4px;
  min-height: 50px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 4px;
  margin-top: 4px;
}
.pres-tagline {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

/* Photo card */
.pres-opening-photo {
  flex: 0 0 420px;
  position: relative;
}
.pres-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.pres-photo-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.pres-photo-card:hover img {
  transform: scale(1.04);
}
.pres-photo-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.pres-photo-tag i {
  color: var(--primary-200);
}
.pres-photo-ring {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 160px;
  height: 160px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
  animation: presFloat 18s ease-in-out infinite 2s;
}

/* --- Quote Band --- */
.pres-quote-band {
  background: var(--dark);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.pres-quote-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--primary-dark), transparent 30%, transparent 70%, var(--primary-dark));
  opacity: 0.15;
}
.pres-quote-inner {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.pres-quote-mark {
  font-size: 2rem;
  color: var(--primary-200);
  margin-bottom: 16px;
  opacity: 0.5;
}
.pres-quote-inner blockquote {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 16px;
  padding: 0;
  border: none;
  line-height: 1.7;
}
.pres-quote-inner cite {
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-200);
  letter-spacing: 0.05em;
}

/* --- Bio Section --- */
.pres-bio-section {
  background: var(--bg);
}
.pres-bio-visual {
  position: relative;
}
.pres-bio-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pres-bio-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.pres-bio-accent-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.pres-bio-accent-card .accent-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* --- Competencies Section --- */
.pres-competencies-section {
  background: var(--bg-soft);
}
.pres-comp-card {
  position: relative;
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  height: 100%;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  text-align: center;
  overflow: hidden;
}
.pres-comp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.pres-comp-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--primary);
  transition: all 0.4s ease;
}
.pres-comp-card:hover .pres-comp-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}
.pres-comp-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-50);
  line-height: 1;
  transition: color 0.4s ease;
}
.pres-comp-card:hover .pres-comp-num {
  color: rgba(255, 255, 255, 0.15);
}
.pres-comp-card h3 {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.pres-comp-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* --- Vision Section --- */
.pres-vision-section {
  position: relative;
  overflow: hidden;
}
.pres-vision-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #134e4a 60%, #0d9488 100%);
}
.pres-vision-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(13, 148, 136, 0.2) 0%, transparent 50%);
}
.pres-vision-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.pres-vision-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 16px;
}
.pres-vision-pillars {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}
.pres-vision-pillar {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}
.pvp-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--primary-200);
}
.pres-vision-pillar h4 {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.pres-vision-pillar p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
}

/* --- COP Evolution Section --- */
.pres-evolution-section {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}

/* Editorial Hero Stat */
.pres-evo-hero {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 56px;
}
.pres-evo-hero-left {
  flex: 1;
}
.pres-evo-headline {
  font-family: var(--font-primary);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.pres-evo-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}
.pres-evo-hero-right {
  flex-shrink: 0;
  text-align: center;
  padding: 44px 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--primary), var(--accent));
  position: relative;
  overflow: hidden;
}
.pres-evo-hero-right::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -60px;
  right: -60px;
  pointer-events: none;
}
.pres-evo-hero-right::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  bottom: -30px;
  left: -30px;
  pointer-events: none;
}
.pres-evo-big-number {
  font-family: var(--font-primary);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.pres-evo-tilde {
  font-size: 2.8rem;
  opacity: 0.7;
  vertical-align: top;
  margin-right: 2px;
}
.pres-evo-num {
  font-size: 5.5rem;
  letter-spacing: -0.04em;
}
.pres-evo-unit {
  font-size: 3rem;
  opacity: 0.85;
  margin-left: 2px;
}
.pres-evo-big-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 8px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.03em;
}
.pres-evo-big-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

/* COP Comparison Bars */
.pres-evo-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 48px;
}
.pres-evo-bar-item {
  display: grid;
  grid-template-columns: 200px 1fr 70px;
  align-items: center;
  gap: 20px;
}
.pres-evo-bar-info {
  display: flex;
  flex-direction: column;
}
.pres-evo-bar-name {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}
.pres-evo-bar-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.pres-evo-bar-track {
  height: 32px;
  background: var(--bg-warm);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.pres-evo-bar-fill {
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--bg-warm) 0%, #b8d8d4 100%);
  width: 0;
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pres-evo-bar-fill.animated { width: var(--bar-w); }
.pres-evo-bar-val {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-muted);
  text-align: right;
}

/* Highlight Row (COP31) */
.pres-evo-bar-highlight .pres-evo-bar-name {
  font-size: 1.1rem;
  color: var(--primary);
}
.pres-evo-bar-highlight .pres-evo-bar-track {
  height: 40px;
  background: rgba(13, 148, 136, 0.08);
  border: 1px solid rgba(13, 148, 136, 0.15);
}
.pres-evo-bar-highlight .pres-evo-bar-fill {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.25);
}
.pres-evo-bar-highlight .pres-evo-bar-val {
  font-size: 1.15rem;
  color: var(--primary);
}

/* Bottom Micro Stats */
.pres-evo-micro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 32px 40px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.pres-evo-micro-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pres-evo-micro-item i {
  font-size: 1.3rem;
  color: var(--primary);
  flex-shrink: 0;
}
.pres-evo-micro-item strong {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.pres-evo-micro-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.pres-evo-micro-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* --- CTA Section --- */
.pres-cta-section {
  background: var(--bg-soft);
  padding: 80px 0;
}
.pres-cta-section .section-title {
  margin-bottom: 12px;
}
.pres-cta-section .section-subtitle {
  margin-bottom: 32px;
}
.pres-cta-section .btn-cop i {
  margin-right: 8px;
}

/* --- President Page Responsive --- */
@media (max-width: 991px) {
  .pres-opening { padding: 140px 0 80px; }
  .pres-amblem-hero { width: 360px; height: 360px; right: -8%; }
  .pres-opening-grid {
    flex-direction: column;
    gap: 48px;
    text-align: center;
  }
  .pres-opening-photo {
    flex: none;
    max-width: 360px;
    margin: 0 auto;
  }
  .pres-photo-card img { height: 460px; }
  .pres-tagline-wrap { justify-content: center; }
  .pres-tagline-line { display: none; }
  .pres-bio-visual { margin-bottom: 40px; }
  .pres-bio-accent-card { bottom: -16px; left: 16px; }
  .pres-vision-pillars {
    flex-direction: column;
    align-items: center;
  }
  .pres-vision-pillar {
    max-width: 300px;
    width: 100%;
  }
  .pres-evo-hero {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .pres-evo-sub { max-width: 100%; }
  .pres-evo-bar-item {
    grid-template-columns: 140px 1fr 60px;
    gap: 12px;
  }
  .pres-evo-micro {
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .pres-opening { padding: 120px 0 60px; }
  .pres-amblem-hero { width: 240px; height: 240px; right: -10%; opacity: 0.03; }
  .pres-name-line { font-size: 3rem; }
  .pres-opening-photo { max-width: 280px; }
  .pres-photo-card img { height: 360px; }
  .pres-photo-ring { width: 100px; height: 100px; top: -16px; right: -16px; }
  .pres-quote-inner blockquote { font-size: 1rem; }
  .pres-bio-img-main img { height: 360px; }
  .pres-evo-headline { font-size: 1.8rem; }
  .pres-evo-hero-right { padding: 32px 36px; }
  .pres-evo-num { font-size: 4rem; }
  .pres-evo-tilde { font-size: 2rem; }
  .pres-evo-unit { font-size: 2.2rem; }
  .pres-evo-bar-item {
    grid-template-columns: 1fr 60px;
    gap: 8px;
  }
  .pres-evo-bar-info {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 8px;
    align-items: baseline;
  }
  .pres-evo-bar-track { height: 24px; }
  .pres-evo-bar-highlight .pres-evo-bar-track { height: 32px; }
  .pres-evo-micro {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .pres-evo-micro-divider {
    width: 100%;
    height: 1px;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================
   Brand Assets Page
   ============================================ */

/* --- Hero --- */
.brand-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}
.brand-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  z-index: 0;
}
.brand-hero-bg::after {
  content: '';
  position: absolute;
  right: -10%;
  top: -30%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.brand-hero-watermark {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: auto;
  pointer-events: none;
  user-select: none;
}
@media (min-width: 992px) {
  .brand-hero-watermark {
    width: 460px;
    right: 5%;
  }
}
@media (max-width: 767.98px) {
  .brand-hero-watermark {
    width: 220px;
    right: -3%;
  }
}
.brand-hero .container {
  position: relative;
  z-index: 1;
}
.brand-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}
.brand-breadcrumb a {
  color: var(--text-light);
  transition: color var(--transition);
}
.brand-breadcrumb a:hover {
  color: var(--primary-light);
}
.brand-breadcrumb i {
  color: var(--text-muted);
  font-size: 0.7rem;
}
.brand-breadcrumb span {
  color: var(--primary-light);
}
.brand-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.brand-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}

/* --- Logo Cards --- */
.brand-section {
  padding: 80px 0 100px;
}
.brand-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform 0.2s ease;
}
.brand-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.brand-card-label {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  padding: 1.25rem 1.5rem 0;
}
.brand-preview {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  min-height: 180px;
}
.brand-preview img {
  max-width: 280px;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brand-preview-light {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.brand-preview-dark {
  background: var(--dark);
}
.brand-bg-label {
  position: absolute;
  top: 0.75rem;
  left: 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.5;
}
.brand-preview-light .brand-bg-label {
  color: var(--text-muted);
}
.brand-preview-dark .brand-bg-label {
  color: rgba(255, 255, 255, 0.5);
}
.brand-card-actions {
  display: flex;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
}
.brand-card-actions .brand-dl-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 100px;
  border: 2px solid var(--primary);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.brand-card-actions .brand-dl-btn.primary {
  background: var(--primary);
  color: #fff;
}
.brand-card-actions .brand-dl-btn.primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35);
}
.brand-card-actions .brand-dl-btn.outline {
  background: #fff !important;
  color: var(--primary) !important;
  border: 2px solid var(--primary) !important;
}
.brand-card-actions .brand-dl-btn.outline:hover {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35);
}

/* --- Usage Guidelines --- */
.brand-guide {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 148, 136, 0.12);
}
.brand-guide-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.1);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.25rem;
}
.brand-guide h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.brand-guide p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.brand-guide-contact {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.brand-guide-contact a {
  color: var(--primary);
  font-weight: 500;
  margin-left: 0.25rem;
}
.brand-guide-contact a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* --- Brand Responsive --- */
@media (max-width: 767.98px) {
  .brand-hero {
    padding: 130px 0 50px;
  }
  .brand-hero-title {
    font-size: 2rem;
  }
  .brand-preview {
    padding: 2rem 1.5rem;
    min-height: 140px;
  }
  .brand-preview img {
    max-width: 200px;
    max-height: 90px;
  }
  .brand-guide {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }
  .brand-card-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ============================================
   Contact Page
   ============================================ */

/* --- Hero (reuses brand-hero structure) --- */
.contact-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  z-index: 0;
}
.contact-hero-bg::after {
  content: '';
  position: absolute;
  right: -10%;
  top: -30%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.contact-hero .container {
  position: relative;
  z-index: 1;
}

/* --- Contact Cards --- */
.contact-section {
  padding: 80px 0 60px;
}
.contact-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform 0.2s ease;
}
.contact-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.contact-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-50);
  border-radius: 16px;
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.contact-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.contact-card-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  margin-top: 0.25rem;
  transition: color var(--transition);
}
.contact-card-link:hover {
  color: var(--primary-dark);
}
.contact-card-link i {
  font-size: 0.8rem;
}

/* --- Venue Strip --- */
.contact-venue {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  background: var(--dark);
  border-radius: var(--radius-lg);
  color: #fff;
}
.contact-venue-info {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-venue-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  font-size: 1.2rem;
  color: var(--primary-light);
}
.contact-venue h3 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}
.contact-venue p {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.contact-venue-address {
  font-weight: 400 !important;
  font-size: 0.85rem !important;
  color: var(--text-light) !important;
  margin-top: 0.25rem !important;
}

/* --- Social Links --- */
.contact-social {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem 2rem;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
}
.contact-social h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.contact-social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-social-links a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: all 0.2s ease;
}
.contact-social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

/* --- Contact Responsive --- */
@media (max-width: 767.98px) {
  .contact-hero {
    padding: 130px 0 50px;
  }
  .contact-venue {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

/* ============================================
   LETTERS PAGE
   ============================================ */

/* --- Hero --- */
.letters-page .letters-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}
.letters-page .letters-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0b1120 0%, var(--primary-dark) 60%, #064e3b 100%);
  z-index: 0;
}
.letters-page .letters-hero-bg::after {
  content: '';
  position: absolute;
  right: -10%;
  top: -30%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(13, 148, 136, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.letters-page .letters-hero .container {
  position: relative;
  z-index: 1;
}

/* --- Header Section --- */
.letters-page .letters-header-section {
  padding: 40px 0 0;
  background: var(--bg);
}
.letters-page .letter-header-layout {
  display: flex !important;
  flex-direction: row !important;
  gap: 2.5rem;
  align-items: stretch;
}
.letters-page .letter-header-left {
  flex: 1 1 0%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.letters-page .letter-article-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.letters-page .letter-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  background: var(--primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-primary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.letters-page .letter-badge i {
  font-size: 0.85rem;
}
.letters-page .letter-date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-primary);
}
.letters-page .letter-date i {
  font-size: 0.8rem;
}
.letters-page .letter-article-title {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}
.letters-page .letter-article-author {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  margin-bottom: 0;
}
.letters-page .letter-author-name {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--dark);
}
.letters-page .letter-author-role {
  color: var(--text-muted);
}
.letters-page .letter-divider {
  color: var(--border);
}
.letters-page .letter-location {
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.letters-page .letter-location i {
  color: var(--primary);
  font-size: 0.8rem;
}

/* Share hover effects */
.ltr-share-icon:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}
.ltr-share-icon:hover img {
  filter: brightness(0) invert(1) !important;
}
.ltr-share-fa:hover {
  color: #fff !important;
}
.letter-share-copy:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}
.letter-share-copy.copied {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}
.letter-copy-toast {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--dark);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}
.letter-copy-toast::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--dark);
}
.letter-copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* --- PDF Card --- */
.letters-page .letter-pdf-card {
  flex: 0 0 260px;
  width: 260px;
  max-width: 260px;
  background: linear-gradient(145deg, var(--dark) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.letters-page .letter-pdf-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.25) 0%, transparent 70%);
  pointer-events: none;
}
.letters-page .letter-pdf-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}
.letters-page .letter-pdf-card-icon i {
  font-size: 1.5rem;
  color: #fff;
}
.letters-page .letter-pdf-card-label {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-light);
  margin-bottom: 0.4rem;
}
.letters-page .letter-pdf-card-size {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.1rem;
}
.letters-page .letter-pdf-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.6rem 1rem;
  border-radius: 100px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.2s ease;
  margin-bottom: 0.6rem;
}
.letters-page .letter-pdf-card-btn:hover {
  background: var(--primary-light);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.35);
}
.letters-page .letter-pdf-card-btn i {
  font-size: 0.9rem;
}
.letters-page .letter-pdf-card-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}
.letters-page .letter-pdf-card-link:hover {
  color: rgba(255, 255, 255, 0.85);
}
.letters-page .letter-pdf-card-link i {
  font-size: 0.7rem;
}

/* --- Letter Body Section --- */
.letters-page .letters-body-section {
  padding: 40px 0 100px;
  background: var(--bg);
}
.letters-page .letter-body-content {
  max-width: 780px;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}
.letters-page .letter-body-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.letters-page .letter-body-content p:last-of-type {
  margin-bottom: 0;
}
.letters-page .letter-body-content strong {
  color: var(--dark);
  font-weight: 600;
}
.letters-page .letter-salutation {
  margin-bottom: 1.5rem !important;
}

/* Lists */
.letters-page .letter-list {
  padding-left: 1.5rem;
  margin: 1rem 0 1.5rem;
}
.letters-page .letter-list li {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 0.75rem;
  padding-left: 0.25rem;
}
.letters-page .letter-list li::marker {
  color: var(--primary);
}
.letters-page .letter-list li:last-child {
  margin-bottom: 0;
}

/* Closing */
.letters-page .letter-closing {
  margin-top: 2rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Signature */
.letters-page .letter-signature {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.letters-page .signature-name {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}
.letters-page .signature-role {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
  .letters-page .letter-header-layout {
    flex-direction: column !important;
  }
  .letters-page .letter-pdf-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    text-align: left;
    padding: 1.25rem;
    gap: 0.5rem;
  }
  .letters-page .letter-pdf-card::before { display: none; }
  .letters-page .letter-pdf-card-icon { margin-bottom: 0; margin-right: 0.75rem; width: 44px; height: 44px; }
  .letters-page .letter-pdf-card-icon i { font-size: 1.2rem; }
  .letters-page .letter-pdf-card-label { margin-bottom: 0; }

  .letters-page .letter-pdf-card-size { flex-basis: 100%; margin-bottom: 0.75rem; }
  .letters-page .letter-pdf-card-btn { width: auto; margin-bottom: 0; margin-right: 0.75rem; }
}

@media (max-width: 991.98px) {
  .ltr-header-row {
    flex-direction: column !important;
  }
  .ltr-pdf-card {
    flex: 0 0 auto !important;
    width: 100% !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    align-items: center;
    text-align: left;
    padding: 1.25rem !important;
  }
  .ltr-pdf-card .letter-pdf-card-icon { margin-bottom: 0; margin-right: 0.75rem; }
  .ltr-pdf-card .letter-pdf-card-label { margin-bottom: 0; }
  .ltr-pdf-card .letter-pdf-card-size { flex-basis: 100%; margin-bottom: 0.75rem; }
}

@media (max-width: 767.98px) {
  .letters-page .letters-hero { padding: 130px 0 50px; }
  .letters-page .letter-body-content { padding-top: 1.5rem; }

  /* Share butonları mobilde küçük */
  .ltr-share-row {
    gap: 8px !important;
  }
  .ltr-share-row .letter-share-copy,
  .ltr-share-row .ltr-share-icon,
  .ltr-share-row .ltr-share-fa {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
  }
  .ltr-share-row .ltr-share-icon img {
    width: 18px !important;
    height: 18px !important;
  }
  .ltr-share-row .ltr-share-fa {
    font-size: 1rem !important;
  }
  .ltr-share-row .letter-share-copy {
    font-size: 0.95rem !important;
  }

  /* PDF kart mobilde dikey */
  .ltr-pdf-card {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
  }
  .ltr-pdf-card .letter-pdf-card-icon { margin-right: 0 !important; margin-bottom: 0.75rem; }
  .ltr-pdf-card .letter-pdf-card-btn { width: 100%; }
}


/* ========================================
   ACTION AGENDA — 9 THEMES (preview, v2 horizontal)
   ======================================== */
.themes-section {
  background: rgb(245, 249, 248);
}
.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding: 8px;
}
.theme-card {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: stretch;
  background: url('../img/bg/card-bg.svg') center/cover no-repeat;
  background-color: #001D4B;
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.25s ease;
  border: none;
  text-align: left;
  font-family: inherit;
  width: 100%;
  color: #fff;
  padding: 0;
}
.theme-card:hover,
.theme-card:focus-visible {
  outline: none;
  box-shadow: 0 0 25px rgba(0, 208, 122, 0.3),
              0 0 60px rgba(0, 208, 122, 0.15);
}

/* Per-theme accent background */
.theme-card.color-zerowaste { background-color: #0B2A2F; }
.theme-card.color-oceans    { background-color: #0B1E3D; }
.theme-card.color-food      { background-color: #2D1B00; }
.theme-card.color-cities    { background-color: #001D4B; }
.theme-card.color-caim      { background-color: #14202B; }
.theme-card.color-youth     { background-color: #1A0A2E; }
.theme-card.color-industry  { background-color: #00352A; }
.theme-card.color-energy    { background-color: #002C3E; }
.theme-card.color-synergy   { background-color: #1B2E1A; }

.theme-img-wrap {
  position: relative;
  width: 180px;
  /* Fixed height ≈ SVG's natural 549:394 aspect (1.39) — prevents the dome
     from stretching into an egg when the card grows for equal heights.
     align-self: end anchors the dome to the bottom of the taller card. */
  height: 140px;
  align-self: end;
  padding: 10px 0 0 0;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
  flex-shrink: 0;
}
/* Inline SVG fills the wrap — shape comes from SVG ellipses (see themes-modal.js buildCard) */
.theme-img-wrap svg {
  display: block;
  width: 100%;
  height: 100%;
}
.theme-img-wrap .theme-svg-image {
  transition: transform 0.6s ease;
  transform-origin: center;
  transform-box: fill-box;
}
.theme-card:hover .theme-img-wrap .theme-svg-image {
  transform: scale(1.05);
}
.theme-text {
  padding: 1.1rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0; /* allow text to shrink for ellipsis */
}
.theme-card h3 {
  font-size: 1.22rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.theme-preview {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.theme-slogan,
.theme-cta { display: none; } /* kart üstünde tutmuyoruz, modal'da gösteriliyor */

.theme-num {
  position: absolute;
  right: 1rem;
  bottom: -0.8rem;
  font-family: var(--font-primary, 'Outfit', sans-serif);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(0, 208, 122, 0.28);
  letter-spacing: -0.02em;
  pointer-events: none;
  transition: color 0.4s ease, text-shadow 0.4s ease;
}
.theme-card:hover .theme-num {
  color: rgba(0, 208, 122, 0.85);
  text-shadow: 0 0 20px rgba(0, 208, 122, 0.5),
               0 0 40px rgba(0, 208, 122, 0.25);
}

/* Mobile slider */
.themes-mobile-slider { display: none; }
.themes-mobile-slider .theme-card {
  grid-template-columns: 150px 1fr;
  min-height: 180px;
  align-items: center;
}
.themes-mobile-slider .theme-img-wrap {
  height: 108px;
  align-self: end;
  padding-top: 0;
}
.themes-mobile-slider .theme-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.05rem;
}
.themes-mobile-slider .theme-preview {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.themes-mobile-slider .theme-img-wrap {
  width: 150px;
  padding: 0;
  border-radius: 20px 0 0 20px;
}
.themes-mobile-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
  padding-bottom: 8px;
}
.themes-mobile-pagination .swiper-pagination-bullet {
  width: 24px; height: 4px;
  background: var(--primary, #00D07A);
  opacity: 0.25; border-radius: 4px;
  transition: opacity 0.3s, width 0.3s;
}
.themes-mobile-pagination .swiper-pagination-bullet-active {
  opacity: 1; width: 40px;
}

/* Responsive grid */
@media (max-width: 1199px) {
  .theme-grid { grid-template-columns: repeat(2, 1fr); }
  /* At 2-col layout cards are wider → titles wrap fewer lines → lower min-height is fine */
  .theme-card { min-height: 160px; }
}
@media (max-width: 767px) {
  .theme-grid { display: none; }
  .themes-mobile-slider { display: block; }
}

/* ========================================
   THEME MODAL — 2-column layout (content | form)
   ======================================== */
.theme-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  -webkit-overflow-scrolling: touch;
}
.theme-modal.is-open {
  display: flex;
  animation: themeModalFade 0.25s ease-out;
}
@keyframes themeModalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.theme-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.theme-modal-panel {
  position: relative;
  width: 100%;
  max-width: 1120px;
  max-height: 90vh;
  background: #0B1E3D;
  border-radius: 24px;
  color: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: themeModalSlide 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
@keyframes themeModalSlide {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.theme-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 1fr);
  max-height: 90vh;
}
.theme-modal-content {
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.theme-modal-form-panel {
  max-height: 90vh;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.28);
  border-left: 1px solid rgba(255,255,255,0.06);
  padding: 2.25rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.theme-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, transform 0.3s;
  font-size: 1.1rem;
}
.theme-modal-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}
.theme-modal-hero {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #001D4B;
}
.theme-modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.theme-modal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,30,61,0) 40%, rgba(11,30,61,0.85) 100%);
  pointer-events: none;
}
.theme-modal-num {
  position: absolute;
  right: 1.75rem;
  bottom: 0.5rem;
  font-family: var(--font-primary, 'Outfit', sans-serif);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(0, 208, 122, 0.85);
  letter-spacing: -0.02em;
  pointer-events: none;
  text-shadow: 0 0 20px rgba(0, 208, 122, 0.4);
  z-index: 2;
}
.theme-modal-body {
  padding: 2rem 2.25rem 2.5rem;
}
.theme-modal-slogan {
  color: var(--primary, #00D07A);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.theme-modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  color: #fff;
  line-height: 1.2;
}
.theme-modal-desc p {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0 0 0.9rem;
}
.theme-modal-desc p:last-child { margin-bottom: 0; }

.theme-priorities {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  border-left: 3px solid var(--primary, #00D07A);
}
.theme-priorities h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary, #00D07A);
  margin: 0 0 0.75rem;
  font-weight: 700;
}
.theme-priorities ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.theme-priorities li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  line-height: 1.55;
}
.theme-priorities li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0.4rem;
  color: var(--primary, #00D07A);
  font-weight: 700;
}
.theme-priorities li + li {
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Form column */
.theme-form-intro h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: #fff;
}
.theme-form-intro .form-subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 0.83rem;
  margin-bottom: 1.35rem;
  line-height: 1.55;
}
.theme-form label {
  display: block;
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  margin-bottom: 0.35rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.theme-form input,
.theme-form textarea,
.theme-form select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  /* 16px minimum prevents iOS Safari auto-zoom on focus; below 16px triggers zoom
     that doesn't reset when keyboard dismisses, leaving the page stuck zoomed in. */
  font-size: 16px;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}
.theme-form input:focus,
.theme-form textarea:focus,
.theme-form select:focus {
  outline: none;
  border-color: var(--primary, #00D07A);
  background: rgba(255,255,255,0.08);
}
.theme-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath fill='none' stroke='%23ffffff99' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.25rem;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}
.theme-form select option { color: #000; background: #fff; }
.theme-form select:invalid { color: rgba(255,255,255,0.45); }
/* Kill iOS/Safari autofill yellow — blend with our dark modal bg */
.theme-form input:-webkit-autofill,
.theme-form input:-webkit-autofill:hover,
.theme-form input:-webkit-autofill:focus,
.theme-form textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #0B1E3D inset !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
  transition: background-color 9999s ease-in-out 0s;
}
.theme-form textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.55;
}
.theme-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}
.theme-form-row.single { grid-template-columns: 1fr; }
.theme-form-row.two-col { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) {
  .theme-form-row.two-col { grid-template-columns: 1fr; }
}
.theme-form-field { display: block; }
.char-count {
  text-align: right;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
  transition: color 0.2s;
}
.char-count.warn { color: #f4a300; }
.char-count.max { color: #ff5a5a; font-weight: 600; }

.theme-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  background: var(--primary, #00D07A);
  color: #001D4B;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  margin-top: 0.5rem;
  font-family: inherit;
  letter-spacing: 0.01em;
  width: 100%;
  justify-content: center;
}
.theme-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,208,122,0.4);
}
.theme-submit:active { transform: translateY(0); }
.theme-submit i:first-child { font-size: 0.92rem; }
.theme-submit i:last-child { font-size: 0.78rem; transition: transform 0.2s; }
.theme-submit:hover i:last-child { transform: translateX(4px); }

.theme-form-note {
  margin-top: 0.65rem;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  font-style: italic;
  text-align: center;
}
.fallback-note {
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.fallback-note i { color: var(--primary, #00D07A); }
.fallback-note a {
  color: var(--primary, #00D07A);
  text-decoration: none;
  font-weight: 600;
}
.fallback-note a:hover { text-decoration: underline; }
.copy-email-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 0.25rem 0.6rem;
  border-radius: 8px;
  font-size: 0.72rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.copy-email-btn:hover { background: rgba(255,255,255,0.15); }
.copy-email-btn.done {
  background: var(--primary, #00D07A);
  color: #001D4B;
  border-color: var(--primary, #00D07A);
}

/* Body scroll lock when modal open */
body.theme-modal-open { overflow: hidden; }

/* Toast */
.theme-toast {
  position: fixed;
  top: 5.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(-140px);
  background: #001D4B;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  border-left: 3px solid var(--primary, #00D07A);
  z-index: 10000;
  font-size: 0.88rem;
  max-width: calc(100vw - 2rem);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.theme-toast.show {
  transform: translateX(-50%) translateY(0);
}

/* Responsive modal */
@media (max-width: 960px) {
  .theme-modal {
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .theme-modal-panel {
    max-height: none;
    height: auto;
    min-height: 100vh;
    border-radius: 0;
    overflow: visible;
  }
  .theme-modal-layout {
    grid-template-columns: 1fr;
    max-height: none;
  }
  .theme-modal-content {
    max-height: none;
    overflow: visible;
  }
  .theme-modal-form-panel {
    max-height: none;
    overflow: visible;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .theme-modal-close {
    position: fixed;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
}
@media (max-width: 767px) {
  /* NOTE: keep align-items: flex-start from the 960px rule. Do NOT set stretch —
     it triggers an iOS Safari flex-child sizing bug where .theme-modal-panel's
     #0B1E3D background fails to extend past 100vh, leaving long content rendered
     on top of the modal backdrop. */
  .theme-modal { padding: 0; }
  .theme-modal-panel { min-height: 100vh; }
  .theme-modal-hero { height: 200px; }
  .theme-modal-body { padding: 1.5rem 1.5rem 2rem; }
  .theme-modal-title { font-size: 1.4rem; }
  .theme-modal-num { font-size: 3.2rem; right: 1.25rem; }
  .theme-modal-form-panel { padding: 1.75rem 1.5rem; }
  .theme-modal-close { top: 12px; right: 12px; }
}

/* ============================================
   ABOUT THE ACTION AGENDA — Trigger + Modal
   ============================================ */
.themes-about-wrap {
  margin-top: 1.5rem;
  text-align: center;
}
.themes-about-btn {
  cursor: pointer;
  font-family: inherit;
}
.themes-about-btn i {
  font-size: 0.85rem;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.themes-about-btn:hover i {
  transform: translateX(4px);
}

/* Modal shell — positioned & displayed */
.about-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  -webkit-overflow-scrolling: touch;
}
.about-modal.is-open {
  display: flex;
  animation: aboutModalFade 0.25s ease-out;
}
@keyframes aboutModalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.about-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.about-modal-panel {
  position: relative;
  width: 100%;
  max-width: 760px;
  max-height: 88vh;
  background: #0B1E3D;
  border-radius: 24px;
  color: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: aboutModalSlide 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@keyframes aboutModalSlide {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.about-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.about-modal-close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(90deg);
}
.about-modal-body {
  padding: 3rem 3rem 2.5rem;
  overflow-y: auto;
  overflow-x: hidden;
}
.about-modal-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-light, #14b8a6);
  padding: 0.35rem 0.85rem;
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.about-modal-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.15rem;
  text-align: left;
}
.about-modal-content p:last-child {
  margin-bottom: 0;
}
.about-modal-attribution {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

/* Body scroll lock when about modal is open */
body.about-modal-open { overflow: hidden; }

/* Responsive about modal — MODAL-LEVEL scroll container pattern.
   Do NOT set align-items: stretch (iOS Safari flex-child sizing bug).
   Do NOT put overflow-y:auto on the panel or body (iOS scroll momentum dies).
   Use 100dvh so content clears Safari's dynamic bottom toolbar on iPhone. */
@media (max-width: 960px) {
  .about-modal {
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .about-modal-panel {
    max-height: none;
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: visible;
  }
  .about-modal-body {
    overflow: visible;
    max-height: none;
  }
  .about-modal-close {
    position: fixed;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
}
@media (max-width: 767px) {
  .about-modal { padding: 0; }
  .about-modal-panel { border-radius: 0; }
  .about-modal-body {
    /* 100dvh on the panel already accounts for Safari's dynamic toolbar —
       only a small safe-area buffer is needed here (iPhone home indicator). */
    padding: 4.5rem 1.5rem calc(2rem + env(safe-area-inset-bottom, 0px));
  }
  .about-modal-close {
    top: 12px;
    right: 12px;
  }
  .about-modal-content p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

/* ============================================
   SPEECHES — list page + detail page
   Detail page reuses .letters-page visual language
   (body class="letters-page speech-page" for inheritance).
   ============================================ */

/* ---- LIST PAGE (speeches-grid) ---- */
.speeches-page .speeches-list-section {
  background: linear-gradient(180deg, #fff 0%, #f7faf9 100%);
  padding: 4rem 0 5rem;
}
.speeches-page .speeches-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  max-width: 980px;
  margin: 0 auto;
}
.speeches-page .speech-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(15, 67, 60, 0.06), 0 1px 3px rgba(15, 67, 60, 0.04);
  border: 1px solid rgba(15, 67, 60, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  text-decoration: none;
  color: inherit;
}
.speeches-page .speech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(15, 67, 60, 0.12), 0 2px 6px rgba(15, 67, 60, 0.06);
  text-decoration: none;
  color: inherit;
}
.speeches-page .speech-card-media {
  position: relative;
  background: #0f433c;
  overflow: hidden;
  min-height: 220px;
}
.speeches-page .speech-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.speeches-page .speech-card:hover .speech-card-media img {
  transform: scale(1.04);
}
.speeches-page .speech-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 67, 60, 0.25) 0%, rgba(15, 67, 60, 0) 60%);
  pointer-events: none;
}
.speeches-page .speech-card-body {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}
.speeches-page .speech-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-primary);
}
.speeches-page .speech-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.speeches-page .speech-card-meta i {
  color: var(--primary);
  font-size: 0.85rem;
}
.speeches-page .speech-card-title {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin: 0.25rem 0 0.5rem;
  font-family: var(--font-primary);
}
.speeches-page .speech-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.speeches-page .speech-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 0.5rem;
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.speeches-page .speech-card-cta i {
  transition: transform 0.25s ease;
}
.speeches-page .speech-card:hover .speech-card-cta i {
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .speeches-page .speech-card {
    grid-template-columns: 1fr;
  }
  .speeches-page .speech-card-media {
    min-height: 200px;
    aspect-ratio: 16 / 9;
  }
  .speeches-page .speech-card-body {
    padding: 1.5rem;
  }
}

/* ---- DETAIL PAGE (speech-page; inherits .letters-page styles) ---- */

/* Speech metadata strip — replaces letter-date single field */
.speech-page .speech-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-primary);
}
.speech-page .speech-meta-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.speech-page .speech-meta-strip i {
  color: var(--primary);
  font-size: 0.95rem;
}
.speech-page .speech-meta-strip .meta-divider {
  color: var(--border);
}

/* Two PDF buttons (EN/TR) inside the existing letter-pdf-card */
.speech-page .speech-pdf-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.speech-page .speech-pdf-buttons .letter-pdf-card-btn {
  margin: 0;
}
.speech-page .speech-pdf-buttons .letter-pdf-card-btn .pdf-lang-tag {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.18);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

/* Hero image — full-width banner above the speech body */
.speech-page .speech-hero-image {
  margin: 2.5rem 0 1rem;
}
.speech-page .speech-hero-image figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(15, 67, 60, 0.15);
  position: relative;
}
.speech-page .speech-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.speech-page .speech-hero-image figcaption {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.85rem;
  font-style: italic;
  font-family: var(--font-primary);
}

/* Inline secondary photo nested in speech body */
.speech-page .speech-photo-inline {
  margin: 2.5rem -1rem;
}
.speech-page .speech-photo-inline figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(15, 67, 60, 0.12);
}
.speech-page .speech-photo-inline img {
  width: 100%;
  height: auto;
  display: block;
}
.speech-page .speech-photo-inline figcaption {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
  font-style: italic;
  font-family: var(--font-primary);
  padding: 0 1rem;
}

/* Pull-quote inside the body — visual break for memorable lines */
.speech-page .speech-pullquote {
  margin: 2.5rem 0;
  padding: 1.75rem 2rem 1.75rem 2.25rem;
  background: linear-gradient(135deg, rgba(15, 67, 60, 0.04) 0%, rgba(15, 67, 60, 0.01) 100%);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  position: relative;
}
.speech-page .speech-pullquote::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 12px;
  font-size: 4rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.18;
  font-family: Georgia, serif;
}
.speech-page .speech-pullquote p {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem) !important;
  line-height: 1.55 !important;
  color: var(--dark) !important;
  font-weight: 500;
  font-style: italic;
  margin: 0 !important;
}

/* Back link at the bottom */
.speech-page .speech-back-section {
  background: #fff;
  padding: 2rem 0 5rem;
}
.speech-page .speech-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.4rem;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s ease;
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.speech-page .speech-back-link:hover {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  transform: translateX(-3px);
}
.speech-page .speech-back-link i {
  transition: transform 0.25s ease;
}
.speech-page .speech-back-link:hover i {
  transform: translateX(-3px);
}

@media (max-width: 767px) {
  .speech-page .speech-hero-image {
    margin: 1.75rem 0 0.5rem;
  }
  .speech-page .speech-hero-image figure {
    border-radius: 12px;
  }
  .speech-page .speech-photo-inline {
    margin: 2rem 0;
  }
  .speech-page .speech-pullquote {
    margin: 2rem 0;
    padding: 1.4rem 1.25rem 1.4rem 1.5rem;
  }
  .speech-page .speech-pullquote::before {
    top: -8px;
    left: 6px;
    font-size: 3rem;
  }
  .speech-page .speech-back-section {
    padding: 1.5rem 0 3rem;
  }
}

/* ============================================
   NEWS — list page + detail page + home "Latest Updates" section
   Reuses .letters-page / .speech-page visual language;
   News uses a warm amber accent (vs teal speech accent) for the badge.
   ============================================ */

/* News badge accent (warm amber for "news" type) */
.news-page .news-badge,
.news-detail-page .news-badge,
.latest-updates .updates-badge.type-news {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-primary);
}
.news-page .news-badge i,
.news-detail-page .news-badge i,
.latest-updates .updates-badge.type-news i { font-size: 0.85rem; }

/* Speech badge accent (teal — primary brand) for the home updates section */
.latest-updates .updates-badge.type-speech {
  background: linear-gradient(135deg, var(--primary) 0%, #0a302b 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-primary);
}
.latest-updates .updates-badge.type-speech i { font-size: 0.85rem; }

/* News detail body — same as letter-body-content but lead paragraph styled larger */
.news-detail-page .letter-body-content .news-lead {
  font-size: clamp(1.05rem, 1.55vw, 1.2rem);
  line-height: 1.6;
  color: var(--dark);
  font-weight: 500;
  border-bottom: 1px solid rgba(15,67,60,0.1);
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}
.news-detail-page .news-byline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-primary);
  margin-bottom: 1.75rem;
}
.news-detail-page .news-byline i {
  color: var(--primary);
}

/* Cross-link card inside news detail (CTA back to speech) */
.news-detail-page .news-cross-link {
  margin: 2.5rem 0 0.5rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(15,67,60,0.12);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  background: linear-gradient(135deg, rgba(15,67,60,0.03) 0%, rgba(15,67,60,0.005) 100%);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.news-detail-page .news-cross-link-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.news-detail-page .news-cross-link-text {
  flex: 1;
  min-width: 200px;
}
.news-detail-page .news-cross-link-text strong {
  display: block;
  color: var(--dark);
  font-size: 0.95rem;
  font-family: var(--font-primary);
  margin-bottom: 2px;
}
.news-detail-page .news-cross-link-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.news-detail-page .news-cross-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.news-detail-page .news-cross-link-cta:hover {
  background: #0a302b;
  color: #fff;
  text-decoration: none;
  transform: translateX(3px);
}
.news-detail-page .news-cross-link-cta i { font-size: 0.8rem; }

/* ---- HOME "Latest Updates" section ---- */
.latest-updates {
  position: relative;
  background: linear-gradient(135deg, #eaf3f1 0%, #f5faf9 50%, #eaf3f1 100%);
  padding: 5.5rem 0 5rem;
  overflow: hidden;
}
.latest-updates::before,
.latest-updates::after {
  content: "";
  position: absolute;
  background-image: url("../img/icons/amblem.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
  z-index: 0;
  opacity: 0.10;
}
.latest-updates::before {
  width: 360px;
  height: 360px;
  top: -90px;
  left: -110px;
  transform: rotate(-12deg);
}
.latest-updates::after {
  width: 420px;
  height: 420px;
  bottom: -130px;
  right: -140px;
  transform: rotate(18deg);
}
.latest-updates .container {
  position: relative;
  z-index: 1;
}
.latest-updates .section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.latest-updates .section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.95rem;
  font-family: var(--font-primary);
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 67, 60, 0.15);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(15, 67, 60, 0.06);
}
.latest-updates .section-label i {
  font-size: 1rem;
  color: var(--primary);
}
.latest-updates .section-heading {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 0.85rem;
  font-family: var(--font-primary);
}
.latest-updates .section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}
.latest-updates .updates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 1080px;
  margin: 0 auto;
}
.latest-updates .update-card {
  display: block;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 24px rgba(15, 67, 60, 0.06), 0 1px 3px rgba(15, 67, 60, 0.04);
  border: 1px solid rgba(15, 67, 60, 0.06);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.latest-updates .update-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(15, 67, 60, 0.14), 0 2px 8px rgba(15, 67, 60, 0.06);
  text-decoration: none;
  color: inherit;
}
.latest-updates .update-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0f433c;
}
.latest-updates .update-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.latest-updates .update-card:hover .update-card-media img {
  transform: scale(1.05);
}
.latest-updates .update-card-badge-wrap {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}
.latest-updates .update-card-body {
  padding: 1.6rem 1.75rem 1.75rem;
}
.latest-updates .update-card-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}
.latest-updates .update-card-meta i {
  color: var(--primary);
  font-size: 0.85rem;
}
.latest-updates .update-card-title {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin: 0 0 0.7rem;
  font-family: var(--font-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.latest-updates .update-card-excerpt {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.latest-updates .update-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.latest-updates .update-card-cta i {
  transition: transform 0.25s ease;
}
.latest-updates .update-card:hover .update-card-cta i {
  transform: translateX(4px);
}
.latest-updates .updates-foot {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.latest-updates .updates-foot-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  background: #fff;
  border: 1.5px solid var(--primary);
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-primary);
  transition: all 0.28s ease;
  box-shadow: 0 2px 8px rgba(15, 67, 60, 0.05);
}
.latest-updates .updates-foot-link:hover {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 67, 60, 0.18);
}
.latest-updates .updates-foot-link.solid {
  background: var(--primary);
  color: #fff;
}
.latest-updates .updates-foot-link.solid:hover {
  background: #0a302b;
  border-color: #0a302b;
}
.latest-updates .updates-foot-link i {
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}
.latest-updates .updates-foot-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .latest-updates {
    padding: 3.5rem 0;
  }
  .latest-updates::before { width: 240px; height: 240px; top: -50px; left: -70px; }
  .latest-updates::after  { width: 240px; height: 240px; bottom: -60px; right: -80px; }
  .latest-updates .updates-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .latest-updates .update-card-body {
    padding: 1.35rem 1.4rem 1.5rem;
  }
  .latest-updates .updates-foot {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .latest-updates .updates-foot-link {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
