/* ==========================================================================
   ntoboa marketing site — shared styles
   Brand tokens mirror the app (frontend/src/assets/styles/tokens.css) so the
   marketing site and the product feel like one family.
   ========================================================================== */

:root {
  --color-forest-green: #1b5e3a;
  --color-forest-green-dark: #123f27;
  --color-forest-green-light: #2d7a4f;
  --color-gold: #d4a017;
  --color-gold-light: #f0c85a;
  --color-kente-red: #a5231f;
  --color-kente-black: #1a1a1a;

  --color-bg: #faf8f3;
  --color-surface: #ffffff;
  --color-text: #1a1a1a;
  --color-text-muted: #6b6459;
  --color-border: #e6e0d4;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(26, 26, 26, 0.08);
  --shadow-md: 0 4px 16px rgba(26, 26, 26, 0.10);
  --shadow-lg: 0 16px 48px rgba(26, 26, 26, 0.16);

  --max-width: 1160px;
  --nav-height: 76px;

  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.15;
  font-weight: 700;
}

p {
  margin: 0;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.wrap {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.muted {
  color: var(--color-text-muted);
}

/* ---------- Kente strip ---------- */
.kente-strip {
  height: 6px;
  width: 100%;
  background: repeating-linear-gradient(
    45deg,
    var(--color-forest-green) 0px,
    var(--color-forest-green) 10px,
    var(--color-gold) 10px,
    var(--color-gold) 20px,
    var(--color-kente-red) 20px,
    var(--color-kente-red) 30px,
    var(--color-kente-black) 30px,
    var(--color-kente-black) 40px
  );
  background-size: 200% 100%;
  animation: strip-shift 12s linear infinite;
}

@keyframes strip-shift {
  from { background-position: 0% 0; }
  to { background-position: 100% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .kente-strip { animation: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background: var(--color-forest-green);
  color: white;
  box-shadow: 0 8px 24px rgba(27, 94, 58, 0.35);
}

.btn-primary:hover {
  background: var(--color-forest-green-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(27, 94, 58, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-forest-green-dark);
  border-color: var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-forest-green);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(250, 248, 243, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.site-nav.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-forest-green-dark);
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: repeating-linear-gradient(
    45deg,
    var(--color-forest-green) 0px,
    var(--color-forest-green) 6px,
    var(--color-gold) 6px,
    var(--color-gold) 12px,
    var(--color-kente-red) 12px,
    var(--color-kente-red) 18px,
    var(--color-kente-black) 18px,
    var(--color-kente-black) 24px
  );
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-text);
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-forest-green);
  transition: width 200ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--color-forest-green-dark);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1.5rem 1.5rem;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 0.85rem 0;
  font-weight: 600;
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu a:last-of-type {
  border-bottom: none;
}

@media (max-width: 860px) {
  .nav-links,
  .nav-cta .btn-secondary {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  z-index: 0;
  animation: float 16s ease-in-out infinite;
}

.hero-blob.b1 {
  width: 420px;
  height: 420px;
  background: var(--color-gold-light);
  top: -140px;
  right: -100px;
  animation-delay: 0s;
}

.hero-blob.b2 {
  width: 340px;
  height: 340px;
  background: var(--color-forest-green-light);
  bottom: -160px;
  left: -120px;
  animation-delay: -6s;
}

.hero-blob.b3 {
  width: 220px;
  height: 220px;
  background: var(--color-kente-red);
  top: 30%;
  right: 8%;
  opacity: 0.14;
  animation-delay: -3s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, -30px) scale(1.06); }
  66% { transform: translate(-20px, 18px) scale(0.96); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-blob { animation: none; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-forest-green-dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.hero h1 .accent {
  color: var(--color-forest-green);
  position: relative;
  white-space: nowrap;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 46ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-forest-green);
  flex-shrink: 0;
}

/* ---------- Phone mockup ---------- */
.phone-mock {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.phone-frame {
  position: relative;
  background: var(--color-kente-black);
  border-radius: 42px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
  transition: transform 400ms ease;
}

.phone-frame:hover {
  transform: rotate(0deg);
}

.phone-screen {
  background: var(--color-bg);
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
}

.phone-status {
  height: 6px;
}

.phone-content {
  padding: 1.1rem 1rem;
}

.mock-greeting {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.mock-balance-card {
  background: linear-gradient(135deg, var(--color-forest-green), var(--color-forest-green-dark));
  border-radius: 16px;
  padding: 1rem;
  color: white;
  margin-bottom: 0.9rem;
}

.mock-balance-label {
  font-size: 0.6rem;
  opacity: 0.8;
  margin-bottom: 0.2rem;
}

.mock-balance-amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.mock-balance-amount .counting {
  display: inline-block;
}

.mock-row {
  display: flex;
  justify-content: space-between;
  background: var(--color-surface);
  border-radius: 12px;
  padding: 0.6rem 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
  box-shadow: var(--shadow-sm);
}

.mock-row strong {
  font-size: 0.75rem;
}

.mock-row .pos {
  color: var(--color-forest-green);
  font-weight: 700;
}

.phone-float-badge {
  position: absolute;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 0.6rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  animation: bob 4s ease-in-out infinite;
}

.phone-float-badge.f1 {
  top: 8%;
  right: -8%;
  animation-delay: -1s;
}

.phone-float-badge.f2 {
  bottom: 14%;
  left: -14%;
  animation-delay: -2.5s;
}

.phone-float-badge .icon-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.phone-float-badge .icon-circle.green { background: var(--color-forest-green); }
.phone-float-badge .icon-circle.gold { background: var(--color-gold); }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .phone-float-badge { animation: none; }
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .phone-mock {
    order: -1;
    max-width: 260px;
  }
  .phone-float-badge { display: none; }
  .mock-balance-amount {
    font-size: 1.3rem;
    white-space: nowrap;
  }
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.2,.7,.3,1), transform 700ms cubic-bezier(.2,.7,.3,1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }
.reveal-delay-4 { transition-delay: 360ms; }
.reveal-delay-5 { transition-delay: 450ms; }
.reveal-delay-6 { transition-delay: 540ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* ---------- Section shell ---------- */
.section {
  padding: 5.5rem 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 3.25rem;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-forest-green);
  background: rgba(27, 94, 58, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  margin-bottom: 0.9rem;
}

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

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: white;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

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

.bg-green { background: var(--color-forest-green); }
.bg-gold { background: var(--color-gold); }
.bg-red { background: var(--color-kente-red); }

@media (max-width: 860px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ---------- Stats strip ---------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--color-forest-green-dark);
  font-weight: 700;
}

.stat-item .stat-label {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.35rem;
}

@media (max-width: 700px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Rotation ring (susu concept visual) ---------- */
.rotation-visual {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
}

.rotation-ring {
  position: absolute;
  inset: 0;
  border: 2px dashed var(--color-border);
  border-radius: 50%;
}

.rotation-member {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 3px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transform: translate(-50%, -50%);
  transition: border-color 400ms ease, color 400ms ease, transform 400ms ease;
}

.rotation-member.active {
  border-color: var(--color-gold);
  color: var(--color-forest-green-dark);
  transform: translate(-50%, -50%) scale(1.18);
  box-shadow: 0 0 0 6px rgba(212, 160, 23, 0.18), var(--shadow-md);
}

.rotation-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 130px;
}

.rotation-center .amount {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-forest-green-dark);
  font-weight: 700;
}

.rotation-center .label {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* ---------- Steps / timeline ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  position: relative;
}

.step-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-forest-green);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

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

@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}

.steps-detailed {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}

.step-detailed {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding-bottom: 3rem;
  position: relative;
}

.step-detailed:last-child {
  padding-bottom: 0;
}

.step-detailed::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 60px;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.step-detailed:last-child::before {
  display: none;
}

.step-detailed-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 2px solid var(--color-forest-green);
  color: var(--color-forest-green-dark);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  background: var(--color-bg);
}

