/* ============================================================
   AFRICAN MARKET GROUP — Global Stylesheet
   Palette: deep green (growth/land), gold (wealth), cream (warmth)
   ============================================================ */

:root {
  /* Colors */
  --green-950: #04170f;   /* was #062a1c — darker */
  --green-900: #072a1b;   /* was #0a3523 */
  --green-800: #0b3a25;   /* was #0e452c */
  --green-700: #124d30;   /* was #155c3a */
  --green-600: #186039;   /* was #1c7448 */
  --green-100: #d6e6da;   /* slightly muted */
  --gold: #d9a406;        /* was #eab308 — a touch deeper */
  --gold-600: #b5790a;    /* was #ca8a04 */
  --gold-100: #f5e9c5;    /* was #fef3c7 */
  --cream: #efe8d8;       /* was #faf6ee — darker page background */
  --paper: #f7f2e6;       /* was #fffdf8 — darker card background */
  --ink: #14201a;         /* was #17251d — slightly deeper text */
  --muted: #566258;       /* was #5f6f64 */
  --line: #ddd4bd;        /* was #e9e2d3 — darker hairlines */
  --white: #ffffff;

  /* Type */
  --font-head: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Effects */
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(10, 53, 35, 0.08);
  --shadow: 0 12px 32px rgba(10, 53, 35, 0.12);
  --shadow-lg: 0 24px 60px rgba(10, 53, 35, 0.18);
  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--green-700);
  text-decoration: none;
  transition: color var(--transition);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--green-950);
  font-weight: 700;
}

::selection {
  background: var(--gold);
  color: var(--green-950);
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.section {
  padding: 90px 0;
}

.section--tint {
  background: var(--paper);
}

.section--dark {
  background: var(--green-950);
}

/* ---------- Section headers ---------- */
.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head--left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  background: var(--gold-100);
  border: 1px solid #f5dfa0;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.eyebrow--dark {
  background: rgba(234, 179, 8, 0.14);
  border-color: rgba(234, 179, 8, 0.35);
  color: var(--gold);
}

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin-bottom: 14px;
}

.section-title .accent {
  color: var(--green-600);
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.section--dark .section-title {
  color: var(--white);
}

.section--dark .section-lead {
  color: #b9c9c0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-gold {
  background: var(--gold);
  color: var(--green-950);
}

.btn-gold:hover {
  background: #facc15;
  box-shadow: 0 12px 28px rgba(234, 179, 8, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--green-700);
  color: var(--green-700);
  background: transparent;
}

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

.btn-light {
  background: var(--white);
  color: var(--green-900);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: transparent;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 1.02rem;
}

/* ---------- Pill / badge ---------- */
.pill {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(234, 179, 8, 0.16);
  border: 1px solid rgba(234, 179, 8, 0.4);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 999px;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(21, 92, 58, 0.35);
}

.logo-mark svg {
  width: 26px;
  height: 26px;
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.15;
  color: var(--green-950);
  display: flex;
  flex-direction: column;
}

.brand-name small {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links > a,
.drop-toggle {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 10px;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all var(--transition);
}

.nav-links > a:hover,
.drop-toggle:hover,
.nav-links > a.active {
  color: var(--green-700);
  background: var(--green-100);
}

.drop-toggle .caret {
  width: 10px;
  height: 10px;
  transition: transform var(--transition);
}

.dropdown.open .caret {
  transform: rotate(180deg);
}

.nav-cta {
  margin-left: 10px;
  padding: 11px 24px !important;
}

/* Dropdown menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 200;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.94rem;
}

.dropdown-menu a:hover {
  background: var(--green-100);
  color: var(--green-800);
  padding-left: 18px;
}

.dropdown-menu .menu-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

/* Language dropdown */
.lang-menu .dropdown-menu {
  min-width: 180px;
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-item .flag {
  font-size: 1.05rem;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--green-900);
  transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================================
   HERO SLIDER (Home)
   ============================================================ */
.hero {
  position: relative;
  background: var(--green-950);
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: min(88vh, 820px);
  min-height: 600px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    100deg,
    rgba(6, 42, 28, 0.92) 0%,
    rgba(6, 42, 28, 0.68) 45%,
    rgba(6, 42, 28, 0.25) 100%
  );
}
.slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}
.slide-content .container {
  padding: 120px 0 80px;
}

.slide-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(24px);
}

.slide.active .slide-kicker {
  animation: rise 0.7s 0.15s forwards;
}

.slide-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--white);
  max-width: 15ch;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(24px);
}

.slide.active .slide-title {
  animation: rise 0.7s 0.3s forwards;
}

.slide-title .gold {
  color: var(--gold);
}

