:root {
  --brand-cyan: #14b8e6;
  --brand-blue: #246bdb;
  --brand-indigo: #3f54d6;
  --brand-purple: #8a63f7;
  --brand-dark: #07142d;
  --brand-dark-2: #0d1b3d;
  --bg-light: #f6f8fc;
  --bg-soft: #ffffff;
  --bg-muted: #eef3fb;
  --bg-white: #ffffff;
  --text-dark: #111827;
  --text-dark-soft: #1f2937;
  --text-muted: #667085;
  --text-light: rgba(255, 255, 255, 0.88);
  --text-light-soft: rgba(255, 255, 255, 0.7);
  --border-soft: rgba(17, 24, 39, 0.07);
  --border-medium: rgba(17, 24, 39, 0.12);
  --border-light: rgba(255, 255, 255, 0.16);
  --shadow-soft: 0 12px 30px rgba(36, 107, 219, 0.12);
  --shadow-card: 0 18px 44px rgba(15, 23, 42, 0.08);
  --shadow-glass: 0 20px 50px rgba(10, 20, 40, 0.16);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --display: "Cormorant Garamond", serif;
  --body: "DM Sans", sans-serif;
  --nav-h: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

p {
  margin: 0 0 16px;
  color: var(--text-muted);
}

.section-pad {
  padding: 80px 0 40px; /* top stays nice, bottom tighter */
}

.section-light {
  background: var(--bg-light);
}

.section-soft {
  background: var(--bg-soft);
}

.section-dark {
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.10), transparent 20%),
    radial-gradient(circle at 85% 25%, rgba(255,255,255,0.08), transparent 25%),
    linear-gradient(135deg, #5b3df5 0%, #7c3aed 45%, #d946ef 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section-black {
  background:
    radial-gradient(circle at 15% 10%, rgba(62, 90, 180, 0.16), transparent 25%),
    radial-gradient(circle at 85% 20%, rgba(123, 97, 255, 0.10), transparent 22%),
    linear-gradient(135deg, #041126 0%, #0a1f49 52%, #273f96 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.values-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.10), transparent 18%),
    radial-gradient(circle at 20% 70%, rgba(255,255,255,0.06), transparent 20%),
    linear-gradient(135deg, #1f7ae0 0%, #3f54d6 52%, #8a63f7 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.waitlist-section {
  background: #ffffff;
  color: #111827;
  position: relative;
  overflow: hidden;
}

.on-dark h2,
.on-dark p {
  color: #fff;
}

.on-dark p {
  color: var(--text-light);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.notice-bar {
  background: linear-gradient(135deg, #1f6fd1 0%, #4f55dc 58%, #8a63f7 100%);
  color: #fff;
  font-size: 0.92rem;
}

.notice-inner {
  min-height: 50px;
  display: flex;
  align-items: center;
}

.notice-inner p {
  margin: 0;
  color: #fff;
  line-height: 1.45;
}

.nav-shell {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.05);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.nav-shell.scrolled {
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.96);
}

.nav-row {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-header {
  flex: 0 0 auto;
}

.site-logo {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.footer-logo {
  height: 62px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.desktop-nav a:not(.btn) {
  color: var(--text-dark-soft);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 600;
  transition: 0.22s ease;
}

.desktop-nav a:not(.btn):hover,
.desktop-nav a:not(.btn):focus-visible,
.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: rgba(36, 107, 219, 0.08);
  color: var(--brand-blue);
}

.nav-cta {
  margin-left: 8px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  margin: 5px 0;
  border-radius: 999px;
  transition: 0.25s ease;
}

.mobile-nav {
  display: none;
  padding: 0 20px 18px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(17, 24, 39, 0.05);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.mobile-nav.open {
  display: grid;
}

.mobile-nav a {
  color: var(--text-dark-soft);
  padding: 12px 12px;
  border-radius: 12px;
  font-weight: 600;
}

.mobile-cta {
  margin-top: 8px;
}

/* BACK TO TOP BUTTON */
#backToTop {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #18b7df 0%, #246bdb 52%, #6c63ff 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(36, 107, 219, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 1200;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(36, 107, 219, 0.34);
}

#backToTop:focus-visible {
  outline: 3px solid rgba(36, 107, 219, 0.18);
  outline-offset: 3px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-blue) 48%, var(--brand-purple) 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(63, 84, 214, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(63, 84, 214, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* HERO */
.hero {
   min-height: 70vh;
  padding: 60px 0 50px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.14), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.1), transparent 22%),
    linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-blue) 46%, var(--brand-purple) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at center, transparent 40px, rgba(255,255,255,0.35) 41px, transparent 42px);
  background-size: 240px 240px;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: radial-gradient(circle, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  pointer-events: none;
}

.hero-orb-1 {
  width: 180px;
  height: 180px;
  top: 18%;
  left: 6%;
}

.hero-orb-2 {
  width: 240px;
  height: 240px;
  bottom: 12%;
  left: 44%;
}

.hero-orb-3 {
  width: 170px;
  height: 170px;
  top: 16%;
  right: 8%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 0.95fr);
  gap: 40px;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 680 / 420;
  justify-self: end;
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 40px 100px rgba(10, 20, 40, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-visual img,
.hero-image {
  position: relative;
  z-index: 2;
  width: 115%;
  height: 115%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  transform: scale(1.05);
  transform-origin: center;
  display: block;
  transition: transform 0.45s ease;
  border-radius: 0;
}

.hero-visual:hover img,
.hero-visual:hover .hero-image {
  transform: scale(1.08);
}

.eyebrow,
.section-label,
.status-pill,
.roadmap-tag,
.tab,
.mini-note,
.profile-role,
.term-sub,
.panel-badge {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.24);
  color: #fff;
  font-size: 0.8rem;
  margin-bottom: 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  line-height: 1.02;
  margin-bottom: 12px;
  color: #fff;
  max-width: 700px;
}

.hero h1 em {
  color: #ffd14f;
  font-style: italic;
  font-size: 0.92em;
}

.hero-lead {
  color: rgba(255,255,255,0.92);
  font-size: 1.22rem;
  max-width: 720px;
  margin-bottom: 10px;
}

.hero-sub {
  color: rgba(255,255,255,0.72);
  max-width: 700px;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.glass-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(16px);
}

.hero-panel {
  max-width: 440px;
  justify-self: end;
}

.panel-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  margin-bottom: 18px;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
}

.glass-card h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 16px;
}

.glass-card p,
.glass-card li {
  color: rgba(255,255,255,0.84);
}

.feature-list {
  padding-left: 20px;
  margin: 0;
  display: grid;
  gap: 10px;
}

.feature-list li {
  margin: 0;
}