.step-detailed-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.step-detailed-body p {
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.step-detailed-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(27, 94, 58, 0.08);
  color: var(--color-forest-green-dark);
}

.tag.gold { background: rgba(212, 160, 23, 0.15); color: #8a6a10; }
.tag.red { background: rgba(165, 35, 31, 0.1); color: var(--color-kente-red); }

/* ---------- Story / values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-forest-green);
  box-shadow: var(--shadow-sm);
}

.value-icon svg { width: 28px; height: 28px; }

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

@media (max-width: 860px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- FAQ accordion ---------- */
.faq-search {
  max-width: 480px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.faq-search input {
  width: 100%;
  padding: 0.9rem 1.2rem 0.9rem 2.8rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-family: var(--font-body);
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.faq-search input:focus {
  outline: none;
  border-color: var(--color-forest-green);
  box-shadow: 0 0 0 4px rgba(27, 94, 58, 0.12);
}

.faq-search svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--color-text-muted);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 200ms ease;
}

.faq-item.open {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--color-text);
}

.faq-question .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 250ms ease, background 200ms ease;
}

.faq-question .plus::before,
.faq-question .plus::after {
  content: '';
  position: absolute;
  background: var(--color-forest-green-dark);
  border-radius: 2px;
}

.faq-question .plus::before { width: 12px; height: 2px; }
.faq-question .plus::after { width: 2px; height: 12px; }

.faq-item.open .plus {
  background: var(--color-forest-green);
  transform: rotate(135deg);
}

.faq-item.open .plus::before,
.faq-item.open .plus::after {
  background: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.faq-answer-inner {
  padding: 0 1.4rem 1.3rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-empty {
  text-align: center;
  color: var(--color-text-muted);
  padding: 2rem;
  display: none;
}

.faq-empty.show { display: block; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.form-row {
  margin-bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text);
}

.form-row input,
.form-row textarea,
.form-row select {
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--color-bg);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--color-forest-green);
  box-shadow: 0 0 0 4px rgba(27, 94, 58, 0.1);
}

.form-row textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-forest-green);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-info-icon svg { width: 20px; height: 20px; }

.contact-info-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.contact-info-item p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

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

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  text-align: center;
}

.team-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
}

.team-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.team-card p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

@media (max-width: 860px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-forest-green), var(--color-forest-green-dark));
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(212, 160, 23, 0.25), transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(165, 35, 31, 0.25), transparent 45%);
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  margin-bottom: 0.85rem;
}

.cta-banner p {
  opacity: 0.9;
  max-width: 480px;
  margin: 0 auto 1.75rem;
}

.cta-banner .btn-primary {
  background: white;
  color: var(--color-forest-green-dark);
  box-shadow: var(--shadow-lg);
}

.cta-banner .btn-primary:hover {
  background: var(--color-bg);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  max-width: 32ch;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--color-text);
  transition: color 160ms ease;
}

.footer-col a:hover {
  color: var(--color-forest-green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease, transform 160ms ease;
}

.footer-socials a:hover {
  background: var(--color-forest-green);
  color: white;
  transform: translateY(-2px);
}

.footer-socials svg { width: 16px; height: 16px; }

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

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 3.5rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero .eyebrow { margin-bottom: 1rem; }

.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 56ch;
  margin: 0 auto;
}

/* ---------- Utilities ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.center { text-align: center; }
.mt-lg { margin-top: 3rem; }
