/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --green:       #13C636;
  --green-dark:  #0fa82e;
  --green-muted: #59c46d;
  --navy:        #0b1a46;
  --white:       #ffffff;
  --gray-light:  #f5f5f6;
  --gray-text:   #6b7280;
  --border:      #e5e7eb;

  --font-body:   'Poppins', sans-serif;
  --font-head:   'Inter', sans-serif;
  --font-stat:   'Montserrat', sans-serif;

  --radius:    20px;
  --max-width: 1160px;
  --nav-height: 72px;
  --section-gap: 72px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); overscroll-behavior: none; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  white-space: nowrap;
  margin-block: 6px;
}
.btn:hover { transform: scale(1.05); }

.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover { background: var(--green-dark); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 12px;
}

.section-intro {
  color: var(--gray-text);
  max-width: 600px;
  margin-bottom: 56px;
  font-size: 1rem;
}

.link-more {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}
.link-more:hover { opacity: 0.75; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: var(--nav-height);
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

/* When menu is open, header is invisible except the hamburger/X */
#header.menu-open {
  background: transparent !important;
  box-shadow: none !important;
}
#header.menu-open .nav-links,
#header.menu-open .lang-switcher,
#header.menu-open .logo,
#header.menu-open .logo-cta,
#header.past-hero.menu-open .logo-cta {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

#header.scrolled {
  background: var(--white);
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
}

.nav-inner {
  width: 100%;
  padding-inline: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo wrap: flex, size collapses/expands per state */
.logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  overflow: hidden;
}

/* Logo: collapses to 0 width past hero */
.logo {
  display: flex;
  align-items: center;
  max-width: 80px;
  overflow: hidden;
  opacity: 1;
  transition: max-width 0.4s ease, opacity 0.3s ease;
}
.logo img {
  width: clamp(40px, 4vw, 56px);
  height: auto;
  flex-shrink: 0;
}

/* Logo-CTA: expands from 0 past hero */
.logo-cta {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  padding-inline: 0;
  transition: max-width 0.4s ease, opacity 0.3s ease, padding-inline 0.3s ease;
  font-size: 0.82rem;
  white-space: nowrap;
}

/* Past-hero: swap */
#header.past-hero .logo {
  max-width: 0;
  opacity: 0;
  pointer-events: none;
}
#header.past-hero .logo-cta {
  max-width: 240px;
  opacity: 1;
  pointer-events: auto;
  padding-inline: 16px;
}

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.75; }

#header.scrolled .nav-links a { color: var(--navy); }

#header.scrolled .logo img { filter: brightness(0); }

.nav-cta { margin-left: 8px; font-size: 0.85rem; }

/* Language switcher */
.lang-switcher {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.lang-switcher:hover { background: rgba(255,255,255,0.15); }
#header.scrolled .lang-switcher { color: var(--navy); }
#header.scrolled .lang-switcher:hover { background: var(--gray-light); }

/* Hamburger — always visible, morphs into × */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.3s, transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}
#header.scrolled .hamburger span { background: var(--navy); }

/* When menu is open, override span color to white (on green bg) */
.hamburger[aria-expanded="true"] span { background: var(--white) !important; }

/* Morph into × */
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   FULL-PAGE MENU
   ============================================================ */
.fullmenu {
  position: fixed;
  inset: 0;
  background: var(--green);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 40px 56px 64px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}

.fullmenu.open {
  opacity: 1;
  pointer-events: all;
}

/* Header bar */
.fullmenu__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
}

.fullmenu__brand-name {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}
.fullmenu__brand-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  display: block;
  margin-top: 0;
}

.fullmenu__topnav { display: none; }

.fullmenu__close {
  display: none; /* hamburger morphs into × — close button not needed visually */
}

/* Main body */
.fullmenu__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
}

.fullmenu__items {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.fullmenu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 20px 0;
  gap: 24px;
}
.fullmenu__item:last-child { border-bottom: none; }

.fullmenu__item-link {
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--white);
  transition: opacity 0.2s;
  text-decoration: none;
}
.fullmenu__item-link:hover { opacity: 0.7; }

