/* ═══════════════════════════════════════════════════════════════════
   HOME PAGE — Cinematic Kingdom Edition 2026
   Visual Direction: Dark luxury executive roundtable chamber
═══════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════
   HERO — Full-Screen Cinematic Chamber
═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--bg);
}

/* Canvas behind everything */
#roundtableCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.6;
}

/* Multi-layer background atmosphere */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* === HERO CINEMATIC BACKGROUND IMAGE === */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/ascg-roundtable-chamber.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0.22;
  filter: brightness(0.7) saturate(1.2);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    /* Heavy left cover so text is readable */
    linear-gradient(90deg, rgba(5,5,5,0.97) 0%, rgba(5,5,5,0.85) 45%, rgba(5,5,5,0.3) 70%, rgba(5,5,5,0.1) 100%),
    /* Deep bottom floor */
    linear-gradient(to top, rgba(5,5,5,0.95) 0%, transparent 35%),
    /* Top veil */
    linear-gradient(to bottom, rgba(5,5,5,0.7) 0%, transparent 25%),
    /* Center warm gold ambient glow */
    radial-gradient(ellipse 50% 50% at 70% 50%, rgba(212,175,55,0.08) 0%, transparent 60%);
}

.hero-bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 45%, rgba(5,5,5,0.85) 100%);
}

/* Architectural grid lines — floor perspective feel */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center center;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0,0,0,0.5), transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0,0,0,0.5), transparent);
}

/* Floating particle dots */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  animation: particleDrift linear infinite;
  pointer-events: none;
}
@keyframes particleDrift {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-120px) translateX(var(--drift,20px)); opacity: 0; }
}

/* Content wrapper */
.hero-content-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: calc(var(--nav-h) + 4rem) 0 5rem;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  min-height: calc(100vh - var(--nav-h) - 6rem);
}

/* ── HERO COPY (Left) ── */
.hero-copy {
  max-width: 620px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.eyebrow-line {
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--gold-dim);
}
.eyebrow-text {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-headline-em {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  text-transform: none;
  font-size: 1.15em;
  letter-spacing: 0.02em;
  text-shadow: 0 0 40px rgba(212,175,55,0.3);
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

/* Five Pillars Bar */
.hero-pillars {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.pillar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted2);
  transition: color 0.2s;
}
.pillar-item:hover { color: var(--gold); }
.pillar-item i { color: var(--gold); font-size: 0.65rem; }
.pillar-sep {
  color: var(--border-md);
  font-size: 1rem;
  line-height: 1;
}

/* ── KINGDOM IMAGE (Right Hero Panel) ── */
.hero-roundtable {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* ── Hero Kingdom Image Frame ── */
.hero-kingdom-img-wrap {
  width: 100%;
  max-width: 520px;
}

.hki-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.3);
  box-shadow:
    0 0 0 1px rgba(212,175,55,0.08),
    0 0 60px rgba(212,175,55,0.1),
    0 40px 80px rgba(0,0,0,0.6);
}

.hero-kingdom-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.9) saturate(1.15) contrast(1.05);
  transition: transform 0.8s ease, filter 0.6s ease;
}

.hki-frame:hover .hero-kingdom-img {
  transform: scale(1.04);
  filter: brightness(1.0) saturate(1.2) contrast(1.05);
}

/* Cinematic dark overlay */
.hki-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5,5,5,0.8) 0%, rgba(5,5,5,0.1) 50%, transparent 100%),
    linear-gradient(to right, rgba(5,5,5,0.2) 0%, transparent 40%);
  pointer-events: none;
}

/* Gold corner brackets */
.hki-corner {
  position: absolute;
  width: 22px; height: 22px;
  border-color: rgba(212,175,55,0.7);
  border-style: solid;
  z-index: 3;
}
.hki-tl { top: 10px; left: 10px; border-width: 1.5px 0 0 1.5px; }
.hki-tr { top: 10px; right: 10px; border-width: 1.5px 1.5px 0 0; }
.hki-bl { bottom: 10px; left: 10px; border-width: 0 0 1.5px 1.5px; }
.hki-br { bottom: 10px; right: 10px; border-width: 0 1.5px 1.5px 0; }

