*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #c8a84b;
  --gold-light: #e2c97e;
  --gold-dim: rgba(200, 168, 75, 0.10);
  --gold-border: rgba(200, 168, 75, 0.28);
  --gold-glow: rgba(200, 168, 75, 0.18);
  --dark: #07090f;
  --dark2: #0c0f1a;
  --dark3: #111522;
  --dark4: #181d2e;
  --white: #ffffff;
  --white80: rgba(255, 255, 255, 0.80);
  --white60: rgba(255, 255, 255, 0.58);
  --white30: rgba(255, 255, 255, 0.28);
  --white10: rgba(255, 255, 255, 0.07);
  --white05: rgba(255, 255, 255, 0.04);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* Cursor */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, opacity 0.2s;
  mix-blend-mode: screen;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.2s, height 0.2s, border-color 0.2s;
}

.cursor-ring.hover {
  width: 56px;
  height: 56px;
  border-color: var(--gold);
}

/* Background Canvas */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 4rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s, border-color 0.4s, padding 0.3s;
}

.nav.scrolled {
  background: rgba(7, 9, 15, 0.96);
  border-bottom: 0.5px solid var(--white10);
  backdrop-filter: blur(18px);
  padding: 0.75rem 4rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

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

.nav-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--white60);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 2px;
  font-weight: 500;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 1.5px;
  background: var(--gold);
  transition: right 0.3s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
}

.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: transparent;
  color: var(--gold);
  padding: 0.55rem 1.5rem;
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: none;
  border: 0.5px solid var(--gold-border);
  font-weight: 500;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
}

.nav-cta:hover::before {
  transform: translateX(0);
}

.nav-cta:hover {
  color: var(--dark);
}

.nav-cta span {
  position: relative;
  z-index: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white60);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(7, 9, 15, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--white10);
  padding: 2rem 2.5rem;
  gap: 1.5rem;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--white60);
  text-decoration: none;
  font-weight: 500;
}

.mobile-menu a.active {
  color: var(--gold);
}

/* Main Content */
main {
  padding-top: 80px;
  position: relative;
  z-index: 1;
}

/* Sections */
.section {
  max-width: 1340px;
  margin: 0 auto;
  padding: 5rem 4rem;
  position: relative;
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 0.5px;
  background: var(--gold);
}

.section-h {
  font-size: 56px;
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 16px;
  color: var(--white60);
  line-height: 1.85;
  max-width: 560px;
  margin-bottom: 3rem;
  font-weight: 400;
}

/* Hero Section */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 5rem 4rem;
  max-width: 1340px;
  margin: 0 auto;
  position: relative;
}

.hero-content {
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 0.5px;
  background: var(--gold);
}

.hero-headline {
  font-size: 88px;
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin-bottom: 2.5rem;
}

.hero-headline em {
  font-style: normal;
  color: var(--gold);
  display: block;
  font-weight: 300;
}

.hero-tagline {
  font-size: 16px;
  color: var(--white60);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 3.5rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: none;
  border: none;
  font-weight: 600;
  transition: opacity 0.25s, transform 0.2s, box-shadow 0.3s;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(200, 168, 75, 0.35);
  opacity: 0.85;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-ghost {
  background: transparent;
  color: var(--white60);
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: none;
  border: 0.5px solid var(--white10);
  font-weight: 500;
  transition: border-color 0.25s, color 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--white30);
  color: var(--white);
}