.fullmenu__item-label {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.fullmenu__item-num {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  position: relative;
  top: -1.5rem;
}

.fullmenu__arrow-btn {
  padding: 7px 56px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s, color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.fullmenu__arrow-btn:hover { transform: scale(1.06); background: var(--white); color: var(--green); }

/* Footer bar */
.fullmenu__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-top: 28px;
  flex-wrap: wrap;
}

.fullmenu__social-label {
  display: block;
  font-weight: 700;
  color: var(--white);
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.fullmenu__social-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.fullmenu__social-links a {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.2s;
  text-decoration: none;
}
.fullmenu__social-links a:hover { opacity: 0.7; }

.fullmenu__newsletter { text-align: right; }
.fullmenu__newsletter-text {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.fullmenu__newsletter-btn {
  display: flex;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  padding: 13px 22px;
  font-size: 0.9rem;
  justify-content: center;
  border-radius: var(--radius);
  margin-bottom: 8px;
  width: 100%;
  text-decoration: none;
  white-space: nowrap;
}
.fullmenu__newsletter-btn:hover { background: var(--gray-light); }
.fullmenu__newsletter-disclaimer {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

@media (max-width: 600px) {
  .fullmenu { padding: 20px 24px 28px; }
  .fullmenu__topnav { display: none; }
  .fullmenu__footer { flex-direction: column; align-items: flex-start; }
  .fullmenu__newsletter { text-align: left; width: 100%; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 90vh;
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('assets/images/banner/IMG_4502 4.png') 55% 55% / 112% auto no-repeat;
  display: flex;
  flex-direction: column;
  padding-inline: 24px;
}

.hero__content {
  max-width: var(--max-width);
  margin-inline: auto;
  width: 100%;
  color: var(--white);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 64px;
}

.hero__identity { }

.hero__name {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 6px;
}

.hero__subtitle {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  opacity: 0.8;
}

.hero__main { max-width: 680px; }

.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}
.hero__headline strong { font-weight: 800; }

.hero__desc {
  font-size: 1rem;
  opacity: 0.88;
  margin-bottom: 32px;
  line-height: 1.75;
}
.hero__desc strong { font-weight: 700; }

.hero__cta { font-size: 1rem; padding: 14px 28px; font-weight: 700; }

.hero__disclaimer {
  margin-top: 16px;
  font-size: 0.75rem;
  opacity: 0.5;
  max-width: 420px;
  line-height: 1.5;
}

.hero__scroll {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 1.8rem;
  padding-bottom: 20px;
  line-height: 1;
}

/* ============================================================
   AS SEEN IN
   ============================================================ */
.as-seen-in {
  padding-block: 11px;
}

.as-seen-in__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 6px;
  padding-block: 12px;
}

/* Marquee */
.as-seen-in__track-wrap {
  overflow: hidden;
  /* Use rgba() instead of named colors — more reliable on iOS Safari */
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%);
}

.as-seen-in__track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.as-seen-in__track img {
  height: 54px;
  width: auto;
  opacity: 0.4;
  filter: grayscale(1);
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.as-seen-in__track img:hover { opacity: 0.75; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding-block: calc(var(--section-gap) / 2);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about__col { display: flex; flex-direction: column; }

.about__col--right { }

.about__heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.1;
}

.about__role {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 12px;
}

.about__text {
  color: var(--gray-text);
  line-height: 1.8;
  font-size: 0.92rem;
}

.about__img-wrap {
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
}
.about__col--right .about__img-wrap {
  margin-top: 0;
  margin-bottom: 32px;
}
.about__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.about__subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 8px;
}

.about__disclaimer {
  font-size: 0.75rem;
  color: var(--gray-text);
  margin-top: 6px;
  opacity: 0.8;
}

.about__text-block { text-align: right; }
.about__text-block .about__heading,
.about__text-block .about__role,
.about__text-block .about__text { text-align: right; }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: transparent;
  padding-block: 40px;
}

.stats .container {
  display: flex;
  justify-content: center;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  background: var(--green);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 860px;
  width: 100%;
}

.stats__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,0.3);
}
.stats__item:last-child { border-right: none; }

.stats__number {
  font-family: var(--font-stat);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

.stats__label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  max-width: 180px;
  margin-inline: auto;
  line-height: 1.4;
}

/* ============================================================
   STRATEGY
   ============================================================ */
.strategy {
  padding-block: var(--section-gap);
}

.strategy__layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px 64px;
  align-items: start;
}

