/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #d4af37;
  --gold-light: #e8c84a;
  --gold-dark: #b8941e;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #222222;
  --light: #ffffff;
  --light-2: #f8f9fa;
  --light-3: #e9ecef;
  --gray: #6c757d;
  --gray-light: #adb5bd;
  --accent: #d4af37;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 40px -12px rgba(0,0,0,0.15);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--light);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  height: auto;
}

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

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray);
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), #fff5cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--light);
  border: 2px solid rgba(255,255,255,0.3);
}

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

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.navbar.nav-hidden {
  transform: translateY(-100%);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--light);
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 1001;
}

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-logo small {
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--light);
}

.nav-link.active {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
}

.nav-link.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-weight: 600;
  margin-left: 8px;
}

.nav-link.nav-cta:hover {
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--light);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(100, 50, 0, 0.08) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--light);
  padding: 120px 24px 80px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.6);
  margin-top: 20px;
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.hero-scroll a {
  color: rgba(255,255,255,0.4);
}

.hero-scroll a:hover {
  color: var(--gold);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 100px 0;
}

.section-light {
  background: var(--light-2);
}

.section-dark {
  background: var(--dark);
  color: var(--light);
}

.section-accent {
  background: var(--dark-2);
  color: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-light .section-tag {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-dark);
}

.section-dark .section-tag,
.section-accent .section-tag {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-desc {
  color: rgba(255,255,255,0.5);
}

/* ==================== ABOUT ==================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-main p {
  margin-bottom: 16px;
  color: var(--gray);
}

.about-main .lead {
  font-size: 1.15rem;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 20px;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vision-card {
  padding: 32px;
  background: var(--light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--light-3);
  transition: var(--transition);
}

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

.vision-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold-dark);
}

.vision-card h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.vision-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.values-strip {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--light-3);
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-3);
}

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

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

.service-card {
  position: relative;
  padding: 40px 28px 32px;
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  border-color: rgba(212, 175, 55, 0.2);
}

.service-card.featured::before {
  opacity: 1;
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(212, 175, 55, 0.15);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.service-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-link:hover {
  gap: 10px;
}

/* ==================== SKILLS DEVELOPMENT ==================== */
.skills-tabs {
  max-width: 900px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  background: var(--light);
  padding: 6px;
  border-radius: 50px;
  box-shadow: var(--shadow);
}

.tab-btn {
  flex: 1;
  padding: 14px 24px;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  border-radius: 50px;
  transition: var(--transition);
}

.tab-btn.active {
  background: var(--dark);
  color: var(--light);
  box-shadow: var(--shadow);
}

.tab-btn:hover:not(.active) {
  color: var(--dark);
}

.tab-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-text h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--dark);
}

.tab-text > p {
  color: var(--gray);
  margin-bottom: 24px;
}

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

.info-card {
  padding: 24px;
  background: var(--light);
  border-radius: var(--radius);
  border: 1px solid var(--light-3);
  box-shadow: var(--shadow);
}

.info-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 8px;
}

.info-card h4 {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
}

.price-tag {
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.info-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.check-list li {
  display: flex;
  gap: 12px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b8941e' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* ==================== BBB-EE ==================== */
.bbbee-intro {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.bbbee-intro p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.8;
}

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

.bbbee-card {
  padding: 40px 32px;
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.bbbee-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-4px);
}

.bbbee-card-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.1);
  line-height: 1;
  margin-bottom: 16px;
}

.bbbee-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.bbbee-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}

.bbbee-price {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.price-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.price-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ==================== EMPLOYMENT EQUITY ==================== */
.equity-intro {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.equity-intro p {
  color: var(--gray);
  line-height: 1.8;
}

.process-timeline {
  max-width: 700px;
  margin: 0 auto 48px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(212,175,55,0.1));
}

.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--light);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold-dark);
  z-index: 1;
  box-shadow: 0 0 0 6px var(--light-2);
}

.process-content {
  padding-top: 8px;
}