/* HEADINGS */
.section-head {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-head-wide {
  max-width: 920px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.1;
  font-weight: 600;
}

.section-head p {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 760px;
}

.center-head {
  text-align: center;
  margin-inline: auto;
}

.section-label {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 18px;
}

.section-label::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 6px;
  border-radius: 2px;
  background: linear-gradient(90deg, #2aa7ff, #7b61ff);
}

/* GRIDS */
.card-grid {
  display: grid;
  gap: 24px;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.five-up {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* GENERIC CARDS */
.card,
.step-card,
.profile-card,
.roadmap-card,
.legal-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.card h3,
.step-card h3,
.roadmap-card h3,
.profile-card h3 {
  font-size: 1.55rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.card p,
.step-card p,
.profile-card p {
  color: var(--text-muted);
}

/* ABOUT SECTION */
.about-section {
  padding-top: 40px;
  padding-bottom: 65px;
}

.about-head {
  margin-bottom: 30px;
}

.about-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.9;
  color: #111827;
}

.about-head p {
  max-width: 760px;
}

.about-grid {
  gap: 20px;
}
.about-section .section-label {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;

  background: linear-gradient(90deg, #14b8e6, #246bdb, #8a63f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-card {
  padding: 30px 26px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(36, 107, 219, 0.10);
  border-color: rgba(36, 107, 219, 0.14);
}

.about-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.about-card p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(63, 84, 214, 0.18);
}

.about-icon-users {
  background: linear-gradient(135deg, #14b8e6 0%, #246bdb 55%, #8a63f7 100%);
}

.about-icon-diaspora {
  background: linear-gradient(135deg, #246bdb 0%, #3f54d6 50%, #8a63f7 100%);
}

.about-icon-sme {
  background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 48%, #7c3aed 100%);
}

.about-svg-icon {
  width: 26px;
  height: 26px;
  display: block;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.about-tags span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #2b50d9;
  background: rgba(36, 107, 219, 0.08);
  border: 1px solid rgba(36, 107, 219, 0.10);
}

/* OUR ROLE SECTION */
.role-section {
  padding-top: 50px;
  padding-bottom: 70px;
  background: linear-gradient(135deg, #18b7df 0%, #246bdb 50%, #6c63ff 100%);
}

.role-head {
  margin-bottom: 30px;
}

.role-head h2 {
  max-width: 680px;
  color: #ffffff;
}

.role-head p {
  max-width: 820px;
  color: rgba(255,255,255,0.88);
}

.role-section .section-label {
  color: rgba(255,255,255,0.88);
}

.role-section .section-label::after {
  background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0.55));
}

.role-grid {
  gap: 20px;
}

.role-card {
  position: relative;
  padding: 30px 26px 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.role-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #14b8e6 0%, #246bdb 55%, #8a63f7 100%);
  opacity: 0.95;
}

.role-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
  color: #111827;
}

.role-card p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 18px;
  color: #667085;
}

.role-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(63, 84, 214, 0.18);
}

.role-icon-facilitator {
  background: linear-gradient(135deg, #14b8e6 0%, #246bdb 55%, #8a63f7 100%);
}

.role-icon-partner {
  background: linear-gradient(135deg, #246bdb 0%, #3f54d6 50%, #8a63f7 100%);
}

.role-icon-bank {
  background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 48%, #7c3aed 100%);
}

.role-svg-icon {
  width: 26px;
  height: 26px;
  display: block;
}

.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.role-tags span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #246bdb;
  background: #eef2ff;
  border: 1px solid rgba(36, 107, 219, 0.12);
}

/* ETHICAL OPPORTUNITIES SECTION */
#opportunities {
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  padding-top: 40px;   /* 👈 reduce this */
  padding-bottom: 80px;
}

#opportunities .section-head {
  margin-bottom: 50px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

#opportunities .section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.9;
  color: #1f2937;
}

#opportunities .section-head p {
  color: #667085;
  max-width: 820px;
  margin: 0 auto;
}

#opportunities .section-label {
  color: #246bdb;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;

  background: linear-gradient(90deg, #14b8e6, #246bdb, #8a63f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#opportunities .section-label::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  margin: 6px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #14b8e6, #246bdb, #8a63f7);
}

.opportunities-grid {
  gap: 24px;
}

.opportunities-grid .product-card {
  min-height: 100%;
}

.product-card {
  position: relative;
  background: linear-gradient(135deg, #18b7df 0%, #246bdb 50%, #6c63ff 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  padding: 30px 26px 24px;
  box-shadow:
    0 20px 48px rgba(36, 107, 219, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.10);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 84px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.10) 0%,
    rgba(255,255,255,0.02) 100%
  );
  pointer-events: none;
}

.product-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -30px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 65%);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 56px rgba(36, 107, 219, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.14);
  border-color: rgba(255, 255, 255, 0.26);
}

.product-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.product-card h3 {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 1.65rem;
  line-height: 1.15;
  margin-bottom: 14px;
  max-width: 92%;
  margin-top: 0;
}

.product-summary,
.product-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  font-size: 0.98rem;
  margin-bottom: 20px;
  max-width: 95%;
}

.product-summary {
  margin-bottom: 22px;
}

.status-pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
}

.meta-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 22px 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.meta-list div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.86rem;
  line-height: 1.45;
}

.meta-list span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
}

.meta-list strong {
  color: #ffffff;
  text-align: right;
  font-weight: 700;
  max-width: 58%;
}

.product-link {
  display: inline-block;
  text-align: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;

  background: linear-gradient(135deg, #e5e7eb, #f8fafc);
  color: #1f2937;

  border: 1px solid rgba(255,255,255,0.4);

  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.product-link:hover {
  transform: translateY(-2px) scale(1.01);

  background: linear-gradient(135deg, #ffffff, #eef2ff);
  color: #111827;

  box-shadow: 
    0 10px 25px rgba(0,0,0,0.12),
    0 0 0 1px rgba(255,255,255,0.5);
}
.product-link:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.opportunity-card {
  position: relative;
}

.opportunity-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 2px 0 18px;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 10px 24px rgba(17, 24, 39, 0.12);
}

.opportunity-card-gold .opportunity-icon,
.opportunity-card-pharmacy .opportunity-icon,
.opportunity-card-construction .opportunity-icon {
  background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.08) 100%);
}

.opportunity-svg-icon {
  width: 24px;
  height: 24px;
  display: block;
}

/* HOW IT WORKS SECTION */
#how-it-works {
  background: #f8fafc;
  color: #0f172a;
  padding-top: 40px;   /* 👈 reduce this */
  padding-bottom: 60px;
}

#how-it-works .section-head {
margin: 0 auto 38px;
  text-align: center;
  max-width: 720px;
}

#how-it-works .section-label {
  color: #246bdb;
  display: inline-block;
  position: relative;
  text-align: center;
}