/* Left column */
.strategy__heading {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  border-left: 4px solid var(--green);
  padding-left: 16px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.strategy__narrative {
  color: var(--gray-text);
  font-size: 0.93rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.strategy__chart {
  grid-column: 1 / -1;
  margin-top: 36px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Performance chart */
.perf-chart {
  background: var(--white);
  padding: 24px;
}
.perf-chart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.perf-chart__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.perf-chart__tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.perf-chart__tab {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-text);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.perf-chart__tab:hover { border-color: var(--navy); color: var(--navy); }
.perf-chart__tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.perf-chart__canvas-wrap {
  position: relative;
  height: 220px;
}
.perf-chart__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.perf-chart__totals {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.perf-chart__total {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.perf-chart__total-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-text);
}
.perf-chart__total-value {
  font-family: var(--font-stat);
  font-size: 1.1rem;
  font-weight: 700;
}
.perf-chart__total-value.pos { color: var(--green); }
.perf-chart__total-value.neg { color: #e53e3e; }

/* Strategy 4-cell grid: 60/40 */
.strategy__layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px 64px;
  align-items: start;
}

.strategy__intro { }

.strategy__pillars { grid-column: 1 / -1; }
.strategy__process { grid-column: 1 / -1; }

/* CTA box: stacked top-down */
.strategy__cta-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0;
  align-items: flex-end;
  text-align: right;
}
.strategy__cta-box > p:first-child {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
}
.strategy__cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.strategy__cta-btn {
  display: inline-flex;
  justify-content: center;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}
.strategy__cta-disclaimer {
  font-size: 0.72rem;
  color: var(--gray-text);
  text-align: right;
  line-height: 1.6;
}

.strategy__list-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 800;
  color: var(--navy);
  grid-column: 1 / -1;
  margin-top: 16px;
  margin-bottom: 12px;
}

/* Process diagram */
.strategy__process { grid-column: 1 / -1; margin-top: 16px; }

.strategy__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0 12px;
  margin-top: 0;
}

.strategy__step {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.strategy__step:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.strategy__step--last {
  border-color: var(--green);
  background: #f0fdf4;
}

.strategy__step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.strategy__step-icon--green {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.strategy__step-num {
  font-family: var(--font-stat);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 8px;
}

.strategy__step-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.strategy__step-text {
  font-size: 0.8rem;
  color: var(--gray-text);
  line-height: 1.6;
}

.strategy__step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  padding-top: 52px;
  flex-shrink: 0;
}

/* ============================================================
   PODCAST
   ============================================================ */
.podcast {
  padding-block: calc(var(--section-gap) / 2);
  background: var(--gray-light);
}

.podcast__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}

.podcast__eyebrow {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.podcast__text .section-title { margin-bottom: 16px; }

.podcast__text p {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.8;
}

.podcast__player {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.podcast__player iframe {
  display: block;
  width: 100%;
}

@media (max-width: 768px) {
  .podcast__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--navy);
  padding-block: 72px;
  color: var(--white);
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner__text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-banner__text p {
  font-size: 0.95rem;
  opacity: 0.75;
  max-width: 520px;
  line-height: 1.7;
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 14px 28px;
  font-size: 0.95rem;
}
.btn-white:hover { background: var(--gray-light); }

@media (max-width: 768px) {
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   ARTICLES — latest Substack posts
   ============================================================ */
.articles {
  padding-block: var(--section-gap);
  background: var(--gray-light);
}

.articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

/* skeleton loading state */
.articles__skeleton {
  height: 320px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.article-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.article-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-light);
}
.article-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-card__date {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.article-card__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
}

.article-card__desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.article-card__read {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-top: auto;
}

@media (max-width: 768px) {
  .articles__grid { grid-template-columns: 1fr; }
  .articles__skeleton { height: 200px; }
}

@media (max-width: 768px) {
  .btn { white-space: normal; text-align: center; }
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: var(--green);
  padding-block: 40px;
  text-align: center;
  color: var(--white);
}

.newsletter h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.newsletter p {
  opacity: 0.9;
  margin-bottom: 28px;
  font-size: 0.95rem;
  font-weight: 500;
}

.newsletter__embed-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.newsletter__embed-wrap iframe {
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.newsletter__disclaimer {
  font-size: 0.8rem;
  opacity: 0.65;
  margin-bottom: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding-block: var(--section-gap);
  background: var(--gray-light);
}

.faq .section-title { margin-bottom: 40px; }

.faq__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}


.faq__item {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.faq__item:last-child { border-bottom: none; }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.15s;
}
.faq__question:hover { background: var(--gray-light); }

.faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  position: relative;
  transition: border-color 0.2s, transform 0.3s;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.faq__icon::before { width: 10px; height: 2px; top: 7px; left: 3px; }
.faq__icon::after  { width: 2px; height: 10px; top: 3px; left: 7px; }

.faq__question[aria-expanded="true"] .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__question[aria-expanded="true"] .faq__icon { border-color: var(--green); }

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq__answer > p {
  overflow: hidden;
  padding: 0 28px;
  color: var(--gray-text);
  font-size: 0.9rem;
  line-height: 1.75;
}

.faq__item.open .faq__answer {
  grid-template-rows: 1fr;
}
.faq__item.open .faq__answer > p {
  padding-bottom: 22px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding-block: var(--section-gap);
}

.contact h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.contact__intro {
  color: var(--gray-text);
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}

.contact__form input,
.contact__form textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.contact__form input:focus,
.contact__form textarea:focus { border-color: var(--green); }

.contact__form .btn { align-self: flex-start; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #0d0d0d;
  padding-block: 0;
  color: rgba(255,255,255,0.55);
}

/* Footer top — tagline + CTA */
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.footer__tagline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.footer__cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.footer__cta-btn {
  font-size: 1rem;
  padding: 14px 32px;
  font-weight: 700;
}

.footer__cta-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-align: right;
  line-height: 1.5;
}

/* Social icons — centerpiece */
.footer__social-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding-block: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.footer__social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer__social-link svg { width: 28px; height: 28px; }
.footer__social-link:hover { color: var(--white); transform: translateY(-3px); }

/* Footer bottom row */
.footer__inner {
  padding-block: 24px;
}

.footer__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer__copy { font-size: 0.82rem; }

.footer__social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer__social a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  display: flex;
}
.footer__social a:hover { color: var(--white); }