.process-content h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.process-content p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

.equity-pricing {
  text-align: center;
}

.pricing-highlight {
  display: inline-block;
  padding: 32px 48px;
  background: var(--light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold);
}

.pricing-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.pricing-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
}

.pricing-amount small {
  font-size: 0.5em;
  font-weight: 500;
  color: var(--gray);
}

.pricing-note {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 4px;
}

/* ==================== CONSULTING ==================== */
.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.consult-text h2 {
  margin: 12px 0 16px;
}

.consult-text .lead {
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

.consult-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.consult-list li {
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.consult-list li:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(212, 175, 55, 0.2);
}

.consult-list li strong {
  color: var(--gold);
  font-weight: 600;
}

.cta-card {
  padding: 48px;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
}

.cta-card h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.cta-card > p {
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}

.cta-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-item svg {
  color: var(--gold);
}

/* ==================== CLIENTS ==================== */
.clients-section {
  padding: 80px 0;
  overflow: hidden;
}

.clients-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 20s linear infinite;
  width: max-content;
}

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

.client-logo {
  flex-shrink: 0;
  padding: 20px 48px;
  background: var(--light);
  border-radius: var(--radius);
  border: 1px solid var(--light-3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-4);
  opacity: 0.5;
}

/* ==================== CONTACT ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-card {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.contact-card h4 {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.contact-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.contact-card a:hover {
  text-decoration: underline;
}

.contact-map {
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-form-wrap {
  padding: 40px;
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--light);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--dark-3);
  color: var(--light);
}

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

/* ==================== FOOTER ==================== */
.footer {
  background: var(--dark);
  color: var(--light);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--dark);
}

.footer-links h4 {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--light);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-links li {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
}

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

/* ==================== ANIMATIONS ==================== */
/* Elements start visible; JS adds .animate-ready to hide them before triggering */
.animate-ready[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-ready[data-animate="fade-right"] {
  transform: translateX(-30px);
}

.animate-ready[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate].animated {
  opacity: 1 !important;
  transform: translate(0) !important;
}

/* ==================== PAGE HERO (inner pages) ==================== */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--dark);
  color: var(--light);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.page-hero-short {
  min-height: 300px;
  padding: 140px 0 60px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.page-hero-content {
  position: relative;
  max-width: 800px;
}

.page-hero-content h1 {
  margin-bottom: 20px;
}

.page-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

.page-hero-actions {
  margin-top: 28px;
}

/* ==================== SERVICE LINK CARDS (homepage) ==================== */
.service-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--light);
  border-radius: var(--radius);
  border: 1px solid var(--light-3);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.service-link-card:hover {
  transform: translateX(8px);
  border-color: var(--gold);
  color: var(--gold-dark);
  box-shadow: var(--shadow-lg);
}

.service-link-card svg {
  color: var(--gold);
  transition: var(--transition);
}

.service-link-card:hover svg {
  transform: translateX(4px);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding: 80px 0;
}

.cta-banner {
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 8px;
}

.cta-tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-inline {
  text-align: center;
  margin-top: 40px;
}

/* ==================== CONTENT BLOCKS (inner pages) ==================== */
.content-block {
  max-width: 900px;
  margin: 0 auto;
}

.content-block-narrow {
  max-width: 800px;
  margin: 0 auto 40px;
}

.content-block h2 {
  margin-bottom: 20px;
}

.content-block h3 {
  margin-bottom: 16px;
}

.content-block > p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.8;
}

.section-dark .content-block > p,
.section-dark .content-block-narrow > p {
  color: rgba(255,255,255,0.6);
}

.content-block .info-card {
  margin-top: 20px;
}

/* ==================== STYLED LISTS ==================== */
.styled-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.styled-list li {
  padding: 20px 24px;
  background: var(--light);
  border-radius: var(--radius);
  border: 1px solid var(--light-3);
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
}

.styled-list-compact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px 0;
}