/* Bottom label badge */
.hki-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: rgba(5,5,5,0.75);
  border: 1px solid rgba(212,175,55,0.35);
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
.hki-badge i {
  color: var(--gold);
  font-size: 0.6rem;
}
.hki-badge span {
  font-family: var(--font-body);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-kingdom-img { height: 280px; }
}

.roundtable-chamber {
  position: relative;
  width: 440px;
  height: 440px;
}

/* Outer glow ring */
.rt-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}
.rt-ring-outer {
  width: 100%;
  height: 100%;
  background: transparent;
  border: 1px solid rgba(212,175,55,0.15);
  box-shadow:
    0 0 60px rgba(212,175,55,0.08),
    inset 0 0 60px rgba(212,175,55,0.04);
}

/* Floor perspective lines (architectural depth) */
.rt-floor {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
}
.rt-floor-line {
  position: absolute;
  background: rgba(212,175,55,0.06);
  left: 50%; top: 50%;
  transform-origin: 0 0;
  height: 1px;
  width: 50%;
}
.rt-fl-1 { transform: rotate(0deg); width: 200px; }
.rt-fl-2 { transform: rotate(90deg); width: 200px; }
.rt-fl-3 { transform: rotate(180deg); width: 200px; }
.rt-fl-4 { transform: rotate(270deg); width: 200px; }

/* The Table */
.rt-table {
  position: absolute;
  top: 50%; left: 50%;
  width: 230px; height: 230px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.rt-table-surface {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  overflow: hidden;

  /* Premium dark wood texture simulation */
  background:
    /* Wood grain lines */
    repeating-linear-gradient(
      92deg,
      transparent,
      transparent 3px,
      rgba(255,255,255,0.012) 3px,
      rgba(255,255,255,0.012) 4px
    ),
    /* Radial depth/darkness from edge */
    radial-gradient(circle at 40% 35%, rgba(60,45,20,0.8) 0%, rgba(25,18,8,0.95) 40%, rgba(8,6,2,0.98) 70%, #050505 100%),
    /* Base dark mahogany */
    linear-gradient(135deg, #1a1208, #0d0900);

  border: 2px solid rgba(212,175,55,0.45);
  box-shadow:
    /* Outer table glow */
    0 0 40px rgba(212,175,55,0.12),
    /* Inset depth shadow */
    inset 0 0 60px rgba(0,0,0,0.8),
    /* Edge highlight */
    inset 0 0 1px rgba(212,175,55,0.3);
}

/* Gold inlay rings */
.rt-table-inlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid;
  pointer-events: none;
}
.rt-inlay-1 {
  width: 80%; height: 80%;
  border-color: rgba(212,175,55,0.25);
}
.rt-inlay-2 {
  width: 55%; height: 55%;
  border-color: rgba(212,175,55,0.35);
}

/* Center crest */
.rt-table-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.4);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(212,175,55,0.15);
}
.rt-crest {
  width: 52px; height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(212,175,55,0.55));
  transition: filter 0.4s;
}
.rt-table:hover .rt-crest {
  filter: drop-shadow(0 0 18px rgba(212,175,55,0.8));
}

/* Table glare/reflection specular */
.rt-table-glare {
  position: absolute;
  top: 15%; left: 20%;
  width: 35%; height: 20%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
  transform: rotate(-20deg);
  pointer-events: none;
}

/* ── SEATS ── */
.rt-seat {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.rt-seat-back {
  width: 36px; height: 48px;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg,
    rgba(30,22,8,0.95) 0%,
    rgba(18,13,5,0.9) 100%
  );
  border: 1px solid rgba(212,175,55,0.35);
  box-shadow:
    0 0 12px rgba(212,175,55,0.08),
    inset 0 1px 0 rgba(212,175,55,0.15);
  position: relative;
}

/* Chair cushion detail */
.rt-seat-back::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 4px; right: 4px;
  height: 8px;
  border-radius: 2px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.15);
}

.rt-seat-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  opacity: 0.85;
}
.rt-seat-label i {
  font-size: 0.55rem;
  color: var(--gold);
}
.rt-seat-label span {
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
  white-space: nowrap;
}

