/* ============================================================
   MEN MATTERS — Main Stylesheet
   Brand: Teal #147065 | Black #000000 | Whitesmoke #F9F6F2
   Less noise. More progress.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --teal:        #147065;
  --teal-dark:   #0d4f48;
  --teal-light:  #1a8a7a;
  --teal-pale:   #eef7f5;
  --teal-mid:    #d0ece8;
  --black:       #000000;
  --off-black:   #111111;
  --dark:        #1a1a1a;
  --mid:         #444444;
  --muted:       #777777;
  --border:      #d8d8d8;
  --smoke:       #F9F6F2;
  --white:       #ffffff;

  /* Category colours */
  --cat-wellness:   #8E9D8E;
  --cat-career:     #8E6C74;
  --cat-grooming:   #C0B2A7;
  --cat-tech:       #3E5E83;
  --cat-gifting:    #567584;
  --cat-lifestyle:  #B1C8D1;
  --cat-travel:     #75778C;
  --cat-skills:     #806D8D;
  --cat-fashion:    #6C2441;
  --cat-mena:       #147065;
  --cat-money:      #2D5A45;
  --cat-mindset:    #4A3728;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-2xl: 10rem;

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

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --fast: 0.18s;
  --med:  0.35s;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--smoke);
  color: var(--dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.15; font-weight: 400; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}
.lead {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-md); }
.section { padding: var(--space-xl) 0; }
.section--dark { background: var(--off-black); color: var(--white); }
.section--teal { background: var(--teal); color: var(--white); }
.section--white { background: var(--white); }
.section--smoke { background: var(--smoke); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: all var(--fast) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(20, 112, 101, 0.3);
}
.btn-outline {
  border: 1.5px solid var(--teal);
  color: var(--teal);
  background: transparent;
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn-dark {
  background: var(--off-black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark);
  transform: translateY(-1px);
}
.btn .arrow { transition: transform var(--fast) var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--med) var(--ease);
}
.nav.scrolled {
  background: rgba(249, 246, 242, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.875rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-mark {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--teal);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav__logo-mark .arrow-box {
  width: 18px;
  height: 18px;
  background: var(--teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  border-radius: 3px;
  flex-shrink: 0;
}
.nav__logo-tag {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mid);
  position: relative;
  transition: color var(--fast);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1.5px;
  background: var(--teal);
  transition: right var(--fast) var(--ease);
}
.nav__link:hover { color: var(--teal); }
.nav__link:hover::after { right: 0; }
.nav__cta { margin-left: 1rem; }

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: all var(--fast) var(--ease);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--smoke);
  z-index: 999;
  padding: 6rem var(--space-md) var(--space-md);
  flex-direction: column;
  gap: 2rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  transition: color var(--fast);
}
.nav__mobile-link:hover { color: var(--teal); }
.nav__mobile-close {
  position: absolute;
  top: 1.5rem;
  right: var(--space-md);
  font-size: 1.5rem;
  color: var(--mid);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: var(--off-black);
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem var(--space-md) var(--space-xl) calc((100vw - var(--max-w)) / 2 + var(--space-md));
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.hero__eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--teal);
}
.hero__eyebrow-text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--teal);
  text-transform: uppercase;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.4s forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--teal-light);
}
.hero__tagline {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.55s forwards;
}
.hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.65s forwards;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.75s forwards;
}
.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.9s forwards;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--teal-light);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

/* Hero image panel */
.hero__image {
  position: relative;
  overflow: hidden;
}
.hero__image-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--off-black) 0%, transparent 30%),
    url('images/hero-bg.jpg') center/cover no-repeat;
}
.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,112,101,0.15) 0%, transparent 60%);
}
/* Fallback gradient when no image */
.hero__image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d2620 0%, #1a4a3a 35%, #147065 70%, #1a8a7a 100%);
}
.hero__image-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,1) 60px, rgba(255,255,255,1) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,1) 60px, rgba(255,255,255,1) 61px);
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee {
  background: var(--teal);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}
