/* ============================================================
   JEN E PROFESSIONAL ACCOUNTANTS
   2026 Redesign — Bento / Liquid Glass / Editorial
   Palette: Deep Purple · Antique Gold · White
   ============================================================ */

/* ── Font Setup ──────────────────────────────────────────────
   Place Champagne_Limousines.woff2 + .woff in /fonts/
   Download free at: https://www.dafont.com/champagne-limousines.font
   ------------------------------------------------------------ */
@font-face {
  font-family: 'Champagne';
  src: url('../fonts/Champagne.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Champagne';
  src: url('../fonts/Champagne-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Champagne';
  src: url('../fonts/Champagne-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Champagne';
  src: url('../fonts/Champagne-Bold-Italic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  /* Purple */
  --p0: #1a001f;
  --p1: #26002d;
  --p2: #2e0036;
  --p3: #3a0042;
  --p4: #4b0056;
  --p5: #5c0069;
  --p6: #6c1a7a;
  --p7: #8e3d9a;

  /* Gold */
  --g1: #C4A35A;
  --g2: #DFC28A;
  --g3: #F0E4C4;
  --g0: #8A6830;

  /* Glass */
  --glass-bg:     rgba(255,255,255,0.045);
  --glass-border: rgba(255,255,255,0.09);
  --glass-blur:   blur(22px) saturate(1.3);

  /* Text */
  --t-hi:   rgba(255,255,255,0.96);
  --t-mid:  rgba(255,255,255,0.68);
  --t-lo:   rgba(255,255,255,0.42);
  --t-dark: #1A0F2E;
  --t-body: #3A2855;

  /* Font */
  --font: 'Champagne', 'Cormorant Garamond', Georgia, serif;

  /* Layout */
  --max: 1180px;
  --pad: clamp(24px, 5vw, 56px);
  --sec: clamp(100px, 12vw, 160px);

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; }
body {
  font-family: var(--font);
  background: var(--p1);
  color: var(--t-hi);
  line-height: 1.8;
  overflow-x: hidden;
}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ============================================================
   GRAIN TEXTURE
   ============================================================ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ============================================================
   SHARED ELEMENTS
   ============================================================ */
.label {
  display: block;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--g1);
  margin-bottom: 12px;
}

.label.light { color: var(--g2); }

.gold-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--g1), transparent);
  margin: 24px 0;
}

.gold-line.short { width: 32px; }

.section-intro {
  margin-bottom: 80px;
}

.section-intro h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--g1) 0%, var(--g0) 100%);
  color: var(--p0);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 30px;
  transition: all 0.35s var(--ease);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--g2) 0%, var(--g1) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196,163,90,0.3);
  color: var(--p0);
}

.btn-primary.full,
.btn-primary-dark.full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--g2);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 30px;
  border: 1px solid rgba(196,163,90,0.45);
  transition: all 0.35s var(--ease);
}

.btn-ghost:hover {
  background: rgba(196,163,90,0.1);
  border-color: var(--g1);
  color: var(--t-hi);
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress-bar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--g0) 0%, var(--g1) 55%, var(--g2) 100%);
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 9999;
  pointer-events: none;
  will-change: transform;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-56px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: none; }

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(56px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: none; }

/* Scale up from slightly smaller */
.reveal-scale {
  opacity: 0;
  transform: scale(0.88) translateY(20px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal-scale.visible { opacity: 1; transform: none; }

/* Stagger for grids */
.audience-grid .reveal-scale:nth-child(1),
.teaser-grid   .reveal-scale:nth-child(1) { transition-delay: 0s; }
.audience-grid .reveal-scale:nth-child(2),
.teaser-grid   .reveal-scale:nth-child(2) { transition-delay: 0.12s; }
.audience-grid .reveal-scale:nth-child(3),
.teaser-grid   .reveal-scale:nth-child(3) { transition-delay: 0.24s; }
.audience-grid .reveal-scale:nth-child(4),
.teaser-grid   .reveal-scale:nth-child(4) { transition-delay: 0.36s; }

/* ============================================================
   GOLD LINE DRAW ANIMATION
   ============================================================ */
@keyframes drawLine {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.gold-line.line-draw,
.gold-line-dark.line-draw {
  transform: scaleX(0);
  transform-origin: left center;
}
.gold-line.line-draw.line-visible,
.gold-line-dark.line-draw.line-visible {
  animation: drawLine 1s var(--ease) forwards;
}

/* ============================================================
   NAVIGATION — Floating pill
   ============================================================ */
#navbar {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.nav-pill {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 10px 20px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

#navbar.scrolled .nav-pill {
  background: rgba(14,6,25,0.85);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  border-color: rgba(196,163,90,0.15);
}

.logo {
  display: flex;
  align-items: center;
  margin-right: 8px;
  flex-shrink: 0;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

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

.nav-links a {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--t-mid);
  padding: 6px 14px;
  border-radius: 100px;
  transition: all 0.25s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(196,163,90,0.1);
  color: var(--g2);
}

/* Game nav link — subtle gold pill */
.nav-links a.nav-game {
  color: var(--g1);
  border: 1px solid rgba(196,163,90,0.28);
  padding: 5px 12px;
  gap: 6px;
  display: inline-flex;
  align-items: center;
}
.nav-links a.nav-game:hover {
  background: rgba(196,163,90,0.14);
  border-color: rgba(196,163,90,0.55);
  color: var(--g2);
}
.nav-links a.nav-game i { font-size: 0.8rem; }

.nav-cta {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p0);
  background: linear-gradient(135deg, var(--g1), var(--g0));
  padding: 8px 18px;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  margin-left: 4px;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--g2), var(--g1));
  box-shadow: 0 4px 16px rgba(196,163,90,0.35);
  color: var(--p0);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: 4px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--g1);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

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

