/* ═══════════════════════════════════════════════════════════════
   IMC Tourism Club — Main Stylesheet
   Brand: Blue #1B4EA8 (IMC) + Green #6DC22E (TOURISM)
   ═══════════════════════════════════════════════════════════════ */

/* ── Fonts ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Barlow+Condensed:wght@500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Brand — extracted from logo */
  --blue:        #1B4EA8;
  --blue-dark:   #0F2E6B;
  --blue-light:  #2463C8;
  --blue-pale:   #EBF1FB;
  --green:       #6DC22E;
  --green-dark:  #4E9A1A;
  --green-light: #8ED44E;
  --green-pale:  #EEF9E5;
  --gold:        #C9A84C;
  --gold-lt:     #E8C97A;

  /* Neutrals */
  --dark:    #0D1B2A;
  --text:    #1E293B;
  --muted:   #64748B;
  --border:  #E2E8F0;
  --surface: #F5F8FF;
  --white:   #FFFFFF;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(27,78,168,.08);
  --shadow-md:  0 8px 32px rgba(27,78,168,.12);
  --shadow-lg:  0 24px 64px rgba(27,78,168,.16);
  --shadow-xl:  0 40px 80px rgba(13,27,42,.2);

  /* Type */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-cond:  'Barlow Condensed', sans-serif;

  /* Spacing scale */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  24px;
  --sp-6:  32px;
  --sp-7:  48px;
  --sp-8:  64px;
  --sp-9:  80px;
  --sp-10: 96px;
  --sp-11: 120px;
  --sp-12: 160px;

  /* Type scale */
  --text-xs:   11px;
  --text-sm:   13px;
  --text-base: 15px;
  --text-md:   17px;
  --text-lg:   20px;
  --text-xl:   24px;
  --text-2xl:  32px;
  --text-3xl:  40px;
  --text-4xl:  52px;
  --text-5xl:  clamp(48px, 6vw, 80px);

  /* Motion */
  --ease:    cubic-bezier(.4,0,.2,1);
  --ease-out:cubic-bezier(0,0,.2,1);
  --t:       .3s;

  /* Layout */
  --max-w:   1200px;
  --radius:  12px;
  --radius-lg: 20px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.7;
}
p { line-height: 1.75; letter-spacing: -0.01em; }
h1, h2, h3 { letter-spacing: -0.02em; }
h4, h5, h6 { letter-spacing: -0.01em; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography helpers ─────────────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
}
.label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}
.label-blue { color: var(--blue); }
.label-no-line::before { display: none; }

h1 { font-family: var(--font-serif); line-height: 1.08; font-weight: 600; letter-spacing: -0.02em; }
h2 { font-family: var(--font-serif); line-height: 1.12; font-weight: 600; letter-spacing: -0.01em; }
h3 { font-family: var(--font-serif); line-height: 1.2;  font-weight: 600; letter-spacing: 0; }
h4, h5, h6 { font-family: var(--font-sans); line-height: 1.35; font-weight: 700; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,78,168,.35);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(109,194,46,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}
.btn-lg { padding: 18px 36px; font-size: 16px; border-radius: 10px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-icon { gap: 6px; }
.btn-icon svg { width: 16px; height: 16px; }

/* ── Section layout ─────────────────────────────────────────── */
.section { padding: var(--sp-11) 0; }
.section-sm { padding: var(--sp-8) 0; }
.section-header { text-align: center; margin-bottom: var(--sp-7); }
.section-header .label { margin-bottom: var(--sp-3); }
.section-header h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--dark);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.025em;
}
.section-header p {
  font-size: var(--text-md);
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}
.section-bg { background: var(--surface); }
.section-dark { background: var(--dark); }
.section-blue { background: var(--blue-dark); }

/* ── Badge ──────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.badge-green  { background: var(--green-pale);  color: var(--green-dark); }
.badge-blue   { background: var(--blue-pale);   color: var(--blue); }
.badge-gold   { background: rgba(201,168,76,.12); color: #92610A; }
.badge-verify { background: var(--green-pale);  color: var(--green-dark); }

/* ── Card base ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--t) var(--ease);
  overflow: hidden;
}
.card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

/* ── ════════════════════════════════════════════════════════ ──
   NAVIGATION
── ════════════════════════════════════════════════════════ ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--t) var(--ease);
  padding: 0;
}
#nav.transparent { background: transparent; }
#nav.solid {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  height: 76px;
  gap: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 40px;
}
.nav-logo img {
  height: 44px;
  width: auto;
  transition: filter var(--t);
}
#nav.solid .nav-logo img {
  filter: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all var(--t) var(--ease);
  color: var(--muted);
  white-space: nowrap;
}
#nav.transparent .nav-link { color: rgba(255,255,255,.85); }
.nav-link:hover,
#nav.transparent .nav-link:hover {
  background: rgba(27,78,168,.08);
  color: var(--blue);
}
#nav.transparent .nav-link:hover {
  background: rgba(255,255,255,.12);
  color: var(--white);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-login {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 8px;
  transition: color var(--t);
}
#nav.transparent .nav-login { color: rgba(255,255,255,.8); }
.nav-login:hover { color: var(--blue); }
#nav.transparent .nav-login:hover { color: var(--white); }
.nav-join {
  padding: 10px 22px;
  font-size: 14px;
}

/* ── Member nav dropdown ────────────────────────────────── */
.nav-member-menu { position: relative; }
.nav-member-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: border-color var(--t), box-shadow var(--t);
}
.nav-member-btn:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
#nav.transparent .nav-member-btn { border-color: rgba(255,255,255,.3); color: var(--white); }
#nav.transparent .nav-member-btn:hover { border-color: rgba(255,255,255,.7); }
.nav-member-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  letter-spacing: .5px;
}
.nav-member-name { font-size: 13px; font-weight: 600; color: var(--text); max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
#nav.transparent .nav-member-name { color: var(--white); }
.nav-member-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 210px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(13,27,42,.15);
  border: 1px solid var(--border);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  z-index: 200;
}
.nav-member-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-member-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: background var(--t);
}
.nav-member-dropdown a i { width: 16px; text-align: center; color: var(--muted); }
.nav-member-dropdown a:hover { background: var(--surface); }
.nav-member-divider { height: 1px; background: var(--border); margin: 4px 0; }

/* Mega menu */
.nav-item { position: relative; }
.nav-item > .nav-link .chevron {
  font-size: 9px;
  transition: transform var(--t);
  margin-left: 2px;
  vertical-align: middle;
}
.nav-item:hover > .nav-link .chevron { transform: rotate(180deg); }
.mega-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  min-width: 520px;
  z-index: 100;
}
.nav-item:hover .mega-menu { display: block; animation: fadeDown .2s var(--ease-out); }
@keyframes fadeDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.mega-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: all var(--t) var(--ease);
}
.mega-item:hover { background: var(--blue-pale); color: var(--blue); }
.mega-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--blue);
  background: var(--blue-pale);
  flex-shrink: 0;
  transition: all .2s;
}
.mega-item:hover .mega-icon { background: var(--blue); color: #fff; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all var(--t);
}
#nav.transparent .nav-toggle { color: var(--white); }
#nav.solid .nav-toggle { color: var(--dark); }

/* ── ════════════════════════════════════════════════════════ ──
   HERO SLIDER
── ════════════════════════════════════════════════════════ ── */
.hero-swiper {
  width: 100%;
  height: 100vh;
  min-height: 640px;
}
.swiper-slide-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 8s ease;
  will-change: transform;
}
.swiper-slide-active .slide-bg { transform: scale(1.06); }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,27,42,.85) 0%,
    rgba(13,27,42,.6) 50%,
    rgba(13,27,42,.3) 100%
  );
}
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 24px;
  margin: 0 auto;
  margin-left: 8%;
}
.slide-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(109,194,46,.15);
  border: 1px solid rgba(109,194,46,.3);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .8s var(--ease-out) .2s;
}
.slide-label .dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: .3; }
}
.slide-label span {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-light);
}
.slide-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 6.5vw, 88px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s var(--ease-out) .35s;
}
.slide-subtitle {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 540px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .8s var(--ease-out) .5s;
}
.slide-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: all .8s var(--ease-out) .65s;
}
.swiper-slide-active .slide-label,
.swiper-slide-active .slide-title,
.swiper-slide-active .slide-subtitle,
.swiper-slide-active .slide-actions {
  opacity: 1;
  transform: translateY(0);
}

/* Swiper controls */
.hero-swiper .swiper-pagination {
  bottom: 32px !important;
}
.hero-swiper .swiper-pagination-bullet {
  width: 32px; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,.4);
  opacity: 1;
}
.hero-swiper .swiper-pagination-bullet-active {
  background: var(--green);
  width: 56px;
}
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: all var(--t);
}
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: var(--blue);
  border-color: var(--blue);
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  font-size: 14px;
  color: var(--white);
  font-weight: 700;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  color: rgba(255,255,255,.5);
  font-size: 11px;
  font-family: var(--font-cond);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── ════════════════════════════════════════════════════════ ──
   STATS BAR
── ════════════════════════════════════════════════════════ ── */
.stats-bar {
  background: var(--blue-dark);
  padding: 36px 0;
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-cond);
  font-size: 48px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── ════════════════════════════════════════════════════════ ──
   CATEGORY GRID
── ════════════════════════════════════════════════════════ ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.cat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform var(--t) var(--ease);
}
.cat-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.cat-card:hover::after { transform: scaleX(1); }
.cat-img {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 26px;
  transition: all var(--t);
}
.cat-card:hover .cat-img {
  background: var(--blue);
  transform: scale(1.05);
}
.cat-img .cat-emoji { color: var(--blue); }
.cat-card:hover .cat-img .cat-emoji { color: #fff; filter: none; }
.cat-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.cat-count { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* ── ════════════════════════════════════════════════════════ ──
   MEMBER CARDS
── ════════════════════════════════════════════════════════ ── */
.members-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.member-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t) var(--ease);
  cursor: pointer;
}
.member-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.member-cover {
  height: 120px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  position: relative;
  overflow: hidden;
}
.member-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .4;
}
.member-cover-pattern {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='10'/%3E%3C/g%3E%3C/svg%3E");
}
.member-logo-wrap {
  position: absolute;
  bottom: -24px; left: 20px;
  width: 56px; height: 56px;
  border-radius: 14px;
  border: 3px solid var(--white);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  color: var(--blue);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.member-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
.member-body { padding: 36px 20px 20px; }
.member-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.member-meta {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.member-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.member-desc { font-size: 13px; color: #64748B; line-height: 1.6; }
.member-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.member-since { font-size: 11px; color: var(--muted); }
.member-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--t);
}
.member-card:hover .member-cta { color: var(--green); }

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--muted);
  transition: all var(--t);
  cursor: pointer;
}
.filter-tab.active, .filter-tab:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* ── ════════════════════════════════════════════════════════ ──
   CLUB CTA SECTION
── ════════════════════════════════════════════════════════ ── */
.club-section {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.club-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(109,194,46,.08) 0%, transparent 70%);
}
.club-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(27,78,168,.12) 0%, transparent 70%);
}
.club-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.club-left h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--white);
  margin: 12px 0 20px;
  line-height: 1.15;
}
.club-left h2 em {
  font-style: normal;
  color: var(--green);
}
.club-left p { font-size: 16px; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 36px; }
.benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}
.benefit-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(109,194,46,.15);
  border: 1.5px solid rgba(109,194,46,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}
.price-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(109,194,46,.2);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  backdrop-filter: blur(10px);
}
.price-card-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.price-amount {
  font-family: var(--font-cond);
  font-size: 72px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.price-cur {
  font-family: var(--font-cond);
  font-size: 30px;
  color: var(--green);
  vertical-align: super;
  margin-right: 2px;
}
.price-period {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-top: 6px;
  margin-bottom: 28px;
}
.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.price-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
}
.price-feat-icon { color: var(--green); font-weight: 700; }
.price-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin-bottom: 24px;
}