#how-it-works .section-label::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  margin: 6px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #14b8e6, #246bdb, #8a63f7);
}

#how-it-works .section-head h2 {
  color: #246bdb;
}

#how-it-works .section-head p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 760px;
}

#how-it-works .card-grid {
  gap: 24px;
}

#how-it-works .step-card {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  min-height: 100%;
}

#how-it-works .step-num {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #18b7df 0%, #246bdb 52%, #6c63ff 100%);
  color: #ffffff;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 10px 22px rgba(36, 107, 219, 0.18);
}

#how-it-works .step-card h3 {
  color: #111827;
  font-size: 1.45rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

#how-it-works .step-card p {
  color: #667085;
  line-height: 1.8;
  font-size: 0.98rem;
  margin-bottom: 0;
}

/* TRUST SECTION */
.trust-grid {
  gap: 22px;
}
#trust {
  background: linear-gradient(135deg, #1e3a8a, #4f8cff);
  color: white;
  padding-top: 40px;   /* 👈 reduce this */
  padding-bottom: 80px;
}
.trust-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(36, 107, 219, 0.10);
  border-color: rgba(36, 107, 219, 0.14);
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 22px;
  background: linear-gradient(135deg, #14b8e6 0%, #246bdb 55%, #8a63f7 100%);
  box-shadow: 0 12px 24px rgba(63, 84, 214, 0.18);
}

.trust-card h3 {
  font-size: 1.45rem;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #111827;
}

.trust-card p {
  color: #667085;
  line-height: 1.8;
  font-size: 0.98rem;
}
#trust .section-label {
  font-size: 1.6rem;
  letter-spacing: 0.22em;
  position: relative;
  display: inline-block;
  color: white;
}
#trust .section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
#trust .section-head h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: white;
}
#trust .section-label::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  margin: 6px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #14b8e6, #246bdb, #8a63f7);
}
/* SHARIAH SECTION */
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: start;
}

#shariah {
  background: #f8fafc;
  color: #0f172a;
  padding-top: 40px;   /* 👈 reduce this */
  padding-bottom: 70px;
}

#shariah .section-label {
  color: #246bdb;
  font-size: 2.05rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

#shariah .section-label::after {
  background: linear-gradient(90deg, #14b8e6, #246bdb, #8a63f7);
}

#shariah h2,
#shariah h3 {
  color: #111827;
}

#shariah p {
  color: #64748b;
}

.sharia-image-wrap {
  margin-top: 24px;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
}

.sharia-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 24px;
  opacity: 0.95;
  mix-blend-mode: normal;
}

.quote-box,
#shariah .quote-box {
  margin: 24px 0 0;
  padding: 22px 24px;
  border-left: 4px solid #246bdb;
  border-radius: 0 16px 16px 0;
  background: #ffffff;
  color: #111827;
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.7;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

#shariah .quote-box p,
#shariah blockquote {
  color: #111827;
}

.stack-col {
  display: grid;
  gap: 18px;
}

.term-card,
#shariah .term-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid rgba(36, 107, 219, 0.08);
  border-radius: 24px;
  padding: 26px 24px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  color: #0f172a;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* subtle gradient glow layer */
.term-card::before,
#shariah .term-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(36,107,219,0.08), rgba(138,99,247,0.06));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.term-card:hover::before,
#shariah .term-card:hover::before {
  opacity: 1;
}

.term-card:hover,
#shariah .term-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(36, 107, 219, 0.12);
  border-color: rgba(36, 107, 219, 0.14);
}

/* subtle left accent */
.term-card::after,
#shariah .term-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, #14b8e6, #246bdb, #8a63f7);
  opacity: 0.6;
}

/* typography */
.term-card h3,
#shariah .term-card h3 {
  color: #111827;
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.term-sub,
#shariah .term-sub {
  color: #246bdb;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.term-card p,
#shariah .term-card p {
  color: #667085;
  line-height: 1.75;
}

/* SHARIA ADVISOR CARD */
.sharia-advisor-card {
  margin-top: 24px;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10);
}

.sharia-advisor-inner {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 26px;
  align-items: center;
  padding: 24px 28px;
}

.sharia-advisor {
  display: contents;
}

.sharia-advisor-photo-wrap {
  width: 210px;
  height: 210px;
  border-radius: 22px;
  overflow: hidden;
  background: transparent;
  border: none;
}

.sharia-advisor-photo {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center 30% !important;
  display: block !important;
  border-radius: 22px;
  transform: none !important;
}

.sharia-advisor-copy,
.sharia-advisor-content {
  flex: 1;
  min-width: 0;
}

.sharia-advisor-label {
  color: #667085;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sharia-advisor-card h3 {
  color: #111827;
  font-size: 1.55rem;
  margin-bottom: 8px;
}

.sharia-advisor-role {
  color: #1d4ed8 !important;
  font-weight: 700;
  margin-bottom: 4px;
}

.sharia-advisor-org {
  color: #4b5563 !important;
  font-weight: 600;
}

.sharia-advisor-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
}

.sharia-advisor-meta span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #246bdb;
  background: #eef4ff;
  border: 1px solid rgba(36, 107, 219, 0.12);
}

.sharia-advisor-card .sharia-advisor-role {
  color: #1d4ed8 !important;
}

.sharia-advisor-card .sharia-advisor-org {
  color: #4b5563 !important;
}

/* RESPONSIVE */
@media (max-width: 700px) {
  .sharia-advisor-inner {
    flex-direction: column;
    text-align: center;
  }

  .sharia-advisor-photo-wrap {
    margin: 0 auto;
    width: 140px;
    height: 140px;
    min-width: 140px;
    flex-basis: 140px;
  }

  .sharia-advisor-meta {
    align-items: center;
  }
}

  .sharia-certificate-inner h3 {
    font-size: 1.6rem;
  }

/* ROADMAP SECTION */
#roadmap {
  background: #f8fafc;
  color: #111827;
  padding-top: 20px; /* 👈 ADD THIS */
  padding-bottom: 70px; /* optional, keeps bottom balanced */
}

#roadmap .section-head {
  margin-bottom: 24px;
}

#roadmap .section-label {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  background: linear-gradient(90deg, #00d4ff, #7b5cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

#roadmap .section-label::after {
    content: "";
  display: block;
  width: 60px; /* clean short line */
  height: 2px;
  margin-top: 6px;
  border-radius: 2px;
  background: linear-gradient(90deg, #14b8e6, #246bdb, #8a63f7);
}

#roadmap .section-head h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  opacity: 0.95;
}

#roadmap .section-head p {
  color: #667085;
  max-width: 760px;
}