.marquee__item {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.marquee__dot {
  width: 3px;
  height: 3px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
}

/* ── ABOUT STRIP ─────────────────────────────────────────── */
.about-strip {
  padding: var(--space-xl) 0;
  background: var(--white);
}
.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.about-strip__label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.about-strip__label-line { width: 24px; height: 1px; background: var(--teal); }
.about-strip__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
  color: var(--off-black);
}
.about-strip__title span { color: var(--teal); font-style: italic; }
.about-strip__body {
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.about-strip__values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.about-strip__value {
  padding: 0.4rem 1rem;
  border: 1px solid var(--teal-mid);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 100px;
}
.about-strip__image {
  position: relative;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #0d2620, #147065);
}
.about-strip__image-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d2620 0%, #1a4a3a 40%, #147065 100%);
}
.about-strip__image-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.about-strip__image-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--teal);
  line-height: 1;
}
.about-strip__image-badge-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── PILLARS ─────────────────────────────────────────────── */
.pillars { padding: var(--space-xl) 0; background: var(--smoke); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .eyebrow { margin-bottom: 1rem; }
.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--off-black);
  margin-bottom: 1rem;
}
.section-header p { color: var(--mid); max-width: 540px; margin: 0 auto; }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--med) var(--ease);
  cursor: pointer;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cat-color, var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--med) var(--ease);
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--cat-color, var(--teal));
  opacity: 0.12;
  margin-bottom: 1.25rem;
}
.pillar-card__icon-inner {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  background: rgba(20,112,101,0.08);
}
.pillar-card__name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--off-black);
  margin-bottom: 0.5rem;
}
.pillar-card__desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}
.pillar-card__tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cat-color, var(--teal));
}

/* ── TOOLS ───────────────────────────────────────────────── */
.tools { padding: var(--space-xl) 0; background: var(--white); }
.tools__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.tool-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--med) var(--ease);
  position: relative;
  overflow: hidden;
  background: var(--smoke);
}
.tool-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(20,112,101,0.1);
}
.tool-card__cat {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--cat-color, var(--teal));
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 1.25rem;
}
.tool-card__name {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--off-black);
  margin-bottom: 0.5rem;
}
.tool-card__desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.tool-card__link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--fast);
}
.tool-card:hover .tool-card__link { gap: 0.7rem; }

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how { padding: var(--space-xl) 0; background: var(--off-black); }
.how .section-header h2 { color: var(--white); }
.how .section-header p { color: rgba(255,255,255,0.5); }
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.how__steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(16.6% + 1rem);
  right: calc(16.6% + 1rem);
  height: 1px;
  background: linear-gradient(to right, var(--teal), rgba(20,112,101,0.2), var(--teal));
}
.how__step { text-align: center; padding: 2.5rem 2rem; }
.how__step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}
.how__step-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.how__step-desc { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ── NEWSLETTER ──────────────────────────────────────────── */
.newsletter { padding: var(--space-xl) 0; background: var(--teal); position: relative; overflow: hidden; }
.newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.newsletter::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
}
.newsletter__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.newsletter .eyebrow { color: rgba(255,255,255,0.65); margin-bottom: 1rem; }
.newsletter h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.newsletter__sub { color: rgba(255,255,255,0.65); margin-bottom: 2.5rem; font-size: 1.05rem; }
.newsletter__form {
  display: flex;
  gap: 0.75rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 0.5rem;
  margin-bottom: 1rem;
}
.newsletter__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--white);
}
.newsletter__input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter__btn {
  background: var(--white);
  color: var(--teal);
  border: none;
  padding: 0.75rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--fast);
}
.newsletter__btn:hover { background: var(--smoke); }
.newsletter__trust {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials { padding: var(--space-xl) 0; background: var(--smoke); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--med) var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
  border-color: var(--teal-mid);
}
.testimonial-card__quote {
  font-size: 2rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}