/* Hero Stats */
.hero-stats {
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-stat {
  padding: 1.75rem 1.6rem;
  background: var(--white05);
  border: 0.5px solid var(--white10);
  backdrop-filter: blur(10px);
  min-width: 200px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.hero-stat:first-child {
  border-radius: 12px 12px 0 0;
}

.hero-stat:last-child {
  border-radius: 0 0 12px 12px;
}

.hero-stat:hover {
  background: var(--gold-dim);
  border-color: var(--gold-border);
  transform: translateX(-4px);
}

.hero-stat-num {
  font-size: 30px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.hero-stat-desc {
  font-size: 12px;
  color: var(--white30);
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.hero-reg {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.08em;
  margin-top: 1.1rem;
  text-align: center;
}

/* Marquee */
.marquee-wrap {
  border-top: 0.5px solid var(--white10);
  border-bottom: 0.5px solid var(--white10);
  background: var(--dark2);
  overflow: hidden;
  padding: 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1.3rem 2.5rem;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white30);
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 400;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

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

/* Phases */
.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--white10);
  border-radius: 12px;
  overflow: hidden;
}

.phase {
  background: var(--dark2);
  padding: 2.75rem 2.25rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.phase:hover {
  background: var(--dark3);
}

.phase-tag {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.phase-tag::before {
  content: '';
  display: block;
  width: 18px;
  height: 0.5px;
  background: var(--gold);
}

.phase-name {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0.85rem;
  line-height: 1.1;
}

.phase-desc {
  font-size: 13px;
  color: var(--white60);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  font-weight: 400;
}

.phase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.phase-list li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: 400;
}

.phase-list li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

/* Trust Bar */
.trust-bar {
  background: var(--dark2);
  border-top: 0.5px solid var(--white10);
  border-bottom: 0.5px solid var(--white10);
  padding: 3.5rem 4rem;
}

.trust-inner {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--white10);
}

.trust-item {
  background: var(--dark2);
  padding: 2rem 2.2rem;
  text-align: center;
  transition: background 0.3s;
}

.trust-item:hover {
  background: var(--dark3);
}

.trust-icon {
  font-size: 22px;
  margin-bottom: 0.75rem;
  display: block;
  opacity: 0.7;
}

.trust-val {
  font-size: 38px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
}

.trust-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white30);
  font-weight: 500;
}

/* CTA Banner */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 7rem 4rem;
}

.cta-inner {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(200, 168, 75, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-border {
  position: absolute;
  inset: 1px;
  border: 0.5px solid var(--white10);
  border-radius: 16px;
  pointer-events: none;
}

.cta-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.cta-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 0.5px;
  background: var(--gold);
}

.cta-h {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-sub {
  font-size: 16px;
  color: var(--white60);
  font-weight: 400;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-end;
}

/* Our Story Page Styles */
.hero-section {
  padding: 5rem 4rem 3rem;
  text-align: center;
  border-bottom: 0.5px solid var(--white10);
}

.hero-section .section-label {
  justify-content: center;
}

.hero-section h1 {
  font-size: 44px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.hero-section .hero-subtitle {
  font-size: 1rem;
  color: var(--white60);
  max-width: 600px;
  margin: 0 auto;
}

.story-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem;
}

.story-container p {
  margin-bottom: 1.25rem;
  color: var(--white80);
  line-height: 1.75;
  font-size: 1rem;
}

.story-container h2 {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 2rem 0 1rem;
  letter-spacing: -0.01em;
}

.leadership-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  margin: 2.5rem 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 2rem;
  border: 0.5px solid var(--white10);
  transition: all 0.3s ease;
}

.leadership-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
}

.leader-image {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.image-placeholder {
  background: linear-gradient(135deg, var(--dark3) 0%, var(--dark2) 100%);
  border-radius: 12px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 0.5px solid var(--white10);
  position: relative;
  overflow: hidden;
}

.image-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
  color: var(--gold);
}

.image-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leadership-content h3 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--gold);
}

.leadership-content p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.hr {
  border: none;
  border-top: 0.5px solid var(--white10);
  margin: 2rem 0;
}

.toolkit-grid, .belief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--white10);
  border-radius: 16px;
  overflow: hidden;
  margin: 2rem 0;
}

.toolkit-card, .belief-card {
  background: rgba(255, 255, 255, 0.02);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.toolkit-card:hover, .belief-card:hover {
  background: rgba(255, 255, 255, 0.04);
}

.toolkit-icon, .belief-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.toolkit-card h4, .belief-card strong {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.toolkit-card p, .belief-card p {
  font-size: 0.85rem;
  color: var(--white60);
  margin-bottom: 0;
}

.belief-card p {
  font-size: 0.95rem;
}

.belief-card strong {
  color: var(--gold);
  font-weight: 500;
}

.closing-quote {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(200, 168, 75, 0.05) 0%, rgba(200, 168, 75, 0.01) 100%);
  border-radius: 16px;
  border: 0.5px solid var(--gold-border);
}

.closing-quote p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.closing-quote .signature {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Pricing Page Styles */
.price-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--white10);
  border-radius: 12px;
  margin-bottom: 4rem;
}

.price-wrap::-webkit-scrollbar {
  height: 6px;
}

.price-wrap::-webkit-scrollbar-track {
  background: var(--white10);
  border-radius: 10px;
}

.price-wrap::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.price-table th {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white30);
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 0.5px solid var(--white10);
  font-weight: 400;
}