.styled-list-compact li {
  padding: 0 0 0 20px;
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.95rem;
  position: relative;
}

.styled-list-compact li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.styled-list-compact li strong {
  color: var(--dark);
}

.section-dark .styled-list-compact li {
  color: rgba(255,255,255,0.6);
}

.section-dark .styled-list-compact li strong {
  color: var(--gold);
}

/* ==================== PRICING INLINE ==================== */
.pricing-highlight-inline {
  display: inline-block;
  padding: 24px 36px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  margin-top: 24px;
}

.pricing-highlight-inline.centered {
  display: block;
  text-align: center;
  max-width: 500px;
  margin: 40px auto;
}

.section-dark .pricing-highlight-inline {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}

.section-dark .pricing-amount {
  color: var(--gold);
}

.section-dark .pricing-amount small {
  color: rgba(255,255,255,0.5);
}

.section-dark .pricing-label {
  color: rgba(255,255,255,0.5);
}

.section-dark .pricing-note {
  color: rgba(255,255,255,0.5);
}

/* ==================== VALUES / MISSION (about page) ==================== */
.values-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.values-block h3,
.mission-block h3 {
  margin-bottom: 24px;
  color: var(--gold);
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 600;
  font-size: 1rem;
  color: var(--light);
}

.mission-block p {
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ==================== BBB-EE CARDS LIGHT (inner page) ==================== */
.bbbee-card-light {
  padding: 40px 32px;
  background: var(--light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-3);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.bbbee-card-light:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bbbee-card-light .bbbee-card-number {
  color: rgba(212, 175, 55, 0.2);
}

.bbbee-card-light h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.bbbee-card-light p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.bbbee-price-light {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--light-3);
}

.price-amount-dark {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.price-desc-dark {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ==================== EQUITY DETAIL CARDS ==================== */
.equity-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.equity-detail-card {
  padding: 32px;
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
}

.equity-detail-card h3 {
  margin-bottom: 12px;
  color: var(--gold);
}

.equity-detail-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==================== CONSULTING LAYOUT ==================== */
.consulting-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

.consulting-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--light-3);
}

.consulting-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.consulting-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  font-family: var(--font-display);
}

.consulting-item p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

.consulting-sidebar {
  position: sticky;
  top: 100px;
}

/* ==================== CONTACT PAGE SPECIFIC ==================== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.contact-info-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
}

.contact-info-card .contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.contact-info-card h2 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-info-card a {
  color: var(--gold);
}

.contact-info-card a:hover {
  text-decoration: underline;
}

.find-us-btn {
  text-align: center;
  margin-top: 8px;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap-light {
  padding: 40px;
  background: var(--light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-3);
}

.contact-form-wrap-light .form-group label {
  color: var(--dark);
}

.contact-form-wrap-light .form-group input,
.contact-form-wrap-light .form-group select,
.contact-form-wrap-light .form-group textarea {
  background: var(--light-2);
  border: 1px solid var(--light-3);
  color: var(--dark);
}

.contact-form-wrap-light .form-group input:focus,
.contact-form-wrap-light .form-group select:focus,
.contact-form-wrap-light .form-group textarea:focus {
  border-color: var(--gold);
  background: var(--light);
}

.contact-map-large {
  height: 100%;
  min-height: 400px;
}

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

  .bbbee-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-menu.active {
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 12px 24px;
  }

  .nav-link.nav-cta {
    margin-left: 0;
    margin-top: 16px;
  }

  .hero-content {
    padding: 100px 24px 60px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-number {
    font-size: 2rem;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .tab-buttons {
    flex-direction: column;
    border-radius: var(--radius);
  }

  .tab-btn {
    border-radius: var(--radius);
  }

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

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

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

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

  .values-mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

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

  .equity-details-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 120px 0 60px;
    min-height: 300px;
  }

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

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

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .values-strip {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .contact-form-wrap {
    padding: 24px;
  }

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

  .pricing-highlight {
    padding: 24px 32px;
  }
}