#roadmap .card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.roadmap-card {
  background: linear-gradient(180deg, #f8fbff 0%, #eef3ff 100%);
  border: 1px solid rgba(36, 107, 219, 0.08);
  border-radius: 24px;
  padding: 24px 22px 22px;
  min-height: 100%;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.roadmap-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(36,107,219,0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.roadmap-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(36, 107, 219, 0.10);
  border-color: rgba(36, 107, 219, 0.16);
}

.roadmap-card:hover .roadmap-icon {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 16px 30px rgba(47,124,255,0.35);
  transition: all 0.3s ease;
}
.roadmap-card h3 {
  color: #111827;
  font-size: 1.38rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.roadmap-card p {
  color: #667085;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.roadmap-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(36, 107, 219, 0.08);
  border: 1px solid rgba(36, 107, 219, 0.15);
  color: #246bdb;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.roadmap-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills entire space */
  border-radius: 14px; /* match container */
}

.roadmap-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 10px 20px rgba(47, 124, 255, 0.18);
  overflow: hidden;
}
.roadmap-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
/* Different icon backgrounds per card */
.roadmap-card:nth-child(1) .roadmap-icon {
  background: linear-gradient(135deg, #c026d3 0%, #7c3aed 100%);
}

.roadmap-card:nth-child(2) .roadmap-icon {
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
}

.roadmap-card:nth-child(3) .roadmap-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

.roadmap-card:nth-child(4) .roadmap-icon {
  background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
}
/* TEAM GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.team-card img {
  width: 100%;
  height: 220px; /* control image height */
  object-fit: cover;
  display: block;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.team-card {
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
}
/* TEAM SECTION */
.team-section {
  background: linear-gradient(135deg, #18b7df 0%, #246bdb 50%, #6c63ff 100%);
  color: #ffffff;
  padding-top: 55px;
  padding-bottom: 90px;
}

.team-section .section-head {
  margin-bottom: 34px;
  text-align: center;
}

.team-section .section-label {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;

  background: linear-gradient(90deg, #ffffff, #dbeafe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team-section .section-label::after {
  display: block;
  margin: 10px auto 0;
   background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0.5));
}

.team-section h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.92;
}

.team-section .section-head p {
  color: rgba(255,255,255,0.88);
  max-width: 760px;
  margin: 0 auto;
}

.team-section .card-grid {
  gap: 22px;
}
.team-section .section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

.profile-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  transition: all 0.25s ease;
  padding: 0;
}

.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(36, 107, 219, 0.16);
}
.profile-card:hover .profile-top img {
  transform: scale(1.04);
  transition: transform 0.35s ease;
}

.profile-top {
  width: 100%;
  height: 300px; /* was 220px */
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-top img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  /* THIS is the key */
  object-position: center 25%;
}
.profile-img-adjust {
  object-position: center 20%;
  transform: scale(1.08);
}
/* real photos only */
.profile-top img.real-photo {
  object-fit: contain;
  object-position: center top;
}

.profile-body {
  padding: 22px 20px 24px;
}

.profile-body h3 {
  color: #111827;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.profile-role {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f4ede2;
  color: #a16207;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.profile-body p {
  color: #667085;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* CONTACT / REGISTER INTEREST */
#contact .section-head {
  margin-bottom: 28px;
}
#contact .section-head h2 {
  font-size: 2rem;
}
#contact .section-label {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;

  background: linear-gradient(90deg, #14b8e6, #246bdb, #8a63f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#contact .section-label::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #14b8e6, #246bdb, #8a63f7);
}

#contact .section-head h2 {
  color: #111827;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: 500;
  opacity: 0.9;
}

#contact .section-head p {
  color: #667085;
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.contact-form-card {
  background: linear-gradient(135deg, #18b7df 0%, #1f7ae0 45%, #5c5ce6 100%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 24px 60px rgba(36, 107, 219, 0.18);
}

.interest-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  margin-bottom: 28px;
  border-radius: 20px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.interest-tab {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.76);
  padding: 12px 18px;
  border-radius: 14px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.22s ease;
}

.interest-tab:hover {
  color: #ffffff;
}

.interest-tab.active {
  background: #ffffff;
  color: #246bdb;
  box-shadow: 0 8px 18px rgba(255,255,255,0.15);
}

.interest-panel {
  display: none;
}

.interest-panel.active {
  display: block;
}

.interest-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.interest-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.interest-field.full-width {
  grid-column: 1 / -1;
}

.interest-field span {
  color: rgba(255,255,255,0.95);
  font-size: 0.84rem;
  font-weight: 700;
}

.interest-field input,
.interest-field select,
.interest-field textarea {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.12);
  color: #111827;
  border-radius: 14px;
  padding: 16px 18px;
  outline: none;
  transition: all 0.2s ease;
}

.interest-field input::placeholder,
.interest-field textarea::placeholder {
  color: #9ca3af;
}

.interest-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #111827;
}

.interest-field select option {
  color: #111827;
}

.interest-field input:focus,
.interest-field select:focus,
.interest-field textarea:focus {
  border-color: #246bdb;
  box-shadow: 0 0 0 3px rgba(36, 107, 219, 0.15);
}

.interest-checkbox {
  display: flex;
  gap: 10px;
  margin: 20px 0 10px;
  color: rgba(255,255,255,0.86);
  font-size: 0.85rem;
  align-items: flex-start;
  line-height: 1.65;
}

.interest-checkbox input {
  margin-top: 4px;
  flex: 0 0 auto;
}

.interest-submit-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.interest-submit-wrap .btn-primary {
  min-width: 220px;
}

.interest-success {
  color: #ffffff;
  margin-top: 16px;
  min-height: 24px;
  font-weight: 700;
}

.interest-disclaimer {
  margin-top: 18px;
  color: rgba(255,255,255,0.82);
  font-size: 0.85rem;
  line-height: 1.7;
  text-align: center;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

#contact.section-pad {
  padding: 60px 0; /* reduce from large spacing */
}

#contact .section-head {
  margin-bottom: 28px;
}

#contact .section-head h2 {
  margin-bottom: 10px;
}

#contact .section-head p {
  max-width: 600px;
  margin: 0 auto;
}

body.modal-open {
  overflow: hidden;
}

/* INTEREST POPUP MODAL */
.interest-popup-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(7, 14, 30, 0.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2500;
}

.interest-popup-overlay.show {
  display: flex;
}

.interest-popup-card {
  position: relative;
  width: min(100%, 760px);
  max-height: min(90vh, 940px);
  overflow-y: auto;
  border-radius: 28px;
  padding: 30px 28px 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,255,0.96));
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow:
    0 30px 70px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(255,255,255,0.35);
}

.interest-popup-card h2 {
  margin-bottom: 10px;
  color: #111827;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  line-height: 1.1;
}

.interest-popup-text {
  margin-bottom: 20px;
  color: #667085;
  max-width: 560px;
}