/* Seat Positions (6 around a circle, 440px container, table is 230px center) */
/* r = 145px from center */
.rt-seat-1 { top: calc(50% - 145px - 28px); left: 50%; transform: translateX(-50%); } /* North */
.rt-seat-2 { top: calc(50% - 72px); right: calc(50% - 180px); } /* NE */
.rt-seat-3 { top: calc(50% + 20px); right: calc(50% - 180px); } /* SE */
.rt-seat-4 { top: calc(50% + 90px); left: 50%; transform: translateX(-50%); } /* South */
.rt-seat-5 { top: calc(50% + 20px); left: calc(50% - 180px); } /* SW */
.rt-seat-6 { top: calc(50% - 72px); left: calc(50% - 180px); } /* NW */

/* South seat flipped orientation */
.rt-seat-4 .rt-seat-back { transform: rotate(180deg); }

/* Corner architecture marks */
.rt-arch {
  position: absolute;
  width: 20px; height: 20px;
  border-color: rgba(212,175,55,0.3);
  border-style: solid;
}
.rt-arch-tl { top: 8px; left: 8px; border-width: 1px 0 0 1px; }
.rt-arch-tr { top: 8px; right: 8px; border-width: 1px 1px 0 0; }
.rt-arch-bl { bottom: 8px; left: 8px; border-width: 0 0 1px 1px; }
.rt-arch-br { bottom: 8px; right: 8px; border-width: 0 1px 1px 0; }

/* ── STATS BELOW ROUNDTABLE ── */
.rt-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(5,5,5,0.6);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.rt-stat { text-align: center; }
.rt-stat-div {
  width: 1px; height: 40px;
  background: var(--border);
}

/* ── SCROLL INDICATOR ── */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 10;
}
.scroll-track {
  width: 1px; height: 50px;
  background: rgba(212,175,55,0.15);
  position: relative;
  overflow: hidden;
}
.scroll-dot {
  position: absolute;
  top: 0; left: 0;
  width: 1px; height: 16px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { top: -16px; opacity: 0; }
  30%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.hero-scroll span {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.4);
}

/* Responsive Hero */
@media (max-width: 1100px) {
  .roundtable-chamber { width: 380px; height: 380px; }
  .rt-table { width: 195px; height: 195px; }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-roundtable { display: none; }
  .hero-content-wrap { padding: calc(var(--nav-h) + 3rem) 0 4rem; }
  .hero-headline { font-size: clamp(2.2rem, 7vw, 4rem); }
  .hero-copy { max-width: 100%; }
}

@media (max-width: 760px) {
  .hero-content-wrap { padding: calc(var(--nav-h) + 2.5rem) 0 3.5rem; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3.2rem); }
  .hero-sub { font-size: 0.96rem; }
}

@media (max-width: 560px) {
  .hero-content-wrap { padding: calc(var(--nav-h) + 2rem) 0 3rem; }
  .hero-cta-row { flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .hero-pillars { gap: 0.3rem; flex-wrap: wrap; }
  .pillar-sep { display: none; }
  .hero-headline { font-size: clamp(1.9rem, 9vw, 2.8rem); }
}

/* ── Small Mobile Hero (≤480px) — Complete Cleanup ── */
@media (max-width: 480px) {
  /* Tighten top padding */
  .hero-content-wrap {
    padding: calc(var(--nav-h) + 1.5rem) 0 2.5rem;
    min-height: unset;
  }

  .hero-inner {
    min-height: unset;
    gap: 1.5rem;
  }

  /* Eyebrow: prevent overflow */
  .hero-eyebrow {
    gap: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
  }
  .eyebrow-text {
    white-space: normal;
    font-size: 0.5rem;
    letter-spacing: 0.22em;
    line-height: 1.4;
    text-align: center;
    overflow-wrap: break-word;
    word-break: break-word;
    flex: 1;
    min-width: 0;
  }
  .eyebrow-line {
    display: none;
  }

  /* Headline */
  .hero-headline {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
    line-height: 1.1;
    margin-bottom: 0.85rem;
    letter-spacing: 0.03em;
  }
  .hero-headline-em {
    font-size: 1.08em;
    letter-spacing: 0.01em;
  }

  /* Sub text */
  .hero-sub {
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }

  /* CTA buttons */
  .hero-cta-row {
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.75rem;
  }
  .hero-cta-row .btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.65rem;
  }

  /* Pillars bar */
  .hero-pillars {
    gap: 0.25rem;
    padding-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .pillar-item {
    font-size: 0.54rem;
    letter-spacing: 0.1em;
    gap: 0.25rem;
  }
  .pillar-sep { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   AUTHORITY BAR
═══════════════════════════════════════════════════════════════════ */
.authority-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
  overflow: hidden;
}
.authority-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.auth-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted2);
  white-space: nowrap;
  transition: color 0.2s;
}
.auth-item:hover { color: var(--gold); }
.auth-item i { color: var(--gold); font-size: 0.65rem; }
.auth-sep {
  width: 1px; height: 20px;
  background: var(--border);
}
@media (max-width: 700px) {
  .auth-sep { display: none; }
  .auth-item { padding: 0.4rem 0.8rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   SERVICES OVERVIEW SECTION — WHAT WE DO
═══════════════════════════════════════════════════════════════════ */
#services-overview {
  position: relative;
  overflow: hidden;
}

#services-overview::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/ascg-roundtable-chamber.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.12;
  filter: brightness(0.5) saturate(0.9);
}

