/* ============================================================
   NETROVA — Connect. Collaborate. Grow.
   Style Sheet v1.0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:        #0D1B4B;
  --blue:        #1E7FD4;
  --blue-light:  #3B9EE8;
  --green:       #3BB34A;
  --orange:      #F47920;
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --light-gray:  #EEF2F8;
  --border:      #DDE4EF;
  --text-dark:   #0D1B4B;
  --text-mid:    #3A4A6B;
  --text-light:  #7A8AAA;
  --shadow-sm:   0 2px 12px rgba(13,27,75,0.08);
  --shadow-md:   0 8px 32px rgba(13,27,75,0.12);
  --shadow-lg:   0 20px 60px rgba(13,27,75,0.16);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Label ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.section-label.orange { color: var(--orange); }
.section-label.orange::before,
.section-label.orange::after { background: var(--orange); }
.section-label.green { color: var(--green); }
.section-label.green::before,
.section-label.green::after { background: var(--green); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #FF9040 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(244,121,32,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244,121,32,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-blue {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(30,127,212,0.3);
}
.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30,127,212,0.4);
}
.btn-sm {
  padding: 9px 20px;
  font-size: 13px;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ======================================================
   HEADER / NAVBAR
====================================================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(13,27,75,0.10);
  transition: var(--transition);
}
#header.scrolled {
  box-shadow: 0 4px 30px rgba(13,27,75,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 0;
}
.nav-logo {
  flex-shrink: 0;
  margin-right: 40px;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--light-gray);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.btn-login {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  border: 2px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
}
.btn-login:hover {
  border-color: var(--navy);
  background: var(--light-gray);
}
.btn-joinnow {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #FF9040);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 3px 14px rgba(244,121,32,0.35);
}
.btn-joinnow:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(244,121,32,0.45);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ======================================================
   HERO SECTION
====================================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-banner.jpeg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,27,75,0.35) 0%,
    rgba(13,27,75,0.55) 40%,
    rgba(13,27,75,0.85) 75%,
    rgba(13,27,75,0.97) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}
.hero-badge span {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 8px var(--green);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.3); }
}
.hero-heading {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 24px;
  max-width: 760px;
}
.hero-heading .accent-green  { color: var(--green); }
.hero-heading .accent-blue   { color: var(--blue-light); }
.hero-heading .accent-orange { color: var(--orange); }
.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: left;
}
.hero-stat .number {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat .label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  margin-top: 2px;
}
.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
}

/* Hero Bottom Feature Strip */
.hero-strip {
  position: relative;
  z-index: 2;
  background: rgba(13,27,75,0.92);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hero-strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.hero-strip-item:last-child { border-right: none; }
.hero-strip-item:hover { background: rgba(255,255,255,0.04); }
.strip-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.strip-icon svg { width: 24px; height: 24px; }
.strip-icon.blue   { background: rgba(30,127,212,0.25); color: var(--blue-light); }
.strip-icon.green  { background: rgba(59,179,74,0.25);  color: var(--green); }
.strip-icon.purple { background: rgba(130,80,220,0.25); color: #A070E8; }
.strip-icon.orange { background: rgba(244,121,32,0.25); color: var(--orange); }
.strip-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.strip-text span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* ======================================================
   ABOUT US
====================================================== */
#about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-badge-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--orange), #FF9040);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.about-badge-icon svg { width: 26px; height: 26px; }
.about-badge-text strong { display: block; font-size: 24px; font-weight: 800; color: var(--navy); }
.about-badge-text span { font-size: 12px; color: var(--text-light); font-weight: 500; }
.about-text h2 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}
.about-text h2 em {
  font-style: normal;
  color: var(--blue);
}
.about-text p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 32px 0 40px;
}
.pillar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.pillar-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pillar-dot.green  { background: var(--green); }
.pillar-dot.blue   { background: var(--blue); }
.pillar-dot.orange { background: var(--orange); }
.pillar-dot.navy   { background: var(--navy); }
.pillar-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ======================================================
   EXECUTIVE MEMBERS