.slide-sub {
  font-size: 1.12rem;
  color: #d8e4dd;
  max-width: 52ch;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(24px);
}

.slide.active .slide-sub {
  animation: rise 0.7s 0.45s forwards;
}

.hero-quote {
  position: relative;
  max-width: 60ch;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.5;
  color: var(--white);
  border-left: 4px solid var(--gold);
  padding: 10px 0 10px 24px;
  margin: 18px 0 22px;
  opacity: 0;
  transform: translateY(24px);
}

.slide.active .hero-quote {
  animation: rise 0.7s 0.45s forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  transform: translateY(24px);
}

.slide.active .hero-ctas {
  animation: rise 0.7s 0.6s forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero arrows & dots */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
  transition: all var(--transition);
}

.hero-arrow:hover {
  background: var(--gold);
  color: var(--green-950);
  border-color: var(--gold);
}

.hero-arrow svg {
  width: 22px;
  height: 22px;
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--gold);
  border-color: var(--gold);
  width: 34px;
  border-radius: 999px;
}

.hero-scroll {
  position: absolute;
  bottom: 26px;
  right: 34px;
  z-index: 5;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* ============================================================
   PLATFORM CARDS (Home)
   ============================================================ */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.platform-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.platform-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green-600), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.platform-card:hover::before {
  transform: scaleX(1);
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.platform-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-100), #eef7ef);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  transition: all var(--transition);
}

.platform-card:hover .platform-icon {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
}

.platform-icon svg {
  width: 30px;
  height: 30px;
  color: var(--green-700);
  transition: color var(--transition);
}

.platform-card:hover .platform-icon svg {
  color: var(--gold);
}

.platform-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.platform-card p {
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 22px;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-700);
}

.card-cta svg {
  width: 17px;
  height: 17px;
  transition: transform var(--transition);
}

.card-cta:hover svg {
  transform: translateX(5px);
}

/* ============================================================
   NEWS SLIDER (Home)
   ============================================================ */
.news-section {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  overflow: hidden;
}

.news-topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}

.news-topbar .section-head {
  margin: 0;
  text-align: left;
}

.news-nav {
  display: flex;
  gap: 12px;
}

.news-nav button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--green-700);
  background: transparent;
  color: var(--green-700);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all var(--transition);
}

.news-nav button:hover {
  background: var(--green-700);
  color: var(--white);
}

.news-nav svg {
  width: 20px;
  height: 20px;
}

.news-viewport {
  overflow: hidden;
  margin: -12px;
  padding: 12px;
}

.news-track {
  display: flex;
  gap: 26px;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card {
  flex: 0 0 calc((100% - 52px) / 3);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.news-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-img img {
  transform: scale(1.08);
}

.news-date {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--green-950);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.news-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-body h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.news-body p {
  color: var(--muted);
  font-size: 0.93rem;
  flex: 1;
  margin-bottom: 18px;
}

.news-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-700);
  align-self: flex-start;
}

.news-more svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.news-more:hover svg {
  transform: translateX(5px);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--green-900), var(--green-700));
  border-radius: 24px;
  padding: 64px 56px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.25), transparent 65%);
  top: -180px;
  right: -120px;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}

.cta-banner p {
  color: #d5e2db;
  max-width: 52ch;
}

.cta-banner .btn {
  position: relative;
  z-index: 2;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-950);
  color: #b9c9c0;
  padding: 72px 0 0;
  margin-top: 100px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 56px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand .logo-mark {
  background: linear-gradient(135deg, var(--gold), var(--gold-600));
}

.footer-brand .logo-mark svg {
  color: var(--green-950);
}

.footer-brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.2;
}

.footer-brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-col p {
  font-size: 0.94rem;
  margin-bottom: 16px;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.93rem;
}

.footer-address li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-address svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex: none;
  margin-top: 3px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #b9c9c0;
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}

.footer-links a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.newsletter p {
  font-size: 0.93rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin: 16px 0 22px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input::placeholder {
  color: #8ba295;
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.newsletter-form button {
  flex: none;
  padding: 12px 22px;
}

.newsletter-note {
  font-size: 0.8rem;
  color: #8ba295;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #d8e4dd;
  display: grid;
  place-items: center;
  transition: all var(--transition);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-950);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #8ba295;
}

.footer-bottom .legal a {
  color: #8ba295;
}

.footer-bottom .legal a:hover {
  color: var(--gold);
}

.footer-bottom .legal {
  display: flex;
  gap: 20px;
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  background: linear-gradient(120deg, var(--green-950), var(--green-800));
  color: var(--white);
  padding: 84px 0 76px;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.18), transparent 65%);
  top: -200px;
  right: -140px;
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 116, 72, 0.4), transparent 65%);
  bottom: -180px;
  left: -100px;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: #9db3a8;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  max-width: 18ch;
  margin-bottom: 16px;
}