/* Mobile fullscreen menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(8,2,15,0.97);
  backdrop-filter: blur(16px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

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

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-menu a {
  font-family: var(--font);
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 400;
  color: var(--t-mid);
  letter-spacing: 0.06em;
  padding: 16px 24px;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color 0.3s var(--ease);
}

.mobile-menu a:hover { color: var(--g1); }
.mobile-menu a[href="game.html"] {
  color: var(--g1);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

/* ============================================================
   HERO
   ============================================================ */
.bokeh-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

#coins-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--p0);
  overflow: hidden;
}

/* Gradient blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: drift 18s ease-in-out infinite alternate;
}

.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(61,33,105,0.55), transparent 70%);
  top: -100px; left: -120px;
  animation-duration: 20s;
}

.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,163,90,0.12), transparent 70%);
  bottom: -80px; right: -60px;
  animation-duration: 24s;
  animation-delay: -8s;
}

.blob-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(43,21,80,0.6), transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%,-50%);
  animation-duration: 16s;
  animation-delay: -4s;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -40px) scale(1.1); }
}


.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(to bottom, transparent 0%, var(--p0) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.hero-top {
  margin-bottom: 24px;
  animation: fadeUp 1s var(--ease) 0.1s both;
}

.hero-eyebrow {
  font-family: var(--font);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--g1);
}

.hero-title-wrap {
  animation: fadeUp 1s var(--ease) 0.2s both;
}

.hero-title {
  font-family: var(--font);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.04em;
  color: var(--t-hi);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15em;
}

.hero-title-text {
  display: block;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-align: center;
  font-weight: 300;
  color: var(--t-hi);
}

.hero-bottom {
  margin-top: 32px;
  animation: fadeUp 1s var(--ease) 0.4s both;
}

.hero-glass-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 48px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-top: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  max-width: 520px;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.28),
    0 8px 20px rgba(0,0,0,0.32),
    0 28px 60px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.07);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.hero-glass-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 8px rgba(0,0,0,0.28),
    0 12px 28px rgba(0,0,0,0.32),
    0 36px 72px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

.hero-sub {
  font-family: var(--font);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--t-mid);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeUp 1s var(--ease) 1.2s both;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--g1), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { transform: scaleY(1); opacity: 1; }
  50%  { transform: scaleY(0.5); opacity: 0.4; }
  100% { transform: scaleY(1); opacity: 1; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  overflow: hidden;
  background: linear-gradient(135deg, var(--p4), var(--p3));
  border-top: 1px solid rgba(196,163,90,0.15);
  border-bottom: 1px solid rgba(196,163,90,0.15);
  padding: 14px 0;
}

.ticker-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  width: max-content;
}

.ticker-track span {
  font-family: var(--font);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t-mid);
}

.ticker-dot {
  color: var(--g1) !important;
  font-size: 0.55rem !important;
  line-height: 1.6 !important;
}

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

/* ============================================================
   SERVICES — Bento Grid
   ============================================================ */
.services {
  padding: var(--sec) 0;
  background: #ffffff;
}

.services .section-intro h2 {
  color: var(--p1);
}

.services .label {
  color: var(--g0);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

/* Accounting — row 1, col 1 */
.card-accounting {
  grid-column: 1;
  grid-row: 1;
}

/* Tax — featured, row 1, middle */
.card-tax {
  grid-column: 2;
  grid-row: 1;
}

/* Payroll — row 1, col 3 */
.card-payroll {
  grid-column: 3;
  grid-row: 1;
}

/* CTA — row 2, centred under tax card */
.card-cta {
  grid-column: 2;
  grid-row: 2;
}

.bento-card {
  position: relative;
  background: #faf8fc;
  border: 1px solid rgba(75,0,86,0.1);
  border-radius: 12px;
  padding: 52px 44px;
  overflow: hidden;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.bento-card:hover {
  background: #ffffff;
  border-color: rgba(196,163,90,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(75,0,86,0.1);
}

.bento-card.featured {
  background: linear-gradient(160deg, var(--p4), var(--p3));
  border-color: rgba(196,163,90,0.3);
  display: flex;
  flex-direction: column;
}

.bento-badge {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--p0);
  background: linear-gradient(135deg, var(--g1), var(--g0));
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
  align-self: flex-start;
}

.bento-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(196,163,90,0.35);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g1);
  font-size: 1.1rem;
  margin-bottom: 28px;
  transition: all 0.3s var(--ease);
}

.bento-icon.large {
  width: 60px;
  height: 60px;
  font-size: 1.4rem;
}

.bento-card:hover .bento-icon {
  background: var(--g1);
  color: var(--p0);
  border-color: var(--g1);
}

.bento-card h3 {
  font-family: var(--font);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--p1);
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}

.bento-card p {
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--p4);
  line-height: 1.85;
  margin-bottom: 28px;
}

/* Featured card (dark) keeps white text */
.bento-card.featured h3 { color: var(--t-hi); }
.bento-card.featured p  { color: var(--t-mid); }

.bento-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.bento-list li {
  font-family: var(--font);
  font-size: 0.94rem;
  color: var(--p4);
  padding-left: 18px;
  position: relative;
}

.bento-card.featured .bento-list li { color: var(--t-mid); }

.bento-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 1px;
  background: var(--g1);
  opacity: 0.7;
}

.bento-corner-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--g1), transparent);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.bento-card:hover .bento-corner-rule {
  transform: scaleX(1);
}

.bento-number {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-family: var(--font);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(196,163,90,0.07);
  line-height: 1;
  pointer-events: none;
}

/* CTA card */
.card-cta {
  background: linear-gradient(135deg, var(--p4), var(--p2));
  border-color: rgba(196,163,90,0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.card-cta:hover {
  background: linear-gradient(135deg, var(--p4), var(--p2));
  border-color: rgba(196,163,90,0.5);
}

.card-cta .cta-label {
  font-family: var(--font);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--g1);
  margin-bottom: 0;
}

.card-cta h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--t-hi);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  position: relative;
  padding: var(--sec) 0;
  background: var(--p0);
  overflow: hidden;
}