.price-table th:not(:first-child) {
  text-align: right;
}

.price-table td {
  padding: 1.2rem 1.5rem;
  font-size: 14px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.04);
}

.price-table td:not(:first-child) {
  text-align: right;
  color: var(--gold);
  font-size: 13px;
}

.price-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.svc-name {
  font-size: 14px;
  color: var(--white);
}

.svc-phase {
  font-size: 11px;
  color: var(--white30);
  margin-top: 3px;
  letter-spacing: 0.04em;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--white10);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 2rem;
}

.pkg {
  background: var(--dark2);
  padding: 2.75rem 2.25rem;
  transition: background 0.2s;
}

.pkg:hover {
  background: var(--dark3);
}

.pkg.featured {
  background: rgba(200, 168, 75, 0.06);
}

.pkg-popular {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 7px;
}

.pkg-popular::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.pkg-name {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white30);
  margin-bottom: 0.75rem;
}

.pkg-price {
  font-size: 40px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.pkg-save {
  font-size: 11px;
  color: rgba(100, 220, 130, 0.8);
  margin-bottom: 0.5rem;
}

.pkg-services {
  font-size: 11px;
  color: var(--white30);
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}

.pkg-list {
  list-style: none;
  margin-bottom: 2.25rem;
}

.pkg-list li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pkg-list li::before {
  content: '✓';
  color: var(--gold);
}

.btn-pkg {
  width: 100%;
  padding: 0.8rem;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: none;
  border-radius: 4px;
  transition: all 0.2s;
  background: var(--gold);
  color: var(--dark);
  border: none;
  font-weight: 500;
}

.btn-pkg:hover {
  opacity: 0.85;
}

/* BSRSA Page Styles */
.bsrsa-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem;
}

.bsrsa-wrap {
  background: rgba(255, 255, 255, 0.02);
  border: 0.5px solid var(--gold-border);
  border-radius: 20px;
  padding: 4rem;
  text-align: center;
}

.bsrsa-h {
  font-size: 44px;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.bsrsa-sub {
  font-size: 16px;
  color: var(--white60);
  max-width: 600px;
  margin: 0 auto 3.5rem;
  line-height: 1.85;
}

.bsrsa-nums {
  display: flex;
  justify-content: center;
  gap: 4.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.bsrsa-n {
  font-size: 38px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -0.01em;
}

.bsrsa-l {
  font-size: 10px;
  color: var(--white30);
  margin-top: 6px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 2.75rem;
}

.stage {
  padding: 0.45rem 1.1rem;
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 0.06em;
  border: 0.5px solid var(--white10);
  color: var(--white30);
}

.stage.live {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

/* Terms Page Styles */
.terms-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem;
}

.terms-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--white10);
}

.terms-header h1 {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.terms-header .last-updated {
  font-size: 0.85rem;
  color: var(--white30);
  letter-spacing: 0.1em;
}

.terms-header .company-tag {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 1rem;
}

.terms-container h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--white10);
  color: var(--gold);
  letter-spacing: -0.01em;
}

.terms-container h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 1.5rem 0 0.75rem;
  color: var(--white80);
}

.terms-container p,
.terms-container ul,
.terms-container ol {
  margin-bottom: 0.9rem;
  color: var(--white60);
  line-height: 1.7;
}

.terms-container ul,
.terms-container ol {
  margin-left: 1.8rem;
}

.terms-container li {
  margin-bottom: 0.4rem;
}

.terms-container strong {
  color: var(--white80);
  font-weight: 500;
}

.legal-note {
  background: rgba(200, 168, 75, 0.05);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0.5rem;
  font-size: 0.95rem;
}

.contact-box {
  background: rgba(255, 255, 255, 0.02);
  border: 0.5px solid var(--white10);
  border-radius: 0.75rem;
  padding: 1.8rem;
  text-align: center;
  margin: 2rem 0 1.5rem;
}

.contact-box p {
  margin-bottom: 0.5rem;
}

.contact-box a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-box a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.final-statement {
  background: linear-gradient(135deg, rgba(200, 168, 75, 0.05) 0%, rgba(200, 168, 75, 0.01) 100%);
  border: 0.5px solid var(--gold-border);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  margin: 2rem 0 1.5rem;
}

.final-statement p {
  margin-bottom: 0;
}

.final-statement .gold-text {
  color: var(--gold);
  font-weight: 500;
}