#services-overview::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.82) 50%, rgba(5,5,5,0.92) 100%);
  pointer-events: none;
}

#services-overview .container {
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.svc-card {
  background: var(--bg2);
  padding: 2.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  color: inherit;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.45s var(--ease);
}

.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 20%, rgba(212,175,55,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}

.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover::after { opacity: 1; }
.svc-card:hover { background: rgba(12,10,6,0.9); transform: translateY(-2px); }

.svc-card h3 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--white);
  transition: color 0.25s;
}
.svc-card:hover h3 { color: var(--gold); }
.svc-card p { font-size: 0.85rem; color: var(--muted2); line-height: 1.7; }

.svc-arrow {
  font-size: 0.9rem;
  color: var(--gold);
  margin-top: auto;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.3s, transform 0.3s;
  display: block;
}
.svc-card:hover .svc-arrow { opacity: 1; transform: translateX(0); }

/* Wide card (speaking/last service) */
.svc-card-wide {
  grid-column: span 3;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}
.svc-wide-content { flex: 1; }
.svc-wide-content h3 { margin-bottom: 0.5rem; }
.svc-arrow-wide {
  font-size: 1.2rem;
  opacity: 1;
  transform: none;
  flex-shrink: 0;
}
.svc-card-wide:hover .svc-arrow-wide { transform: translateX(5px); }

@media (max-width: 960px) { .svc-card-wide { grid-column: span 2; } }
@media (max-width: 560px) {
  .svc-card-wide { grid-column: span 1; flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════════
   ROUNDTABLE SECTION
═══════════════════════════════════════════════════════════════════ */
.roundtable-section {
  position: relative;
  background: var(--bg2);
}

.rt-section-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/ascg-roundtable-chamber.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.18;
  filter: brightness(0.6) saturate(0.8);
  pointer-events: none;
}
.rt-section-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Strong dark overlay to keep text readable */
    linear-gradient(to bottom, rgba(5,5,5,0.85) 0%, rgba(10,10,10,0.78) 50%, rgba(5,5,5,0.88) 100%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(212,175,55,0.06) 0%, transparent 60%);
}

.rt-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.rt-two-col {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}
@media (max-width: 900px) {
  .rt-two-col { grid-template-columns: 1fr; }
  .rt-center-crest { display: none; }
}

.rt-col { padding: 2.5rem; }
.rt-col-left { border-right: 1px solid var(--border); }
.rt-col-right { border-left: 1px solid var(--border); }
@media (max-width: 900px) {
  .rt-col-left, .rt-col-right { border: 1px solid var(--border); }
}

.rt-col-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(212,175,55,0.06);
  border: 1px solid var(--border-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(212,175,55,0.1);
}
.rt-col-icon-nature {
  background: rgba(34,80,20,0.12);
  border-color: rgba(80,140,60,0.3);
  color: #7FBF5F;
}

.rt-col-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.rt-col-sub {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 1.2rem;
  letter-spacing: 0.08em;
}
.rt-col-body {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.rt-col-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.rt-col-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--muted2);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.rt-col-list li i { color: var(--gold); font-size: 0.65rem; }