/* Decorative oversized word */
.about-deco {
  position: absolute;
  bottom: -40px;
  right: -40px;
  font-family: var(--font);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 700;
  color: rgba(196,163,90,0.03);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Photo column */
.about-photo-col {
  position: sticky;
  top: 100px;
}

.photo-frame {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--p3);
  border: 1px solid rgba(196,163,90,0.18);
  border-radius: 8px;
  overflow: visible;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Offset border accent */
.photo-frame::after {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(196,163,90,0.12);
  border-radius: 12px;
  pointer-events: none;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(196,163,90,0.25);
  background: linear-gradient(160deg, var(--p3), var(--p4));
  border-radius: 8px;
}

.photo-placeholder i   { font-size: 3.5rem; }
.photo-placeholder span {
  font-family: var(--font);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.photo-tag {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(8,2,15,0.95) 0%, transparent 100%);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.photo-tag span {
  display: block;
  font-family: var(--font);
  font-size: 1.05rem;
  color: var(--t-hi);
}

.photo-tag-sub {
  font-size: 0.7rem !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g1) !important;
}

.credential-stack {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  transition: border-color 0.3s;
}

.cred-item:hover { border-color: rgba(196,163,90,0.25); }

.cred-item i {
  color: var(--g1);
  font-size: 0.96rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.cred-item span {
  font-family: var(--font);
  font-size: 0.94rem;
  color: var(--t-mid);
  line-height: 1.5;
}

/* Content column */
.about-content-col h2 {
  font-family: var(--font);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--t-hi);
}

.about-lead {
  font-family: var(--font);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--g2);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-content-col p {
  font-family: var(--font);
  font-size: 1.05rem;
  color: var(--t-mid);
  line-height: 1.9;
  margin-bottom: 24px;
}

.about-quote {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 48px;
  padding: 32px 36px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-left: 2px solid var(--g1);
  border-radius: 0 8px 8px 0;
  font-family: var(--font);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--t-mid);
  line-height: 1.7;
}

.about-quote i {
  color: var(--g1);
  font-size: 1.3rem;
  opacity: 0.6;
  flex-shrink: 0;
  margin-top: 4px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--sec) 0;
  background: #ffffff;
}

.testimonials .section-intro h2 {
  color: var(--p1);
}

.testimonials .label {
  color: var(--g0);
}

.testimonials-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.testi-card {
  background: #faf8fc;
  border: 1px solid rgba(75,0,86,0.1);
  border-radius: 12px;
  padding: 52px 44px;
  transition: border-color 0.3s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.testi-card:hover {
  border-color: rgba(196,163,90,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(75,0,86,0.1);
}

.testi-card.large {
  padding: 64px 56px;
}

.testi-quote-icon {
  color: var(--g1);
  font-size: 1.4rem;
  opacity: 0.45;
  margin-bottom: 20px;
}

.testi-card p {
  font-family: var(--font);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--p4);
  line-height: 1.95;
  margin-bottom: 40px;
}

.testi-card.large p { font-size: 1.18rem; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 32px;
  border-top: 1px solid rgba(75,0,86,0.1);
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p5), var(--p4));
  border: 1px solid rgba(196,163,90,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--g1);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

img.testi-avatar {
  object-fit: cover;
  object-position: center top;
}

.testi-author strong {
  display: block;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--p1);
  letter-spacing: 0.06em;
}

.testi-author span {
  font-family: var(--font);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--g1);
  opacity: 0.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--sec) 0;
  background: var(--p0);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 96px;
  align-items: start;
}

.contact-left h2 {
  font-family: var(--font);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.contact-left > p {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--t-mid);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--t-hi);
  transition: all 0.3s var(--ease);
}

.c-item:hover {
  border-color: rgba(196,163,90,0.25);
  background: rgba(255,255,255,0.06);
  transform: translateX(4px);
}

.c-icon {
  width: 40px;
  height: 40px;
  background: var(--p4);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g1);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.c-icon.whatsapp { background: #075E54; color: #fff; }

.c-label {
  display: block;
  font-family: var(--font);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g1);
  margin-bottom: 2px;
}

.c-val {
  display: block;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--t-hi);
}

/* Form */
.contact-form {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--t-hi);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--t-lo);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--g1);
  background: rgba(196,163,90,0.05);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C4A35A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group select option {
  background: var(--p2);
  color: var(--t-hi);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--p0);
  border-top: 1px solid rgba(196,163,90,0.1);
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo-img {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}

.footer-brand p {
  font-family: var(--font);
  font-size: 0.96rem;
  color: var(--t-lo);
  line-height: 1.8;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-cols h4 {
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--g1);
  margin-bottom: 16px;
}

.footer-cols ul { display: flex; flex-direction: column; gap: 8px; }

.footer-cols ul li,
.footer-cols ul a {
  font-family: var(--font);
  font-size: 0.96rem;
  color: var(--t-lo);
  transition: color 0.3s;
}

.footer-cols ul a:hover { color: var(--g2); }

.footer-cols > div > p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font);
  font-size: 0.96rem;
  color: var(--t-lo);
  margin-bottom: 8px;
}

.footer-cols i {
  color: var(--g1);
  width: 14px;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-cols ul a i {
  margin-right: 5px;
  margin-top: 0;
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--g1);
  color: var(--p1);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-directions:hover { opacity: 0.85; }

/* Social links */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(196,163,90,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t-lo);
  font-size: 0.88rem;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}

.social-link:hover {
  border-color: var(--g1);
  color: var(--g1);
  background: rgba(196,163,90,0.08);
  transform: translateY(-2px);
}

.social-link.sl-whatsapp:hover {
  border-color: #25D366;
  color: #25D366;
  background: rgba(37,211,102,0.08);
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 9px 16px;
  background: #128C7E;
  color: #fff;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 100px;
  transition: background 0.3s;
}

.wa-btn:hover { background: #075E54; color: #fff; }

.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-family: var(--font);
  font-size: 0.75rem;
  color: var(--t-lo);
}

