/* ===================================
   SIM - Sivil İnsiyatif Merkezi
   Ana Stil Dosyası
   =================================== */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Colors - SIM Logo: Koyu lacivert + Kırmızı */
  --primary: #1B2137;
  --primary-light: #2a3150;
  --primary-dark: #111627;
  --accent: #C41E3A;
  --accent-hover: #a81830;
  --accent-light: rgba(196, 30, 58, 0.08);
  --white: #ffffff;
  --text-dark: #1B2137;
  --text-muted: #5a6275;
  --text-light: #8b91a0;
  --bg-light: #f7f8fa;
  --bg-section: #f0f1f5;
  --border-color: #e2e4e9;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3.5rem;

  /* Spacing */
  --section-padding: 80px 0;
  --container-max: 1200px;
  --container-padding: 0 24px;

  /* Border Radius - Daha köşeli kurumsal görünüm */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-full: 50%;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-family);
}

input, textarea, select {
  font-family: var(--font-family);
  outline: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ---- Section Titles ---- */
.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: transparent;
  color: var(--accent);
  font-size: var(--font-size-xs);
  font-weight: 600;
  border: 1px solid var(--accent);
  border-radius: 2px;
  margin-bottom: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-title {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo-img {
  height: 80px;
  width: 82px;
}

.footer-logo .logo-img {
  height: 72px;
}

/* Logo Icon - SIM geometrik köşe braket tasarımı */
.logo-icon {
  width: 44px;
  height: 44px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sol alt köşe braket - lacivert */
.logo-icon::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border-left: 4px solid var(--primary);
  border-bottom: 4px solid var(--primary);
}

/* Sağ üst köşe braket - kırmızı */
.logo-icon::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  border-right: 4px solid var(--accent);
  border-top: 4px solid var(--accent);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .brand-name {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.logo-text .brand-sub {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--accent);
  background: var(--accent-light);
}

.nav-link.active {
  color: var(--accent);
}

.nav-link .arrow {
  font-size: 10px;
  transition: transform var(--transition-fast);
}

.nav-item:hover .arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-item {
  padding-bottom: 8px;
  margin-bottom: -8px;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.15);
  border: 1px solid var(--border-color);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  z-index: 100;
}

/* Invisible bridge to prevent hover gap */
.dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.dropdown-link::before {
  content: '\f105'; /* FontAwesome angle-right */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 16px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition-fast);
  color: var(--accent);
}

.dropdown-link:hover {
  background: var(--bg-light);
  color: var(--accent);
  padding-left: 36px;
}

.dropdown-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.dropdown-divider {
  height: 1px;
  background: var(--border-color);
  margin: 4px 8px;
}

/* Nested dropdown */
.dropdown-item-has-children {
  position: relative;
}

.dropdown-item-has-children > .dropdown-link::after {
  content: '›';
  float: right;
  font-size: 16px;
}

.dropdown-item-has-children .sub-dropdown {
  position: absolute;
  left: calc(100% + 4px);
  top: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all var(--transition-fast);
}

.dropdown-item-has-children:hover > .sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Header CTA Button */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--white);
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.header-cta:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.header-cta .cta-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: 100px;
}

@keyframes revealUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(110deg, transparent 35%, rgba(226, 232, 240, 0.4) 35%, rgba(226, 232, 240, 0.4) 55%, transparent 55%),
    linear-gradient(60deg, transparent 15%, rgba(241, 245, 249, 0.7) 15%, rgba(241, 245, 249, 0.7) 45%, transparent 45%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  padding-right: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: transparent;
  border-left: 3px solid var(--accent);
  margin-bottom: 24px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title {
  font-size: var(--font-size-5xl);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
  opacity: 0;
  animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.1s;
}

.hero-description {
  font-size: var(--font-size-lg);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
  opacity: 0;
  animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
}

.hero-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  width: fit-content;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  opacity: 0;
  animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.3s;
}

.hero-contact-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
}

.hero-contact-text {
  display: flex;
  flex-direction: column;
}

.hero-contact-text .label {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  font-weight: 500;
}

.hero-contact-text .phone {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--primary);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  position: relative;
}

.hero-image-grid .img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(27, 33, 55, 0.08);
  transition: all 0.4s ease;
}

.hero-image-grid .img-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(27, 33, 55, 0.12);
}

.hero-image-grid .img-wrapper:first-child {
  grid-column: 1 / -1;
  height: 300px;
}

.hero-image-grid .img-wrapper:nth-child(2),
.hero-image-grid .img-wrapper:nth-child(3) {
  height: 180px;
}

.hero-image-grid .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating stat card on hero (Corporate gentle float) */
.hero-stat-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(27, 33, 55, 0.1);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 5;
  animation: gentleFloat 6s ease-in-out infinite;
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-stat-card .stat-number {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--accent);
}

.hero-stat-card .stat-label {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  font-weight: 500;
}

/* ===================================
   STATS BAR
   =================================== */
.stats-bar {
  background: var(--primary);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(232, 168, 56, 0.1) 0%, transparent 50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-item .stat-number {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--accent);
}

.stat-item .stat-label {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ===================================
   PROJECTS SECTION
   =================================== */
.projects-section {
  padding: var(--section-padding);
  background: var(--white);
}

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

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
  position: relative;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.project-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-card:hover .project-card-image img {
  transform: scale(1.08);
}

.project-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-card-badge.active {
  background: #10b981;
  color: var(--white);
}

.project-card-badge.upcoming {
  background: var(--accent);
  color: var(--white);
}

.project-card-badge.completed {
  background: var(--primary);
  color: var(--white);
}

.project-card-content {
  padding: 24px;
}

.project-card-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.project-card-desc {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.project-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.project-card-date {
  font-size: var(--font-size-xs);
  color: var(--text-light);
  font-weight: 500;
}

.project-card-link {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition-fast);
}

.project-card-link:hover {
  gap: 8px;
}

.project-progress {
  height: 7px;
  margin-top: 15px;
  overflow: hidden;
  border-radius: 10px;
  background: #e7ebee;
}

.project-progress span {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #2da977);
}

.project-detail-list {
  display: grid;
  gap: 28px;
}

.project-detail-card {
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.project-detail-summary {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
}

.project-detail-summary > img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}

.project-detail-summary > div {
  padding: 36px;
}

.project-detail-summary .project-card-badge {
  position: static;
  display: inline-flex;
}

.project-detail-summary h3 {
  margin: 18px 0 12px;
  color: var(--primary);
  font-size: var(--font-size-2xl);
}

.project-detail-summary p {
  color: var(--text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.75;
}

.project-detail-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  color: var(--text-light);
  font-size: var(--font-size-xs);
}

.project-detail-meta strong { color: var(--accent); }

.public-stage-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-color);
  background: var(--border-color);
  list-style: none;
}

.public-stage-list li {
  position: relative;
  min-height: 180px;
  display: flex;
  gap: 14px;
  padding: 26px 21px;
  background: #fafbfb;
}