====================================================== */
#executives {
  padding: 90px 0;
  background: var(--off-white);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-header p {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.exec-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.exec-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.exec-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.exec-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.exec-card:hover::before { transform: scaleX(1); }
.exec-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 3px solid var(--border);
  transition: var(--transition);
}
.exec-card:hover .exec-avatar {
  border-color: var(--blue);
}
.exec-avatar-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}
.exec-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.exec-title {
  font-size: 12px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 4px;
}
.exec-company {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 14px;
}
.exec-social {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.exec-social a {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: var(--transition);
  font-size: 14px;
}
.exec-social a:hover {
  background: var(--navy);
  color: var(--white);
}
.exec-social svg { width: 14px; height: 14px; }

/* ======================================================
   JOIN CTA BAND
====================================================== */
#join-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1A2E6E 50%, #0D3A7A 100%);
  position: relative;
  overflow: hidden;
}
#join-cta::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30,127,212,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
#join-cta::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244,121,32,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.join-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}
.join-cta-text h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.join-cta-text h2 span { color: var(--orange); }
.join-cta-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
}
.join-cta-perks {
  display: flex;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.cta-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.cta-perk svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
.join-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

/* ======================================================
   FEATURED MEMBERS
====================================================== */
#members {
  padding: 100px 0;
  background: var(--white);
}
.members-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.member-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.member-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.member-logo-wrap {
  width: 72px; height: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.member-logo-placeholder {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.member-company {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.member-address {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 8px;
}
.member-website {
  font-size: 11px;
  color: var(--blue);
  margin-bottom: 14px;
  word-break: break-all;
}
.member-website a { color: var(--blue); }
.member-website a:hover { text-decoration: underline; }
.member-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  background: var(--light-gray);
  color: var(--text-mid);
  margin-bottom: 14px;
}
.member-card .btn { width: 100%; justify-content: center; }

/* ======================================================
   EMAIL SUBSCRIPTION
====================================================== */
#subscribe {
  padding: 90px 0;
  background: var(--off-white);
}
.subscribe-wrap {
  background: linear-gradient(135deg, var(--navy), #1A3A7A);
  border-radius: var(--radius-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.subscribe-wrap::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 300px; height: 300px;
  border: 60px solid rgba(255,255,255,0.04);
  border-radius: 50%;
}
.subscribe-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.subscribe-text h2 span { color: var(--orange); }
.subscribe-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
}
.subscribe-form {
  position: relative;
}
.subscribe-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 6px 6px 6px 24px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  margin-bottom: 14px;
}
.subscribe-input-wrap:focus-within {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.15);
}
.subscribe-input-wrap input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--white);
}
.subscribe-input-wrap input::placeholder { color: rgba(255,255,255,0.45); }
.subscribe-note {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 6px;
}
.subscribe-note svg { width: 14px; height: 14px; }

/* ======================================================
   FOOTER
====================================================== */
#footer {
  background: #080E28;
  color: rgba(255,255,255,0.7);
}
.footer-top {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
}
.footer-brand img { height: 44px; margin-bottom: 18px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--blue); }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--white); }
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

/* Quick Contact Form */
.footer-qform input,
.footer-qform textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 11px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: var(--white);
  outline: none;
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-qform input:focus,
.footer-qform textarea:focus {
  border-color: var(--blue);
  background: rgba(255,255,255,0.09);
}
.footer-qform input::placeholder,
.footer-qform textarea::placeholder { color: rgba(255,255,255,0.3); }
.footer-qform textarea { height: 80px; resize: none; }
.footer-qform .btn { width: 100%; justify-content: center; margin-top: 4px; }

/* Payment badges */
.payment-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.pay-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
}

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom-inner p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ======================================================
   MOBILE NAV OVERLAY
====================================================== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  padding: 90px 24px 40px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  border: 1px solid var(--border);
}
.mobile-nav a:hover {
  background: var(--light-gray);
}
.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.mobile-nav-actions button {
  width: 100%;
  padding: 15px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 1100px) {
  .exec-grid { grid-template-columns: repeat(3, 1fr); }
  .members-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap .about-badge { left: 12px; bottom: -16px; }
  .join-cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .join-cta-actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .subscribe-wrap { grid-template-columns: 1fr; padding: 40px; gap: 32px; }
  .hero-strip-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .exec-grid { grid-template-columns: repeat(2, 1fr); }
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero-strip-inner { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .subscribe-wrap { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .exec-grid { grid-template-columns: repeat(2, 1fr); }
  .members-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-badge { display: none; }
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