/* Center crest */
.rt-center-crest {
  position: relative;
  width: 120px; height: 120px;
  margin: 2rem 0;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  align-self: center;
}
.crest-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.2);
  pointer-events: none;
}
.crest-ring-1 { width: 120px; height: 120px; animation: crestSpin 15s linear infinite; }
.crest-ring-2 { width: 90px; height: 90px; animation: crestSpin 20s linear infinite reverse; opacity: 0.6; }
.crest-ring-3 { width: 60px; height: 60px; animation: crestSpin 25s linear infinite; opacity: 0.4; border-style: dashed; }
@keyframes crestSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.crest-inner {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.4);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px rgba(212,175,55,0.15);
  position: relative; z-index: 1;
}
.crest-inner img {
  width: 50px; height: 50px; object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(212,175,55,0.5));
}

/* RT Pillars Row */
.rt-pillars-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 900px) { .rt-pillars-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .rt-pillars-row { grid-template-columns: repeat(2, 1fr); } }

.rt-pillar {
  background: var(--bg2);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.rt-pillar:hover { background: rgba(12,10,6,0.9); }

.rt-pillar-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(212,175,55,0.06);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  margin: 0 auto 1rem;
  transition: all 0.3s;
}
.rt-pillar:hover .rt-pillar-icon { border-color: var(--gold); box-shadow: 0 0 16px rgba(212,175,55,0.15); }
.rt-pillar h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}
.rt-pillar p { font-size: 0.78rem; color: var(--muted2); }

/* ═══════════════════════════════════════════════════════════════════
   KINGDOM GROWTH SYSTEM — Horizontal Timeline
═══════════════════════════════════════════════════════════════════ */
.kgs-section {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

/* KGS cinematic landscape background */
.kgs-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/kingdom-growth-system.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.18;
  filter: brightness(0.6) saturate(1.1);
}

/* Overlay to darken and frame the KGS background */
.kgs-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.75) 40%, rgba(5,5,5,0.85) 80%, rgba(5,5,5,0.95) 100%);
  pointer-events: none;
}

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

.kgs-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  overflow-x: auto;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}

/* Connector line */
.kgs-connector {
  display: none; /* using CSS instead */
}

/* Steps */
.kgs-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0.5rem;
  position: relative;
}

/* Connecting line between nodes */
.kgs-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 45px;
  left: calc(50% + 22px);
  width: calc(100% - 44px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dim), rgba(212,175,55,0.15));
}

.kgs-node-wrap {
  position: relative;
  margin-bottom: 1.5rem;
}

.kgs-node {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--border-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  transition: all 0.35s var(--ease);
  position: relative;
  box-shadow: 0 0 0 0 rgba(212,175,55,0);
}
.kgs-step:hover .kgs-node {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212,175,55,0.2);
  transform: scale(1.06);
}
.kgs-node-gold {
  background: rgba(212,175,55,0.08);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212,175,55,0.15);
}

/* Image-enhanced KGS nodes */
.kgs-node-img {
  position: relative;
  overflow: hidden;
}
.kgs-node-img::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image: var(--kgs-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: brightness(0.6) saturate(1.2);
  transition: opacity 0.4s ease;
}
.kgs-step:hover .kgs-node-img::before {
  opacity: 0.32;
}
.kgs-node-img i {
  position: relative;
  z-index: 1;
  text-shadow: 0 0 8px rgba(212,175,55,0.6);
}

.kgs-node-num {
  position: absolute;
  bottom: -4px; right: -4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border-md);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--muted2);
  letter-spacing: 0.05em;
}
.kgs-num-gold { color: var(--gold); border-color: var(--gold); }

.kgs-step-content {
  text-align: center;
  min-width: 120px;
}
.kgs-step-content h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.kgs-phase {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.kgs-step-content ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.kgs-step-content ul li {
  font-size: 0.72rem;
  color: var(--muted2);
  text-align: left;
  padding-left: 0.6rem;
  position: relative;
}
.kgs-step-content ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
}