.interest-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.06);
  color: #667085;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 3;
}

.interest-popup-close:hover {
  background: rgba(15, 23, 42, 0.12);
  transform: rotate(90deg);
}

/* popup tabs */
.interest-popup-card .interest-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: #eef2ff;
  border: 1px solid rgba(36, 107, 219, 0.08);
  box-shadow: none;
}

.interest-popup-card .interest-tab {
  border: 0;
  background: transparent;
  color: #667085;
  padding: 11px 16px;
  border-radius: 12px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.22s ease;
}

.interest-popup-card .interest-tab:hover {
  color: #246bdb;
}

.interest-popup-card .interest-tab.active {
  background: #ffffff;
  color: #246bdb;
  box-shadow: 0 8px 18px rgba(36, 107, 219, 0.10);
}

/* popup form layout */
.interest-popup-card .interest-panel {
  display: none;
}

.interest-popup-card .interest-panel.active {
  display: block;
}

.interest-popup-card .interest-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.interest-popup-card .interest-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.interest-popup-card .interest-field.full-width {
  grid-column: 1 / -1;
}

.interest-popup-card .interest-field span,
.interest-popup-card .form-step-label {
  color: #111827;
  font-size: 0.84rem;
  font-weight: 700;
}

.interest-popup-card .form-step-label {
  margin-bottom: 14px;
  color: #667085;
  font-size: 0.82rem;
}

.interest-popup-card .interest-field input,
.interest-popup-card .interest-field select,
.interest-popup-card .interest-field textarea {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.12);
  color: #111827;
  border-radius: 14px;
  padding: 16px 18px;
  outline: none;
  transition: all 0.2s ease;
}

.interest-popup-card .interest-field input::placeholder,
.interest-popup-card .interest-field textarea::placeholder {
  color: #9ca3af;
}

.interest-popup-card .interest-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #111827;
}

.interest-popup-card .interest-field select option {
  color: #111827;
}

.interest-popup-card .interest-field input:focus,
.interest-popup-card .interest-field select:focus,
.interest-popup-card .interest-field textarea:focus {
  border-color: #246bdb;
  box-shadow: 0 0 0 3px rgba(36, 107, 219, 0.15);
}

.interest-popup-card .step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.interest-popup-card .step-actions .btn {
  min-width: 180px;
}

.interest-popup-card .interest-submit-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.interest-popup-card .interest-submit-wrap .btn-primary {
  min-width: 220px;
}

.interest-popup-card .interest-checkbox {
  display: flex;
  gap: 10px;
  margin: 20px 0 10px;
  color: #4b5563;
  font-size: 0.85rem;
  align-items: flex-start;
  line-height: 1.65;
}

.interest-popup-card .interest-checkbox input {
  margin-top: 4px;
  flex: 0 0 auto;
}

.interest-popup-card .interest-success {
  color: #166534;
  margin-top: 16px;
  min-height: 24px;
  font-weight: 700;
}

.interest-popup-card .interest-disclaimer,
.interest-popup-card .form-note {
  margin-top: 18px;
  color: #667085;
  font-size: 0.82rem;
  line-height: 1.7;
}

.interest-popup-card .btn-secondary {
  background: #eef2ff;
  color: #246bdb;
  border: 1px solid rgba(36, 107, 219, 0.14);
}

.interest-popup-card .btn-secondary:hover {
  background: #e5edff;
}

/* hide unused legacy popup styles safely */
.interest-popup-form,
.interest-popup-form .form-row {
  display: contents;
}

/* popup scrollbar */
.interest-popup-card::-webkit-scrollbar {
  width: 10px;
}

.interest-popup-card::-webkit-scrollbar-track {
  background: transparent;
}

.interest-popup-card::-webkit-scrollbar-thumb {
  background: rgba(17, 24, 39, 0.16);
  border-radius: 999px;
}

.interest-popup-card::-webkit-scrollbar-thumb:hover {
  background: rgba(17, 24, 39, 0.26);
}

@media (max-width: 640px) {
  .interest-popup-overlay {
    padding: 16px;
  }

  .interest-popup-card {
    width: 100%;
    max-height: 92vh;
    padding: 24px 18px 20px;
    border-radius: 22px;
  }

  .interest-popup-card h2 {
    font-size: 1.7rem;
    padding-right: 34px;
  }

  .interest-popup-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .interest-popup-card .interest-form-grid {
    grid-template-columns: 1fr;
  }

  .interest-popup-card .step-actions,
  .interest-popup-card .interest-submit-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .interest-popup-card .step-actions .btn,
  .interest-popup-card .interest-submit-wrap .btn,
  .interest-popup-card .interest-submit-wrap .btn-primary {
    width: 100%;
    min-width: 0;
  }
}

/* FORM WRAPPER */
.contact-form-wrap {
  padding: 28px 26px; /* reduced */
  border-radius: 22px;
  max-width: 680px;
  margin: 0 auto;
}

/* TABS */
.form-tabs {
  margin-bottom: 20px;
  gap: 10px;
}

.form-tabs button {
  padding: 10px 16px;
  font-size: 0.85rem;
}

/* GRID */
.form-grid {
  gap: 14px; /* tighter spacing */
}

/* INPUTS */
.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
  height: 46px; /* smaller */
  padding: 10px 14px;
  font-size: 0.9rem;
  border-radius: 10px;
}

.contact-form-wrap textarea {
  height: 110px; /* smaller textarea */
  resize: vertical;
}

/* LABELS */
.contact-form-wrap label {
  font-size: 0.78rem;
  margin-bottom: 6px;
}

/* BUTTON */
.contact-form-wrap button {
  margin-top: 16px;
  padding: 12px 18px;
  font-size: 0.9rem;
  border-radius: 12px;
}