.footer-bottom a {
  color: var(--g1);
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-bottom a:hover { opacity: 1; }

/* ============================================================
   LEGAL PAGES (Privacy Policy, Terms of Use)
   ============================================================ */
.legal-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 60px 0 80px;
}

.legal-meta {
  font-family: var(--sans, sans-serif);
  font-size: 0.82rem;
  color: var(--p5);
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(75,0,86,0.1);
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 44px;
  margin-bottom: 14px;
}

.legal-content p {
  color: var(--p4);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.legal-content ul {
  color: var(--p4);
  font-size: 1rem;
  line-height: 1.85;
  margin: 0 0 16px 1.4rem;
}

.legal-content ul li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--p3);
  text-decoration: underline;
}

.legal-content a:hover { color: var(--g1); }

.legal-nav-links {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(75,0,86,0.1);
  font-family: var(--sans, sans-serif);
  font-size: 0.9rem;
}

.legal-nav-links a {
  color: var(--p3);
  text-decoration: none;
  font-weight: 500;
}

.legal-nav-links a:hover { color: var(--g1); }

/* ============================================================
   CONTACT PAGE — LIGHT VARIANT
   ============================================================ */

.contact-grid-light {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 96px;
  align-items: center;
}

.contact-left-light h2 {
  font-family: var(--font);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--p1);
  margin-bottom: 4px;
}

.contact-items-light {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-item-light {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid rgba(75,0,86,0.1);
  border-radius: 8px;
  color: var(--p1);
  transition: all 0.3s var(--ease);
}

.c-item-light:hover {
  border-color: rgba(196,163,90,0.4);
  background: #faf8fc;
  transform: translateX(4px);
}

.c-icon-light {
  width: 40px;
  height: 40px;
  background: var(--p4);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g1);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.c-icon-light.whatsapp { background: #075E54; color: #fff; }

.c-label-light {
  display: block;
  font-family: var(--font);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g0);
  margin-bottom: 2px;
}

.c-val-light {
  display: block;
  font-family: var(--font);
  font-size: 0.94rem;
  color: var(--p1);
  font-weight: 500;
}

/* Light contact form */
.contact-form-light {
  background: #faf8fc;
  border: 1px solid rgba(75,0,86,0.1);
  border-radius: 12px;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group-light {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group-light label {
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--p4);
}

.form-group-light input,
.form-group-light select,
.form-group-light textarea {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--p1);
  background: #ffffff;
  border: 1px solid rgba(75,0,86,0.15);
  border-radius: 6px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s var(--ease);
  appearance: none;
}

.form-group-light input::placeholder,
.form-group-light textarea::placeholder {
  color: rgba(75,0,86,0.3);
}

.form-group-light input:focus,
.form-group-light select:focus,
.form-group-light textarea:focus {
  border-color: var(--g1);
}

.form-group-light select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A6830' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  background-color: #ffffff;
}

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

/* Form validation + feedback states */
.form-group-light input.input-error,
.form-group-light select.input-error,
.form-group-light textarea.input-error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}

.form-msg {
  font-family: var(--font);
  font-size: 0.92rem;
  border-radius: 8px;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease), opacity 0.3s;
  opacity: 0;
}

.form-msg.visible {
  max-height: 120px;
  padding: 14px 18px;
  opacity: 1;
  margin-bottom: 16px;
}

.form-msg.success {
  background: rgba(39,174,96,0.1);
  border: 1px solid rgba(39,174,96,0.35);
  color: #1a6e3c;
}

.form-msg.error {
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.30);
  color: #922b21;
}

.btn-primary-dark.loading {
  opacity: 0.72;
  pointer-events: none;
}

/* MAP */
.map-section {
  background: #ffffff;
  padding-bottom: var(--sec);
}

.map-section .container {
  padding-bottom: 0;
}

.map-wrapper {
  position: relative;
  border-top: 3px solid var(--g1);
  box-shadow: 0 12px 48px rgba(75,0,86,0.12);
}

.map-wrapper iframe {
  filter: saturate(0.7) contrast(1.05);
}

.map-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--p1);
  color: var(--t-hi);
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgba(196,163,90,0.3);
  pointer-events: none;
}

.map-tag i { color: var(--g1); }

/* FAQ */
.faq-section { padding: var(--sec) 0; }

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(196,163,90,0.12);
}

.faq-item:first-child { border-top: 1px solid rgba(196,163,90,0.12); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--t-hi);
  transition: color 0.3s var(--ease);
}

.faq-q:hover { color: var(--g2); }

.faq-q span {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.faq-icon {
  color: var(--g1);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
}

.faq-item.open .faq-a {
  max-height: 600px;
  padding-bottom: 24px;
}

.faq-a p {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--t-mid);
  line-height: 1.85;
}

/* ============================================================
   MULTI-PAGE COMPONENTS
   ============================================================ */

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--p0);
  overflow: hidden;
  padding: 140px var(--pad) 80px;
}

.page-hero--photo { background: var(--p1); }

.blog-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  z-index: 0;
  opacity: 0.35;
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,0,18,0.55) 0%, rgba(13,0,18,0.75) 100%);
  z-index: 0;
}


.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
}

.page-hero-inner h1 {
  font-family: var(--font);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  color: var(--t-hi);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.page-hero-inner p {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--t-mid);
  line-height: 1.75;
  margin-top: 8px;
}

/* Physics canvases (banknotes, numbers) */
#notes-canvas,
#numbers-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Page hero with physics (overflow clip + bottom fade) */
.page-hero-physics {
  overflow: hidden;
}

.page-hero-physics::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 48px;
  background: linear-gradient(to bottom, transparent 0%, var(--p0) 100%);
  pointer-events: none;
  z-index: 2;
}

.page-hero-physics .page-hero-inner {
  z-index: 3;
}

/* Section wrappers */
.section-white {
  padding: var(--sec) 0;
  background: #ffffff;
}

.section-dark {
  padding: var(--sec) 0;
  background: var(--p1);
}