/* ── ════════════════════════════════════════════════════════ ──
   AI ASSISTANT SECTION
── ════════════════════════════════════════════════════════ ── */
.ai-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a2150 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.ai-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(109,194,46,.12) 0%, transparent 70%);
}
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.ai-left h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white);
  margin: 12px 0 16px;
}
.ai-left p { font-size: 16px; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 28px; }
.ai-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ai-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
}
.ai-feat-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(109,194,46,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--green-light);
  flex-shrink: 0;
}
.ai-feat-body h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.ai-feat-body p { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.5; }

/* AI Chat Demo */
.ai-chat-demo {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.ai-chat-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  gap: 12px;
}
.ai-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
}
.ai-name { font-size: 14px; font-weight: 700; color: var(--white); }
.ai-status {
  font-size: 11px;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 5px;
}
.ai-status::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}
.ai-chat-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.chat-msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.6;
}
.chat-msg-user {
  align-self: flex-end;
  background: var(--blue);
  color: var(--white);
  border-bottom-right-radius: 4px;
}
.chat-msg-ai {
  align-self: flex-start;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  border-bottom-left-radius: 4px;
}
.ai-chat-input {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  gap: 10px;
}
.ai-input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  color: var(--white);
  font-size: 13px;
  font-family: var(--font-sans);
}
.ai-input::placeholder { color: rgba(255,255,255,.3); }
.ai-input:focus { outline: none; border-color: var(--green); }
.ai-send {
  width: 38px; height: 38px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--t);
  flex-shrink: 0;
}
.ai-send:hover { background: var(--green-dark); transform: scale(1.05); }

/* ── ════════════════════════════════════════════════════════ ──
   EVENTS
── ════════════════════════════════════════════════════════ ── */
.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.event-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t) var(--ease);
}
.event-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.event-img {
  height: 180px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  position: relative;
  overflow: hidden;
}
.event-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t) var(--ease);
}
.event-card:hover .event-img img { transform: scale(1.05); }
.event-type {
  position: absolute;
  top: 14px; left: 14px;
}
.event-body { padding: 24px; }
.event-date {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.event-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.event-loc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}
.event-desc {
  font-size: 13px;
  color: #64748B;
  line-height: 1.65;
  margin-bottom: 20px;
}
.event-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--t);
}
.event-card:hover .event-link { color: var(--green); }

/* ── ════════════════════════════════════════════════════════ ──
   TESTIMONIALS
── ════════════════════════════════════════════════════════ ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--t) var(--ease);
}
.testimonial-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-av {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-av img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--dark); }
.testimonial-role { font-size: 12px; color: var(--muted); }

/* ── ════════════════════════════════════════════════════════ ──
   FOOTER
── ════════════════════════════════════════════════════════ ── */
.site-footer {
  background: #06101E;
  padding: 80px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 40px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  line-height: 1.75;
  margin: 20px 0 28px;
}
.footer-logo img { height: 40px; filter: brightness(0) invert(1); opacity: .85; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--t);
  color: rgba(255,255,255,.5);
  text-decoration: none;
}
.social-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  transition: color var(--t);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.25); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,.25); transition: color var(--t); }
.footer-legal a:hover { color: rgba(255,255,255,.5); }

/* ── ════════════════════════════════════════════════════════ ──
   AI CHAT WIDGET (Floating)
── ════════════════════════════════════════════════════════ ── */
#ai-chat-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  font-family: var(--font-sans);
}
.chat-bubble {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 8px 32px rgba(27,78,168,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  position: relative;
}
.chat-bubble:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(27,78,168,.5); }
.chat-bubble-icon { font-size: 22px; color: #fff; }
.chat-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(109,194,46,.4);
  animation: chatPulse 2.5s infinite;
}
@keyframes chatPulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}
.chat-badge-count {
  position: absolute;
  top: -2px; right: -2px;
  width: 20px; height: 20px;
  background: #EF4444;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}
.chat-panel {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 360px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  display: none;
  flex-direction: column;
  max-height: 520px;
}
.chat-panel.open { display: flex; animation: chatOpen .25s var(--ease-out); }
@keyframes chatOpen {
  from { opacity: 0; transform: scale(.92) translateY(10px); }
  to   { opacity: 1; transform: scale(1)  translateY(0); }
}
.chat-panel-header {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-panel-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.chat-panel-name { font-size: 15px; font-weight: 700; color: var(--white); }
.status-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-light);
  animation: statusPulse 2s infinite;
}
@keyframes statusPulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.chat-panel-status {
  font-size: 11px;
  color: var(--green-light);
  display: flex;
  align-items: center;
  gap: 5px;
}
.chat-panel-status::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green-light);
  border-radius: 50%;
}
.chat-panel-close {
  margin-left: auto;
  background: rgba(255,255,255,.1);
  border: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
  transition: background var(--t);
}
.chat-panel-close:hover { background: rgba(255,255,255,.2); }
.chat-panel-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 320px;
}
.chat-panel-messages::-webkit-scrollbar { width: 4px; }
.chat-panel-messages::-webkit-scrollbar-track { background: transparent; }
.chat-panel-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.chat-msg-wrap { display: flex; flex-direction: column; }
.chat-msg-wrap.user { align-items: flex-end; }
.chat-msg-wrap.ai  { align-items: flex-start; }
.chat-bubble-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.6;
}
.chat-msg-wrap.user .chat-bubble-msg {
  background: var(--blue);
  color: var(--white);
  border-bottom-right-radius: 4px;
}
.chat-msg-wrap.ai .chat-bubble-msg {
  background: var(--surface);
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.chat-typing {
  display: flex;
  gap: 4px;
  padding: 10px 14px;
  background: var(--surface);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  width: fit-content;
}
.chat-typing span {
  width: 6px; height: 6px;
  background: var(--muted);
  border-radius: 50%;
  animation: typing .8s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typing {
  0%,80%,100% { transform: translateY(0); opacity: .4; }
  40% { transform: translateY(-6px); opacity: 1; }
}
.chat-panel-input {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  align-items: center;
}
.chat-input-field {
  flex: 1;
  padding: 9px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-family: var(--font-sans);
  color: var(--text);
  transition: border-color var(--t);
}
.chat-input-field:focus { outline: none; border-color: var(--blue); }
.chat-send-btn {
  width: 36px; height: 36px;
  background: var(--blue);
  border-radius: 8px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  transition: all var(--t);
  flex-shrink: 0;
}
.chat-send-btn:hover { background: var(--green); transform: scale(1.05); }
.chat-quick-replies {
  padding: 0 16px 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.quick-reply {
  padding: 5px 12px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  background: var(--white);
  cursor: pointer;
  transition: all var(--t);
}
.quick-reply:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ── ════════════════════════════════════════════════════════ ──
   INNER PAGES — Shared
── ════════════════════════════════════════════════════════ ── */
.section-pad { padding: 80px 0; }
.inner-hero {
  padding: 0;
  min-height: 620px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #0a1e52;
  background-image:
    radial-gradient(ellipse at 75% 40%, rgba(109,194,46,.13) 0%, transparent 52%),
    radial-gradient(ellipse at 10% 80%, rgba(27,78,168,.35) 0%, transparent 45%),
    radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: auto, auto, 26px 26px;
}
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8,18,52,.45) 0%, transparent 60%);
  z-index: 0;
}
.inner-hero .container {
  padding-top: 130px;
  padding-bottom: 90px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.inner-hero-content { position: relative; z-index: 1; color: #fff; max-width: 720px; }
.inner-hero-content h1 { font-size: clamp(32px, 5vw, 52px); color: #fff; margin: 12px 0; }
.inner-hero-content p { font-size: 18px; color: rgba(255,255,255,.78); line-height: 1.7; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 12px; }
.breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: rgba(255,255,255,.3); }
.hero-concept-art { position: absolute; right: 0; top: 0; bottom: 0; width: 44%; pointer-events: none; z-index: 0; display: flex; align-items: center; justify-content: flex-end; padding-right: 2%; overflow: hidden; opacity: .11; }
.hero-concept-art svg { height: 74%; width: auto; max-width: 100%; }
@media (max-width: 900px) { .hero-concept-art { width: 65%; opacity: .07; } }
@media (max-width: 600px) { .hero-concept-art { display: none; } }

/* ── ════════════════════════════════════════════════════════ ──
   INNER HERO MOTION GRAPHICS (injected via main.js)
── ════════════════════════════════════════════════════════ ── */
.iha-layer { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

/* Glowing orbs */
.iha-orb { position: absolute; border-radius: 50%; filter: blur(90px); will-change: transform; }
.iha-orb-1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(27,78,168,.38) 0%, transparent 70%);
  right: -140px; top: -220px;
  animation: iha-drift-a 24s ease-in-out infinite;
}
.iha-orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(109,194,46,.22) 0%, transparent 70%);
  right: 16%; bottom: -120px;
  animation: iha-drift-b 19s ease-in-out infinite -9s;
}
.iha-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
  right: 36%; top: -60px;
  animation: iha-drift-a 16s ease-in-out infinite -6s;
}
@keyframes iha-drift-a {
  0%,100% { transform: translate(0,0) scale(1); }
  28%  { transform: translate(22px,-32px) scale(1.07); }
  58%  { transform: translate(-14px,18px) scale(.95); }
  78%  { transform: translate(10px,-8px) scale(1.02); }
}
@keyframes iha-drift-b {
  0%,100% { transform: translate(0,0) scale(1); }
  40%  { transform: translate(-22px,26px) scale(1.09); }
  72%  { transform: translate(28px,-14px) scale(.93); }
}

/* Network SVG */
.iha-svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Animated arc paths */
.iha-path {
  fill: none;
  stroke: rgba(255,255,255,.2);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: iha-draw 7s ease-in-out infinite;
}
.iha-path.p2 { stroke: rgba(109,194,46,.28); animation-delay: -2.5s; animation-duration: 8.5s; }
.iha-path.p3 { animation-delay: -5s;   animation-duration: 9s; stroke: rgba(255,255,255,.14); }
.iha-path.p4 { animation-delay: -1.2s; animation-duration: 10s; stroke: rgba(255,255,255,.12); }
@keyframes iha-draw {
  0%          { stroke-dashoffset: 1; opacity: 0; }
  12%         { opacity: 1; }
  82%         { opacity: 1; stroke-dashoffset: 0; }
  100%        { stroke-dashoffset: 0; opacity: 0; }
}

/* Node dots */
.iha-dot       { fill: rgba(255,255,255,.6); }
.iha-dot-green { fill: rgba(109,194,46,.85); }

/* Globe */
.iha-globe { opacity: .22; }

/* Expanding rings — positioned top-right of hero */
.iha-rings { position: absolute; right: 6%; top: 50%; transform: translateY(-50%); }
.iha-ring {
  display: block;
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  animation: iha-pulse-ring 7s ease-out infinite;
  top: 50%; left: 50%;
}
.iha-ring-1 { width: 60px;  height: 60px;  margin: -30px 0 0 -30px;  animation-delay: 0s;   border-color: rgba(109,194,46,.4); }
.iha-ring-2 { width: 60px;  height: 60px;  margin: -30px 0 0 -30px;  animation-delay: -2.3s; }
.iha-ring-3 { width: 60px;  height: 60px;  margin: -30px 0 0 -30px;  animation-delay: -4.6s; border-color: rgba(255,255,255,.1); }
@keyframes iha-pulse-ring {
  0%   { transform: scale(.4);  opacity: 0; }
  15%  { opacity: 1; }
  100% { transform: scale(4.2); opacity: 0; }
}