/* DISCLAIMER */
.contact-form-wrap .form-note {
  margin-top: 14px;
  font-size: 0.75rem;
  line-height: 1.5;
  opacity: 0.85;
}
/* LEGACY FORM CLASSES */
.form-shell {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.10) 100%);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 30px;
  padding: 32px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 24px 60px rgba(10, 20, 40, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.tab-row {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.10);
  padding: 6px;
  border-radius: 16px;
  margin-bottom: 26px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.tab {
  padding: 11px 16px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab:hover {
  color: #fff;
}

.tab.active {
  background: #ffffff;
  color: #246bdb;
  box-shadow: 0 8px 16px rgba(255,255,255,0.14);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: rgba(255,255,255,0.95);
  font-size: 0.84rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  padding: 16px;
  resize: vertical;
  transition: all 0.22s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255,255,255,0.62);
}

.field select option {
  color: #111827;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.18);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.12);
}

.checkbox-row {
  display: flex;
  gap: 10px;
  margin: 20px 0 22px;
  color: rgba(255,255,255,0.86);
  font-size: 0.85rem;
  align-items: flex-start;
}

.checkbox-row input {
  margin-top: 4px;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.form-actions .btn-primary {
  min-width: 220px;
}

.form-note {
  color: rgba(255,255,255,0.82);
  font-size: 0.85rem;
  max-width: 420px;
  line-height: 1.7;
}

.form-success {
  color: #ffffff;
  margin-top: 16px;
  min-height: 24px;
  font-weight: 700;
}

/* =========================
   FOOTER CALLOUT (KEEP)
========================= */
.footer-callout {
  background: linear-gradient(135deg, #1f6fd1 0%, #4f55dc 58%, #8a63f7 100%);
  color: #fff;
  padding: 44px 0;
}

.footer-callout h2 {
  color: #fff;
  font-size: 2.1rem;
  margin-bottom: 10px;
}

.footer-callout p {
  color: rgba(255,255,255,0.92);
  max-width: 920px;
  font-size: 1rem;
}

/* =========================
   MAIN FOOTER
========================= */
.site-footer {
  background: linear-gradient(135deg, #051124 0%, #091733 55%, #112759 100%);
  color: #fff;
  padding-top: 52px;
}

/* =========================
   TOP LAYOUT
========================= */
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
  padding-bottom: 25px;
}

.footer-brand-col {
  max-width: 360px;
}

.footer-logo {
  max-width: 140px;
  margin-bottom: 22px;
}

/* =========================
   CONTACT BLOCK
========================= */
.footer-contact {
  display: grid;
  gap: 14px;
  margin: 18px 0 22px;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.footer-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-value:hover {
  color: #8fdcff;
}

/* =========================
   SOCIAL ICONS
========================= */
.footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.25s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.16);
  color: #8fdcff;
}

/* =========================
   LINKS SECTION
========================= */
.footer-links-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 34px;
}

.footer-links-col h4 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-bottom: 16px;
}

.footer-links-col a {
  display: block;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 0.95rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links-col a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

/* =========================
   BOTTOM SECTION
========================= */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  padding-bottom: 34px;
  margin-top: 10px;
}

.footer-copy {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 14px;
}

/* LEGAL DISCLAIMER */
.footer-disclaimer {
  max-width: 920px;
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-links-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-brand-col {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .footer-links-wrap {
    grid-template-columns: 1fr;
  }

  .footer-socials a {
    width: 38px;
    height: 38px;
  }

  .footer-disclaimer {
    font-size: 0.82rem;
    line-height: 1.7;
  }
}

/* LEGAL PAGES */
.single-line {
  align-items: center;
}

.legal-header {
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(16,24,40,0.06);
}

.legal-top {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.legal-main {
  padding: 72px 0;
}

.legal-wrap {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
}

.legal-wrap h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.legal-card h2 {
  color: var(--brand-blue);
  font-size: 1.5rem;
  margin-top: 26px;
}
.legal-card a {
  color: #4f46e5;
  font-weight: 500;
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

.dynamic-fields {
  display: none;
}

.active-fields {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .four-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    gap: 40px;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .three-up,
  .four-up,
  .two-up,
  .footer-grid,
  .form-grid,
  .interest-form-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-panel,
  .hero-visual {
    max-width: 100%;
    justify-self: stretch;
  }

  .hero-visual {
    height: auto !important;
    min-height: 0 !important;
  }

  .section-pad {
    padding: 84px 0;
  }

  .about-section {
    padding-top: 60px;
    padding-bottom: 72px;
  }

  .about-card,
  .role-card {
    padding: 26px 22px 22px;
  }

  .role-section,
  .team-section {
    padding-top: 64px;
    padding-bottom: 76px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-image {
    max-width: 100%;
  }

  .interest-field.full-width {
    grid-column: auto;
  }

  .roadmap-card {
    padding: 24px 20px;
  }

  .profile-top {
    height: 220px;
  }

  .sharia-advisor-inner {
    grid-template-columns: 1fr !important;
    gap: 20px;
    text-align: center;
  }

  .sharia-advisor-photo-wrap {
    margin: 0 auto;
  }

  .sharia-advisor-meta {
    align-items: center;
  }
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 44px 0;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 10vw, 4rem);
    line-height: 1.02;
  }

  .hero-lead,
  .hero-sub {
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-form-card {
    padding: 22px;
    border-radius: 24px;
  }

  .interest-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .interest-tab {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .profile-top {
    height: 240px;
  }

  .interest-popup-card {
    width: 100%;
    max-height: 92vh;
    padding: 24px 18px 20px;
    border-radius: 22px;
  }

  .interest-popup-card h2 {
    font-size: 1.7rem;
    padding-right: 34px;
  }

  .interest-popup-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container,
  .narrow {
    width: min(100% - 24px, 1180px);
  }

  .section-pad {
    padding: 68px 0;
  }

  .hero-actions,
  .form-actions,
  .legal-top,
  .footer-bottom,
  .interest-submit-wrap,
  .step-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .form-shell,
  .glass-card,
  .card,
  .step-card,
  .product-card,
  .roadmap-card,
  .legal-card,
  .contact-form-card {
    padding: 22px;
  }

  .notice-inner {
    min-height: 60px;
  }

  .meta-list div {
    flex-direction: column;
    align-items: flex-start;
  }

  .meta-list strong {
    text-align: left;
    max-width: 100%;
  }

  .site-logo {
    height: 48px;
  }

  .footer-logo {
    height: 54px;
  }

  .hero-orb {
    display: none;
  }

  .tab-row,
  .interest-tabs {
    width: 100%;
  }

  .interest-submit-wrap .btn-primary,
  .step-actions .btn,
  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .interest-disclaimer,
  .form-note {
    text-align: left;
  }

  .interest-popup-card .interest-form-grid {
    grid-template-columns: 1fr;
  }

  .interest-popup-card .step-actions,
  .interest-popup-card .interest-submit-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  #backToTop {
    left: auto;
    right: 16px;
    bottom: 20px;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .container,
  .narrow {
    width: min(100% - 20px, 1180px);
  }

  .hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .product-card,
  .step-card,
  .roadmap-card,
  .trust-card,
  .profile-card,
  .contact-form-card {
    padding: 18px;
  }

  .profile-top {
    height: 220px;
  }

  .sharia-advisor-photo-wrap {
    width: 140px;
    height: 140px;
  }

  .interest-popup-overlay {
    padding: 12px;
  }

  .interest-popup-card {
    padding: 20px 14px 18px;
    border-radius: 18px;
  }

  .interest-popup-card .interest-tab {
    font-size: 0.72rem;
    padding: 10px 12px;
  }
}
/* MULTI STEP FORM */

.multi-step-form {
  display: none;
}

.multi-step-form.active-step {
  display: block;
}

.form-step-label {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
}

/* BUTTON LAYOUT */
.step-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.step-actions .btn {
  min-width: 160px;
}

/* MOBILE */
@media (max-width: 640px) {
  .step-actions {
    flex-direction: column;
  }

  .step-actions .btn {
    width: 100%;
  }
}
/* FOOTER SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 15px;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #2f7cff, #7b61ff);
  box-shadow: 0 8px 20px rgba(47,124,255,0.35);
}
/* 🎨 PLATFORM COLORS */
.footer-social a:nth-child(1):hover {
  background: #1877F2; /* Facebook */
  box-shadow: 0 8px 20px rgba(24,119,242,0.4);
}

.footer-social a:nth-child(2):hover {
  background: #000000; /* X */
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.footer-social a:nth-child(3):hover {
  background: #0A66C2; /* LinkedIn */
  box-shadow: 0 8px 20px rgba(10,102,194,0.4);
}

.footer-social a:nth-child(4):hover {
  background: #E4405F; /* Instagram */
  box-shadow: 0 8px 20px rgba(228,64,95,0.4);
}

.footer-social a:nth-child(5):hover {
  background: #000000; /* TikTok */
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.footer-social a:nth-child(6):hover {
  background: #25D366; /* WhatsApp */
  box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}
.footer-social a i {
  color: #fff;
}
.footer-bottom p:last-child {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 880px;
}
/* =========================
   HERO FORCE FIX OVERRIDES
   Add at very end so it wins
   ========================= */
.hero {
  padding: 72px 0 !important;
}

.hero .container {
  width: min(1240px, calc(100% - 48px)) !important;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr) !important;
  gap: clamp(28px, 4vw, 64px) !important;
  align-items: center !important;
}

.hero-copy {
  max-width: 620px !important;
}

.hero h1 {
  max-width: 560px !important;
  font-size: clamp(2.8rem, 5vw, 5rem) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.035em !important;
  margin-bottom: 20px !important;
  text-wrap: balance;
}

.hero-lead,
.hero-sub {
  max-width: 560px !important;
}

.hero-visual {
  position: relative;
  width: 115% !important;
  max-width: 900px !important;
  height: clamp(380px, 42vw, 520px);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  justify-self: end !important;
  overflow: hidden !important;
  border-radius: 32px !important;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 40px 100px rgba(10, 20, 40, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -30px;
  z-index: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(177, 82, 255, 0.28), transparent 42%),
    radial-gradient(circle at 75% 35%, rgba(39, 224, 217, 0.24), transparent 38%),
    radial-gradient(circle at 55% 80%, rgba(255, 210, 92, 0.12), transparent 30%);
  filter: blur(34px);
  opacity: 0.95;
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.14),
    rgba(255,255,255,0.03) 35%,
    rgba(255,255,255,0.00) 60%
  );
  pointer-events: none;
}
/* .hero-visual:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 28px 70px rgba(19, 37, 89, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.14);
} */

/* .hero-visual:hover img,
.hero-visual:hover .hero-image {
  transform: scale(1.08) !important;
} */
.hero-visual img,
.hero-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 54% 50% !important;
  display: block !important;
  transition: none !important;
  transform: none !important;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr) !important;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 4.6vw, 4.3rem) !important;
    max-width: 520px !important;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-copy,
  .hero h1,
  .hero-lead,
  .hero-sub {
    max-width: 100% !important;
  }

  /* .hero-visual {
    height: clamp(280px, 58vw, 420px) !important;
  } */

  .hero-visual img,
  .hero-image {
    object-position: center !important;
    transform: scale(1.18) !important;
  }
}
/* =========================
   PREMIUM NANI POPUP
   ========================= */