/* Who We Help — piggy bank parallax background */
#who-we-help {
  position: relative;
  background-image: url('../images/piggy-bank.jpg');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  overflow: hidden;
}

#who-we-help::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,0,31,0.88) 0%, rgba(58,0,66,0.82) 50%, rgba(26,0,31,0.90) 100%);
  z-index: 0;
}

#who-we-help .container {
  position: relative;
  z-index: 1;
}

/* Light-background helpers */
.label-dark  { color: var(--g0) !important; }
.heading-dark { color: var(--p1) !important; }

.gold-line-dark {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--g0), transparent);
  margin: 24px 0;
}

/* Home page teaser grid */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.teaser-card {
  background: #faf8fc;
  border: 1px solid rgba(75,0,86,0.1);
  border-radius: 12px;
  padding: 44px 36px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.teaser-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(75,0,86,0.1);
  border-color: rgba(196,163,90,0.35);
}

.teaser-card.featured-teaser {
  background: linear-gradient(160deg, var(--p4), var(--p3));
  border-color: rgba(196,163,90,0.3);
}

.teaser-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(196,163,90,0.35);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g1);
  font-size: 1.1rem;
  margin-bottom: 24px;
  transition: all 0.3s var(--ease);
}

.teaser-card:hover .teaser-icon {
  background: var(--g1);
  color: var(--p0);
  border-color: var(--g1);
}

.teaser-card h3 {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--p1);
  margin-bottom: 12px;
}

.teaser-card.featured-teaser h3 { color: var(--t-hi); }

.teaser-card p {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--p4);
  line-height: 1.8;
}

.teaser-card.featured-teaser p { color: var(--t-mid); }

.section-cta {
  text-align: center;
  margin-top: 16px;
}

/* Primary button on white background */
.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--p4), var(--p2));
  color: var(--t-hi);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 2px;
  transition: all 0.35s var(--ease);
}

.btn-primary-dark:hover {
  background: linear-gradient(135deg, var(--p5), var(--p3));
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(75,0,86,0.25);
  color: var(--t-hi);
}

/* Why us teaser grid */
.why-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.why-item {
  padding: 36px 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: border-color 0.3s, transform 0.4s var(--ease);
}

.why-item:hover {
  border-color: rgba(196,163,90,0.25);
  transform: translateY(-4px);
}

.why-num {
  font-family: var(--font);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(196,163,90,0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.why-item h4 {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--t-hi);
  margin-bottom: 10px;
}

.why-item p {
  font-family: var(--font);
  font-size: 0.96rem;
  color: var(--t-mid);
  line-height: 1.8;
}

/* About teaser (home page) */
.about-teaser {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 72px;
  align-items: center;
}

.about-teaser-content h2 {
  font-family: var(--font);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  color: var(--p1);
  line-height: 1.1;
  margin-bottom: 4px;
}

.about-lead-dark {
  font-family: var(--font);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--p5);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* CTA strip */
.cta-strip {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--p4), var(--p2));
  border-top: 1px solid rgba(196,163,90,0.15);
  border-bottom: 1px solid rgba(196,163,90,0.15);
}

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

.cta-strip-inner h2 {
  font-family: var(--font);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--t-hi);
  margin-bottom: 6px;
}

.cta-strip-inner p {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--t-mid);
}

.cta-strip-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Card rule (light bg) */
.card-rule {
  width: 32px;
  height: 1px;
  background: var(--g1);
  opacity: 0.5;
  margin: 16px 0;
}

/* Detail cards (services page) */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.detail-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 48px 40px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: border-color 0.3s, transform 0.4s var(--ease);
}

.detail-card:hover {
  border-color: rgba(196,163,90,0.25);
  transform: translateY(-4px);
}

.detail-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(196,163,90,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g1);
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.detail-card h3 {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--t-hi);
  margin-bottom: 12px;
}

.detail-card p {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--t-mid);
  line-height: 1.85;
  margin-bottom: 24px;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font);
  font-size: 0.94rem;
  color: var(--t-mid);
  line-height: 1.5;
}

.detail-list i {
  color: var(--g1);
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Why us page */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid rgba(75,0,86,0.08);
}

.why-row:last-child { border-bottom: none; }

.why-row-num {
  font-family: var(--font);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(196,163,90,0.2);
  line-height: 1;
  padding-top: 8px;
}

.why-row-content {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.why-row-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(75,0,86,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g0);
  font-size: 1.2rem;
  flex-shrink: 0;
  background: rgba(75,0,86,0.04);
}

.why-row-content h3 {
  font-family: var(--font);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--p1);
  margin-bottom: 10px;
}

.why-row-content p {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--p4);
  line-height: 1.85;
}

/* Credentials grid */
.creds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cred-block {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 44px 32px;
  text-align: center;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: border-color 0.3s, transform 0.4s var(--ease);
}

.cred-block:hover {
  border-color: rgba(196,163,90,0.25);
  transform: translateY(-4px);
}

.cred-block i {
  font-size: 2rem;
  color: var(--g1);
  margin-bottom: 16px;
  display: block;
}

.cred-block h4 {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--t-hi);
  margin-bottom: 8px;
}

.cred-block p {
  font-family: var(--font);
  font-size: 0.94rem;
  color: var(--t-mid);
  line-height: 1.6;
}

/* Team grid (about page) */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card background IS the frame — same technique as champions4good */
.team-card {
  background: var(--p3);
  border: none;
  border-radius: 16px;
  padding: 12px 12px 20px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.35);
}

/* Photo inset with tighter radius — gap between photo and card = coloured frame */
.team-photo {
  aspect-ratio: 3/4;
  background: var(--p5);
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

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

.photo-placeholder.small {
  background: linear-gradient(160deg, var(--p5), var(--p6));
  width: 100%;
  height: 100%;
}

/* Name area sits on the same card background — no separate bg needed */
.team-info {
  padding: 16px 6px 0;
  background: transparent;
}

.team-info h3 {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--g1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 5px;
  line-height: 1.2;
}

.team-role {
  font-family: var(--font);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--t-mid);
}