.footer__credit {
  font-size: 0.8rem;
}
.footer__credit a {
  color: var(--green-muted);
  text-decoration: underline;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-gap: 48px; }

  /* Layout */
  .container           { padding-inline: 20px; }

  /* Nav */
  .nav-inner           { padding-inline: 16px; gap: 12px; }
  .nav-links           { display: none; }
  .lang-switcher       { color: var(--white); }
  .hamburger           { margin-left: auto; }

  /* Hero */
  .hero                { background-size: cover; background-position: 60% center; }
  .hero__content       { padding-top: calc(var(--nav-height) + 24px); padding-bottom: 40px; }

  /* About */
  .about__grid         { grid-template-columns: 1fr; gap: 48px; }
  .about__col          { min-width: 0; }
  .about__col--right   { flex-direction: column-reverse; }
  .about__text-block,
  .about__text-block .about__heading,
  .about__text-block .about__role,
  .about__text-block .about__text { text-align: left; }
  .about__col--right .about__img-wrap { margin-bottom: 0; margin-top: 24px; }
  .about__img-wrap     { display: none; }

  /* Stats card */
  .stats__grid         { grid-template-columns: 1fr; border-radius: var(--radius); }
  .stats__item         { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.3); padding: 32px 24px; }
  .stats__item:last-child { border-bottom: none; }

  /* Strategy */
  .strategy__layout    { grid-template-columns: 1fr; gap: 48px; }
  .strategy__cta-box   { flex-direction: column; align-items: flex-start; text-align: left; }
  .strategy__cta-box > p:first-child { width: 100%; }
  .strategy__cta-actions { align-items: stretch; width: 100%; }
  .strategy__cta-btn   { width: 100%; justify-content: center; white-space: normal; }
  .strategy__cta-disclaimer { text-align: left; }

  /* Process steps — 2×2 on mobile */
  .strategy__steps {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .strategy__step-arrow { display: none; }

  /* CTA Banner */
  .cta-banner__inner   { flex-direction: column; align-items: flex-start; }
  .btn-white           { width: 100%; justify-content: center; }

  /* Podcast */
  .podcast__inner      { grid-template-columns: 1fr; gap: 32px; }

  /* FAQ */
  .faq__list           { grid-template-columns: 1fr; }
  .faq__item:nth-child(odd) { border-right: none; }

  /* Newsletter */
  .newsletter .container { padding-inline: 24px; }

  /* Footer */
  .footer__top         { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer__inner       { flex-direction: column; text-align: center; }
  .footer__social      { justify-content: center; }
  .footer__cta-btn     { padding: 10px 20px; font-size: 0.85rem; width: auto; }
  .footer__cta-group   { align-items: flex-start; }
  .footer__cta-disclaimer { text-align: left; }
  .footer__social-center { gap: 20px; }
  .footer__social-link { font-size: 0.65rem; }

  /* Full-page menu */
  .fullmenu            { padding: 20px 24px 28px; }
  .fullmenu__topnav    { display: none; }
  .fullmenu__item      { gap: 12px; }
  .fullmenu__item-label { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .fullmenu__arrow-btn { padding: 7px 24px; flex-shrink: 0; }
  .fullmenu__footer    { flex-direction: column; align-items: flex-start; gap: 24px; }
  .fullmenu__newsletter { text-align: left; width: 100%; }
}

/* ============================================================
   NEWSLETTER MODAL
   ============================================================ */
.nl-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nl-modal.open {
  opacity: 1;
  pointer-events: all;
}
.nl-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
.nl-modal__box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.nl-modal.open .nl-modal__box {
  transform: translateY(0);
}
.nl-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-text);
  padding: 4px;
  line-height: 1;
  z-index: 1;
}
.nl-modal__close:hover { color: var(--navy); }
.nl-modal__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.nl-modal__title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.nl-modal__text {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.65;
  margin-bottom: 24px;
}
.nl-modal__cta {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  padding: 14px 24px;
}
.nl-modal__disclaimer {
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--gray-text);
  opacity: 0.7;
}