/* Contact Form Page Styles */
.form-box {
  background: var(--dark3);
  padding: 2rem;
  border-radius: 16px;
  border: 0.5px solid var(--white10);
}

.field-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white30);
  display: block;
  margin-bottom: 8px;
}

.field-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 0.85rem 1.1rem;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

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

.field-input::placeholder {
  color: rgba(255, 255, 255, 0.18);
}

select.field-input option {
  background: var(--dark4);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-top: 2rem;
}

.contact-quote {
  font-size: 20px;
  font-weight: 300;
  color: var(--white80);
  line-height: 1.7;
  margin-bottom: 3rem;
  border-left: 1.5px solid var(--gold);
  padding-left: 1.5rem;
}

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

.contact-icon-box {
  width: 36px;
  height: 36px;
  border: 0.5px solid var(--white10);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-lbl {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white30);
  margin-bottom: 5px;
}

.contact-val {
  font-size: 14px;
  color: var(--white80);
}

.contact-val a {
  color: var(--white80);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-val a:hover {
  color: var(--gold);
}

.values-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.value-tag {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white30);
  padding: 0.4rem 1rem;
  border: 0.5px solid var(--white10);
  border-radius: 20px;
}

/* Footer */
.footer {
  border-top: 0.5px solid var(--white10);
  background: var(--dark2);
  padding: 3rem 4rem 2rem;
}

.footer-top {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 2.5rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
  display: inline-flex;
}

.footer-brand p {
  font-size: 12px;
  color: var(--white30);
  line-height: 1.8;
  font-weight: 400;
  max-width: 240px;
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a,
.footer-contact-info a {
  font-size: 12px;
  color: var(--white30);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.03em;
  font-weight: 400;
}

.footer-links a:hover,
.footer-contact-info a:hover {
  color: var(--gold);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-bottom {
  max-width: 1340px;
  margin: 0 auto;
  border-top: 0.5px solid var(--white10);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy,
.footer-reg {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.06em;
  font-weight: 400;
}

/* Scroll Indicator & Progress Bar */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 4rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white30);
  font-weight: 400;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease infinite;
}

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

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.05s linear;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

.reveal-delay-3 {
  transition-delay: 0.34s;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-stats {
    display: none;
  }
  .hero-content {
    max-width: 100%;
  }
  .trust-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .nav {
    padding: 1rem 1.5rem;
  }
  .nav.scrolled {
    padding: 0.75rem 1.5rem;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  main {
    padding-top: 68px;
  }
  .nav-logo img {
    height: 36px;
  }
  .hero {
    padding: 3.5rem 1.5rem;
    min-height: 85vh;
  }
  .hero-headline {
    font-size: 60px;
  }
  .section {
    padding: 4rem 1.5rem;
  }
  .section-h {
    font-size: 40px;
  }
  .phases,
  .toolkit-grid,
  .belief-grid,
  .pkg-grid {
    grid-template-columns: 1fr;
  }
  .trust-bar {
    padding: 2.5rem 1.5rem;
  }
  .trust-inner {
    grid-template-columns: 1fr 1fr;
  }
  .cta-banner {
    padding: 4rem 1.5rem;
  }
  .cta-inner {
    grid-template-columns: 1fr;
  }
  .cta-h {
    font-size: 36px;
  }
  .cta-actions {
    align-items: flex-start;
    flex-direction: row;
  }
  .footer {
    padding: 2.5rem 1.5rem 1.5rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .scroll-indicator {
    display: none;
  }
  .hero-section {
    padding: 3rem 1.5rem 2rem;
  }
  .hero-section h1 {
    font-size: 32px;
  }
  .story-container,
  .bsrsa-container,
  .terms-container {
    padding: 2rem 1.5rem;
  }
  .bsrsa-wrap {
    padding: 2rem 1.5rem;
  }
  .bsrsa-h {
    font-size: 28px;
  }
  .leadership-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  .image-placeholder {
    max-width: 240px;
    margin: 0 auto;
    width: 100%;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .price-wrap {
    margin: 0 -0.5rem;
    padding: 0 0.5rem;
  }
  .price-table th,
  .price-table td {
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 540px) {
  .hero-headline {
    font-size: 44px;
  }
  .section-h {
    font-size: 32px;
  }
  .trust-inner {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-logo img {
    height: 32px;
  }
  .bsrsa-nums {
    gap: 1.5rem;
  }
  .bsrsa-n {
    font-size: 28px;
  }
}