.team-info p {
  font-family: var(--font);
  font-size: 0.84rem;
  color: var(--t-lo);
  line-height: 1.7;
  margin-top: 10px;
}

/* Service area tags (contact page) */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
}

.area-tag {
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--p2);
  background: transparent;
  border: 1px solid rgba(75,0,86,0.2);
  border-radius: 100px;
  padding: 8px 18px;
}

/* Team profile cards (about page — horizontal layout under Jennifer) */
.team-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}

.team-profile-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px;
  transition: background 0.3s var(--ease);
}

.team-profile-card:hover {
  background: rgba(255,255,255,0.07);
}

.team-profile-photo {
  width: 120px;
  height: 150px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(160deg, var(--p5), var(--p6));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 2.5rem;
  overflow: hidden;
}

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

.team-profile-info h3 {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 5px;
  line-height: 1.2;
}

.team-profile-info p {
  font-family: var(--font);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-top: 10px;
  margin-bottom: 0;
}

/* Testimonials on white pages */
.section-white .testi-card {
  background: #faf8fc;
  border-color: rgba(75,0,86,0.1);
}

.section-white .testi-card p  { color: var(--p4); }
.section-white .testi-author strong { color: var(--p1); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: linear-gradient(135deg, var(--p3), var(--p2));
  border-bottom: 1px solid rgba(196,163,90,0.15);
  padding: 18px 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 24px;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--t-mid);
  white-space: nowrap;
}

.trust-item i {
  color: var(--g1);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 18px;
  background: rgba(196,163,90,0.2);
  flex-shrink: 0;
}

/* ============================================================
   VALUE PROPOSITION
   ============================================================ */
.value-prop {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 780px;
  margin: 0 auto;
}

.value-prop-text h2 {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--p1);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.value-prop-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: #faf8fc;
  border: 1px solid rgba(75,0,86,0.1);
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.3s var(--ease), transform 0.4s var(--ease);
}

.stat-card:hover {
  border-color: rgba(196,163,90,0.35);
  transform: translateY(-3px);
}

.stat-card.featured-stat {
  background: linear-gradient(135deg, var(--p4), var(--p3));
  border-color: rgba(196,163,90,0.25);
  grid-column: 1 / 3;
}

.stat-num {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--p1);
  line-height: 1;
  letter-spacing: 0.02em;
}

.stat-card.featured-stat .stat-num { color: var(--g1); }

.stat-label {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--p5);
}

.stat-card.featured-stat .stat-label { color: var(--t-mid); }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--p0);
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid rgba(196,163,90,0.12);
  border-bottom: 1px solid rgba(196,163,90,0.12);
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.stats-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 0 16px;
}

.stats-item i {
  font-size: 1.4rem;
  color: var(--g1);
  opacity: 0.7;
}

.stats-sa-map {
  width: 36px;
  height: auto;
  fill: var(--g1);
  opacity: 0.7;
  display: block;
}

.stats-figure {
  font-family: var(--font);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--g1);
  line-height: 1;
  letter-spacing: 0.02em;
}

.stats-desc {
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t-mid);
  line-height: 1.5;
  max-width: 120px;
}

.stats-divider {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, rgba(196,163,90,0.25), transparent);
  flex-shrink: 0;
}

/* ============================================================
   AUDIENCE GRID (Who We Help)
   ============================================================ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.audience-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: border-color 0.3s var(--ease), transform 0.4s var(--ease);
}

.audience-card:hover {
  border-color: rgba(196,163,90,0.25);
  transform: translateY(-4px);
}

.audience-card i {
  font-size: 1.8rem;
  color: var(--g1);
  margin-bottom: 18px;
  display: block;
}

.audience-card h4 {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--t-hi);
  margin-bottom: 10px;
}

.audience-card p {
  font-family: var(--font);
  font-size: 0.94rem;
  color: var(--t-mid);
  line-height: 1.8;
}

/* ============================================================
   TEASER LINKS
   ============================================================ */
.teaser-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g0);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}

.teaser-link:hover {
  gap: 14px;
  color: var(--p4);
}

.teaser-link-light {
  color: var(--g2);
}

.teaser-link-light:hover {
  color: var(--g1);
}

/* ============================================================
   ABOUT TEASER IMAGE WRAPPER
   ============================================================ */
.about-teaser-image {
  flex-shrink: 0;
}

/* ============================================================
   QUOTE SECTION
   ============================================================ */
.quote-section {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  background-image: url('../images/coins-growth.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,0,31,0.88) 0%, rgba(58,0,66,0.82) 50%, rgba(26,0,31,0.90) 100%);
  z-index: 0;
}

.quote-section-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
}

.quote-section-mark {
  font-size: 4rem;
  line-height: 1;
  color: var(--g1);
  opacity: 0.6;
  font-family: Georgia, serif;
  margin-bottom: 8px;
  display: block;
}

.quote-section-text {
  font-family: var(--font);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--t-hi);
  line-height: 1.6;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
}

.quote-section-rule {
  width: 48px;
  height: 1px;
  background: var(--g1);
  margin: 0 auto 20px;
}

.quote-section-attr {
  font-family: var(--font);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--g2);
}

/* ============================================================
   FAQ — LIGHT VARIANT (White section)
   ============================================================ */
.faq-light .faq-item-light {
  border-bottom: 1px solid rgba(75,0,86,0.1);
}

.faq-light .faq-item-light:first-child {
  border-top: 1px solid rgba(75,0,86,0.1);
}

.faq-q-light {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--p1);
  transition: color 0.3s var(--ease);
}

.faq-q-light:hover { color: var(--p4); }