.page-hero h1 .gold {
  color: var(--gold);
}

.page-hero p {
  color: #d5e2db;
  max-width: 60ch;
  font-size: 1.06rem;
}

/* ============================================================
   MARKET PLATFORMS PAGE
   ============================================================ */
.jump-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 76px;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}

.jump-bar .container {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow-x: auto;
  padding-top: 14px;
  padding-bottom: 14px;
  scrollbar-width: thin;
}

.jump-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-600);
  flex: none;
}

.jump-chip {
  flex: none;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--green-800);
  background: var(--green-100);
  border: 1px solid transparent;
  padding: 9px 18px;
  border-radius: 999px;
  transition: all var(--transition);
}

.jump-chip:hover,
.jump-chip.active {
  background: var(--green-700);
  color: var(--white);
}

.platform-section {
  padding: 88px 0;
  scroll-margin-top: 150px;
}

.platform-section--alt {
  background: var(--paper);
}

.platform-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.platform-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 380px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
}

.platform-visual--geza {
  background: linear-gradient(135deg, #b45309, #78350f);
}

.platform-visual--caru {
  background: linear-gradient(135deg,#001a66, #ff4500);
}

.platform-visual--carbon {
  background: linear-gradient(135deg, #15803d, #14532d);
}

.platform-visual--podcast {
  background: linear-gradient(135deg, #18181b, #d4af37);
}

.platform-visual--academy {
  background: linear-gradient(135deg, #818cf8, #7c3aed);
}

.platform-visual--ysme {
  background: linear-gradient(135deg, #e11d48, #9f1239);
}

.platform-visual .big-icon {
  width: 120px;
  height: 120px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  color: var(--white);
}

.platform-visual .big-icon svg {
  width: 60px;
  height: 60px;
}

.platform-num {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 4.2rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.22);
}

.platform-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 16px;
  border-radius: 999px;
}

.platform-body .eyebrow {
  margin-bottom: 12px;
}

.platform-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 18px;
}

.platform-body > p {
  color: var(--muted);
  margin-bottom: 22px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.93rem;
  color: var(--ink);
}

.feature-list svg {
  width: 18px;
  height: 18px;
  color: var(--green-600);
  flex: none;
  margin-top: 3px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.motto {
  text-align: center;
  padding: 96px 0;
  background: linear-gradient(120deg, var(--green-950), var(--green-800));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.motto::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(234, 179, 8, 0.12) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.6;
}

.motto .container {
  position: relative;
  z-index: 2;
}

.motto .quote-mark {
  font-family: var(--font-head);
  font-size: 4.5rem;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.motto h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  max-width: 22ch;
  margin: 0 auto 20px;
}

.motto h2 .gold {
  color: var(--gold);
}

.motto p {
  color: #d5e2db;
  max-width: 62ch;
  margin: 0 auto;
}

.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.vmv-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.vmv-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--green-600));
}

.vmv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.vmv-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-100), #eef7ef);
  display: grid;
  place-items: center;
}

.vmv-icon svg {
  width: 32px;
  height: 32px;
  color: var(--green-700);
}

.vmv-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.vmv-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.vmv-card .vmv-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 8px;
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.what-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: all var(--transition);
}

.what-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.what-card .what-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2rem;
  color: var(--green-100);
  margin-bottom: 8px;
  display: block;
}

.what-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.what-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-split img {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.about-split h2 {
  margin-bottom: 16px;
}

.about-split p {
  color: var(--muted);
  margin-bottom: 14px;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}

.about-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 500;
}

.about-points svg {
  width: 20px;
  height: 20px;
  color: var(--gold-600);
  flex: none;
  margin-top: 3px;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 44px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--green-600), var(--gold));
}

.timeline-item {
  position: relative;
  padding: 0 0 44px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 3px var(--green-600);
}

.timeline-date {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold-600);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.timeline-item h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: all var(--transition);
}

.stat:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 179, 8, 0.5);
}

.stat-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--gold);
  line-height: 1;
}

.stat-num .suffix {
  font-size: 0.6em;
  color: var(--gold);
}

.stat-label {
  margin-top: 10px;
  font-size: 0.86rem;
  color: #b9c9c0;
}

/* ============================================================
   PARTNER PAGE
   ============================================================ */
.partner-hero {
  background: linear-gradient(120deg, var(--green-950), var(--green-700));
  color: var(--white);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.partner-hero::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.2), transparent 65%);
  top: -160px;
  right: -100px;
}

.partner-hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.partner-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  margin-bottom: 18px;
}