.nani-popup-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 16, 35, 0.56);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
}

.nani-popup-overlay.show {
  display: flex;
  animation: naniFadeIn 0.35s ease;
}

.nani-popup-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 34px 28px 24px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,255,0.96));
  box-shadow:
    0 30px 80px rgba(4, 14, 39, 0.28),
    0 0 0 1px rgba(255,255,255,0.55);
  text-align: center;
  animation: naniPopupUp 0.4s ease;
}

.nani-popup-glow {
  position: absolute;
  inset: auto;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(52, 211, 255, 0.28), rgba(113, 84, 255, 0.18) 45%, transparent 72%);
  filter: blur(20px);
  pointer-events: none;
}

.nani-popup-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #155eef;
  background: rgba(24, 200, 247, 0.10);
  border: 1px solid rgba(24, 200, 247, 0.22);
}

.nani-popup-title {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  line-height: 1.08;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
}

.nani-popup-title span {
  background: linear-gradient(90deg, #15c7f6 0%, #2563eb 45%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nani-popup-text {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: #5f6c85;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.nani-popup-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.nani-popup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.nani-popup-btn:hover {
  transform: translateY(-2px);
}

.nani-popup-btn-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.25);
}

.nani-popup-btn-gradient {
  color: #fff;
  background: linear-gradient(90deg, #18c8f7 0%, #2563eb 45%, #7c3aed 100%);
  box-shadow: 0 16px 32px rgba(76, 93, 241, 0.25);
}

.nani-popup-note {
  position: relative;
  z-index: 1;
  margin: 6px 0 0;
  font-size: 0.92rem;
  color: #64748b;
}

.nani-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.06);
  color: #667085;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nani-popup-close:hover {
  background: rgba(15, 23, 42, 0.12);
  transform: rotate(90deg);
}

@keyframes naniFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes naniPopupUp {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 640px) {
  .nani-popup-card {
    max-width: 100%;
    padding: 28px 20px 20px;
    border-radius: 22px;
  }

  .nani-popup-title {
    font-size: 1.75rem;
  }

  .nani-popup-text {
    font-size: 0.96rem;
  }

  .nani-popup-btn {
    min-height: 50px;
    font-size: 0.96rem;
  }
}

* {
  box-sizing: border-box;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

.trust-cta-section .section-head p {
  color: #667085;
  max-width: 720px;
  margin: 12px auto 0;
}

.trust-cta {
  margin-top: 42px;
  padding: 34px 24px;
  border-radius: 24px;
  text-align: center;
  background: linear-gradient(135deg, #1f6fd1 0%, #4f55dc 58%, #8a63f7 100%);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.16);
}

.trust-cta h3 {
  color: #ffffff;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin-bottom: 12px;
}

.trust-cta p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.trust-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
}

.trust-cta-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72) !important;
  margin-top: 16px !important;
  margin-bottom: 0 !important;
}
.legal-brand {
  display: flex;
  align-items: center;
}