.faq-q-light span {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.faq-icon-light {
  color: var(--g0);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}

.faq-item-light.open .faq-icon-light { transform: rotate(45deg); }

.faq-a-light {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
}

.faq-item-light.open .faq-a-light {
  max-height: 600px;
  padding-bottom: 22px;
}

.faq-a-light p {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--p4);
  line-height: 1.85;
}

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .card-accounting { grid-column: 1; grid-row: 1; }
  .card-tax        { grid-column: 2; grid-row: 1; }
  .card-payroll    { grid-column: 1; grid-row: 2; }
  .card-cta        { grid-column: 2; grid-row: 3; }
  .card-cta h3     { margin-bottom: 8px; }

  .about-grid      { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-col { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
  .photo-frame     { max-width: none; }

  .testimonials-layout { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 36px 28px; }

  .footer-top  { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(3,1fr); }

  /* New homepage components */
  .value-prop      { grid-template-columns: 1fr; gap: 48px; }
  .audience-grid   { grid-template-columns: repeat(2, 1fr); }
  .contact-grid-light { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-light { padding: 36px 28px; }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 768px) {
  :root { --sec: 64px; }

  /* Stats strip */
  .stats-row     { flex-wrap: wrap; gap: 32px 0; justify-content: center; }
  .stats-item    { flex: 0 0 45%; }
  .stats-divider { display: none; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-pill { padding: 10px 16px; gap: 12px; }

  /* Hero */
  .hero-title-text { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .hero-glass-card { padding: 24px 24px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }

  /* Trust bar */
  .trust-items { gap: 4px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 0 var(--pad); }
  .trust-item  { padding: 4px 16px; font-size: 0.72rem; white-space: nowrap; }
  .trust-divider { display: none; }

  /* Value prop */
  .value-prop { grid-template-columns: 1fr; gap: 40px; }
  .stat-card.featured-stat { grid-column: 1 / 3; }

  /* Audience */
  .audience-grid { grid-template-columns: 1fr 1fr; }

  /* Bento */
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .card-accounting,
  .card-tax,
  .card-payroll,
  .card-cta {
    grid-column: 1;
    grid-row: auto;
  }

  /* About teaser */
  .about-teaser { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-col { grid-template-columns: 1fr; }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-profile-grid { grid-template-columns: 1fr; }

  /* Services detail grid */
  .detail-grid { grid-template-columns: 1fr; }
  .detail-card { padding: 36px 28px; }

  /* Why rows — tighter on mobile */
  .why-row { grid-template-columns: 56px 1fr; gap: 20px; padding: 36px 0; }
  .why-row-num { font-size: 2.2rem; }
  .why-row-content { gap: 16px; }

  /* Why teaser */
  .why-teaser-grid { grid-template-columns: 1fr 1fr; }

  /* Credentials */
  .creds-grid { grid-template-columns: 1fr 1fr; }

  /* Services teaser grid */
  .teaser-grid { grid-template-columns: 1fr; }
  .teaser-card { padding: 32px 28px; }

  /* CTA strip — stack and go full-width */
  .cta-strip-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .cta-strip-actions { width: 100%; flex-shrink: 1; flex-direction: column; }
  .cta-strip-actions .btn-primary,
  .cta-strip-actions .btn-ghost { width: 100%; justify-content: center; }

  /* Testimonials — reduce side padding to prevent content cutoff */
  .testi-card { padding: 36px 24px; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .contact-form-light { padding: 28px 20px; }

  /* Footer */
  .footer-cols { grid-template-columns: 1fr 1fr; }

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

@media (max-width: 480px) {
  .footer-cols     { grid-template-columns: 1fr; }
  .audience-grid   { grid-template-columns: 1fr; }
  .why-teaser-grid { grid-template-columns: 1fr; }
  .creds-grid      { grid-template-columns: 1fr; }
  .value-prop-stats { grid-template-columns: 1fr; }
  .stat-card.featured-stat { grid-column: 1; }

  /* Team grid single column on small phones */
  .team-grid { grid-template-columns: 1fr; }

  /* Tighten testimonial padding further */
  .testi-card { padding: 28px 20px; }

  /* Scale card headings down */
  .bento-card h3   { font-size: 1.35rem; }
  .card-cta h3     { font-size: 1.2rem; }
  .detail-card h3  { font-size: 1.3rem; }
  .why-row-content h3 { font-size: 1.2rem; }

  /* Ensure testimonial cards don't overflow */
  .testimonials-layout { grid-template-columns: 1fr; }

  /* Hero glass card tighter on small phones */
  .hero-glass-card { padding: 20px 16px; }

  /* Page hero headings */
  .page-hero-inner h1 { font-size: clamp(1.9rem, 9vw, 2.8rem); }
}


/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.je-wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g0) 0%, var(--g2) 100%);
  border: 1.5px solid rgba(212,175,55,0.6);
  box-shadow: 0 8px 32px rgba(26,0,31,0.45), 0 2px 8px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  text-decoration: none;
}

.je-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(26,0,31,0.55), 0 0 0 6px rgba(212,175,55,0.12);
}

.je-wa-float i {
  font-size: 1.6rem;
  color: var(--p0);
}

@media (max-width: 400px) {
  .je-wa-float { right: 16px; bottom: 20px; }
}


/* ── POPIA Cookie Notice ────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 0, 15, 0.97);
  border-top: 1px solid rgba(196,163,90,0.22);
  backdrop-filter: blur(12px);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-text {
  flex: 1;
  min-width: 240px;
  font-family: var(--font);
  font-size: 0.85rem;
  color: rgba(240,232,213,0.7);
  line-height: 1.65;
}

.cookie-banner-text strong {
  color: rgba(196,163,90,0.9);
  font-weight: 500;
}

.cookie-banner-text a {
  color: var(--g1);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #7A5810, #C4A35A);
  color: #1a0010;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 9px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.cookie-btn-accept:hover { opacity: 0.88; }

.cookie-btn-decline {
  background: transparent;
  color: rgba(240,232,213,0.45);
  font-family: var(--font);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 9px 16px;
  border: 1px solid rgba(240,232,213,0.15);
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.cookie-btn-decline:hover {
  color: rgba(240,232,213,0.7);
  border-color: rgba(240,232,213,0.3);
}

@media (max-width: 560px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 14px; padding: 16px 18px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}

/* ── Game Teaser Strip ──────────────────────────────────────── */
.game-teaser-strip {
  background: #0d0012;
  border-top: 1px solid rgba(196,163,90,0.1);
  border-bottom: 1px solid rgba(196,163,90,0.1);
  padding: 28px 0;
}

.game-teaser-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.game-teaser-pig {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(196,163,90,0.15));
}

.game-teaser-text {
  flex: 1;
  min-width: 200px;
}

.game-teaser-text .label {
  display: block;
  margin-bottom: 4px;
}

.game-teaser-text p {
  font-family: var(--font);
  font-size: 0.95rem;
  color: rgba(240,232,213,0.6);
  line-height: 1.6;
  margin: 0;
}

.game-teaser-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .game-teaser-inner { gap: 14px; }
  .game-teaser-pig { width: 48px; height: 48px; }
  .game-teaser-btn { width: 100%; text-align: center; justify-content: center; }
}

/* ============================================================
   BLOG — listing page
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 24px 0 48px;
}

.blog-card {
  background: #fff;
  border: 1px solid rgba(75,0,86,0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(75,0,86,0.10);
  border-color: rgba(196,163,90,0.3);
}

.blog-card-img-link {
  display: block;
  text-decoration: none;
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s var(--ease);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
}

.blog-card-img-gradient {
  background: linear-gradient(160deg, var(--p4) 0%, var(--p2) 60%, var(--p0) 100%);
}

.blog-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-category {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g0);
  border: 1px solid rgba(196,163,90,0.4);
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 12px;
}

.blog-meta {
  font-family: var(--font);
  font-size: 0.82rem;
  color: rgba(26,0,31,0.45);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.blog-card-body h3 {
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--p1);
  line-height: 1.4;
  margin-bottom: 14px;
}

.blog-card-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.blog-card-body h3 a:hover {
  color: var(--g0);
}

.blog-card-body p {
  font-family: var(--font);
  font-size: 0.95rem;
  color: rgba(26,0,31,0.65);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--g0);
  text-decoration: none;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}

.blog-read-more:hover {
  gap: 12px;
  color: var(--g1);
}

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

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-body { padding: 22px 22px 26px; }
}

/* ============================================================
   BLOG — article / post page
   ============================================================ */
.blog-post-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.blog-post-content h2 {
  font-family: var(--font);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--p1);
  margin: 56px 0 18px;
  line-height: 1.3;
}