.partner-hero h1 .gold {
  color: var(--gold);
}

.partner-hero p {
  color: #d5e2db;
  margin-bottom: 26px;
  max-width: 54ch;
}

.partner-hero .hero-ctas {
  opacity: 1;
  transform: none;
}

.partner-hero img {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.value-strip {
  background: var(--green-950);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.value-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.value-item {
  text-align: center;
}

.value-item .v-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.value-item .v-label {
  color: #b9c9c0;
  font-size: 0.9rem;
}

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

.who-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all var(--transition);
}

.who-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.who-icon {
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-100), #eef7ef);
  display: grid;
  place-items: center;
}

.who-icon svg {
  width: 26px;
  height: 26px;
  color: var(--green-700);
}

.who-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.who-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.way-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: all var(--transition);
  overflow: hidden;
}

.way-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.way-card .way-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
  display: block;
}

.way-card h3 {
  margin-bottom: 10px;
}

.way-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px 30px;
  text-align: center;
  transition: all var(--transition);
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(21, 92, 58, 0.3);
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  font-size: 0.9rem;
}

.quote-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 40px 44px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.quote-card blockquote {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--green-950);
  margin-bottom: 18px;
}

.quote-card figcaption {
  color: var(--muted);
  font-size: 0.92rem;
}

.quote-card figcaption strong {
  color: var(--green-800);
}

/* ============================================================
   JOIN US PAGE
   ============================================================ */
.join-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.join-benefits h2 {
  margin-bottom: 20px;
}

.join-benefits > p {
  color: var(--muted);
  margin-bottom: 28px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.benefits-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--green-100), #eef7ef);
  display: grid;
  place-items: center;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
  color: var(--green-700);
}

.benefits-list h3 {
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.benefits-list p {
  color: var(--muted);
  font-size: 0.92rem;
}

.join-info {
  background: var(--green-950);
  color: #d5e2db;
  border-radius: var(--radius);
  padding: 30px 28px;
}

.join-info h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.join-info li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.join-info svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex: none;
  margin-top: 3px;
}

/* Form */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 42px;
  box-shadow: var(--shadow);
}

.form-card h2 {
  margin-bottom: 8px;
}

.form-card .form-intro {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--green-950);
  margin-bottom: 8px;
}

.field label .req {
  color: #b91c1c;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: all var(--transition);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green-600);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(28, 116, 72, 0.12);
}

.field input.error,
.field select.error,
.field textarea.error {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.field .error-msg {
  display: none;
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 6px;
}

.field.invalid .error-msg {
  display: block;
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}

.form-success.show {
  display: block;
}

.form-success .success-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  color: var(--gold);
  display: grid;
  place-items: center;
}

.form-success .success-icon svg {
  width: 36px;
  height: 36px;
}

.form-success h3 {
  margin-bottom: 10px;
}

.form-success p {
  color: var(--muted);
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 14px;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s 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;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-card {
    flex: 0 0 calc((100% - 26px) / 2);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .what-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .who-grid,
  .ways-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .partner-hero .container {
    grid-template-columns: 1fr;
  }

  .partner-hero img {
    height: 300px;
  }

  .join-grid {
    grid-template-columns: 1fr;
  }

  .vmv-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }

  .hero-slider {
    min-height: 560px;
  }

  .value-strip .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    right: 0;
    width: min(330px, 84vw);
    height: calc(100vh - 76px);
    background: var(--paper);
    border-left: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 22px 18px;
    transform: translateX(105%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    z-index: 150;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links > a,
  .drop-toggle {
    padding: 13px 16px;
    font-size: 1rem;
  }

  .dropdown-menu,
  .dropdown:hover .dropdown-menu,
  .dropdown.open .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--green-100);
    margin: 4px 0 6px 14px;
    padding: 4px 0 4px 8px;
    min-width: 0;
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-cta {
    margin: 14px 0 0;
    text-align: center;
  }

  .hero-arrow {
    display: none;
  }

  .hero-slider {
    height: auto;
    min-height: 640px;
  }

  .platforms-grid {
    grid-template-columns: 1fr;
  }

  .news-card {
    flex: 0 0 100%;
  }

  .news-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner {
    padding: 44px 30px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 32px 24px;
  }

  .jump-bar {
    top: 76px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 560px) {
  .who-grid,
  .ways-grid,
  .steps,
  .what-grid {
    grid-template-columns: 1fr;
  }

  .value-strip .container {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .platform-visual {
    min-height: 300px;
  }

  .quote-card {
    padding: 28px 24px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}








.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-photo {
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: #062a1c;
}

.team-role {
  font-size: 0.9rem;
  color: #6b7280;
}