/* KGS Banner */
.kgs-banner {
  margin-top: 3rem;
}
.kgs-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 3rem;
  border: 1px solid var(--border-md);
  background: rgba(212,175,55,0.03);
  flex-wrap: wrap;
}
.kgs-banner-crown {
  font-size: 1.4rem;
  color: var(--gold);
}
.kgs-banner-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-lt);
  flex: 1;
  text-align: center;
}
@media (max-width: 768px) {
  .kgs-timeline { grid-template-columns: repeat(4, 1fr); }
  .kgs-banner-inner { flex-direction: column; text-align: center; }
  .kgs-banner-inner .btn { width: 100%; justify-content: center; }
}
@media (max-width: 560px) {
  .kgs-timeline { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .kgs-step::after { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   WHO WE SERVE
═══════════════════════════════════════════════════════════════════ */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .serve-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .serve-grid { grid-template-columns: 1fr; } }

.serve-card {
  padding: 2.5rem 2rem;
  transition: all 0.3s var(--ease);
}
.serve-card:hover { transform: translateY(-3px); border-color: var(--border-md); }

.serve-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(212,175,55,0.06);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}
.serve-card:hover .serve-icon { border-color: var(--gold); box-shadow: 0 0 16px rgba(212,175,55,0.15); }
.serve-card h3 {
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 0.6rem;
  letter-spacing: 0.12em;
}
.serve-card p { font-size: 0.84rem; color: var(--muted2); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  padding: 0 4rem;
}
.stat-div {
  width: 1px; height: 50px;
  background: var(--border);
}
@media (max-width: 760px) {
  .stat-item { padding: 1.5rem 2rem; }
  .stat-div { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   APPROACH SECTION
═══════════════════════════════════════════════════════════════════ */
.approach-section {
  background: var(--bg2);
}
.approach-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 900px) { .approach-wrap { grid-template-columns: 1fr; gap: 3rem; } }

.approach-copy .headline { font-size: clamp(2rem, 3.5vw, 3.2rem); }

.approach-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
}

.appr-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  position: relative;
}
.appr-pillar:last-child { border-bottom: none; }
.appr-pillar::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s var(--ease);
}
.appr-pillar:hover::before { transform: scaleY(1); }
.appr-pillar:hover { background: rgba(212,175,55,0.02); }

.appr-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(212,175,55,0.15);
  letter-spacing: 0.05em;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.3s;
}
.appr-pillar:hover .appr-num { color: rgba(212,175,55,0.3); }

.appr-content h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.appr-content p { font-size: 0.84rem; color: var(--muted2); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════════════════ */
.final-cta-section { padding: 5rem 0; }

.final-cta-box {
  position: relative;
  padding: 6rem 3rem;
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--border-md);
  background: var(--bg2);
}

/* Hero image as subtle CTA background */
.final-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/ascg-roundtable-chamber.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.09;
  filter: brightness(0.5) saturate(0.8);
}

.fcta-bg-layer {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(212,175,55,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(212,175,55,0.04) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(5,5,5,0.7) 0%, transparent 50%, rgba(5,5,5,0.7) 100%);
}

/* Corner ornaments */
.fcta-corner {
  position: absolute;
  width: 30px; height: 30px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.4;
}
.fcta-tl { top: 16px; left: 16px; border-width: 1px 0 0 1px; }
.fcta-tr { top: 16px; right: 16px; border-width: 1px 1px 0 0; }
.fcta-bl { bottom: 16px; left: 16px; border-width: 0 0 1px 1px; }
.fcta-br { bottom: 16px; right: 16px; border-width: 0 1px 1px 0; }

.fcta-content { position: relative; z-index: 2; }
.fcta-content .headline-lg { text-shadow: 0 0 60px rgba(212,175,55,0.08); }

.fcta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.fcta-trust span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
}
.fcta-trust span i { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
@media(max-width: 960px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width: 600px) { .testi-grid { grid-template-columns: 1fr; } }

.testi-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: rgba(212,175,55,0.1);
  line-height: 1;
}
.testi-card:hover {
  border-color: rgba(212,175,55,0.35);
  transform: translateY(-4px);
}
.testi-card.testi-featured {
  border-color: rgba(212,175,55,0.4);
  background: linear-gradient(135deg, var(--bg2) 0%, rgba(212,175,55,0.04) 100%);
}
.testi-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: -0.25rem;
}
.testi-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--gold);
  font-size: 0.7rem;
}
.testi-quote {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--white-lt);
  line-height: 1.75;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testi-info strong {
  display: block;
  font-size: 0.82rem;
  color: var(--white);
  margin-bottom: 0.15rem;
}
.testi-info span {
  font-size: 0.72rem;
  color: var(--gray);
}