.blog-post-content h3 {
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--p2);
  margin: 36px 0 12px;
}

.blog-post-content p {
  font-family: var(--font);
  font-size: 1.05rem;
  color: rgba(26,0,31,0.75);
  line-height: 1.85;
  margin-bottom: 22px;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 0 0 24px 24px;
}

.blog-post-content li {
  font-family: var(--font);
  font-size: 1.05rem;
  color: rgba(26,0,31,0.75);
  line-height: 1.75;
  margin-bottom: 8px;
}

.blog-post-content a {
  color: var(--g0);
  text-decoration: underline;
  text-decoration-color: rgba(196,163,90,0.4);
  transition: color 0.3s var(--ease), text-decoration-color 0.3s var(--ease);
}

.blog-post-content a:hover {
  color: var(--g1);
  text-decoration-color: var(--g1);
}

.blog-post-lead {
  font-size: 1.2rem !important;
  color: rgba(26,0,31,0.6) !important;
  font-style: italic;
  border-left: 3px solid var(--g1);
  padding-left: 20px;
  margin-bottom: 48px !important;
}

.blog-callout {
  background: rgba(196,163,90,0.06);
  border: 1px solid rgba(196,163,90,0.25);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 32px 0;
}

.blog-callout p {
  margin-bottom: 0 !important;
  font-size: 0.97rem !important;
  color: rgba(26,0,31,0.7) !important;
}

@media (max-width: 600px) {
  .blog-post-content { padding: 0 16px 60px; }
  .blog-post-content h2 { margin-top: 40px; }
}

/* ============================================================
   FAQ — native <details>/<summary> support
   ============================================================ */
details.faq-item,
details.faq-item-light {
  cursor: default;
}

details.faq-item > summary,
details.faq-item-light > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
}

details.faq-item > summary::-webkit-details-marker,
details.faq-item-light > summary::-webkit-details-marker {
  display: none;
}

details.faq-item > summary::marker,
details.faq-item-light > summary::marker {
  display: none;
}

details.faq-item[open] .faq-a,
details.faq-item-light[open] .faq-a-light {
  display: block;
  max-height: 600px;
  padding-bottom: 24px;
  overflow: visible;
  animation: faqReveal 0.28s var(--ease) both;
}

details.faq-item[open] .faq-icon,
details.faq-item-light[open] .faq-icon-light {
  transform: rotate(45deg);
}

@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-wrap {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: 12px;
  border: 1px solid rgba(75,0,86,0.1);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font);
  font-size: 0.98rem;
  min-width: 560px;
}

.comparison-table thead th {
  background: var(--p2);
  color: var(--g1);
  padding: 16px 22px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.comparison-table thead th:first-child {
  width: 28%;
  border-radius: 12px 0 0 0;
}

.comparison-table thead th:last-child {
  border-radius: 0 12px 0 0;
}

.comparison-table td {
  padding: 14px 22px;
  border-bottom: 1px solid rgba(75,0,86,0.07);
  color: var(--p2);
  line-height: 1.65;
  vertical-align: top;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) td {
  background: rgba(75,0,86,0.025);
}

.comparison-table td:nth-child(1) {
  font-weight: 500;
  color: var(--p1);
}

.comparison-table td:nth-child(2) {
  color: rgba(26,0,31,0.45);
}

.comparison-table td:nth-child(3) {
  color: var(--p1);
}

@media (max-width: 640px) {
  .comparison-table thead th,
  .comparison-table td { padding: 11px 14px; font-size: 0.88rem; }
}