.legal-logo {
  height: 52px;
  width: auto;
  display: block;
}
.legal-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 44px 48px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(36, 107, 219, 0.08);
}
.legal-card h2 {
  color: #1f4fc4;
  font-size: 1.8rem;
  line-height: 1.25;
  margin-top: 30px;
  margin-bottom: 14px;
}

.legal-card p,
.legal-card li {
  font-size: 1rem;
  line-height: 1.85;
  color: #5f6b7a;
}

.legal-card ul {
  margin: 14px 0 18px 22px;
  padding: 0;
}

.legal-card li {
  margin-bottom: 10px;
}
.legal-wrap {
  max-width: 920px;
  margin: 0 auto;
}

.legal-main {
  padding: 56px 0 90px;
}

.legal-main .section-head {
  margin-bottom: 34px;
}
.legal-footer .footer-bottom.single-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  text-align: center;
  padding: 24px 0;
}

.legal-footer .footer-bottom p,
.legal-footer .footer-bottom a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
}
.risk-note {
  margin-top: 24px;
  padding: 14px 18px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;

  display: flex;
  align-items: flex-start;
  gap: 10px;

  font-size: 0.82rem;
  line-height: 1.6;

  color: #6b7280;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;

  backdrop-filter: blur(8px);
}

.risk-note strong {
  color: inherit;
  font-weight: 600;
}

.risk-dot {
  width: 6px;
  height: 6px;
  margin-top: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  flex-shrink: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .four-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .three-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .opportunities-grid,
  .trust-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }

  .hero-grid {
    gap: 40px;
  }

  .desktop-nav {
    gap: 2px;
  }

  .desktop-nav a:not(.btn) {
    padding: 10px 10px;
    font-size: 0.9rem;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .three-up,
  .four-up,
  .two-up,
  .footer-grid,
  .form-grid,
  .interest-form-grid,
  .opportunities-grid,
  .trust-grid,
  .team-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-copy,
  .hero-panel,
  .hero-visual {
    max-width: 100%;
    justify-self: stretch;
  }

  .hero-visual {
    height: auto !important;
    min-height: 0 !important;
    max-width: 100%;
    aspect-ratio: auto;
  }

  .hero-visual img,
  .hero-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    transform: none;
  }

  .section-pad {
    padding: 76px 0 44px;
  }

  .about-section {
    padding-top: 60px;
    padding-bottom: 72px;
  }

  .role-section,
  .team-section {
    padding-top: 64px;
    padding-bottom: 76px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-copy,
  .section-head,
  .section-head-wide {
    max-width: 100%;
  }

  .hero-actions,
  .interest-submit-wrap,
  .form-actions,
  .step-actions,
  .sharia-advisor-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .interest-field.full-width {
    grid-column: auto;
  }

  .about-card,
  .role-card,
  .product-card,
  .trust-card,
  .roadmap-card,
  .profile-card,
  .step-card,
  .term-card,
  .contact-form-card {
    padding: 24px 20px;
  }

  .profile-top {
    height: 220px;
  }

  .meta-list div {
    flex-direction: column;
    align-items: flex-start;
  }

  .meta-list strong {
    text-align: left;
    max-width: 100%;
  }

  .sharia-advisor-inner {
    grid-template-columns: 1fr !important;
    gap: 20px;
    text-align: center;
  }

  .sharia-advisor-photo-wrap {
    margin: 0 auto;
    width: 180px;
    height: 180px;
  }

  .sharia-advisor-meta {
    align-items: center;
  }

  .sharia-advisor-content,
  .sharia-advisor-copy {
    text-align: center;
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .nav-row {
    min-height: 78px;
  }

  .mobile-nav {
    display: none;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 10px 20px 18px;
  }

  .mobile-nav.open {
    display: grid;
  }

  .mobile-nav a {
    width: 100%;
  }

  .mobile-cta {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container,
  .narrow {
    width: min(100% - 24px, 1180px);
  }

  .section-pad {
    padding: 64px 0 36px;
  }

  .site-logo {
    height: 48px;
  }

  .footer-logo {
    height: 54px;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
    line-height: 1.05;
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-orb {
    display: none;
  }

  .hero-actions,
  .form-actions,
  .legal-top,
  .footer-bottom,
  .interest-submit-wrap,
  .step-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .hero-actions .btn,
  .interest-submit-wrap .btn-primary,
  .step-actions .btn,
  .nav-cta,
  .mobile-cta {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .form-shell,
  .glass-card,
  .card,
  .step-card,
  .product-card,
  .roadmap-card,
  .legal-card,
  .contact-form-card,
  .term-card {
    padding: 22px 18px;
  }

  .section-label {
    font-size: 1rem !important;
    letter-spacing: 0.14em !important;
  }

  .section-head h2,
  #how-it-works .section-head h2,
  #trust .section-head h2,
  #roadmap .section-head h2,
  #shariah h2,
  #opportunities .section-head h2 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
    line-height: 1.12;
  }

  .about-card h3,
  .role-card h3,
  #how-it-works .step-card h3,
  .trust-card h3,
  .roadmap-card h3,
  .term-card h3,
  .product-card h3,
  .profile-card h3 {
    font-size: 1.35rem;
    line-height: 1.2;
  }

  .notice-inner {
    min-height: 60px;
  }

  .tab-row,
  .interest-tabs {
    width: 100%;
  }

  .interest-disclaimer,
  .form-note {
    text-align: left;
  }

  .interest-popup-card .interest-form-grid {
    grid-template-columns: 1fr;
  }

  .interest-popup-card .step-actions,
  .interest-popup-card .interest-submit-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  #backToTop {
    right: 16px;
    bottom: 20px;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .container,
  .narrow {
    width: min(100% - 20px, 1180px);
  }

  .section-pad {
    padding: 56px 0 32px;
  }

  .nav-row {
    min-height: 72px;
  }

  .site-logo {
    height: 44px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 11vw, 2.8rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-sub {
    font-size: 0.92rem;
  }

  .product-card,
  .step-card,
  .roadmap-card,
  .trust-card,
  .profile-card,
  .contact-form-card,
  .term-card,
  .about-card,
  .role-card {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .profile-top {
    height: 220px;
  }

  .sharia-advisor-inner {
    padding: 20px 16px;
  }

  .sharia-advisor-photo-wrap {
    width: 140px;
    height: 140px;
  }

  .interest-popup-overlay {
    padding: 12px;
  }

  .interest-popup-card {
    padding: 20px 14px 18px;
    border-radius: 18px;
  }

  .interest-popup-card .interest-tab {
    font-size: 0.72rem;
    padding: 10px 12px;
  }

  .product-topbar {
    flex-wrap: wrap;
  }

  .opportunity-icon {
    width: 46px;
    height: 46px;
  }
}
.trust-cta-note {
  font-size: 13px;
  opacity: 0.85;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}