/* Trust bar below testimonials */
.testi-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 3.5rem;
  padding: 2rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  flex-wrap: wrap;
}
.testi-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0 2.5rem;
}
.testi-trust-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.testi-trust-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}
.testi-trust-div {
  width: 1px;
  height: 40px;
  background: var(--border);
}
@media(max-width: 600px) {
  .testi-trust { gap: 1.5rem; }
  .testi-trust-item { padding: 0 1rem; }
  .testi-trust-div { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE POLISH — ≤600px / ≤480px
   Applied last to override all section-level media queries
═══════════════════════════════════════════════════════════════════ */

/* ── Stats Bar ── */
@media (max-width: 560px) {
  .stats-bar { padding: 2.5rem 0; }
  .stat-item { padding: 1rem 1.5rem; text-align: center; }
  .stat-div { display: none; }
  .stats-inner { gap: 0; }
}

/* ── Authority Bar ── */
@media (max-width: 480px) {
  .authority-bar { padding: 0.8rem 0; }
  .auth-item {
    font-size: 0.55rem;
    padding: 0.3rem 0.6rem;
    letter-spacing: 0.14em;
  }
}

/* ── Serve Grid (Who We Serve) ── */
@media (max-width: 480px) {
  .serve-grid { gap: 1rem; }
  .serve-card { padding: 1.75rem 1.5rem; }
}

/* ── KGS Timeline ── */
@media (max-width: 480px) {
  .kgs-section { overflow-x: hidden; }
  .kgs-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding-bottom: 0.5rem;
    overflow-x: unset;
  }
  .kgs-step::after { display: none; }
  .kgs-node { width: 72px; height: 72px; font-size: 1.2rem; }
  .kgs-step-content { min-width: unset; }
  .kgs-step-content h4 { font-size: 0.65rem; }
  .kgs-phase { font-size: 0.62rem; }
  .kgs-step-content ul li { font-size: 0.65rem; }
  .kgs-banner-inner { padding: 1.5rem; gap: 1.25rem; }
}

/* ── Roundtable Section ── */
@media (max-width: 600px) {
  .rt-section-header { margin-bottom: 2.5rem; }
  .rt-two-col { gap: 1.5rem; }
  .rt-col { padding: 1.75rem 1.5rem; }
  .rt-col-title { font-size: 1.05rem; }
  .rt-pillars-row { grid-template-columns: repeat(2, 1fr); }
}

/* ── Services Overview ── */
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { padding: 2rem 1.5rem; }
  .svc-card-wide { flex-direction: column; }
}

/* ── Approach Section ── */
@media (max-width: 600px) {
  .approach-wrap { gap: 2rem; }
  .appr-pillar { padding: 1.5rem; gap: 1rem; }
  .appr-num { font-size: 1.2rem; }
}

/* ── Final CTA ── */
@media (max-width: 600px) {
  .final-cta-box { padding: 4rem 1.75rem; }
  .fcta-trust { gap: 1rem; margin-top: 1.75rem; padding-top: 1.5rem; }
}
@media (max-width: 480px) {
  .final-cta-box { padding: 3rem 1.25rem; }
  .fcta-trust { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .fcta-corner { width: 20px; height: 20px; }
}

/* ── Testimonials ── */
@media (max-width: 480px) {
  .testi-card { padding: 1.5rem; }
  .testi-quote { font-size: 0.88rem; }
}

/* ── General overflow guard ── */
@media (max-width: 600px) {
  .hero,
  .authority-bar,
  .roundtable-section,
  .kgs-section,
  .approach-section,
  .final-cta-section {
    overflow-x: hidden;
  }
}

/* ── KGS Infographic + Camelot sections (inline-styled) ── */
/* These sections use inline style padding — override on mobile */
@media (max-width: 560px) {
  /* Force all inline-BTN rows inside these sections to wrap & stack */
  [data-reveal] > .btn + .btn,
  [data-reveal] .btn ~ .btn {
    margin-left: 0 !important;
  }

  /* Any inline flex btn row: stack and full width */
  [style*="text-align:center"] > a.btn,
  [style*="text-align: center"] > a.btn {
    display: block;
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
    text-align: center;
  }

  /* Reduce section vertical padding on inline-styled sections */
  [style*="padding:0 clamp"] {
    padding-bottom: 3rem !important;
  }
}

@media (max-width: 480px) {
  /* Infographic image sections — tighter vertical padding */
  [style*="padding-top:4rem"] {
    padding-top: 2.5rem !important;
  }
  [style*="margin-bottom:2.5rem"] {
    margin-bottom: 1.5rem !important;
  }
}