.public-stage-list li.current { background: #fff5f6; }
.public-stage-list li.completed { background: #f1faf5; }

.public-stage-list li > b {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  flex: 0 0 29px;
  border-radius: 50%;
  color: #fff;
  background: #aeb7bd;
  font-size: 11px;
}

.public-stage-list li.current > b { background: var(--accent); }
.public-stage-list li.completed > b { background: #2da977; }
.public-stage-list li > span { display: flex; flex-direction: column; }
.public-stage-list strong { color: var(--primary); font-size: 13px; line-height: 1.45; }
.public-stage-list small { margin-top: 9px; color: var(--text-muted); font-size: 11px; line-height: 1.55; }
.public-stage-list time { margin-top: auto; padding-top: 15px; color: var(--text-light); font-size: 10px; font-weight: 600; }

.report-download {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--accent);
  font-size: var(--font-size-xs);
  font-weight: 700;
}

.content-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.events-public-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

@media (max-width: 980px) {
  .project-detail-summary { grid-template-columns: 220px minmax(0, 1fr); }
  .public-stage-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .events-public-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .project-detail-summary { grid-template-columns: 1fr; }
  .project-detail-summary > img { min-height: 210px; max-height: 240px; }
  .project-detail-summary > div { padding: 25px; }
  .public-stage-list, .events-public-grid { grid-template-columns: 1fr; }
  .public-stage-list li { min-height: 150px; }
}

/* ===================================
   ANNOUNCEMENTS SECTION
   =================================== */
.announcements-section {
  padding: var(--section-padding);
  background: var(--bg-light);
}

.announcements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.announcement-card {
  display: flex;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.announcement-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.announcement-date-box {
  min-width: 64px;
  text-align: center;
  padding: 12px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.announcement-date-box .day {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.announcement-date-box .month {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--accent-hover);
  text-transform: uppercase;
}

.announcement-content h3 {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  transition: color var(--transition-fast);
}

.announcement-card:hover .announcement-content h3 {
  color: var(--accent);
}

.announcement-content p {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

.announcement-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ===================================
   EVENTS SECTION
   =================================== */
.events-section {
  padding: var(--section-padding);
  background: var(--white);
}

.events-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition-base);
}

.event-card:hover::before {
  transform: scaleY(1);
}

.event-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.event-card-date {
  font-size: var(--font-size-xs);
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-card h3 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.event-card p {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.event-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-xs);
  color: var(--text-light);
  font-weight: 500;
}

/* ===================================
   MISSION & VISION SECTION
   =================================== */
.mission-section {
  padding: var(--section-padding);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: var(--primary);
  clip-path: polygon(0 0, 85% 0, 70% 100%, 0 100%);
}

.mission-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.mission-image {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: auto;
  background: var(--bg-light);
}

.mission-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.mission-content {
  padding-left: 20px;
}

.mission-content .section-badge {
  margin-bottom: 20px;
}

.mission-block {
  margin-bottom: 40px;
}

.mission-block h2 {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.mission-block p {
  font-size: var(--font-size-base);
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===================================
   REPORTS SECTION
   =================================== */
.reports-section {
  padding: var(--section-padding);
  background: var(--bg-light);
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.report-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.report-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.report-icon {
  min-width: 56px;
  height: 56px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent);
}

.report-info h3 {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.report-info p {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

.report-info .report-date {
  font-size: var(--font-size-xs);
  color: var(--text-light);
  margin-top: 4px;
}

/* ===================================
   ACTIVITIES SECTION
   =================================== */
.activities-section {
  padding: var(--section-padding);
  background: var(--white);
}

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

.activity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.activity-card-image {
  height: 180px;
  overflow: hidden;
}

.activity-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.activity-card:hover .activity-card-image img {
  transform: scale(1.05);
}

.activity-card-content {
  padding: 20px;
}

.activity-card-content h3 {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.activity-card-content p {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

.activity-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
  font-size: var(--font-size-xs);
  color: var(--text-light);
}

/* ===================================
   CTA BANNER
   =================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 168, 56, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn-dark:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 60px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand .footer-logo .logo-icon {
  background: var(--accent);
}

.footer-brand .footer-logo .logo-icon::before {
  border-color: var(--white);
}

.footer-brand .footer-logo .logo-icon::after {
  background: var(--white);
}

.footer-brand .brand-name {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--white);
}

.footer-brand .brand-sub {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
  font-size: var(--font-size-sm);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: var(--font-size-sm);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* ===================================
   SCROLL TO TOP
   =================================== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: 999;
  cursor: pointer;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--accent-hover);
  transform: translateY(-4px);
}

/* ===================================
   PAGE HEADER (Sub Pages)
   =================================== */
.page-header {
  background: var(--primary);
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(232, 168, 56, 0.1) 0%, transparent 70%);
}

.page-header h1 {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.6);
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.page-breadcrumb a:hover {
  color: var(--accent);
}

.page-breadcrumb .separator {
  color: rgba(255, 255, 255, 0.3);
}

/* ===================================
   CONTENT PAGES
   =================================== */
.page-content {
  padding: var(--section-padding);
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  margin-top: 32px;
}

.content-wrapper p {
  font-size: var(--font-size-base);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Team Members Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all var(--transition-base);
}

.team-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.team-card-image {
  height: 260px;
  overflow: hidden;
  background: var(--bg-light);
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-info {
  padding: 20px;
}

.team-card-info h3 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--primary);
}

.team-card-info .position {
  font-size: var(--font-size-sm);
  color: var(--accent);
  font-weight: 600;
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.contact-info-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.contact-info-icon {
  min-width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
}

.contact-info-card h4 {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  margin: 0;
}

/* Map Container */
.map-container {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  background: var(--bg-light);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===================================
   ANIMATIONS
   =================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger animation delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===================================
   RESPONSIVE
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --font-size-5xl: 2.5rem;
    --font-size-4xl: 2rem;
    --font-size-3xl: 1.75rem;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    padding-right: 0;
    text-align: center;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-contact {
    margin: 0 auto;
  }

  .hero-stat-card {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .projects-grid,
  .events-timeline,
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-section::before {
    display: none;
  }

  .mission-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-image {
    height: auto;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

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

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

/* Mobile */
@media (max-width: 768px) {
  :root {
    --font-size-5xl: 2rem;
    --font-size-4xl: 1.75rem;
    --font-size-3xl: 1.5rem;
    --section-padding: 60px 0;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 24px 24px;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--transition-base);
    overflow-y: auto;
  }

  .main-nav.active {
    transform: translateX(0);
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    padding: 14px 16px;
    font-size: var(--font-size-base);
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: var(--bg-light);
    border-radius: 0;
  }

  .dropdown.mobile-open {
    display: block;
  }

  .dropdown-item-has-children .sub-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: transparent;
  }

  .dropdown-item-has-children .sub-dropdown.mobile-open {
    display: block;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-image-grid .img-wrapper:first-child {
    height: 220px;
  }

  .hero-image-grid .img-wrapper:nth-child(2),
  .hero-image-grid .img-wrapper:nth-child(3) {
    height: 140px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .projects-grid,
  .events-timeline,
  .activities-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .page-header {
    padding: 120px 0 40px;
  }

  .page-header h1 {
    font-size: var(--font-size-2xl);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  :root {
    --font-size-5xl: 1.75rem;
    --container-padding: 0 16px;
  }

  .hero-badge {
    font-size: var(--font-size-xs);
  }

  .stat-item .stat-number {
    font-size: var(--font-size-2xl);
  }

  .hero-stat-card {
    display: none;
  }
}

/* ===================================
   SURVEY MODAL
   =================================== */
.survey-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 33, 55, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.survey-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.survey-modal-content {
  background: var(--white);
  width: 90%;
  max-width: 450px;
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: all var(--transition-base);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-color);
}

.survey-modal-overlay.show .survey-modal-content {
  transform: translateY(0) scale(1);
}

.survey-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 20px;
  color: var(--text-light);
  cursor: pointer;
  transition: color var(--transition-fast);
  padding: 4px;
}

.survey-close-btn:hover {
  color: var(--accent);
}

.survey-icon {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 20px;
}

.survey-modal-content h3 {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.survey-modal-content p {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

.survey-actions .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
}

.survey-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.survey-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-size: var(--font-size-xs);
  color: var(--text-light);
  user-select: none;
}

.survey-checkbox input {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* ===================================
   LOGO & NEW SURVEY CARD STYLES
   =================================== */
.logo-img {
  height: 80px;
  width: 82px;
  display: block;
}

.footer-logo .logo-img {
  height: 72px;
  width: 74px;
  filter: brightness(0) invert(1);
}

.survey-card-section {
  padding: 40px var(--section-padding);
  background: var(--bg-light);
}

.active-survey-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.survey-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.active-survey-card h3 {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}

.active-survey-card p {
  font-size: var(--font-size-base);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 0 8px 0;
}

.btn-survey {
  background: #a81830;
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-survey:hover {
  background: #7a1122;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Form Checkbox and Radio Overrides */
.survey-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .survey-options-grid.cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.survey-option-label {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-weight: 400 !important;
  margin-bottom: 0 !important;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.survey-option-label:hover {
  border-color: var(--accent);
  background: var(--white);
}

.survey-option-label input[type="radio"],
.survey-option-label input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  accent-color: var(--primary);
  flex-shrink: 0;
}

/* Scroll Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

/* Footer Credit Badge */
.footer-credit-badge {
  display: inline-block;
  padding: 4px 14px;
  background: linear-gradient(90deg, #1b4d3e, #6e5c19, #5b2a4a);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none !important;
  text-transform: lowercase;
  letter-spacing: 0.5px;
  margin-left: 10px;
  transition: all 0.3s ease;
  vertical-align: middle;
}

.footer-credit-badge:hover {
  transform: translateY(-2px);
  filter: brightness(1.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ===================================
   INLINE SURVEY FORM (Homepage)
   =================================== */
.inline-survey-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f7f8fa 0%, #eef0f5 100%);
}

.inline-survey-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.inline-survey-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 32px 40px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 20px;
}

.inline-survey-header-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.inline-survey-header-text h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: 4px;
}

.inline-survey-header-text p {
  font-size: var(--font-size-sm);
  opacity: 0.85;
  line-height: 1.5;
}

.inline-survey-body {
  padding: 32px 40px 40px;
}

.inline-survey-body .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.inline-survey-body .form-group {
  margin-bottom: 0;
}

.inline-survey-body .form-group label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.inline-survey-body .form-group input,
.inline-survey-body .form-group select,
.inline-survey-body .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  background: var(--white);
}

.inline-survey-body .form-group input:focus,
.inline-survey-body .form-group select:focus,
.inline-survey-body .form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.inline-survey-question {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.inline-survey-question-title {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.inline-survey-submit {
  margin-top: 32px;
  text-align: center;
}

.inline-survey-submit .btn {
  padding: 16px 48px;
  font-size: var(--font-size-base);
  font-weight: 700;
}

.form-success-inline {
  text-align: center;
  padding: 60px 40px;
}

.form-success-inline i {
  font-size: 64px;
  color: #10b981;
  margin-bottom: 20px;
}

.form-success-inline h3 {
  font-size: var(--font-size-2xl);
  color: var(--primary);
  margin-bottom: 12px;
}

.form-success-inline p {
  color: var(--text-muted);
  font-size: var(--font-size-lg);
}

.form-success-inline.form-error-inline {
  border: 1px solid #fecaca;
  border-radius: var(--radius-lg);
  background: #fff1f2;
}

.form-success-inline.form-error-inline i,
.form-success-inline.form-error-inline h3 {
  color: #b4233a;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 768px) {
  .inline-survey-body .form-row {
    grid-template-columns: 1fr;
  }
  .inline-survey-header {
    padding: 24px;
    flex-direction: column;
    text-align: center;
  }
  .inline-survey-body {
    padding: 24px;
  }
}

/* ===================================
   HOMEPAGE — EDITORIAL REDESIGN
   =================================== */
.home-page {
  --home-navy: #0c2032;
  --home-navy-soft: #173248;
  --home-red: #a7192d;
  --home-red-bright: #c61d39;
  --home-ink: #17212b;
  --home-paper: #f5f4f1;
  --home-line: #e4e2dd;
  color: var(--home-ink);
  background: #fff;
}

.home-page .container {
  width: 100%;
  max-width: 1380px;
  padding-left: 32px;
  padding-right: 32px;
}

.home-page main {
  padding-top: 84px;
}

.home-page .home-header {
  height: 84px;
  border-bottom: 1px solid rgba(12, 32, 50, 0.08);
  box-shadow: none;
}

.home-page .home-header.scrolled {
  box-shadow: 0 8px 30px rgba(12, 32, 50, 0.08);
}

.home-page .header-inner {
  max-width: 1380px;
  height: 84px;
  padding: 0 32px;
  gap: 24px;
}

.home-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 270px;
  z-index: 1001;
}

.home-brand-logo {
  width: 60px;
  height: 64px;
  object-fit: contain;
}

.home-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.home-brand-copy strong {
  color: var(--home-ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.home-brand-copy small {
  margin-top: 5px;
  color: #6c747b;
  font-size: 10px;
  font-weight: 600;
}

.home-page .main-nav {
  flex: 1;
  justify-content: center;
  gap: 3px;
}

.home-page .nav-item {
  padding: 0;
  margin: 0;
}

.home-page .nav-link {
  padding: 11px 12px;
  color: #30363c;
  font-size: 12.5px;
  font-weight: 600;
}

.home-page .nav-link:hover {
  color: var(--home-red);
  background: transparent;
}

.home-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 132px;
  padding: 13px 18px;
  border-radius: 8px;
  background: var(--home-red);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 7px 18px rgba(167, 25, 45, 0.2);
}

.home-header-cta:hover {
  color: #fff;
  background: #8d1325;
  transform: translateY(-1px);
}

.home-hero {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(6, 24, 39, 0.98) 0%, rgba(6, 24, 39, 0.91) 45%, rgba(6, 24, 39, 0.7) 72%, rgba(6, 24, 39, 0.58) 100%),
    url('../images/hero-community.png');
  background-size: cover;
  background-position: center 48%;
}

.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent 20%, rgba(3,16,28,0.12));
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(410px, 0.75fr);
  align-items: center;
  gap: 76px;
  padding-top: 48px;
  padding-bottom: 48px;
}

.home-hero-content {
  max-width: 760px;
}

.home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.home-eyebrow::before {
  content: '';
  width: 34px;
  height: 2px;
  background: var(--home-red-bright);
}

.home-hero-content h1 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(38px, 4.1vw, 62px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -2.4px;
}

.home-hero-content h1 em {
  color: #fff;
  font-style: normal;
}

.home-hero-content p {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  line-height: 1.75;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 168px;
  padding: 14px 19px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
}

.home-btn i {
  font-size: 12px;
  transition: transform .2s ease;
}

.home-btn:hover i,
.home-text-link:hover i {
  transform: translateX(4px);
}

.home-btn-primary {
  color: #fff;
  background: var(--home-red-bright);
  border-color: var(--home-red-bright);
}

.home-btn-primary:hover {
  color: #fff;
  background: #a8152d;
}

.home-btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.68);
  background: rgba(255,255,255,0.03);
}

.home-btn-ghost:hover {
  color: var(--home-navy);
  background: #fff;
}

.home-survey {
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,0.24);
}

.home-survey-head {
  padding: 24px 27px 20px;
  border-bottom: 1px solid #e6e8eb;
}

.home-survey-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--home-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.home-survey-kicker i {
  margin-right: 6px;
}

.home-survey-head h2 {
  margin: 0 0 6px;
  color: var(--home-ink);
  font-size: 18px;
  line-height: 1.3;
}

.home-survey-head p {
  margin: 0;
  color: #737a82;
  font-size: 11px;
  line-height: 1.55;
}

.home-survey-form {
  padding: 22px 27px 25px;
}

.home-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.home-survey-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #303840;
  font-size: 10.5px;
  font-weight: 800;
}

.home-survey-form label b {
  display: inline;
  color: var(--home-red-bright);
}

.home-survey-form input,
.home-survey-form select {
  width: 100%;
  height: 39px;
  padding: 0 11px;
  border: 1px solid #dfe2e5;
  border-radius: 5px;
  background: #fff;
  color: var(--home-ink);
  font-size: 11.5px;
}

.home-survey-form input:focus,
.home-survey-form select:focus {
  border-color: var(--home-red);
  box-shadow: 0 0 0 3px rgba(167,25,45,.08);
}

.home-form-wide {
  margin-top: 15px;
}

.home-survey-form button {
  width: 100%;
  min-height: 42px;
  margin-top: 16px;
  border-radius: 5px;
  background: var(--home-red-bright);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.home-survey-form button:hover {
  background: #a8152d;
}

.home-survey-success {
  display: grid;
  place-items: center;
  min-height: 270px;
  padding: 36px;
  text-align: center;
}

.home-survey-success i {
  color: #2e8b57;
  font-size: 38px;
}

.home-survey-success h3 {
  margin: 12px 0 6px;
  font-size: 20px;
}

.home-survey-success p {
  color: #737a82;
  font-size: 13px;
}

.home-why,
.home-activities,
.home-projects,
.home-reports {
  padding: 42px 0;
  border-bottom: 1px solid var(--home-line);
}

.home-why-grid {
  display: grid;
  grid-template-columns: 225px minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
}

.home-section-number {
  display: block;
  margin-bottom: 13px;
  color: var(--home-red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
}

.home-section-number::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  margin-left: 8px;
  vertical-align: middle;
  background: currentColor;
}

.home-section-intro h2,
.home-row-title h2,
.home-process-title h2 {
  margin: 0 0 12px;
  color: var(--home-ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.7px;
}

.home-section-intro p {
  margin: 0 0 18px;
  color: #5f676f;
  font-size: 12px;
  line-height: 1.72;
}

.home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--home-red);
  font-size: 11px;
  font-weight: 800;
}

.home-text-link i {
  transition: transform .2s ease;
}

.home-focus-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 11px;
}

.home-focus-card {
  min-height: 180px;
  padding: 22px 14px 18px;
  border: 1px solid #ebe9e5;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 8px 24px rgba(17, 27, 36, 0.055);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.home-focus-card:hover {
  z-index: 1;
  border-color: rgba(167,25,45,.25);
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(17, 27, 36, 0.1);
}

.home-focus-card > span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  margin-bottom: 8px;
  color: var(--home-red);
  font-size: 31px;
}

.home-focus-card h3 {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.3;
}

.home-focus-card p {
  margin: 0;
  color: #697178;
  font-size: 10px;
  line-height: 1.48;
}

.home-process {
  padding: 30px 0;
  border-bottom: 1px solid var(--home-line);
  background: #fbfbfa;
}

.home-process-grid {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.home-process-title h2 {
  margin: 0;
}

.home-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 9px;
}

.home-steps li {
  position: relative;
  min-height: 116px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px 13px;
  border: 1px solid #e6e6e3;
  border-radius: 7px;
  background: #fff;
  text-align: center;
}

.home-steps li:not(:last-child)::after {
  content: '\2192';
  position: absolute;
  right: -12px;
  top: 44%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fbfbfa;
  color: var(--home-navy);
  font-size: 14px;
}

.home-steps li b {
  position: absolute;
  top: -8px;
  left: 12px;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--home-navy);
  color: #fff;
  font-size: 9px;
}

.home-steps li i {
  margin-bottom: 7px;
  color: var(--home-navy);
  font-size: 22px;
}

.home-steps li strong {
  font-size: 10.5px;
}

.home-steps li span {
  margin-top: 4px;
  color: #747b81;
  font-size: 8.5px;
  line-height: 1.35;
}

.home-row-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 36px;
}

.home-row-title .home-text-link {
  margin-top: 5px;
}

.home-tracker {
  padding: 37px 0;
  color: #fff;
  background: var(--home-navy);
}

.home-tracker .home-row-title h2 {
  color: #fff;
}

.home-tracker .home-section-number {
  color: rgba(255,255,255,.46);
}

.home-tracker .home-text-link {
  color: #e9a5b1;
}

.home-tracker-list article {
  display: grid;
  grid-template-columns: minmax(210px, .8fr) minmax(300px, 1.6fr) 110px;
  gap: 30px;
  align-items: center;
  min-height: 53px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.home-tracker-list article:last-child {
  border-bottom: 0;
}

.home-tracker-list article > div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.home-tracker-list article > div span {
  color: rgba(255,255,255,.34);
  font-size: 10px;
  font-weight: 800;
}

.home-tracker-list article strong {
  font-size: 12px;
}

.home-tracker-list article p {
  color: rgba(255,255,255,.63);
  font-size: 10px;
  line-height: 1.5;
}

.status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.status.planning { color: #276f3f; background: #dff3e6; }
.status.active { color: #1c5e8d; background: #dceefa; }
.status.completed { color: #217d49; background: #dcf3e5; }

.home-activity-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 9px;
}

.home-activity-card {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 17px;
  border-radius: 7px;
  color: #fff;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.home-activity-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(6,20,31,.35), rgba(5,18,29,.95));
  transition: opacity .25s ease;
}

.home-activity-card:hover {
  color: #fff;
  transform: translateY(-3px);
}

.home-activity-card:hover::before {
  opacity: .9;
}

.home-activity-card.image-a,
.home-activity-card.image-d { background-image: url('../images/hero-main.png'); }
.home-activity-card.image-b,
.home-activity-card.image-e { background-image: url('../images/hero-community.png'); }
.home-activity-card.image-c,
.home-activity-card.image-f { background-image: url('../images/mission.png'); }

.home-activity-card > i {
  font-size: 25px;
}

.home-activity-card span {
  display: flex;
  flex-direction: column;
}

.home-activity-card strong {
  margin-bottom: 6px;
  font-size: 12px;
}

.home-activity-card small {
  color: rgba(255,255,255,.72);
  font-size: 9px;
  line-height: 1.45;
}

.home-projects {
  background: #fbfbfa;
}

.home-project-grid,
.home-report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-project-card {
  min-height: 128px;
  display: grid;
  grid-template-columns: 42% 58%;
  overflow: hidden;
  border: 1px solid #e5e5e1;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(16, 28, 38, .04);
}

.home-project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(16, 28, 38, .1);
}

.home-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-project-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 16px;
}

.home-project-body strong {
  margin: 10px 0 8px;
  color: var(--home-ink);
  font-size: 13px;
}

.home-project-body small {
  color: #737a82;
  font-size: 9.5px;
}

.home-report-card {
  min-height: 150px;
  display: grid;
  grid-template-columns: 105px minmax(0,1fr);
  gap: 17px;
  padding: 10px;
  border: 1px solid #e5e5e1;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(16,28,38,.04);
}

.home-report-card:hover {
  border-color: rgba(167,25,45,.28);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(16,28,38,.09);
}

.report-cover {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px 11px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
}

.report-cover small {
  color: rgba(255,255,255,.66);
  font-size: 6.5px;
  letter-spacing: 1px;
}

.report-cover b {
  font-size: 8px;
}

.report-cover.navy { background: linear-gradient(145deg, #0e2940, #091a29); }
.report-cover.blue { background: linear-gradient(145deg, #214b68, #102b40); }
.report-cover.red { background: linear-gradient(145deg, #ae1b31, #681020); }

.home-report-card > span:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.home-report-card strong {
  color: var(--home-ink);
  font-size: 13px;
  line-height: 1.35;
}

.home-report-card > span:last-child small {
  margin-top: 8px;
  color: #727980;
  font-size: 9.5px;
  line-height: 1.5;
}

.home-report-card em {
  margin-top: 12px;
  padding: 4px 7px;
  border: 1px solid #ddd;
  border-radius: 3px;
  color: #434b52;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.home-join {
  padding: 0 0 8px;
  background: #fff;
}

.home-join-grid {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding-top: 26px;
  padding-bottom: 26px;
  border-radius: 8px;
  background: linear-gradient(108deg, #851121, #b51a31 70%, #9b1428);
  box-shadow: 0 12px 30px rgba(138,17,36,.16);
}

.home-join-title {
  padding-left: 24px;
  color: #fff;
}

.home-join-title span {
  display: block;
  margin-bottom: 6px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}

.home-join-title p {
  color: rgba(255,255,255,.72);
  font-size: 10px;
  line-height: 1.55;
}

.home-join-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-right: 24px;
}

.home-join-actions a {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 6px;
  background: #fff;
  color: var(--home-ink);
}

.home-join-actions a:hover {
  color: var(--home-ink);
  transform: translateY(-3px);
}

.home-join-actions a > i {
  min-width: 31px;
  color: var(--home-red);
  font-size: 26px;
  text-align: center;
}

.home-join-actions a span {
  display: flex;
  flex-direction: column;
}

.home-join-actions strong {
  font-size: 11px;
}

.home-join-actions small {
  margin-top: 3px;
  color: #777e84;
  font-size: 8px;
  line-height: 1.35;
}

.home-page .home-footer {
  padding-top: 38px;
  background: #091d2e;
}

.home-footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .85fr .85fr .85fr 1.2fr;
  gap: 34px;
  padding-bottom: 30px;
}

.home-footer-brand > div:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-footer-brand img {
  width: 57px;
  height: 60px;
  padding: 3px;
  border-radius: 3px;
  background: #fff;
  object-fit: contain;
}

.home-footer-brand span {
  display: flex;
  flex-direction: column;
  color: #fff;
}

.home-footer-brand strong {
  font-size: 12px;
}

.home-footer-brand small {
  margin-top: 4px;
  color: rgba(255,255,255,.48);
  font-size: 8px;
}

.home-footer-brand > p {
  max-width: 245px;
  margin: 14px 0;
  color: rgba(255,255,255,.62);
  font-size: 10px;
  line-height: 1.6;
}

.home-page .footer-social {
  gap: 8px;
}

.home-page .footer-social a {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,.24);
  background: transparent;
  font-size: 11px;
}

.home-page .footer-column h4 {
  margin-bottom: 12px;
  font-size: 11px;
}

.home-page .footer-column ul li {
  margin-bottom: 6px;
}

.home-page .footer-column ul li a {
  font-size: 9.5px;
}

.home-contact-list p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 9px;
  color: rgba(255,255,255,.62);
  font-size: 9.5px;
  line-height: 1.45;
}

.home-contact-list p i {
  width: 13px;
  margin-top: 2px;
  color: rgba(255,255,255,.8);
  text-align: center;
}

.home-page .footer-bottom {
  min-height: 46px;
  padding: 12px 0;
}

.home-page .footer-bottom p,
.home-page .footer-bottom-links a {
  font-size: 8px;
}

@media (max-width: 1180px) {
  .home-brand { min-width: 225px; }
  .home-brand-copy strong { font-size: 13px; }
  .home-page .nav-link { padding-left: 8px; padding-right: 8px; font-size: 11.5px; }
  .home-header-cta { min-width: 112px; padding-left: 13px; padding-right: 13px; }
  .home-focus-grid { grid-template-columns: repeat(3, 1fr); }
  .home-activity-grid { grid-template-columns: repeat(3, 1fr); }
  .home-hero-grid { gap: 45px; }
  .home-steps { grid-template-columns: repeat(3, 1fr); gap: 18px 9px; }
  .home-steps li:nth-child(3)::after { display: none; }
  .home-join-grid { grid-template-columns: 230px 1fr; }
  .home-join-actions { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .home-page .home-header,
  .home-page .header-inner { height: 76px; }
  .home-page main { padding-top: 76px; }
  .home-brand { min-width: auto; }
  .home-brand-logo { width: 52px; height: 56px; }
  .home-brand-copy { display: none; }
  .home-page .mobile-toggle { display: flex; }
  .home-page .home-header-cta { margin-left: auto; }
  .home-page .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    height: calc(100vh - 76px);
    display: flex;
    justify-content: flex-start;
    padding: 24px 28px;
    background: #fff;
    transform: translateX(100%);
  }
  .home-page .main-nav.active { transform: translateX(0); }
  .home-page .nav-item { width: 100%; }
  .home-page .nav-link { padding: 14px 4px; font-size: 14px; }
  .home-hero-grid { grid-template-columns: 1fr 390px; gap: 30px; }
  .home-hero-content h1 { font-size: 40px; }
  .home-why-grid,
  .home-process-grid,
  .home-row-layout { grid-template-columns: 1fr; gap: 24px; }
  .home-section-intro,
  .home-row-title { max-width: 620px; }
  .home-project-grid,
  .home-report-grid { grid-template-columns: 1fr; }
  .home-join-grid { grid-template-columns: 1fr; }
  .home-join-title { padding: 0 24px; }
  .home-join-actions { padding: 0 24px; }
  .home-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (max-width: 720px) {
  .home-page .container { padding-left: 20px; padding-right: 20px; }
  .home-page .header-inner { padding: 0 20px; }
  .home-header-cta { display: none; }
  .home-hero { min-height: auto; background-position: 40% center; }
  .home-hero-grid { grid-template-columns: 1fr; padding-top: 52px; padding-bottom: 52px; }
  .home-hero-content h1 { font-size: clamp(36px, 10.5vw, 49px); letter-spacing: -1.7px; }
  .home-hero-content p { font-size: 13px; }
  .home-survey { margin-top: 10px; }
  .home-focus-grid { grid-template-columns: repeat(2, 1fr); }
  .home-steps { grid-template-columns: repeat(2, 1fr); }
  .home-steps li:nth-child(3)::after { display: grid; }
  .home-steps li:nth-child(2n)::after { display: none; }
  .home-tracker-list article { grid-template-columns: 1fr; gap: 7px; padding: 15px 0; }
  .home-activity-grid { grid-template-columns: repeat(2, 1fr); }
  .home-join { padding: 0; background: linear-gradient(108deg, #851121, #b51a31); }
  .home-join-grid { width: 100%; padding-top: 30px; padding-bottom: 30px; border-radius: 0; background: transparent; box-shadow: none; }
  .home-join-actions { grid-template-columns: 1fr 1fr; }
  .home-footer-grid { grid-template-columns: 1fr 1fr; }
  .home-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 460px) {
  .home-hero-actions { flex-direction: column; }
  .home-btn { width: 100%; }
  .home-form-grid { grid-template-columns: 1fr; }
  .home-focus-grid,
  .home-activity-grid,
  .home-steps,
  .home-join-actions { grid-template-columns: 1fr; }
  .home-steps li::after { display: none !important; }
  .home-project-card { grid-template-columns: 38% 62%; }
  .home-report-card { grid-template-columns: 90px 1fr; }
  .home-footer-grid { grid-template-columns: 1fr; }
  .home-footer-brand { grid-column: auto; }
}

/* ===================================
   HOMEPAGE — PROFESSIONAL REFINEMENT
   =================================== */
.home-page {
  --home-container: 1320px;
  --home-radius: 12px;
  --home-shadow: 0 18px 50px rgba(12, 32, 50, 0.09);
  font-size: 16px;
  line-height: 1.65;
}

.home-page .container {
  max-width: var(--home-container);
  padding-left: 40px;
  padding-right: 40px;
}

.home-page main {
  padding-top: 92px;
}

.home-page .home-header,
.home-page .header-inner {
  height: 92px;
}

.home-page .header-inner {
  max-width: var(--home-container);
  padding: 0 40px;
  gap: 28px;
}

.home-brand {
  min-width: 255px;
  gap: 16px;
}

.home-brand-logo {
  width: 64px;
  height: 70px;
}

.home-brand-copy strong {
  font-size: 16px;
  letter-spacing: -0.25px;
}

.home-brand-copy small {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: .15px;
}

.home-page .main-nav {
  gap: 2px;
}

.home-page .nav-link {
  padding: 12px 10px;
  font-size: 13px;
  font-weight: 650;
}

.home-header-cta {
  min-width: 128px;
  padding: 14px 18px;
  font-size: 13px;
  border-radius: 7px;
  box-shadow: none;
}

.home-hero {
  min-height: 650px;
  background-image:
    linear-gradient(90deg, rgba(6, 24, 39, 0.99) 0%, rgba(6, 24, 39, 0.95) 48%, rgba(6, 24, 39, 0.82) 72%, rgba(6, 24, 39, 0.75) 100%),
    url('../images/hero-community.png');
  background-position: center 47%;
}

.home-hero-grid {
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 72px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.home-hero-content {
  max-width: 720px;
}

.home-eyebrow {
  margin-bottom: 24px;
  font-size: 12px;
  letter-spacing: 1.35px;
}

.home-hero-content h1 {
  max-width: 710px;
  margin-bottom: 26px;
  font-size: clamp(48px, 4vw, 64px);
  line-height: 1.07;
  letter-spacing: -2.2px;
}

.home-hero-content p {
  max-width: 650px;
  font-size: 17px;
  line-height: 1.72;
}

.home-hero-actions {
  gap: 16px;
  margin-top: 34px;
}

.home-btn {
  min-width: 176px;
  min-height: 50px;
  padding: 14px 20px;
  font-size: 14px;
  border-radius: 7px;
}

.home-survey {
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .27);
}

.home-survey-head {
  padding: 28px 30px 24px;
}

.home-survey-kicker {
  margin-bottom: 10px;
  font-size: 11px;
}

.home-survey-head h2 {
  margin-bottom: 8px;
  font-size: 22px;
  letter-spacing: -.35px;
}

.home-survey-head p {
  font-size: 13px;
  line-height: 1.6;
}

.home-survey-form {
  padding: 26px 30px 30px;
}

.home-form-grid {
  gap: 18px 16px;
}

.home-survey-form label {
  gap: 8px;
  font-size: 12.5px;
}

.home-survey-form input,
.home-survey-form select {
  height: 45px;
  padding: 0 13px;
  font-size: 13px;
}

.home-form-wide {
  margin-top: 18px;
}

.home-survey-form button {
  min-height: 48px;
  margin-top: 20px;
  font-size: 14px;
}

.home-why,
.home-activities,
.home-projects,
.home-reports {
  padding: 88px 0;
}

.home-why-grid {
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 54px;
}

.home-section-number {
  margin-bottom: 18px;
  font-size: 11px;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.home-section-number::after {
  width: 34px;
  margin-left: 12px;
}

.home-section-intro h2,
.home-row-title h2,
.home-process-title h2 {
  margin-bottom: 18px;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -1px;
}

.home-section-intro p {
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.75;
}

.home-text-link {
  gap: 11px;
  font-size: 13px;
}

.home-focus-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-focus-card {
  min-height: 220px;
  padding: 30px 28px;
  border-color: #e5e7e8;
  border-radius: var(--home-radius);
  text-align: left;
  box-shadow: 0 10px 30px rgba(12, 32, 50, .055);
}

.home-focus-card > span {
  width: 54px;
  height: 54px;
  justify-content: flex-start;
  margin-bottom: 22px;
  font-size: 31px;
}

.home-focus-card h3 {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.35;
}

.home-focus-card p {
  font-size: 13.5px;
  line-height: 1.65;
}

.home-process {
  padding: 78px 0;
}

.home-process-grid {
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}

.home-steps {
  gap: 14px;
}

.home-steps li {
  min-height: 172px;
  justify-content: flex-start;
  padding: 32px 15px 22px;
  border-radius: 10px;
}

.home-steps li:not(:last-child)::after {
  right: -17px;
  top: 48%;
  width: 20px;
  height: 20px;
  font-size: 17px;
}

.home-steps li b {
  top: -11px;
  left: 16px;
  width: 26px;
  height: 26px;
  font-size: 11px;
}

.home-steps li i {
  margin-bottom: 15px;
  font-size: 29px;
}

.home-steps li strong {
  font-size: 14px;
}

.home-steps li span {
  margin-top: 8px;
  font-size: 11.5px;
  line-height: 1.5;
}

.home-row-layout {
  grid-template-columns: 225px minmax(0, 1fr);
  gap: 54px;
}

.home-row-title .home-text-link {
  margin-top: 2px;
}

.home-tracker {
  padding: 68px 0;
}

.home-tracker-list article {
  grid-template-columns: minmax(235px, .9fr) minmax(320px, 1.45fr) 120px;
  gap: 34px;
  min-height: 82px;
}

.home-tracker-list article > div {
  gap: 18px;
}

.home-tracker-list article > div span {
  font-size: 11px;
}

.home-tracker-list article strong {
  font-size: 14px;
}

.home-tracker-list article p {
  font-size: 12.5px;
  line-height: 1.6;
}

.status {
  padding: 7px 11px;
  font-size: 10.5px;
}

.home-activity-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-activity-card {
  min-height: 245px;
  padding: 26px;
  border-radius: var(--home-radius);
}

.home-activity-card > i {
  font-size: 30px;
}

.home-activity-card strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.home-activity-card small {
  max-width: 290px;
  font-size: 13px;
  line-height: 1.55;
}

.home-project-grid,
.home-report-grid {
  gap: 20px;
}

.home-project-card {
  min-height: 430px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 220px 1fr;
  border-radius: var(--home-radius);
  box-shadow: 0 10px 30px rgba(12, 32, 50, .055);
}

.home-project-body {
  justify-content: flex-start;
  padding: 26px;
}

.home-project-body strong {
  margin: 16px 0 8px;
  font-size: 19px;
  line-height: 1.35;
}

.home-project-body small {
  font-size: 12px;
  font-weight: 700;
}

.home-project-body > span {
  margin-top: 16px;
  color: #646c73;
  font-size: 13.5px;
  line-height: 1.6;
}

.home-report-card {
  min-height: 225px;
  grid-template-columns: 135px minmax(0, 1fr);
  gap: 24px;
  padding: 18px;
  border-radius: var(--home-radius);
}

.report-cover {
  min-height: 187px;
  padding: 20px 17px;
  font-size: 17px;
  line-height: 1.25;
}

.report-cover small {
  font-size: 8px;
}

.report-cover b {
  font-size: 10px;
}

.home-report-card strong {
  font-size: 16px;
  line-height: 1.4;
}

.home-report-card > span:last-child small {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.6;
}

.home-report-card em {
  margin-top: 16px;
  padding: 6px 9px;
  font-size: 10px;
}

.home-join {
  padding: 26px 0 0;
}

.home-join-grid {
  grid-template-columns: 285px minmax(0, 1fr);
  gap: 38px;
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: var(--home-radius);
}

.home-join-title {
  padding-left: 32px;
}

.home-join-title span {
  margin-bottom: 10px;
  font-size: 27px;
  line-height: 1.2;
}

.home-join-title p {
  font-size: 13px;
  line-height: 1.65;
}

.home-join-actions {
  gap: 14px;
  padding-right: 32px;
}

.home-join-actions a {
  min-height: 98px;
  gap: 14px;
  padding: 18px;
  border-radius: 8px;
}

.home-join-actions a > i {
  min-width: 34px;
  font-size: 28px;
}

.home-join-actions strong {
  font-size: 13px;
}

.home-join-actions small {
  margin-top: 5px;
  font-size: 10.5px;
  line-height: 1.45;
}

.home-page .home-footer {
  padding-top: 58px;
}

.home-footer-grid {
  grid-template-columns: 1.45fr .8fr .8fr .8fr 1.25fr;
  gap: 45px;
  padding-bottom: 46px;
}

.home-footer-brand img {
  width: 64px;
  height: 68px;
}

.home-footer-brand strong {
  font-size: 14px;
}

.home-footer-brand small {
  font-size: 10px;
}

.home-footer-brand > p {
  max-width: 280px;
  margin: 18px 0;
  font-size: 12.5px;
  line-height: 1.7;
}

.home-page .footer-social {
  gap: 10px;
}

.home-page .footer-social a {
  width: 34px;
  height: 34px;
  font-size: 13px;
}

.home-page .footer-column h4 {
  margin-bottom: 18px;
  font-size: 13px;
}

.home-page .footer-column ul li {
  margin-bottom: 9px;
}

.home-page .footer-column ul li a,
.home-contact-list p {
  font-size: 12px;
}

.home-contact-list p {
  gap: 11px;
  margin-bottom: 13px;
}

.home-page .footer-bottom {
  min-height: 58px;
  padding: 17px 0;
}

.home-page .footer-bottom p,
.home-page .footer-bottom-links a {
  font-size: 11px;
}

@media (max-width: 1240px) {
  .home-page .container,
  .home-page .header-inner {
    padding-left: 32px;
    padding-right: 32px;
  }

  .home-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 14px;
  }

  .home-steps li:nth-child(3)::after {
    display: none;
  }

  .home-join-grid {
    grid-template-columns: 245px 1fr;
  }

  .home-join-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1160px) {
  .home-page .home-header,
  .home-page .header-inner {
    height: 84px;
  }

  .home-page main {
    padding-top: 84px;
  }

  .home-brand {
    min-width: auto;
  }

  .home-brand-logo {
    width: 58px;
    height: 62px;
  }

  .home-page .mobile-toggle {
    display: flex;
  }

  .home-page .home-header-cta {
    margin-left: auto;
  }

  .home-page .main-nav {
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    height: calc(100vh - 84px);
    display: flex;
    justify-content: flex-start;
    padding: 32px;
    background: #fff;
    transform: translateX(100%);
  }

  .home-page .main-nav.active {
    transform: translateX(0);
  }

  .home-page .nav-item {
    width: 100%;
  }

  .home-page .nav-link {
    padding: 15px 4px;
    font-size: 15px;
  }

  .home-hero-grid {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 40px;
  }

  .home-hero-content h1 {
    font-size: 48px;
  }

  .home-why-grid,
  .home-process-grid,
  .home-row-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-section-intro,
  .home-process-title,
  .home-row-title {
    max-width: 700px;
  }

  .home-tracker-list article {
    grid-template-columns: minmax(220px, .85fr) minmax(300px, 1.4fr) 120px;
  }

  .home-report-grid {
    grid-template-columns: 1fr;
  }

  .home-report-card {
    min-height: 210px;
  }

  .home-footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .home-hero-content {
    max-width: 760px;
  }

  .home-survey {
    width: 100%;
    max-width: 620px;
  }

  .home-focus-grid,
  .home-activity-grid,
  .home-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-tracker-list article {
    grid-template-columns: 1fr auto;
    gap: 8px 22px;
    padding: 20px 0;
  }

  .home-tracker-list article p {
    grid-column: 1 / -1;
  }

  .home-join-grid {
    grid-template-columns: 1fr;
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .home-join-title,
  .home-join-actions {
    padding-left: 32px;
    padding-right: 32px;
  }

  .home-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .home-page .container,
  .home-page .header-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-brand-copy {
    display: flex;
  }

  .home-brand-copy strong {
    font-size: 13px;
  }

  .home-brand-copy small {
    font-size: 9px;
  }

  .home-header-cta {
    display: none;
  }

  .home-hero-grid {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .home-hero-content h1 {
    font-size: clamp(38px, 11vw, 48px);
    letter-spacing: -1.6px;
  }

  .home-hero-content p {
    font-size: 15px;
  }

  .home-form-grid {
    grid-template-columns: 1fr;
  }

  .home-why,
  .home-activities,
  .home-projects,
  .home-reports {
    padding: 68px 0;
  }

  .home-section-intro h2,
  .home-row-title h2,
  .home-process-title h2 {
    font-size: 30px;
  }

  .home-focus-grid,
  .home-activity-grid,
  .home-project-grid,
  .home-steps,
  .home-join-actions {
    grid-template-columns: 1fr;
  }

  .home-focus-card {
    min-height: auto;
  }

  .home-steps li {
    min-height: 155px;
  }

  .home-steps li::after {
    display: none !important;
  }

  .home-activity-card {
    min-height: 270px;
  }

  .home-project-card {
    min-height: 420px;
    grid-template-columns: 1fr;
    grid-template-rows: 220px 1fr;
  }

  .home-report-card {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
    padding: 14px;
  }

  .report-cover {
    min-height: 180px;
    padding: 16px 13px;
    font-size: 15px;
  }

  .home-join {
    padding-top: 0;
  }

  .home-join-grid {
    width: 100%;
    border-radius: 0;
  }

  .home-footer-grid {
    grid-template-columns: 1fr;
  }

  .home-footer-brand {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .home-brand-copy {
    display: none;
  }

  .home-survey-head,
  .home-survey-form {
    padding-left: 22px;
    padding-right: 22px;
  }

  .home-report-card {
    grid-template-columns: 1fr;
  }

  .report-cover {
    min-height: 210px;
  }

  .home-join-title,
  .home-join-actions {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Final alignment, authentic visual language and accessibility */
.home-page {
  --home-container: 1280px;
}

.home-why-grid,
.home-process-grid,
.home-row-layout {
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 48px;
}

.home-hero {
  background:
    radial-gradient(circle at 84% 16%, rgba(185, 28, 51, .18), transparent 32%),
    radial-gradient(circle at 58% 105%, rgba(70, 111, 140, .18), transparent 37%),
    linear-gradient(120deg, #071a2b 0%, #0a2437 58%, #102e43 100%);
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 42%, #000);
}

.home-hero::after {
  background: linear-gradient(90deg, rgba(4, 17, 28, .22), transparent 48%, rgba(4, 17, 28, .12));
}

.home-field-label {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  min-height: 20px;
}

.home-survey-form label b {
  display: inline;
}

.home-activity-card.image-a,
.home-activity-card.image-b,
.home-activity-card.image-c,
.home-activity-card.image-d,
.home-activity-card.image-e,
.home-activity-card.image-f {
  background-image: none;
}

.home-activity-card:nth-child(1),
.home-activity-card:nth-child(4) {
  background-color: #0d2639;
}

.home-activity-card:nth-child(2),
.home-activity-card:nth-child(5) {
  background-color: #17364a;
}

.home-activity-card:nth-child(3),
.home-activity-card:nth-child(6) {
  background-color: #232f39;
}

.home-activity-card::before {
  opacity: 1;
  background:
    linear-gradient(145deg, transparent 0 62%, rgba(255,255,255,.035) 62% 100%),
    linear-gradient(180deg, transparent, rgba(3, 14, 22, .25));
}

.home-activity-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 26px;
  width: 44px;
  height: 3px;
  background: #bd2038;
}

.home-project-card {
  position: relative;
  grid-template-rows: 150px 1fr;
  min-height: 410px;
}

.home-project-card::before {
  content: attr(data-index);
  display: flex;
  align-items: flex-end;
  padding: 24px 26px;
  color: rgba(255,255,255,.74);
  background:
    linear-gradient(135deg, rgba(255,255,255,.035) 25%, transparent 25%) 0 0 / 28px 28px,
    #0e2a3e;
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}

.home-project-card:nth-child(2)::before {
  background-color: #18394e;
}

.home-project-card:nth-child(3)::before {
  background-color: #26343e;
}

.home-project-card img {
  display: none;
}

.home-project-body {
  min-height: 260px;
}

.home-page :where(a, button, input, select):focus-visible {
  outline: 3px solid #e33a54;
  outline-offset: 3px;
}

@media (max-width: 1160px) {
  .home-why-grid,
  .home-process-grid,
  .home-row-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-page .main-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .3s ease, opacity .2s ease, visibility .2s ease;
  }

  .home-page .main-nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 680px) {
  .home-project-card {
    grid-template-rows: 135px 1fr;
    min-height: 400px;
  }

  .home-project-body {
    min-height: 265px;
  }
}

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

.home-page .skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 3000;
  padding: 11px 15px;
  border-radius: 6px;
  background: #fff;
  color: var(--home-navy);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  transform: translateY(-160%);
}

.home-page .skip-link:focus {
  transform: translateY(0);
}

.home-page #calisma-alanlari,
.home-page #katil {
  scroll-margin-top: 104px;
}

.home-hero-content h1,
.home-section-intro h2,
.home-row-title h2,
.home-process-title h2,
.home-join-title h2 {
  font-weight: 800;
}

.home-focus-card h3,
.home-activity-card strong,
.home-project-body strong,
.home-report-card strong {
  font-weight: 700;
}

.home-btn,
.home-survey-form button,
.home-header-cta,
.home-text-link,
.status {
  font-weight: 700;
}

.home-focus-card p,
.home-project-body > span,
.home-report-card > span:last-child small {
  color: #59636b;
}

.home-join-title h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -.6px;
}

.home-join-title p,
.home-join-actions small {
  color: rgba(255,255,255,.82);
}

.home-join-actions small {
  color: #59636b;
  font-size: 11.5px;
}

.home-steps li span {
  font-size: 12px;
}

.report-cover small {
  font-size: 9px;
}

.home-page .mobile-toggle {
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.home-page .footer-social a {
  width: 40px;
  height: 40px;
}

@media (max-width: 900px) {
  .home-hero-content h1 br {
    display: none;
  }
}