.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--off-black);
}
.testimonial-card__role { font-size: 0.78rem; color: var(--muted); }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats { padding: 4rem 0; background: var(--off-black); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat__num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat__label { font-size: 0.8rem; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase; }

/* ── MENA BANNER ─────────────────────────────────────────── */
.mena { padding: var(--space-xl) 0; background: var(--white); }
.mena__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.mena__label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.mena__label-line { width: 24px; height: 1px; background: var(--teal); }
.mena__title {
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: var(--off-black);
  margin-bottom: 1.25rem;
}
.mena__title em { color: var(--teal); font-style: italic; }
.mena__body { color: var(--mid); line-height: 1.8; margin-bottom: 2rem; }
.mena__tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.mena__tool {
  background: var(--smoke);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--fast);
}
.mena__tool:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-pale); }
.mena__tool-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.mena__visual {
  position: relative;
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #0d2620, #147065);
}
.mena__visual-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d2620 0%, #1a4a3a 50%, #147065 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mena__visual-text {
  text-align: center;
  color: rgba(255,255,255,0.15);
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--off-black);
  color: var(--white);
  padding: var(--space-lg) 0 var(--space-md);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-md);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer__brand-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--teal-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}
.footer__brand-tag {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer__brand-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: all var(--fast);
}
.footer__social-link:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(20,112,101,0.1);
}
.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--fast);
}
.footer__link:hover { color: var(--teal-light); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal-link {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  transition: color var(--fast);
}
.footer__legal-link:hover { color: rgba(255,255,255,0.5); }

/* ── INNER PAGE HERO ─────────────────────────────────────── */
.page-hero {
  background: var(--off-black);
  padding: 9rem 0 5rem;
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 1rem; color: var(--teal-light); }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.5); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ── TOOLS PAGE ──────────────────────────────────────────── */
.tools-filter {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.tools-filter__btn {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--border);
  color: var(--muted);
  background: var(--white);
  transition: all var(--fast);
  cursor: pointer;
}
.tools-filter__btn.active,
.tools-filter__btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-pale);
}
.tools-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-content { padding: var(--space-xl) 0; }
.founder-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: var(--space-xl);
}
.founder-image {
  height: 500px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0d2620, #147065);
  overflow: hidden;
  position: relative;
}
.founder-image__inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0d2620 0%, #147065 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.founder-image__badge {
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  color: var(--teal);
  font-size: 0.9rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--smoke);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-left: 3px solid var(--teal);
}
.value-card h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--off-black);
  margin-bottom: 0.5rem;
}
.value-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── UTILITY ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-teal    { color: var(--teal); }
.text-white   { color: var(--white); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mt-md { margin-top: var(--space-md); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-sm { gap: var(--space-sm); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__content { padding: 8rem var(--space-md) var(--space-lg); max-width: 680px; }
  .hero__image { display: none; }
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .tools__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-strip__inner { grid-template-columns: 1fr; }
  .about-strip__image { display: none; }
  .mena__inner { grid-template-columns: 1fr; }
  .mena__visual { display: none; }
  .founder-block { grid-template-columns: 1fr; }
  .founder-image { display: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .tools-grid-full { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --space-xl: 4rem; --space-lg: 2.5rem; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero__title { font-size: 2.5rem; }
  .hero__stats { gap: 1.5rem; flex-wrap: wrap; }
  .pillars__grid { grid-template-columns: 1fr 1fr; }
  .tools__grid { grid-template-columns: 1fr; }
  .how__steps { grid-template-columns: 1fr; }
  .how__steps::before { display: none; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .newsletter__form { flex-direction: column; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .tools-grid-full { grid-template-columns: 1fr; }
  .mena__tools { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .pillars__grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { text-align: center; justify-content: center; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
}

.hub-card__thumb { position: relative; overflow: hidden; }