/* Reduce on small screens */
@media (max-width: 768px) {
  .iha-orb-1 { width: 320px; height: 320px; }
  .iha-orb-2, .iha-orb-3 { display: none; }
  .iha-globe { display: none; }
  .iha-rings { right: 2%; }
}
.section-head { margin-bottom: 48px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin-top: 8px; }
.section-head.text-center { text-align: center; }
.section-label {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  padding: 4px 12px;
  border-radius: 100px;
}

/* Shared form styles */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: #475569; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.form-control { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 15px; color: var(--text); font-family: var(--font-sans); background: #fff; transition: border .2s, box-shadow .2s; }
.form-control:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27,78,168,.1); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { display: grid; grid-template-columns: 120px 1fr 1fr; gap: 16px; }
.form-section { border: 1.5px solid var(--border); border-radius: 12px; padding: 24px; margin-bottom: 20px; }
.form-section legend { font-size: 13px; font-weight: 700; color: var(--blue); padding: 0 8px; text-transform: uppercase; letter-spacing: 1px; }
.form-success-msg { background: var(--green-pale); border: 1.5px solid var(--green); border-radius: 16px; padding: 40px; text-align: center; }
.form-success-msg .success-icon { font-size: 48px; margin-bottom: 12px; color: var(--green); }
.form-success-msg h3 { font-size: 22px; margin-bottom: 8px; }
.form-errors { background: #fee2e2; border: 1.5px solid #fca5a5; border-radius: 10px; padding: 16px; margin-bottom: 20px; }
.form-errors p { font-size: 13px; color: #991b1b; margin-bottom: 4px; }
.pagination { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.page-btn { padding: 8px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--text); transition: all .2s; }
.page-btn:hover, .page-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.empty-dir { text-align: center; padding: 80px 20px; color: var(--muted); }
.empty-dir h3 { font-size: 20px; margin-bottom: 8px; color: var(--text); }

/* ── ════════════════════════════════════════════════════════ ──
   DIRECTORY PAGE
── ════════════════════════════════════════════════════════ ── */
.dir-filter-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 18px 0; }
.filter-form { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.filter-search { display: flex; flex: 1; min-width: 240px; }
.filter-input { flex: 1; padding: 10px 16px; border: 1.5px solid var(--border); border-right: none; border-radius: 8px 0 0 8px; font-size: 14px; }
.filter-input:focus { outline: none; border-color: var(--blue); }
.filter-search-btn { padding: 10px 18px; background: var(--blue); color: #fff; border: none; border-radius: 0 8px 8px 0; font-size: 14px; font-weight: 600; cursor: pointer; transition: background .2s; white-space: nowrap; }
.filter-search-btn:hover { background: var(--blue-dark); }
.filter-selects { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.filter-select { padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; color: var(--text); background: #fff; cursor: pointer; min-width: 150px; max-width: 220px; }
.filter-clear { font-size: 13px; font-weight: 600; color: var(--muted); padding: 8px 12px; border-radius: 6px; border: 1.5px solid var(--border); transition: all .2s; }
.filter-clear:hover { color: #ef4444; border-color: #ef4444; }
.dir-cat-pills { background: #f8fafc; border-bottom: 1px solid var(--border); padding: 12px 0; }
.cat-pills-scroll { display: flex; flex-wrap: wrap; gap: 8px; padding: 6px 24px; }
.cat-pill { display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px; border: 1.5px solid var(--border); border-radius: 100px; font-size: 13px; font-weight: 600; color: var(--muted); transition: all .2s; white-space: nowrap; background: var(--white); }
.cat-pill i { font-size: 12px; }
.cat-pill:hover, .cat-pill.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.dir-results-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; flex-wrap: wrap; gap: 10px; }
.results-count { font-size: 14px; color: var(--muted); }
.member-nudge { font-size: 13px; color: var(--muted); }
.member-nudge a { color: var(--blue); font-weight: 600; }
/* ── Directory member grid & cards ─────────────────────────── */
.member-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.member-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.member-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* Banner (cover image or gradient) */
.member-card-banner {
  height: 88px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-light) 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
}
/* Logo positioned overlapping banner */
.member-card-logo-wrap {
  position: absolute;
  bottom: -28px;
  left: 18px;
  width: 60px; height: 60px;
  border-radius: 12px;
  border: 3px solid var(--white);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.member-logo-img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.member-logo-initials { width: 100%; height: 100%; background: var(--blue); color: #fff; font-weight: 800; font-size: 20px; display: flex; align-items: center; justify-content: center; font-family: var(--font-cond); letter-spacing: 1px; }

/* Badges on banner */
.featured-badge { position: absolute; top: 10px; left: 10px; font-size: 10px; font-weight: 700; background: var(--gold); color: #fff; padding: 3px 8px; border-radius: 100px; text-transform: uppercase; letter-spacing: .5px; }
.verified-badge-pill { position: absolute; top: 10px; right: 10px; font-size: 10px; font-weight: 700; background: var(--green); color: #fff; padding: 3px 8px; border-radius: 100px; display: flex; align-items: center; gap: 4px; }

/* Card body */
.member-card-body { padding: 38px 18px 14px; flex: 1; }
.member-cats-row { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 8px; }
.member-cat-tag { font-size: 10px; font-weight: 700; color: var(--blue); background: var(--blue-pale); padding: 2px 8px; border-radius: 100px; text-transform: uppercase; letter-spacing: .4px; display: flex; align-items: center; gap: 4px; }
.member-name { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 2px; line-height: 1.3; }
.member-country { font-size: 12px; color: var(--muted); margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }

/* Contact person row — the B2B key info */
.member-person-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; padding: 8px 10px; background: var(--surface); border-radius: 10px; }
.member-person-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--blue-dark); color: #fff; font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.member-person-name { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.2; }
.member-person-title { font-size: 11px; color: var(--muted); }

.member-desc { font-size: 12px; color: #64748b; line-height: 1.65; }

/* Card footer */
.member-card-footer { display: flex; align-items: center; gap: 6px; padding: 12px 18px; border-top: 1px solid var(--border); background: #fafbfc; flex-wrap: wrap; }
.mcard-btn { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 8px; transition: all .2s; }
.mcard-btn-phone { background: var(--blue-pale); color: var(--blue); }
.mcard-btn-phone:hover { background: var(--blue); color: #fff; }
.mcard-btn-wa { background: #dcfce7; color: #16a34a; }
.mcard-btn-wa:hover { background: #16a34a; color: #fff; }
.mcard-btn-email { background: var(--blue-pale); color: var(--blue); }
.mcard-btn-email:hover { background: var(--blue); color: #fff; }
.mcard-locked { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 5px; flex: 1; }
.mcard-view-btn { margin-left: auto; font-size: 12px; font-weight: 700; color: var(--blue); white-space: nowrap; display: flex; align-items: center; gap: 5px; }
.member-card:hover .mcard-view-btn { color: var(--green); }
.dir-join-cta { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); border-radius: var(--radius-lg); overflow: hidden; }
.join-cta-inner { padding: 48px; text-align: center; color: #fff; }
.join-cta-inner h3 { font-size: 28px; color: #fff; margin-bottom: 12px; }
.join-cta-inner p { color: rgba(255,255,255,.75); margin-bottom: 24px; }
.btn-outline-white { border: 2px solid rgba(255,255,255,.5); color: #fff; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ── ════════════════════════════════════════════════════════ ──
   MEMBERSHIP PAGE
── ════════════════════════════════════════════════════════ ── */
.membership-hero { }

/* ── Benefit Showcase ────────────────────────────────────────── */
.ben-showcase {
  display: grid;
  grid-template-columns: 340px 1fr;
  grid-template-rows: auto 1fr;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 64px rgba(0,0,0,.13);
  background: #fff;
  min-height: 640px;
  border-top: 4px solid #6DC22E;
}

.ben-header {
  grid-column: 1 / -1;
  padding: 52px 60px 44px;
  background: #fff;
  border-bottom: 1px solid #e8edf5;
  text-align: center;
  position: relative;
}
.ben-header h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: #1e293b;
  margin: 12px 0 12px;
  line-height: 1.2;
}
.ben-header p { font-size: 15.5px; color: #64748b; margin: 0; }

/* Left list — matches svc-list visual language exactly */
.ben-list {
  background: #f8fafc;
  display: flex; flex-direction: column;
  border-right: 1.5px solid #e2e8f0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}
.ben-list::-webkit-scrollbar { width: 4px; }
.ben-list::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 2px; }
.ben-list-header {
  padding: 20px 22px 12px;
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #94a3b8;
  border-bottom: 1px solid #e8edf4;
}
.ben-item {
  display: flex; align-items: center; gap: 12px;
  width: 100%; padding: 16px 20px;
  background: none; border: none; border-bottom: 1px solid #e8edf4;
  cursor: pointer; text-align: left;
  transition: background .18s; position: relative;
}
.ben-item:last-child { border-bottom: none; }
.ben-item::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--blue);
  border-radius: 0 3px 3px 0;
  opacity: 0; transition: opacity .18s;
}
.ben-item:hover { background: #eef2fa; }
.ben-item.active { background: #e8eef8; }
.ben-item.active::before { opacity: 1; }
.ben-num { font-size: 11px; font-weight: 700; color: #94a3b8; min-width: 20px; font-family: var(--font-sans); letter-spacing: .5px; }
.ben-item.active .ben-num { color: var(--blue); }
.ben-item-icon-sq {
  width: 36px; height: 36px; border-radius: 10px;
  background: #e8eef8;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #64748b; flex-shrink: 0;
  transition: background .18s, color .18s;
}
.ben-item.active .ben-item-icon-sq { background: var(--blue); color: #fff; }
.ben-item-title { font-size: 13px; font-weight: 600; color: #334155; flex: 1; line-height: 1.35; }
.ben-item.active .ben-item-title { color: var(--blue); }
.ben-item-arrow { font-size: 10px; color: #cbd5e1; transition: color .18s, transform .18s; }
.ben-item.active .ben-item-arrow { color: var(--blue); transform: translateX(2px); }

/* Right panels */
.ben-panels {
  padding: 52px 56px;
  position: relative;
  display: flex;
  align-items: stretch;
  background: #fff;
}
.ben-panel { display: none; flex-direction: column; width: 100%; }
.ben-panel.active { display: flex; animation: benSlideIn .28s ease; }
@keyframes benSlideIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.ben-step {
  display: block;
  font-family: var(--font-cond);
  font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 18px;
}
.ben-panel-icon {
  width: 80px; height: 80px; border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin-bottom: 24px; flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.ben-panel-title { font-size: 28px; font-weight: 800; color: #1e293b; margin-bottom: 14px; line-height: 1.2; }
.ben-panel-desc { font-size: 15.5px; color: #475569; line-height: 1.9; margin-bottom: 32px; flex: 1; }

.ben-panel-highlight {
  display: flex; align-items: center; gap: 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  border-top: 3px solid;        /* color set via JS / inline style on the element */
  padding: 22px 28px;
  margin-bottom: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}
.ben-highlight-stat { text-align: center; min-width: 84px; flex-shrink: 0; }
.ben-stat-num { display: block; font-family: var(--font-cond); font-size: 40px; font-weight: 800; line-height: 1; }
.ben-stat-lbl { font-size: 10px; color: #94a3b8; text-transform: uppercase; letter-spacing: .08em; margin-top: 6px; display: block; }
.ben-highlight-text { font-size: 14px; color: #334155; line-height: 1.72; border-left: 2px solid; padding-left: 20px; }
.ben-panel-cta { align-self: flex-start; }

/* Mobile: stack vertically */
@media (max-width: 900px) {
  .ben-showcase { grid-template-columns: 1fr; grid-template-rows: auto auto 1fr; border-radius: 16px; }
  .ben-header { padding: 36px 28px 28px; }
  .ben-list { flex-direction: row; overflow-x: auto; scrollbar-width: none; border-right: none; border-bottom: 1.5px solid #e2e8f0; }
  .ben-list::-webkit-scrollbar { display: none; }
  .ben-list-header { display: none; }
  .ben-item { flex-direction: column; align-items: center; gap: 6px; padding: 14px 12px; min-width: 80px; border-bottom: none; border-right: 1px solid #e8edf4; }
  .ben-item::before { display: none; }
  .ben-item.active { background: #e8eef8; }
  .ben-item-title { font-size: 10px; text-align: center; }
  .ben-num, .ben-item-arrow { display: none; }
  .ben-panels { padding: 32px 28px; }
  .ben-panel-title { font-size: 22px; }
  .ben-panel-icon { width: 60px; height: 60px; font-size: 24px; margin-bottom: 20px; }
  .ben-panel-highlight { flex-direction: column; padding: 18px; gap: 16px; }
  .ben-highlight-stat { min-width: unset; }
  .ben-highlight-text { border-left: none; border-top: 2px solid; padding-left: 0; padding-top: 14px; }
}
.membership-pricing { background: #fff; }
.price-card-main { background: linear-gradient(135deg, #f8fafc, #eff6ff); border: 2px solid var(--blue); border-radius: 24px; padding: 40px; text-align: center; }
.price-badge { display: inline-block; background: var(--blue); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 16px; border-radius: 100px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.price-amount { font-size: 52px; font-weight: 800; color: var(--blue); font-family: var(--font-cond); line-height: 1; margin-bottom: 4px; }
.price-amount span { font-size: 20px; color: var(--muted); font-weight: 400; }
.price-sub { color: var(--muted); font-size: 14px; margin: 12px 0 24px; line-height: 1.6; }
.price-features { text-align: left; margin-bottom: 28px; display: inline-block; }
.price-features li { padding: 6px 0; font-size: 15px; color: var(--text); display: flex; align-items: center; gap: 8px; }
.apply-form { background: #fff; border: 1.5px solid var(--border); border-radius: 20px; padding: 36px; }

/* ── ════════════════════════════════════════════════════════ ──
   TECHNOLOGY PAGE
── ════════════════════════════════════════════════════════ ── */
.tech-hero { }
.tech-partner-badge { display: inline-block; background: rgba(109,194,46,.15); color: var(--green-light); font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 100px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.tech-about-grid { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }
.tech-about-text h2 { font-size: clamp(28px, 3.5vw, 40px); margin: 8px 0 20px; }
.tech-about-text p { color: var(--muted); line-height: 1.8; font-size: 15px; }
.tech-about-stats { display: flex; gap: 32px; margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--border); }
.tech-stat { display: flex; flex-direction: column; }
.tech-stat-num { font-family: var(--font-cond); font-size: 36px; font-weight: 700; color: var(--blue); line-height: 1; }
.tech-stat span:last-child { font-size: 13px; color: var(--muted); margin-top: 4px; }
.tech-visual-card { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); border-radius: 20px; padding: 36px; color: #fff; text-align: center; }
.tech-visual-icon { font-size: 42px; color: rgba(255,255,255,.7); margin-bottom: 16px; }
.tech-visual-card h4 { font-size: 18px; color: #fff; margin-bottom: 8px; }
.tech-visual-card p { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.7; }
.tech-visual-divider { height: 1px; background: rgba(255,255,255,.1); margin: 20px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.service-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: all .3s; }
.service-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-icon { font-size: 26px; margin-bottom: 16px; color: var(--blue); width: 56px; height: 56px; background: var(--blue-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; transition: all .3s; }
.service-card:hover .service-icon { background: var(--blue); color: #fff; }
.service-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.service-features { display: flex; flex-wrap: wrap; gap: 6px; }
.service-features li { font-size: 11px; font-weight: 600; background: var(--blue-pale); color: var(--blue); padding: 3px 10px; border-radius: 100px; }
.catalogue-grid { display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: center; }
.catalogue-features { margin-top: 20px; }
.catalogue-features li { display: flex; align-items: center; gap: 12px; padding: 10px 0; color: rgba(255,255,255,.8); font-size: 15px; border-bottom: 1px solid rgba(255,255,255,.08); }
.catalogue-features li i { flex-shrink: 0; width: 16px; text-align: center; opacity: .85; }
.mockup-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.3); }
.mockup-header { background: #f1f5f9; padding: 12px 16px; display: flex; align-items: center; gap: 10px; }
.mockup-dots { display: flex; gap: 5px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; background: #ddd; }
.mockup-body { padding: 20px; }
.mockup-logo-placeholder { width: 60px; height: 60px; background: var(--blue-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 12px; }
.mockup-lines { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.mockup-line { height: 8px; background: #e2e8f0; border-radius: 4px; }
.mockup-line.w80 { width: 80%; }
.mockup-line.w60 { width: 60%; }
.mockup-line.w40 { width: 40%; }
.mockup-tags { display: flex; gap: 6px; margin-bottom: 12px; }
.mockup-tags span { font-size: 10px; font-weight: 700; background: var(--blue-pale); color: var(--blue); padding: 2px 8px; border-radius: 100px; }
.mockup-contacts { font-size: 12px; color: var(--muted); display: flex; flex-direction: column; gap: 6px; }
.btn-outline-blue { border: 2px solid var(--blue); color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: #fff; }
.process-steps { display: flex; align-items: flex-start; gap: 20px; flex-wrap: wrap; justify-content: center; }
.process-step { flex: 1; min-width: 200px; max-width: 280px; text-align: center; }
.step-num { width: 56px; height: 56px; background: linear-gradient(135deg, var(--blue), var(--green)); border-radius: 50%; color: #fff; font-size: 24px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: var(--font-cond); }
.process-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.process-step-arrow { font-size: 24px; color: var(--green); align-self: center; flex-shrink: 0; margin-top: -20px; }

/* ── ════════════════════════════════════════════════════════ ──
   ABOUT PAGE
── ════════════════════════════════════════════════════════ ── */
.about-story-grid { display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: start; }
.about-story-text h2 { font-size: clamp(28px,4vw,40px); margin: 8px 0 20px; }
.about-story-text p { color: var(--muted); line-height: 1.8; font-size: 15px; }
.about-timeline { position: relative; }
.about-timeline::before { content: ''; position: absolute; left: 28px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { display: flex; gap: 20px; margin-bottom: 28px; position: relative; }
.timeline-year { font-family: var(--font-cond); font-size: 14px; font-weight: 700; color: var(--blue); background: var(--blue-pale); width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1; }
.timeline-item.active .timeline-year { background: var(--green); color: #fff; }
.timeline-content { padding-top: 16px; }
.timeline-content strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.timeline-content p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.stats-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-box { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 32px; text-align: center; }
.stat-box .stat-num { font-family: var(--font-cond); font-size: 44px; font-weight: 700; color: var(--blue); line-height: 1; margin-bottom: 8px; }
.stat-box .stat-label { font-size: 14px; color: var(--muted); font-weight: 500; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px; text-align: center; transition: all .3s; }
.value-card:hover { border-color: var(--green); transform: translateY(-3px); }
.value-icon { font-size: 26px; margin-bottom: 16px; color: var(--blue); width: 64px; height: 64px; background: var(--blue-pale); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; transition: all .3s; }
.value-card:hover .value-icon { background: var(--blue); color: #fff; }
.value-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── ════════════════════════════════════════════════════════ ──
   EVENTS PAGE (full page, different from homepage events section)
── ════════════════════════════════════════════════════════ ── */
.event-type-tabs { display: flex; overflow-x: auto; gap: 0; scrollbar-width: none; }
.event-type-tabs::-webkit-scrollbar { display: none; }
.event-type-tab { flex-shrink: 0; padding: 14px 20px; font-size: 13px; font-weight: 600; color: var(--muted); border-bottom: 2.5px solid transparent; transition: all .2s; white-space: nowrap; }
.event-type-tab:hover { color: var(--blue); }
.event-type-tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.event-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all .3s; }
.event-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.event-card-img-wrap { position: relative; height: 200px; overflow: hidden; }
.event-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.event-card:hover .event-card-img { transform: scale(1.04); }
.event-type-badge { position: absolute; top: 12px; left: 12px; background: rgba(27,78,168,.9); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.event-members-badge { position: absolute; top: 12px; right: 12px; background: rgba(201,168,76,.9); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.event-card-body { padding: 20px; }
.event-date-bar { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.event-date { font-size: 12px; font-weight: 600; color: var(--blue); }
.event-location { font-size: 12px; color: var(--muted); }
.event-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; font-family: var(--font-sans); }
.event-desc { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.event-cta-btn { display: inline-block; padding: 8px 18px; background: var(--blue); color: #fff; border-radius: 8px; font-size: 13px; font-weight: 600; transition: all .2s; }
.event-cta-btn:hover { background: var(--blue-dark); }
.event-cta-locked { display: inline-block; padding: 8px 18px; background: var(--surface); color: var(--muted); border-radius: 8px; font-size: 13px; font-weight: 600; }
.events-org-cta { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); border-radius: 20px; }
.org-cta-inner { padding: 48px; text-align: center; color: #fff; }
.org-cta-inner h3 { font-size: 26px; color: #fff; margin-bottom: 12px; }
.org-cta-inner p { color: rgba(255,255,255,.75); margin-bottom: 24px; }

/* ── ════════════════════════════════════════════════════════ ──
   NEWS PAGE — Editorial / Magazine Layout
── ════════════════════════════════════════════════════════ ── */
.news-lock-overlay { position: absolute; inset: 0; background: rgba(15,46,107,.55); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 14px; gap: 6px; }
.news-lock-badge { position: absolute; top: 12px; right: 12px; background: rgba(15,20,40,.65); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 100px; display: inline-flex; align-items: center; gap: 5px; letter-spacing: .3px; border: 1px solid rgba(255,255,255,.15); }
.news-lock-badge-sm { padding: 4px 8px; font-size: 10px; top: 8px; right: 8px; }
.news-tag { font-size: 10px; font-weight: 700; background: var(--blue-pale); color: var(--blue); padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: .8px; white-space: nowrap; }
.members-tag { background: var(--green-pale); color: var(--green-dark); }
.news-read-link { font-size: 13px; font-weight: 700; color: var(--blue); transition: color .2s; }
.news-read-link:hover { color: var(--green); }
.news-member-notice { display: flex; align-items: center; gap: 10px; margin-bottom: 32px; padding: 14px 20px; background: #f0f4ff; border-radius: 10px; border: 1px solid #c7d7f5; color: var(--blue); font-size: 14px; }
.news-member-notice i { font-size: 18px; flex-shrink: 0; }

/* Featured article */
.news-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--border); margin-bottom: 48px; }
.news-featured-img-wrap { position: relative; display: block; min-height: 380px; overflow: hidden; }
.news-featured-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.news-featured:hover .news-featured-img { transform: scale(1.04); }
.news-featured-body { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; background: var(--white); }
.news-featured-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.news-featured-meta time { font-size: 12px; color: var(--muted); }
.news-featured-title { font-size: clamp(20px,2vw,28px); font-family: var(--font-serif); font-weight: 400; line-height: 1.25; color: var(--dark); margin-bottom: 14px; }
.news-featured-title a { color: inherit; }
.news-featured-title a:hover { color: var(--blue); }
.news-featured-excerpt { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }

/* Divider with label */
.news-divider-label { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.news-divider-label::before, .news-divider-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.news-divider-label span { font-family: var(--font-cond); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); white-space: nowrap; }

/* Editorial list */
.news-editorial-list { display: flex; flex-direction: column; gap: 0; }
.news-editorial-item { display: grid; grid-template-columns: 48px 1fr 220px; gap: 24px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--border); }
.news-editorial-item:first-child { border-top: 1px solid var(--border); }
.news-editorial-num { font-family: var(--font-cond); font-size: 32px; font-weight: 700; color: var(--border); line-height: 1; flex-shrink: 0; }
.news-editorial-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.news-editorial-meta time { font-size: 12px; color: var(--muted); }
.news-editorial-title { font-size: 18px; font-weight: 700; line-height: 1.3; color: var(--dark); margin-bottom: 8px; }
.news-editorial-title a { color: inherit; transition: color .2s; }
.news-editorial-title a:hover { color: var(--blue); }
.news-editorial-excerpt { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.news-editorial-img-wrap { position: relative; display: block; height: 140px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.news-editorial-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-editorial-item:hover .news-editorial-img { transform: scale(1.06); }

/* Keep old card styles for backwards compat on other pages */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.news-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all .3s; }
.news-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.news-card-img-wrap { position: relative; display: block; height: 200px; overflow: hidden; }
.news-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-card:hover .news-card-img { transform: scale(1.04); }
.news-card-body { padding: 20px; }
.news-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.news-date { font-size: 12px; color: var(--muted); }
.news-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.35; color: var(--dark); }
.news-excerpt { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.news-read-more { font-size: 13px; font-weight: 700; color: var(--blue); transition: color .2s; }
.news-read-more:hover { color: var(--green); }
.newsletter-cta { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); border-radius: 20px; }
.newsletter-inner { padding: 40px 48px; display: flex; align-items: center; gap: 40px; justify-content: space-between; flex-wrap: wrap; }
.newsletter-inner h3 { font-size: 22px; color: #fff; margin-bottom: 6px; }
.newsletter-inner p { color: rgba(255,255,255,.75); font-size: 14px; }

/* ── ════════════════════════════════════════════════════════ ──
   CONTACT PAGE
── ════════════════════════════════════════════════════════ ── */
.contact-grid { display: grid; grid-template-columns: 380px 1fr; gap: 0; align-items: stretch; border-radius: 24px; overflow: hidden; box-shadow: 0 8px 48px rgba(10,30,82,.10); }

/* ── Info card (dark navy left panel) ── */
.contact-info-card { background: #0a1e52; color: #fff; padding: 52px 44px; display: flex; flex-direction: column; gap: 0; }
.cic-brand { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.55); margin-bottom: 32px; }
.cic-brand-dot { width: 8px; height: 8px; border-radius: 50%; background: #6DC22E; flex-shrink: 0; }
.contact-info-card h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.3; }
.cic-sub { font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 32px; }

.cic-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.cic-item { display: flex; align-items: flex-start; gap: 14px; }
.cic-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.10); display: flex; align-items: center; justify-content: center; font-size: 16px; color: #6DC22E; flex-shrink: 0; }
.cic-item > div { display: flex; flex-direction: column; gap: 2px; }
.cic-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: rgba(255,255,255,.45); }
.cic-item a, .cic-item span { font-size: 14px; color: rgba(255,255,255,.85); transition: color .2s; word-break: break-all; }
.cic-item a:hover { color: #6DC22E; }

.cic-whatsapp { display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: #fff; font-size: 13.5px; font-weight: 700; padding: 10px 20px; border-radius: 10px; transition: all .2s; margin-bottom: 28px; align-self: flex-start; }
.cic-whatsapp:hover { background: #1da851; color: #fff; }
.cic-whatsapp i { font-size: 18px; }

.cic-divider { height: 1px; background: rgba(255,255,255,.12); margin-bottom: 24px; }
.cic-links-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.4); margin-bottom: 12px; }
.cic-quick { display: flex; flex-direction: column; gap: 8px; }
.cic-quick a { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7); padding: 8px 12px; border-radius: 8px; transition: all .2s; border: 1px solid rgba(255,255,255,.1); }
.cic-quick a:hover { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.2); }
.cic-quick a i { width: 14px; color: #6DC22E; }

/* ── Form card (right white panel) ── */
.contact-form-card { background: #fff; padding: 52px 48px; display: flex; flex-direction: column; gap: 0; }
.cfc-head { margin-bottom: 32px; }
.cfc-head h3 { font-size: 24px; font-weight: 800; color: var(--blue-dark); margin-bottom: 6px; }
.cfc-head p { font-size: 14px; color: var(--muted); }

.form-errors { background: #fff5f5; border: 1.5px solid #fecaca; border-radius: 12px; padding: 14px 18px; margin-bottom: 24px; }
.form-errors p { color: #dc2626; font-size: 13px; margin: 0; display: flex; align-items: center; gap: 8px; }
.form-errors p + p { margin-top: 6px; }
.form-success-msg { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; min-height: 320px; text-align: center; }
.success-icon { font-size: 56px; color: #6DC22E; }
.form-success-msg h3 { font-size: 24px; font-weight: 800; color: var(--blue-dark); margin: 0; }
.form-success-msg p { color: var(--muted); font-size: 15px; margin: 0; max-width: 320px; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 700; color: #1e293b; }
.req { color: #ef4444; }

/* Icon-prefixed inputs */
.input-icon-wrap { position: relative; }
.input-icon-wrap > i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 14px; color: #94a3b8; pointer-events: none; z-index: 1; }
.input-icon-wrap .form-control { padding-left: 40px; }

.form-control { width: 100%; padding: 11px 14px; border: 1.5px solid #e2e8f0; border-radius: 10px; font-size: 14px; color: #1e293b; background: #f8fafc; transition: border-color .2s, background .2s, box-shadow .2s; font-family: inherit; box-sizing: border-box; }
.form-control::placeholder { color: #94a3b8; }
.form-control:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(27,78,168,.1); }
textarea.form-control { resize: vertical; min-height: 130px; padding-top: 12px; }
.input-error { border-color: #ef4444 !important; background: #fff5f5 !important; }
.field-error { color: #ef4444; font-size: 12px; margin: 4px 0 0; }

/* Subject pills */
.subject-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.subject-pill { padding: 7px 14px; border: 1.5px solid #e2e8f0; border-radius: 100px; font-size: 13px; font-weight: 600; color: #64748b; background: #f8fafc; cursor: pointer; transition: all .18s; }
.subject-pill:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-pale); }
.subject-pill.active { background: var(--blue); border-color: var(--blue); color: #fff; }

.contact-submit { width: 100%; justify-content: center; padding: 14px; font-size: 15px; border-radius: 12px; margin-top: 4px; }

/* ── ════════════════════════════════════════════════════════ ──
   LOGIN PAGE
── ════════════════════════════════════════════════════════ ── */
.page-login body, .login-page { min-height: 100vh; }
.login-page { display: block; }
.login-split { display: grid; grid-template-columns: 480px 1fr; min-height: calc(100vh - 80px); margin-top: 80px; }
.login-visual { position: relative; overflow: hidden; }
.login-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.login-visual-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(15,46,107,.85) 0%, rgba(27,78,168,.75) 100%); z-index: 1; }
.login-visual-content { position: relative; z-index: 2; padding: 60px 48px; color: #fff; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.login-logo { height: 50px; margin-bottom: 32px; }
.login-visual-content h2 { font-size: 36px; color: #fff; margin-bottom: 12px; }
.login-visual-content p { color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.login-features { display: flex; flex-direction: column; gap: 10px; }
.login-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.8); }
.login-form-side { display: flex; align-items: center; justify-content: center; padding: 48px 40px; background: #f8fafc; }
.login-form-wrap { width: 100%; max-width: 420px; }
.login-form-header { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.login-form-header h1 { font-size: 30px; margin-bottom: 6px; color: var(--dark); }
.login-form-header p { color: var(--muted); font-size: 15px; }
.login-error { background: #fee2e2; border: 1px solid #fca5a5; border-radius: 8px; padding: 12px 16px; font-size: 14px; color: #991b1b; margin-bottom: 20px; }
.login-form { display: flex; flex-direction: column; }
.password-wrap { position: relative; }
.pw-toggle { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; font-size: 16px; cursor: pointer; color: var(--muted); }
.login-divider { text-align: center; color: var(--muted); font-size: 13px; margin: 20px 0; position: relative; }
.login-divider::before, .login-divider::after { content: ''; position: absolute; top: 50%; width: 42%; height: 1px; background: var(--border); }
.login-divider::before { left: 0; }
.login-divider::after { right: 0; }
.login-links { text-align: center; font-size: 14px; color: var(--muted); }
.login-links a { color: var(--blue); font-weight: 600; }

/* ── ════════════════════════════════════════════════════════ ──
   MEMBER DASHBOARD
── ════════════════════════════════════════════════════════ ── */
.member-dash-header { background: #fff; border: 1.5px solid var(--border); border-radius: 20px; padding: 32px; display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.member-dash-avatar { width: 80px; height: 80px; border-radius: 16px; overflow: hidden; border: 2px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--blue-pale); }
.member-dash-avatar img { width: 100%; height: 100%; object-fit: cover; }
.member-avatar-initials { font-size: 28px; font-weight: 800; color: var(--blue); font-family: var(--font-cond); }
.member-dash-info { flex: 1; }
.member-dash-cat { font-size: 12px; font-weight: 700; color: var(--green-dark); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.member-dash-info h1 { font-size: 26px; margin-bottom: 6px; font-family: var(--font-sans); }
.member-dash-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.verified-tag { background: var(--green-pale); color: var(--green-dark); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 100px; }
.member-dash-actions { display: flex; gap: 10px; }
.member-access-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.member-access-card { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 24px; cursor: pointer; transition: all .3s; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.member-access-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.member-access-card.ai-card { border-color: var(--green); background: var(--green-pale); }
.access-icon { font-size: 24px; margin-bottom: 14px; color: var(--blue); width: 56px; height: 56px; background: var(--blue-pale); border-radius: 14px; display: flex; align-items: center; justify-content: center; transition: all .3s; }
.member-access-card:hover .access-icon { background: var(--blue); color: #fff; }
.ai-card .access-icon { background: rgba(109,194,46,.15); color: var(--green-dark); }
.ai-card:hover .access-icon { background: var(--green); color: #fff; }
.member-access-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.member-access-card p { font-size: 13px; color: var(--muted); line-height: 1.6; flex: 1; }
.access-arrow { display: inline-block; margin-top: 16px; font-size: 13px; font-weight: 700; color: var(--blue); }
.ai-card .access-arrow { color: var(--green-dark); }
.member-profile-card { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 28px; }
.profile-details-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.profile-details-grid > div { display: flex; flex-direction: column; gap: 4px; }
.profile-details-grid strong { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.profile-details-grid span, .profile-details-grid a { font-size: 14px; color: var(--text); }

/* ── ════════════════════════════════════════════════════════ ──
   ANIMATIONS (scroll reveal)
── ════════════════════════════════════════════════════════ ── */
[data-gsap] {
  opacity: 0;
  transform: translateY(40px);
}
[data-gsap].gsap-done {
  opacity: 1;
  transform: none;
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
[data-gsap="fade-left"] { transform: translateX(-40px); }
[data-gsap="fade-right"] { transform: translateX(40px); }
[data-gsap].gsap-done { transform: none; }

/* ── ════════════════════════════════════════════════════════ ──
   RESPONSIVE
── ════════════════════════════════════════════════════════ ── */
@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .club-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .mega-menu { display: none; }
  .nav-toggle { display: flex; }
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .ai-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .members-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .chat-panel { width: calc(100vw - 40px); right: -8px; }
}

/* ── New page responsive ─────────────────────────────────────── */
@media (max-width: 960px) {
  .tech-about-grid, .catalogue-grid, .about-story-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .login-split { grid-template-columns: 1fr; }
  .login-visual { display: none; }
  .stats-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  /* News editorial */
  .news-featured { grid-template-columns: 1fr; }
  .news-featured-img-wrap { min-height: 260px; }
  .news-editorial-item { grid-template-columns: 40px 1fr; }
  .news-editorial-img-wrap { display: none; }
}
@media (max-width: 640px) {
  .section-pad { padding: 56px 0; }
  .inner-hero { padding: 100px 0 56px; min-height: 420px; }
  .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
  .stats-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .values-grid, .benefits-grid { grid-template-columns: 1fr; }
  .member-grid, .services-grid, .news-grid, .events-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-step-arrow { transform: rotate(90deg); }
  .member-dash-header { flex-direction: column; align-items: flex-start; }
  .member-dash-actions { flex-wrap: wrap; }
  .price-amount { font-size: 40px; }
  /* News editorial small */
  .news-editorial-item { grid-template-columns: 1fr; gap: 8px; }
  .news-editorial-num { font-size: 22px; }
  .news-featured-body { padding: 24px 20px; }
  .apply-form { padding: 20px; }
  .contact-info-card { padding: 36px 28px; }
  .contact-form-card { padding: 36px 28px; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════
   MEMBER PROFILE PAGE (member.php)
════════════════════════════════════════════════════════ */
@keyframes profile-zoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.profile-hero {
  background-color: #0a1e52;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.profile-hero-bg {
  position: absolute;
  inset: -6%;
  background-image: url('/assets/img/partner-hero-bg.png');
  background-size: cover;
  background-position: center;
  animation: profile-zoom 18s ease-out forwards;
  z-index: 0;
}
.profile-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8,18,52,.88) 0%, rgba(8,18,52,.60) 55%, rgba(8,18,52,.40) 100%);
  z-index: 1;
}
.profile-hero-container {
  position: relative;
  z-index: 2;
  padding-top: 88px;
  padding-bottom: 52px;
}
.profile-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  margin-bottom: 36px;
  transition: color .2s;
}
.profile-back-link:hover { color: #fff; }

.profile-hero-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}
/* Glass circle avatar */
.profile-avatar-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; flex-shrink: 0; }
.profile-avatar-ring {
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 10px rgba(255,255,255,.04), 0 20px 60px rgba(0,0,0,.3);
}
.profile-avatar-inner {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,.22);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.profile-avatar-img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.profile-logo-initials-lg {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-cond);
  line-height: 1;
}
.profile-verified-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .3px;
  color: #86efac;
  background: rgba(22,163,74,.15);
  border: 1px solid rgba(22,163,74,.25);
  border-radius: 100px;
  padding: 5px 14px;
}
.profile-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.profile-cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 4px 13px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  transition: background .2s;
}
.profile-cat-tag:hover { background: rgba(255,255,255,.22); }

.profile-company-name {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.profile-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 28px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
}
.profile-meta-item { display: flex; align-items: center; gap: 6px; }
.profile-meta-item i { color: rgba(255,255,255,.4); font-size: 12px; }
.profile-website-link { color: rgba(255,255,255,.8); text-decoration: none; }
.profile-website-link:hover { color: #fff; text-decoration: underline; }

.profile-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Profile Body ── */
.profile-body-wrap { background: #f0f4fa; padding-bottom: 60px; }
.profile-body-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  padding-top: 40px;
  align-items: start;
}
.profile-section-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 20px;
  border: 1px solid rgba(27,78,168,.07);
  box-shadow: 0 1px 4px rgba(0,0,0,.04), 0 4px 20px rgba(27,78,168,.06);
}
.profile-section-card h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  margin-top: 8px;
}
.profile-section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(27,78,168,.08);
  margin-bottom: 16px;
}
.profile-about-text {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  line-height: 1.85;
}
.profile-dir-cats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.profile-dir-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  text-decoration: none;
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  transition: border-color .2s, background .2s;
}
.profile-dir-link:hover { border-color: var(--blue); background: var(--blue-pale); }
.profile-dir-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 15px;
  flex-shrink: 0;
}
.profile-join-cta {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  text-align: center;
  padding: 40px 32px !important;
}
.profile-join-cta h3 { color: #fff !important; }
.profile-join-cta p { color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 24px; }
.profile-join-icon {
  font-size: 40px;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
  display: block;
}

/* ── Sidebar ── */
.profile-sidebar-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  margin-bottom: 20px;
}
.profile-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
}
.profile-info-row:last-child { border-bottom: none; }
.profile-info-label { color: var(--muted); display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.profile-info-value { color: var(--dark); font-weight: 600; text-align: right; }
.profile-verified-pill {
  margin-top: 16px;
  padding: 9px 14px;
  background: rgba(109,194,46,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #2d7a0f;
  font-weight: 600;
}
.profile-verified-pill i { color: var(--green); }

/* Category pills in sidebar */
.profile-info-row--cats {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.profile-sidebar-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
}
.profile-sidebar-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: var(--blue-pale);
  color: var(--blue);
  border: 1px solid rgba(27,78,168,.12);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.profile-sidebar-cat-pill:hover {
  background: rgba(27,78,168,.12);
  border-color: rgba(27,78,168,.25);
}
.profile-sidebar-cat-pill i { font-size: 10px; }

.profile-contact-card {
  background: var(--blue);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 20px;
}
.profile-contact-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 18px;
}
.profile-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-size: 14px;
  transition: color .15s;
}
.profile-contact-item:last-child { border-bottom: none; }
.profile-contact-item:hover { color: #fff; }
.profile-contact-icon {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.profile-contact-val { word-break: break-all; }

.profile-contact-locked {
  text-align: center;
  padding: 28px 28px 24px !important;
}
.profile-locked-icon {
  font-size: 38px;
  color: rgba(255,255,255,.35);
  margin-bottom: 14px;
  display: block;
}
.profile-contact-locked h4 { color: #fff; font-size: 16px; margin-bottom: 8px; }
.profile-contact-locked p { color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.6; margin-bottom: 20px; }
.profile-join-link {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  margin-top: 10px;
}
.profile-join-link:hover { color: rgba(255,255,255,.75); }

/* ── Directory card multi-category tags ── */
.member-cats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}
.member-cats-row .member-cat-tag {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 12px;
  background: var(--blue-pale);
  color: var(--blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.member-profile-btn {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
}
.member-profile-btn:hover { color: var(--green); }

/* ── Multi-category chip selector (membership form) ── */
.cat-checkboxes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.cat-checkbox-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 100px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  background: #fff;
  transition: border-color .15s, background .15s, color .15s;
  user-select: none;
  line-height: 1;
}
.cat-checkbox-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.cat-checkbox-item i { font-size: 13px; color: var(--blue); transition: color .15s; }
.cat-checkbox-item:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-pale); }
.cat-checkbox-item.checked,
.cat-checkbox-item:has(input:checked) {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.cat-checkbox-item.checked i,
.cat-checkbox-item:has(input:checked) i { color: #fff; }

/* ── Responsive: profile page ── */
@media (max-width: 960px) {
  .profile-body-grid { grid-template-columns: 1fr; }
  .profile-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .profile-sidebar > div:last-child { grid-column: 1 / -1; text-align: center; }
}
@media (max-width: 640px) {
  .profile-hero-grid { grid-template-columns: 100px 1fr; gap: 16px; }
  .profile-logo-large { width: 100px; height: 100px; }
  .profile-logo-initials-lg { font-size: 38px; }
  .profile-sidebar { grid-template-columns: 1fr; }

}
@media (max-width: 400px) {
  .profile-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .profile-logo-large { margin: 0 auto; }
  .profile-cats, .profile-meta-row, .profile-hero-actions { justify-content: center; }

}

/* ═══════════════════════════════════════════════════════════════
   ENHANCEMENTS — Glassmorphism · Animated Borders · Tilt · Marquee
   ═══════════════════════════════════════════════════════════════ */

/* ── Glassmorphism card ─────────────────────────────────────── */
.card-glass {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1.5px solid rgba(255,255,255,.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(13,27,42,.18), inset 0 1px 0 rgba(255,255,255,.15);
}

/* ── Animated gradient border on pillar cards ───────────────── */
.card[data-gsap-child] {
  position: relative;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.card[data-gsap-child]:hover {
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--green), var(--shadow-lg);
  background-image: linear-gradient(white, white),
    linear-gradient(135deg, var(--blue) 0%, var(--green) 50%, var(--gold) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* ── Shimmer sweep on any .card:hover ──────────────────────── */
.card {
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    transparent 35%,
    rgba(255,255,255,.14) 50%,
    transparent 65%);
  background-size: 200% 100%;
  background-position: -100% 0;
  transition: none;
  pointer-events: none;
}
.card:hover::after {
  animation: shimmer .55s ease forwards;
}
@keyframes shimmer {
  to { background-position: 200% 0; }
}

/* ── Float utility ──────────────────────────────────────────── */
.float {
  animation: float 3.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ── Pulse glow on CTA buttons ──────────────────────────────── */
.btn-green.btn-lg,
.btn-primary.btn-lg {
  position: relative;
}
.btn-green.btn-lg::after,
.btn-primary.btn-lg::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  animation: pulse-glow 2.4s ease-in-out infinite;
  pointer-events: none;
}
.btn-green.btn-lg::after {
  box-shadow: 0 0 0 0 rgba(109,194,46,.5);
}
.btn-primary.btn-lg::after {
  box-shadow: 0 0 0 0 rgba(27,78,168,.5);
}
@keyframes pulse-glow {
  0%   { box-shadow: 0 0 0 0   rgba(109,194,46,.45); }
  70%  { box-shadow: 0 0 0 14px rgba(109,194,46,0); }
  100% { box-shadow: 0 0 0 0   rgba(109,194,46,0); }
}

/* ── Splitting.js char reveal ───────────────────────────────── */
.char-reveal {
  display: inline-block;
  animation: char-in .55s var(--ease-out) both;
}
@keyframes char-in {
  from { opacity: 0; transform: translateY(28px) rotate(4deg); }
  to   { opacity: 1; transform: translateY(0) rotate(0deg); }
}

/* ── Marquee / ticker strip ─────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  background: var(--blue-dark);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 14px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  letter-spacing: .3px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.marquee-item i { color: var(--green); font-size: 14px; }
.marquee-item:hover { color: #fff; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Cat card enhanced hover ────────────────────────────────── */
.cat-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.cat-card:hover .cat-img {
  transform: translateZ(12px);
  box-shadow: 0 16px 40px rgba(27,78,168,.2);
}
.cat-img { transition: transform .3s var(--ease), box-shadow .3s var(--ease); }

/* ── Member card shimmer overlay ────────────────────────────── */
.member-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ── Particle canvas pointer events ────────────────────────── */
#hero-particles { mix-blend-mode: screen; }

/* ═══════════════════════════════════════════════════════════════
   PILLARS — Three Ways We Grow  (clean B2B card design)
   ═══════════════════════════════════════════════════════════════ */
.pw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pw-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.pw-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(27,78,168,.1);
  border-color: #c8d8f5;
}
.pw-card-featured {
  border-color: var(--green);
  box-shadow: 0 8px 32px rgba(109,194,46,.1);
}
.pw-card-featured:hover {
  border-color: var(--green-dark);
  box-shadow: 0 20px 50px rgba(109,194,46,.15);
}

/* Featured tag */
.pw-featured-tag {
  position: absolute;
  top: -1px; left: 28px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Top row: number + icon */
.pw-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.pw-num {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--border);
}
.pw-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.pw-card:hover .pw-icon { transform: scale(1.1) rotate(-4deg); }
.pw-icon-blue  { background: var(--blue-pale);        color: var(--blue); }
.pw-icon-green { background: var(--green-pale);        color: var(--green-dark); }
.pw-icon-gold  { background: rgba(201,168,76,.1);     color: var(--gold); }

/* Title */
.pw-title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

/* Description */
.pw-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 22px;
}

/* Benefit list */
.pw-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
  flex: 1;
}
.pw-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}
.pw-list li i {
  color: var(--green);
  font-size: 11px;
  margin-top: 3px;
  flex-shrink: 0;
}
.pw-card-featured .pw-list li i { color: var(--green-dark); }

/* CTA link */
.pw-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .2px;
  transition: gap .2s, color .2s;
  margin-top: auto;
}
.pw-link:hover { gap: 10px; color: var(--blue-dark); }
.pw-link-green { color: var(--green-dark); }
.pw-link-green:hover { color: var(--green); }

@media (max-width: 900px) {
  .pw-grid { grid-template-columns: 1fr; }
}

/* ── Technology Service Selector ──────────────────────────────── */
.svc-showcase {
  display: grid;
  grid-template-columns: 340px 1fr;
  grid-template-rows: auto 1fr;
  border-radius: 24px;
  border: 1.5px solid #e2e8f0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 64px rgba(15,46,107,.10);
  margin-top: 48px;
  border-top: 4px solid var(--blue);
}

.svc-header {
  grid-column: 1 / -1;
  padding: 52px 60px 44px;
  background: #fff;
  border-bottom: 1px solid #e8edf5;
  text-align: center;
}
.svc-header h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: #1e293b;
  margin: 12px 0 12px;
  line-height: 1.2;
}
.svc-header p { font-size: 15.5px; color: #64748b; margin: 0; }

/* Left list */
.svc-list {
  border-right: 1.5px solid #e2e8f0;
  background: #f8fafc;
}

.svc-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 22px;
  background: none;
  border: none;
  border-bottom: 1px solid #e8edf4;
  cursor: pointer;
  text-align: left;
  transition: background .18s, color .18s;
  position: relative;
}
.svc-list-item:last-child { border-bottom: none; }
.svc-list-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--blue);
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transition: opacity .18s;
}
.svc-list-item:hover { background: #eef2fa; }
.svc-list-item.active { background: #e8eef8; }
.svc-list-item.active::before { opacity: 1; }

.svc-list-num {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: .5px;
  min-width: 20px;
  font-family: var(--font-sans);
}
.svc-list-item.active .svc-list-num { color: var(--blue); }

.svc-list-icon {
  width: 40px;
  height: 40px;
  background: #e8eef8;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #64748b;
  flex-shrink: 0;
  transition: background .18s, color .18s;
}
.svc-list-item.active .svc-list-icon { background: var(--blue); color: #fff; }

.svc-list-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  flex: 1;
  line-height: 1.35;
}
.svc-list-item.active .svc-list-name { color: var(--blue); }

.svc-list-arrow {
  font-size: 10px;
  color: #cbd5e1;
  transition: color .18s, transform .18s;
}
.svc-list-item.active .svc-list-arrow { color: var(--blue); transform: translateX(2px); }

/* Right detail panel */
.svc-detail {
  padding: 52px 56px;
  position: relative;
  display: flex;
  align-items: flex-start;
}

.svc-detail-panel {
  display: none;
  animation: svcFadeIn .25s ease;
  width: 100%;
}
.svc-detail-panel.active { display: block; }

@keyframes svcFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════════
   NEW COMPONENTS — Typography, Spacing & Web Components
══════════════════════════════════════════════════════════════ */

/* ── Gradient Border Card ─────────────────────────────────────── */
.grad-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-7) var(--sp-6);
  position: relative;
  isolation: isolate;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.grad-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--blue-light), var(--green), var(--blue));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.grad-card:hover::before { opacity: 1; }
.grad-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.grad-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: var(--sp-5);
  background: var(--blue-pale);
  color: var(--blue);
  transition: all var(--t) var(--ease);
}
.grad-card:hover .grad-card-icon { background: var(--blue); color: #fff; }
.grad-card h4 { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--sp-3); }
.grad-card p { font-size: var(--text-sm); color: var(--muted); line-height: 1.75; }

/* ── How It Works Steps ───────────────────────────────────────── */
.hiw-section { padding: var(--sp-11) 0; background: var(--white); }
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.hiw-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(to right, var(--blue-pale) 0%, var(--blue) 50%, var(--green-pale) 100%);
  z-index: 0;
}
.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--sp-5);
  position: relative;
  z-index: 1;
}
.hiw-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-cond);
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: var(--sp-5);
  transition: all var(--t) var(--ease);
  box-shadow: 0 0 0 6px var(--blue-pale);
}
.hiw-step:hover .hiw-num { background: var(--blue); color: #fff; }
.hiw-step:nth-child(4) .hiw-num { border-color: var(--blue); color: var(--blue); box-shadow: 0 0 0 6px var(--blue-pale); }
.hiw-step:nth-child(4):hover .hiw-num { background: var(--blue); color: #fff; }
.hiw-step h4 { font-size: var(--text-base); font-weight: 700; margin-bottom: var(--sp-2); color: var(--dark); }
.hiw-step p { font-size: var(--text-sm); color: var(--muted); line-height: 1.7; }

/* ── FAQ Accordion ────────────────────────────────────────────── */
.faq-section { padding: var(--sp-11) 0; background: var(--surface); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--sp-3); }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.faq-item.open { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  user-select: none;
  gap: var(--sp-4);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--dark);
  transition: color var(--t);
}
.faq-item.open .faq-q { color: var(--blue); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--muted);
  transition: all var(--t) var(--ease);
}
.faq-item.open .faq-icon { background: var(--blue); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
  padding: 0 var(--sp-6);
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 var(--sp-6) var(--sp-5); }
.faq-a p { font-size: var(--text-sm); color: var(--muted); line-height: 1.8; }
.faq-a a { color: var(--blue); font-weight: 600; }

/* ── Comparison Table ─────────────────────────────────────────── */
.compare-section { padding: var(--sp-11) 0; background: var(--white); }

/* ── Comparison Grid v2 ──────────────────────────────────────── */
.cv2-wrap {
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(15,46,107,.08);
  max-width: 960px;
  margin: 40px auto 0;
}
.cv2-head, .cv2-row {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr 1.8fr;
}
.cv2-head { border-bottom: 1.5px solid var(--border); }
.cv2-head-feat { background: #f8fafc; }
.cv2-head-free {
  background: #f8fafc;
  border-left: 1.5px solid var(--border);
  padding: 28px 20px;
  text-align: center;
}
.cv2-head-member {
  background: linear-gradient(140deg, #0c2460 0%, #1b4ea8 100%);
  padding: 28px 24px;
  text-align: center;
  color: #fff;
  position: relative;
}
.cv2-rec-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cv2-head-icon {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--muted);
}
.cv2-head-member .cv2-head-icon { color: #f59e0b; font-size: 26px; }
.cv2-head-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
}
.cv2-head-member .cv2-head-title { color: #fff; }
.cv2-head-sub { font-size: 12px; color: var(--muted); margin-top: 4px; }
.cv2-head-price {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-top: 10px;
  line-height: 1;
}
.cv2-head-price span { font-size: 14px; font-weight: 400; opacity: .75; }

/* Feature rows */
.cv2-row {
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.cv2-row:last-child { border-bottom: none; }
.cv2-row:not(.cv2-price-row):hover { background: #f8fafc; }
.cv2-row:not(.cv2-price-row):hover .cv2-cell-member { background: rgba(27,78,168,.07); }
.cv2-cell {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  border-left: 1px solid var(--border);
}
.cv2-cell:first-child { border-left: none; }
.cv2-cell-feat { font-weight: 500; color: var(--text); }
.cv2-cell-free {
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
}
.cv2-cell-member {
  justify-content: flex-start;
  background: rgba(27,78,168,.03);
  border-left: 1.5px solid rgba(27,78,168,.12) !important;
  transition: background .15s;
  gap: 10px;
}
.cv2-ficon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #eef2ff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.cv2-ficon-price { background: #fefce8; color: #d97706; }
.cv2-fname { font-weight: 500; }
.cv2-yes { color: var(--green-dark); font-size: 19px; flex-shrink: 0; }
.cv2-no  { color: #d1d5db; font-size: 19px; }
.cv2-detail { font-size: 12px; color: #334155; font-weight: 600; }
.cv2-partial { font-size: 12px; color: var(--muted); font-weight: 600; display: flex; align-items: center; gap: 5px; }

/* Price + CTA row */
.cv2-price-row { background: #f8fafc; }
.cv2-price-row .cv2-cell-member { background: rgba(27,78,168,.06); flex-direction: column; align-items: flex-start; gap: 12px; padding: 22px 24px; }
.cv2-price-row .cv2-cell-free { flex-direction: column; align-items: center; gap: 8px; }
.cv2-free-price { font-size: 22px; font-weight: 700; color: var(--muted); }
.cv2-browse-link { font-size: 12px; color: var(--blue); font-weight: 600; }
.cv2-member-invest { font-size: 28px; font-weight: 800; color: var(--blue); line-height: 1; }
.cv2-member-invest small { font-size: 13px; font-weight: 400; color: var(--muted); }
.cv2-apply-btn { font-size: 14px !important; padding: 11px 22px !important; }

/* Events advanced filter bar */
.ev-filter-bar { background: #f8fafc; border-bottom: 1px solid var(--border); padding: 14px 0; }
.ev-filter-form { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.ev-search-wrap { flex: 1; min-width: 200px; position: relative; }
.ev-search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 13px; }
.ev-search-input { width: 100%; padding: 10px 14px 10px 38px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; font-family: inherit; transition: border-color .2s; }
.ev-search-input:focus { outline: none; border-color: var(--blue); }
.ev-select { padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; color: var(--text); background: #fff; cursor: pointer; min-width: 140px; }
.ev-search-btn { padding: 10px 18px; background: var(--blue); color: #fff; border: none; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: background .2s; }
.ev-search-btn:hover { background: var(--blue-dark); }
.ev-clear-btn { font-size: 13px; font-weight: 600; color: var(--muted); padding: 10px 14px; border-radius: 8px; border: 1.5px solid var(--border); transition: all .2s; white-space: nowrap; }
.ev-clear-btn:hover { color: #ef4444; border-color: #ef4444; }

/* ── Events Tabs Bar ─────────────────────────────────────────── */
.ev-tabs-bar { background: #fff; border-bottom: 1px solid #e2e8f0; padding: 0; }
.ev-tabs-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.ev-tabs-inner { flex: 1; border-bottom: none !important; }

/* ── View Toggle ─────────────────────────────────────────────── */
.ev-view-toggle { display: flex; gap: 4px; padding: 8px 0; flex-shrink: 0; }
.ev-view-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 600; color: #64748b;
  text-decoration: none; transition: all .2s;
  border: 1.5px solid #e2e8f0;
}
.ev-view-btn:hover { background: #f1f5f9; color: #334155; }
.ev-view-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ── Calendar Wrapper ────────────────────────────────────────── */
.ev-cal-wrap {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0,0,0,.09);
  overflow: hidden;
}

/* Month header */
.ev-cal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  background: linear-gradient(135deg, var(--blue) 0%, #1a3a6b 100%);
  color: #fff;
}
.ev-cal-month-info { text-align: center; }
.ev-cal-month-name { font-size: 24px; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.ev-cal-year { font-size: 13px; opacity: .65; margin-top: 2px; }
.ev-cal-nav-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none; font-size: 14px;
  background: rgba(255,255,255,.15); transition: background .2s;
}
.ev-cal-nav-btn:hover { background: rgba(255,255,255,.3); }

/* Month strip */
.ev-cal-months-strip {
  display: flex; overflow-x: auto; gap: 2px;
  padding: 10px 16px; background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  scrollbar-width: none;
}
.ev-cal-months-strip::-webkit-scrollbar { display: none; }
.ev-strip-month {
  flex-shrink: 0; display: flex; flex-direction: column; align-items: center;
  padding: 6px 12px; border-radius: 8px; gap: 3px;
  font-size: 12px; font-weight: 600; color: #cbd5e1;
  text-decoration: none; transition: all .2s;
}
.ev-strip-month:hover { background: #e2e8f0; color: #475569; }
.ev-strip-month.has-ev { color: #475569; }
.ev-strip-month.active { background: var(--blue); color: #fff !important; }
.ev-strip-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.ev-strip-month.active .ev-strip-dot { background: #fff; }

/* Calendar grid */
.ev-cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 1px; background: #e8edf2;
}
.ev-cal-dow {
  background: #f1f5f9; text-align: center;
  padding: 10px 4px; font-size: 11px; font-weight: 700;
  color: #94a3b8; text-transform: uppercase; letter-spacing: .05em;
}
.ev-cal-day {
  background: #fff; min-height: 88px; padding: 8px 6px 6px;
  transition: background .15s;
}
.ev-cal-day:hover { background: #f8fafc; }
.ev-cal-empty { background: #fafbfc; }
.ev-cal-today { background: #f0fdf4 !important; }
.ev-cal-date-num { font-size: 13px; font-weight: 600; color: #cbd5e1; margin-bottom: 4px; line-height: 1; }
.has-events .ev-cal-date-num { color: #334155; }
.today-num {
  display: inline-flex; width: 24px; height: 24px; border-radius: 50%;
  background: var(--green); color: #fff !important;
  align-items: center; justify-content: center; font-size: 12px;
}

/* Event pills on calendar */
.ev-cal-pill {
  display: block; font-size: 10.5px; font-weight: 600;
  padding: 3px 6px; border-radius: 4px; margin-bottom: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  text-decoration: none; transition: opacity .15s; cursor: pointer;
}
.ev-cal-pill:hover { opacity: .8; }
.ev-pill-amber   { background: #fef3c7; color: #92400e; }
.ev-pill-blue    { background: #dbeafe; color: #1e40af; }
.ev-pill-emerald { background: #d1fae5; color: #065f46; }
.ev-pill-violet  { background: #ede9fe; color: #5b21b6; }
.ev-pill-orange  { background: #ffedd5; color: #9a3412; }
.ev-pill-cyan    { background: #cffafe; color: #155e75; }
/* Multi-day span pills — continuation days show a solid bar with no text */
.ev-pill-mid  { border-radius: 0; opacity: .7; font-size: 0; min-height: 8px; padding: 4px 2px; }
.ev-pill-end  { border-radius: 0 4px 4px 0; opacity: .7; font-size: 0; min-height: 8px; padding: 4px 2px; }

/* Month event list */
.ev-month-list-title {
  font-size: 18px; font-weight: 700; color: #1e293b;
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.ev-month-list-title i { color: var(--green); }

.ev-month-cards { display: flex; flex-direction: column; gap: 16px; }

.ev-month-card {
  display: grid; grid-template-columns: 240px 1fr;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  background: #fff; transition: transform .2s, box-shadow .2s;
  scroll-margin-top: 120px;
}
.ev-month-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.1); }

.ev-month-card-img { position: relative; overflow: hidden; }
.ev-month-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ev-month-type-badge {
  position: absolute; top: 10px; left: 10px;
  padding: 4px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: .03em;
}
.ev-month-members-badge {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(0,0,0,.55); color: #fff;
  padding: 3px 8px; border-radius: 20px;
  font-size: 10px; font-weight: 600; backdrop-filter: blur(4px);
}
.ev-month-card-body {
  padding: 20px 24px; display: flex; flex-direction: column; gap: 8px;
}
.ev-month-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px; color: #64748b; }
.ev-month-meta i { color: var(--green); margin-right: 3px; }
.ev-month-title { font-size: 18px; font-weight: 700; color: #1e293b; margin: 0; line-height: 1.3; }
.ev-month-title a { color: inherit; text-decoration: none; }
.ev-month-title a:hover { color: var(--blue); }
.ev-month-desc { font-size: 14px; color: #64748b; line-height: 1.6; margin: 0; flex: 1; }
.ev-month-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.ev-cta-locked {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; background: #f1f5f9; color: #64748b;
  border-radius: 8px; font-size: 13px; font-weight: 600;
  text-decoration: none; border: 1.5px solid #e2e8f0;
}

/* No events in month */
.ev-month-empty {
  text-align: center; padding: 48px 20px;
  color: #94a3b8; font-size: 15px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.ev-month-empty i { font-size: 36px; }

/* Other months quick-links */
.ev-other-months { padding-top: 24px; border-top: 1px solid #e2e8f0; }
.ev-other-label { font-size: 12px; color: #94a3b8; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.ev-other-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.ev-month-link {
  padding: 7px 14px; background: #f1f5f9; border-radius: 8px;
  font-size: 13px; font-weight: 600; color: var(--blue);
  text-decoration: none; transition: background .2s;
  display: flex; align-items: center; gap: 6px;
}
.ev-month-link:hover { background: #dbeafe; }

/* Mobile */
@media (max-width: 768px) {
  .ev-cal-day { min-height: 60px; padding: 4px 3px; }
  .ev-cal-date-num { font-size: 11px; }
  .ev-cal-pill { font-size: 9px; padding: 2px 4px; }
  .ev-month-card { grid-template-columns: 1fr; }
  .ev-month-card-img { height: 180px; }
  .ev-cal-month-name { font-size: 18px; }
  .ev-tabs-row { flex-direction: column; align-items: stretch; }
  .ev-view-toggle { justify-content: flex-end; }
}

/* ── Timeline (upgraded) ──────────────────────────────────────── */
.about-timeline { position: relative; padding-left: 8px; }
.about-timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--green));
}
.timeline-item {
  display: flex;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
  position: relative;
  align-items: flex-start;
}
.timeline-year {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-pale);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
  transition: all var(--t) var(--ease);
}
.timeline-item:hover .timeline-year { background: var(--blue); color: #fff; }
.timeline-item.active .timeline-year {
  background: var(--green);
  color: #fff;
  box-shadow: 0 0 0 2px var(--green), 0 0 0 6px var(--green-pale);
}
.timeline-content {
  padding-top: 14px;
  padding-left: var(--sp-3);
}
.timeline-content strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}
.timeline-content p { font-size: var(--text-sm); color: var(--muted); line-height: 1.7; }

/* ── Stat boxes (upgraded) ────────────────────────────────────── */
.stat-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-7) var(--sp-6);
  text-align: center;
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.stat-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--blue), var(--green));
  transform: scaleX(0);
  transition: transform var(--t) var(--ease);
}
.stat-box:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--blue); }
.stat-box:hover::after { transform: scaleX(1); }
.stat-box .stat-num { font-family: var(--font-cond); font-size: 52px; font-weight: 700; color: var(--blue); line-height: 1; margin-bottom: var(--sp-2); }
.stat-box .stat-label { font-size: var(--text-sm); color: var(--muted); font-weight: 600; letter-spacing: 0.02em; }

/* ── Value cards (upgraded) ───────────────────────────────────── */
.value-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  text-align: center;
  transition: all var(--t) var(--ease);
  position: relative;
  isolation: isolate;
}
.value-card:hover { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27,78,168,.1), var(--shadow-md); transform: translateY(-4px); }
.value-card:hover .value-icon { background: var(--blue); color: #fff; }
.value-card h4, .value-card p { position: relative; z-index: 1; }

/* ── Section label (alternate name in some pages) ────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--sp-3);
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 18px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}

/* ── Responsive: New components ───────────────────────────────── */
@media (max-width: 960px) {
  .hiw-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-7); }
  .hiw-grid::before { display: none; }
}
@media (max-width: 640px) {
  .hiw-grid { grid-template-columns: 1fr; }
  .compare-table th, .compare-table td { padding: var(--sp-3) var(--sp-4); }
  .faq-q { padding: var(--sp-4); }
  .faq-item.open .faq-a { padding: 0 var(--sp-4) var(--sp-4); }
}

/* ── Accessibility & Touch Fixes ────────────────────────────── */

/* Skip to main content link */
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 12px 24px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  z-index: 9999;
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  border-radius: 0 0 8px 0;
  text-decoration: none;
}

/* Focus-visible — keyboard navigation indicator */
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
.svc-list-item:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}
a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Touch targets — minimum 44px */
.btn-sm { padding: 12px 20px; font-size: 13px; }
.nav-toggle { padding: 12px; min-width: 44px; min-height: 44px; }
.form-control { padding: 12px 16px; }
.cat-pill { padding: 10px 16px; }
.page-btn { padding: 10px 16px; }
.filter-clear { padding: 10px 14px; }
.filter-search-btn { padding: 12px 20px; }

/* Form error & success states — connected to design system */
.form-control.error,
.form-control.input-error {
  border-color: #ef4444 !important;
  background: #fff5f5 !important;
}
.form-control.success {
  border-color: var(--green) !important;
  background: var(--green-pale) !important;
}
.field-error {
  color: #ef4444;
  font-size: 12px;
  margin: 4px 0 0;
}

/* stat-num — scale on mobile */
@media (max-width: 640px) {
  .stat-num { font-size: clamp(28px, 7vw, 44px); }
}

/* Reduced motion — respect OS preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  /* Restore inner-hero ambient animations — decorative, not vestibular triggers */
  .iha-orb-1 { animation: iha-drift-a 24s ease-in-out infinite !important; }
  .iha-orb-2 { animation: iha-drift-b 19s ease-in-out infinite -9s !important; }
  .iha-orb-3 { animation: iha-drift-a 16s ease-in-out infinite -6s !important; }
  .iha-ring-1 { animation: iha-pulse-ring 3.6s ease-out infinite !important; }
  .iha-ring-2 { animation: iha-pulse-ring 3.6s ease-out infinite -1.2s !important; }
  .iha-ring-3 { animation: iha-pulse-ring 3.6s ease-out infinite -2.4s !important; }
}

/* Mobile sticky CTA bar */
#mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--green);
  padding: 0;
}
#mobile-sticky-cta a {
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 16px;
  letter-spacing: .3px;
}
@media (max-width: 768px) {
  #mobile-sticky-cta { display: block; }
  body { padding-bottom: 52px; }
}

.svc-detail-step {
  display: block;
  font-family: var(--font-cond);
  font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 20px;
}

.svc-detail-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #1B4EA8 0%, #0f2e6b 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(27,78,168,.28);
}

.svc-detail-title {
  font-size: 26px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 14px;
  line-height: 1.2;
}

.svc-detail-desc {
  font-size: 15.5px;
  color: #475569;
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 540px;
}

/* Stat highlight card — same visual language as ben-panel-highlight */
.svc-detail-stat {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-top: 3px solid var(--blue);
  border-radius: 16px;
  padding: 20px 26px;
  margin-bottom: 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}
.svc-stat-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 88px;
  flex-shrink: 0;
  font-family: var(--font-cond);
  font-size: 38px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.svc-stat-lbl {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 6px;
  text-align: center;
}
.svc-stat-text {
  font-size: 14px;
  color: #334155;
  line-height: 1.72;
  border-left: 2px solid var(--blue);
  padding-left: 20px;
  margin: 0;
}

.svc-detail-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.svc-feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #f0faf0;
  border: 1px solid #c3e6c3;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #2d6a2d;
}
.svc-feature-chip i { color: #6DC22E; font-size: 10px; }

/* Responsive */
@media (max-width: 900px) {
  .svc-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    border-radius: 16px;
  }
  .svc-header { padding: 36px 28px 28px; }
  .svc-list {
    border-right: none;
    border-bottom: 1.5px solid #e2e8f0;
    overflow-y: auto;
    max-height: 260px;
    scrollbar-width: thin;
  }
  .svc-detail { padding: 28px 24px; }
  .svc-detail-title { font-size: 18px; }
}
