/* ===== Ghana CIF – Custom Styles ===== */

/* ---------- CSS Variables ---------- */
:root {
  --navy:       #0a1628;
  --navy-light: #132240;
  --navy-mid:   #1a2d4a;
  --gold:       #c8a951;
  --gold-light: #e0c872;
  --gold-dark:  #a88b3a;
  --accent:     #2a7de1;
  --white:      #ffffff;
  --gray-50:    #f8f9fb;
  --gray-100:   #f1f3f7;
  --gray-200:   #e2e6ee;
  --gray-400:   #9ba3b5;
  --gray-600:   #5a6478;
  --gray-800:   #2d3444;
  --success:    #27ae60;
  --danger:     #e74c3c;
}

/* ---------- Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color .2s; }
ul { list-style: none; }

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--navy);
  color: var(--gray-400);
  font-size: .8rem;
  padding: .45rem 0;
}
.top-bar a { color: var(--gray-400); }
.top-bar a:hover { color: var(--gold); }
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar .social-links { display: flex; gap: .75rem; }
.top-bar .social-links a { font-size: .85rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: .6rem;
  padding-bottom: .6rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
}
.logo img {
  height: 52px;
  width: auto;
}
.logo span { color: var(--gold); }
.footer-brand .logo img { height: 44px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.nav-links a {
  padding: .5rem .9rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--gray-100);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  border: none;
  transition: all .25s;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(200,169,81,.35);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(10,22,40,.3);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
}
.btn-lg {
  padding: .8rem 2rem;
  font-size: 1rem;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: all .3s;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1e3a5f 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,169,81,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(42,125,225,.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 700px; }
.hero-label {
  display: inline-block;
  background: rgba(200,169,81,.15);
  border: 1px solid rgba(200,169,81,.3);
  color: var(--gold);
  padding: .3rem 1rem;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero h1 .highlight { color: var(--gold); }
.hero p {
  font-size: 1.12rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
  max-width: 580px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}
.hero-stat p {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 0;
}

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 3rem 0 2.5rem;
  text-align: center;
}
.page-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: .5rem;
}
.page-header p {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto;
}

/* ---------- Sections ---------- */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--gray-50); }
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .6rem;
}
.section-header p {
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.02rem;
}
.section-label {
  display: inline-block;
  color: var(--gold-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

/* ---------- Container ---------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Pillar Cards ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.pillar-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all .3s;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,22,40,.08);
  border-color: var(--gold);
}
.pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(200,169,81,.12), rgba(200,169,81,.04));
  color: var(--gold-dark);
}
.pillar-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.pillar-card p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ---------- About Preview ---------- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-text h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}
.about-text p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.about-image {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 16px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-image::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(200,169,81,.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.about-image::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(200,169,81,.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.about-image-text {
  color: var(--gold);
  font-size: 3rem;
  font-weight: 800;
  z-index: 1;
  letter-spacing: 3px;
  opacity: .3;
}

/* ---------- Work Areas ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 1.5rem;
}
.work-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  transition: all .3s;
}
.work-card:hover {
  box-shadow: 0 8px 24px rgba(10,22,40,.06);
  border-color: var(--gold);
}
.work-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: rgba(200,169,81,.1);
  color: var(--gold-dark);
}
.work-card h3 {
  font-size: .98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .3rem;
}
.work-card p {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ---------- Mission / Vision ---------- */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.mv-card {
  padding: 2.5rem;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.mv-card.mission {
  background: var(--navy);
  color: var(--white);
}
.mv-card.vision {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
}
.mv-card h3 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: .8rem;
  opacity: .7;
}
.mv-card p {
  font-size: 1.12rem;
  line-height: 1.7;
  font-weight: 500;
}

/* ---------- Values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all .3s;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(10,22,40,.07);
}
.value-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: var(--navy);
  color: var(--gold);
}
.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
}
.value-card p {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ---------- News Cards ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px,1fr));
  gap: 1.5rem;
}
.news-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all .3s;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(10,22,40,.07);
}
.news-card-image {
  height: 180px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-card-image span {
  color: var(--gold);
  font-size: 2.5rem;
  opacity: .2;
}
.news-card-body {
  padding: 1.5rem;
}
.news-date {
  font-size: .78rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: .4rem;
}
.news-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.4;
}
.news-card-body p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.news-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .8rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold-dark);
}
.news-link:hover { color: var(--gold); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: .7rem;
}
.cta-banner p {
  color: rgba(255,255,255,.65);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.02rem;
}
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Governance ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 1.25rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all .3s;
}
.team-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(10,22,40,.06);
}
.team-avatar {
  width: 64px;
  height: 64px;
  margin: 0 auto .8rem;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}
.team-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .2rem;
}
.team-card .role {
  font-size: .78rem;
  color: var(--gold-dark);
  font-weight: 600;
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.committee-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all .3s;
}
.committee-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(10,22,40,.06);
}
.committee-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.committee-card p {
  font-size: .88rem;
  color: var(--gray-600);
}

.membership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.membership-card {
  border: 2px solid var(--gray-200);
  border-radius: 14px;
  padding: 2rem;
  transition: all .3s;
}
.membership-card:hover { border-color: var(--gold); }
.membership-card.featured {
  border-color: var(--gold);
  background: rgba(200,169,81,.03);
}
.membership-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .3rem;
}
.membership-card .badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.badge-gold {
  background: rgba(200,169,81,.15);
  color: var(--gold-dark);
}
.badge-gray {
  background: var(--gray-100);
  color: var(--gray-600);
}
.membership-card ul { margin-top: .5rem; }
.membership-card li {
  padding: .4rem 0;
  font-size: .9rem;
  color: var(--gray-600);
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.membership-card li::before {
  content: '✓';
  color: var(--gold-dark);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item:hover,
.faq-item.open { border-color: var(--gold); }
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  font-family: inherit;
}
.faq-question:hover { background: var(--gray-50); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--navy);
  transition: all .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.2rem;
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 2.5rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: .92rem;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,81,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-sidebar h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.contact-info-item {
  display: flex;
  gap: .75rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(200,169,81,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
}
.contact-info-item p {
  font-size: .85rem;
  color: var(--gray-600);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo { color: var(--white); margin-bottom: .8rem; }
.footer-brand p {
  font-size: .85rem;
  line-height: 1.6;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: .6rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  transition: all .25s;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
}
.footer-col h4 {
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.footer-col a {
  display: block;
  padding: .3rem 0;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-values {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
}
.footer-value {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-value::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .4;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  border-top: 1px solid rgba(255,255,255,.05);
}

/* ---------- Responsibilities ---------- */
.responsibilities-list {
  max-width: 650px;
  margin: 0 auto;
}
.responsibilities-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .8rem 1.2rem;
  margin-bottom: .5rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  font-size: .92rem;
  color: var(--gray-600);
}
.resp-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Join / Benefits ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all .3s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,22,40,.08);
  border-color: var(--gold);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(200,169,81,.12), rgba(200,169,81,.04));
  color: var(--gold-dark);
}
.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.benefit-card p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ---------- Join Form ---------- */
.join-form-wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.join-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 2.5rem;
}
.form-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-200);
}
.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 1.5rem;
  padding-bottom: 0;
}
.form-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.form-section-title::before {
  content: '';
  width: 4px;
  height: 18px;
  border-radius: 2px;
  background: var(--gold);
}
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem .8rem;
  border-radius: 8px;
  font-size: .88rem;
  color: var(--gray-600);
  cursor: pointer;
  border: 1px solid var(--gray-200);
  transition: all .2s;
}
.checkbox-label:hover {
  border-color: var(--gold);
  background: rgba(200,169,81,.03);
}
.checkbox-label input[type="checkbox"] {
  accent-color: var(--gold-dark);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.form-help {
  font-size: .78rem;
  color: var(--gray-600);
  margin-top: .3rem;
  line-height: 1.4;
}
.form-help.muted { color: var(--gray-400); }
.req-mark {
  color: var(--danger);
  font-weight: 700;
  margin-left: .15rem;
}
.consent-block {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.consent-item {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  padding: .85rem 1rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-size: .88rem;
  color: var(--gray-800);
  line-height: 1.5;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.consent-item:hover { border-color: var(--gold); }
.consent-item input[type="checkbox"] {
  accent-color: var(--gold-dark);
  width: 18px;
  height: 18px;
  margin-top: .1rem;
  flex-shrink: 0;
}
.consent-item strong { color: var(--navy); }
.field-hidden { display: none !important; }

/* ---------- Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step-card {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}
.step-num {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
}
.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
}
.step-card p {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .committee-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a {
    width: 100%;
    padding: .7rem 1rem;
  }

  .hero { padding: 3rem 0; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }

  .about-preview { grid-template-columns: 1fr; }
  .about-image { height: 220px; }

  .mv-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .membership-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-values { flex-direction: column; gap: .6rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .team-grid { grid-template-columns: repeat(2,1fr); }

  .page-header h1 { font-size: 1.7rem; }
  .section-header h2 { font-size: 1.5rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .join-form { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .hero-buttons { flex-direction: column; }
  .team-grid { grid-template-columns: 1fr; }
}
