/* ==========================================================================
   Gold Bottom Ent. LLC — Sections
   Hero sections, page sections, content wrappers, stats, CTAs
   ========================================================================== */

/* =============================================
   Hero Section
   ============================================= */

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--space-4xl) var(--space-lg);
  overflow: hidden;
  text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 17, 23, 0.4) 0%,
    rgba(13, 17, 23, 0.8) 60%,
    var(--color-bg) 100%
  );
  z-index: 1;
}

/* Hero animated shimmer sweep — metallic gold sheen */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(184, 134, 11, 0.06) 44%,
    rgba(218, 165, 32, 0.10) 50%,
    rgba(184, 134, 11, 0.06) 56%,
    transparent 62%
  );
  animation: heroShimmer 8s ease-in-out infinite;
  pointer-events: none;
}

/* Hero floating accent orb */
.hero-section .hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  will-change: transform;
}

.hero-section .hero-orb-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: -5%;
  background: radial-gradient(circle,
    rgba(184, 134, 11, 0.14) 0%,
    rgba(218, 165, 32, 0.07) 35%,
    rgba(139, 109, 20, 0.03) 60%,
    transparent 75%);
  animation: orbDrift3 20s ease-in-out infinite, ambientPulse 6s ease-in-out infinite;
}

.hero-section .hero-orb-2 {
  width: 350px;
  height: 350px;
  bottom: 5%;
  right: -8%;
  background: radial-gradient(circle,
    rgba(160, 120, 40, 0.09) 0%,
    rgba(205, 175, 100, 0.05) 35%,
    rgba(120, 100, 60, 0.03) 60%,
    transparent 75%);
  animation: orbDrift1 22s ease-in-out infinite, ambientPulse 8s ease-in-out 2s infinite;
}

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

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  background: var(--color-gold-muted);
  border: 1px solid rgba(184, 134, 11, 0.22);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.2vw, 4.2rem);
  font-weight: var(--fw-extrabold);
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-title .gold-gradient {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: var(--fw-regular);
  color: rgba(200, 206, 214, 0.85);
  line-height: var(--lh-relaxed);
  max-width: 620px;
  margin: 0 auto var(--space-xl);
  letter-spacing: 0.01em;
}

.hero-subtitle em {
  color: var(--color-gold);
  font-style: italic;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  animation: float 2s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    var(--color-gold),
    transparent
  );
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}


/* =============================================
   Hero Corporate (Home Page)
   ============================================= */

.hero-corporate {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-height));
  padding: 0 var(--space-lg) var(--space-xl);
  overflow: hidden;
  text-align: center;
  background: transparent;
}

/* Gradient overlay — radial vignette framing center content */
.hero-corporate::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%,
      transparent 0%,
      rgba(13, 17, 23, 0.25) 60%,
      rgba(13, 17, 23, 0.65) 100%),
    linear-gradient(
      180deg,
      rgba(13, 17, 23, 0.05) 0%,
      rgba(13, 17, 23, 0.15) 40%,
      rgba(13, 17, 23, 0.55) 100%
    );
  z-index: 1;
  pointer-events: none;
}

/* Animated shimmer sweep — metallic gold sheen */
.hero-corporate::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(184, 134, 11, 0.06) 44%,
    rgba(218, 165, 32, 0.10) 50%,
    rgba(184, 134, 11, 0.06) 56%,
    transparent 62%
  );
  animation: heroShimmer 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-corporate .hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  transform: translateY(-5vh);
}

/* Floating accent orbs */
.hero-corporate .hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  will-change: transform;
}

.hero-corporate .hero-orb-1 {
  width: 500px;
  height: 500px;
  top: 5%;
  left: -8%;
  background: radial-gradient(circle,
    rgba(184, 134, 11, 0.22) 0%,
    rgba(218, 165, 32, 0.12) 30%,
    rgba(139, 109, 20, 0.05) 55%,
    transparent 75%);
  animation: orbDrift3 20s ease-in-out infinite, ambientPulse 6s ease-in-out infinite;
}

.hero-corporate .hero-orb-2 {
  width: 450px;
  height: 450px;
  bottom: 0%;
  right: -10%;
  background: radial-gradient(circle,
    rgba(160, 120, 40, 0.16) 0%,
    rgba(205, 175, 100, 0.08) 30%,
    rgba(120, 100, 60, 0.04) 55%,
    transparent 75%);
  animation: orbDrift1 22s ease-in-out infinite, ambientPulse 8s ease-in-out 2s infinite;
}

.hero-corporate .hero-orb-3 {
  width: 400px;
  height: 400px;
  top: 40%;
  right: 10%;
  background: radial-gradient(circle,
    rgba(205, 155, 29, 0.13) 0%,
    rgba(184, 134, 11, 0.07) 35%,
    transparent 70%);
  animation: orbDrift2 26s ease-in-out infinite, ambientPulse 9s ease-in-out 4s infinite;
}

/* Subtle radial glow behind hero content */
.hero-corporate .hero-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 180%;
  background: radial-gradient(ellipse at center,
    rgba(184, 134, 11, 0.06) 0%,
    rgba(184, 134, 11, 0.02) 40%,
    transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Gold accent line under hero title */
.hero-accent-line {
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(218, 165, 32, 0.2),
    var(--color-gold) 50%,
    rgba(218, 165, 32, 0.2));
  margin: 0 auto var(--space-lg);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep on accent line */
.hero-accent-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 100%
  );
  animation: accentLineShimmer 3s ease-in-out infinite;
}

@keyframes accentLineShimmer {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* ── Root Home Page — Staggered entrance animations ── */
#page-home .hero-badge {
  opacity: 0;
  transform: translateY(15px);
  animation: homeHeroReveal 0.6s ease-out 0.2s forwards;
}

#page-home .hero-title {
  opacity: 0;
  transform: translateY(20px);
  animation:
    homeHeroReveal 0.7s ease-out 0.5s forwards,
    homeGoldWave 8s ease-in-out 3s infinite;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff 40%,
    #daa520 48%,
    #ffd700 50%,
    #daa520 52%,
    #ffffff 60%,
    #ffffff 100%
  );
  background-size: 400% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#page-home .hero-accent-line {
  opacity: 0;
  transform: scaleX(0);
  animation: homeAccentDraw 0.5s ease-out 0.9s forwards;
}

#page-home .hero-subtitle {
  opacity: 0;
  transform: translateY(15px);
  animation: homeHeroReveal 0.6s ease-out 1.1s forwards;
}

#page-home .hero-scroll-indicator {
  opacity: 0;
  animation: homeHeroReveal 0.5s ease-out 1.6s forwards;
}

@keyframes homeHeroReveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes homeAccentDraw {
  to { opacity: 1; transform: scaleX(1); }
}

/* Gold wave sweep through hero title — periodic with pause */
@keyframes homeGoldWave {
  0%   { background-position: 120% 0; }
  25%  { background-position: -20% 0; }
  100% { background-position: -20% 0; }
}

/* ── Root Home Page — Badge glow pulse ── */
#page-home .hero-badge {
  box-shadow: 0 0 12px rgba(184, 134, 11, 0.15), 0 0 24px rgba(184, 134, 11, 0.06);
}

#page-home .hero-badge.revealed {
  animation: homeHeroReveal 0.6s ease-out 0.2s forwards, homeBadgeGlow 4s ease-in-out 2s infinite;
}

@keyframes homeBadgeGlow {
  0%, 100% { box-shadow: 0 0 12px rgba(184, 134, 11, 0.15), 0 0 24px rgba(184, 134, 11, 0.06); }
  50%      { box-shadow: 0 0 18px rgba(184, 134, 11, 0.3), 0 0 36px rgba(184, 134, 11, 0.12); }
}

/* ── Scroll-down indicator (root home) ── */
#page-home .hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

#page-home .hero-scroll-indicator .scroll-text {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(184, 134, 11, 0.6);
  font-weight: var(--fw-semibold);
}

#page-home .hero-scroll-indicator .scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(184, 134, 11, 0.55), transparent);
  animation: scrollLinePulse 2s ease-in-out infinite;
}

@keyframes scrollLinePulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(1.15); }
}

/* Hero badge/label */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  background: var(--color-gold-muted);
  border: 1px solid rgba(184, 134, 11, 0.22);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

/* Hero CTA row */
.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}


/* =============================================
   Hero Variants
   ============================================= */

/* Compact hero (for inner pages) */
.hero-compact {
  min-height: 40vh;
  padding: calc(var(--header-height) + var(--space-3xl)) var(--space-lg) var(--space-3xl);
}

.hero-compact .hero-title {
  font-size: var(--text-3xl);
}

.hero-compact .hero-subtitle {
  font-size: var(--text-base);
}

/* Split hero (text + image side by side) */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  text-align: left;
  min-height: 80vh;
}

.hero-split .hero-content {
  max-width: none;
}

.hero-split .hero-actions {
  justify-content: flex-start;
}

.hero-split .hero-media {
  position: relative;
  z-index: 2;
}

.hero-split .hero-media img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}


/* =============================================
   Page Sections
   ============================================= */

.page-section {
  padding: 80px var(--space-lg);
}

.page-section-sm {
  padding: var(--space-2xl) var(--space-lg);
}

.page-section-lg {
  padding: var(--space-4xl) var(--space-lg);
}

.page-section-alt {
  background: var(--color-bg-secondary);
}

.page-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  text-align: center;
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.page-subtitle {
  font-size: var(--text-md);
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  line-height: var(--lh-relaxed);
}

/* Section header (title + action on same line) */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.section-header .section-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
}

.section-header .section-description {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

/* Gold accent line under section titles */
.section-title-accent {
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-sm);
}

.section-title-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 2px;
}

.section-title-accent.centered::after {
  left: 50%;
  transform: translateX(-50%);
}


/* =============================================
   Stats Bar
   ============================================= */

.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  padding: var(--space-2xl) var(--space-lg);
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xs);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-gold);
  line-height: 1;
}

.stat-label {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Stats in cards layout */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

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


/* =============================================
   CTA Section
   ============================================= */

.cta-section {
  position: relative;
  padding: var(--space-3xl) var(--space-lg);
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(184, 134, 11, 0.10) 0%,
    rgba(13, 17, 23, 0) 50%,
    rgba(218, 165, 32, 0.06) 100%
  );
  pointer-events: none;
}

.cta-section .cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section .cta-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.cta-section .cta-text {
  font-size: var(--text-md);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-xl);
}

.cta-section .cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

/* CTA with gold border card */
.cta-card {
  background: rgba(22, 27, 34, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(184, 134, 11, 0.17);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  box-shadow: var(--shadow-gold);
}


/* =============================================
   Feature Grid Section
   ============================================= */

.features-section {
  padding: var(--space-3xl) var(--space-lg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold-muted);
  color: var(--color-gold);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.feature-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}


/* =============================================
   Testimonial Section
   ============================================= */

.testimonial-card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--space-md);
  left: var(--space-lg);
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--color-gold-muted);
  line-height: 1;
  pointer-events: none;
}

.testimonial-text {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  font-style: italic;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold-muted);
}

.testimonial-name {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
}

.testimonial-role {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}


/* =============================================
   Enterprise Theme Overrides (body.biz-theme)
   ============================================= */

/* Hero orbs — blue gradients */
body.biz-theme .hero-corporate .hero-orb-1 {
  background: radial-gradient(circle,
    rgba(88, 166, 255, 0.14) 0%,
    rgba(56, 139, 253, 0.07) 35%,
    rgba(33, 90, 160, 0.03) 60%,
    transparent 75%);
}

body.biz-theme .hero-corporate .hero-orb-2 {
  background: radial-gradient(circle,
    rgba(56, 139, 253, 0.09) 0%,
    rgba(121, 192, 255, 0.05) 35%,
    rgba(33, 90, 160, 0.03) 60%,
    transparent 75%);
}

body.biz-theme .hero-corporate .hero-orb-3 {
  background: radial-gradient(circle,
    rgba(121, 192, 255, 0.09) 0%,
    rgba(88, 166, 255, 0.05) 40%,
    transparent 70%);
}

/* Hero shimmer — blue tint */
body.biz-theme .hero-corporate::after {
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(88, 166, 255, 0.06) 44%,
    rgba(56, 139, 253, 0.10) 50%,
    rgba(88, 166, 255, 0.06) 56%,
    transparent 62%
  );
}

/* Hero badge — blue accent */
body.biz-theme .hero-badge {
  color: #58a6ff;
  background: rgba(88, 166, 255, 0.15);
  border-color: rgba(88, 166, 255, 0.22);
}

/* Blue gradient text */
body.biz-theme .text-gold,
body.biz-theme .gold-gradient {
  color: #58a6ff;
  background: linear-gradient(135deg, #58a6ff 0%, #79c0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stats — blue accent value */
body.biz-theme .stat-value {
  color: #58a6ff;
}

/* Glass card hover — blue glow */
body.biz-theme .glass-card:hover {
  border-color: rgba(88, 166, 255, 0.22);
  box-shadow: 0 0 20px rgba(56, 139, 253, 0.18);
}

/* Service card icon — blue background */
body.biz-theme .service-card-icon {
  background: rgba(88, 166, 255, 0.15);
  color: #58a6ff;
}

/* Service card hover border */
body.biz-theme .service-card:hover {
  border-color: rgba(88, 166, 255, 0.25);
}

/* Service features list bullets — blue */
body.biz-theme .service-features li::before {
  color: #58a6ff;
}

/* CTA card — blue accent */
body.biz-theme .cta-card {
  border-color: rgba(88, 166, 255, 0.17);
}

body.biz-theme .cta-card:hover {
  box-shadow: 0 0 30px rgba(56, 139, 253, 0.12);
}

/* Buttons — blue primary */
body.biz-theme .btn-primary {
  background: linear-gradient(135deg, #58a6ff 0%, #388bfd 100%);
  color: #0d1117;
}

body.biz-theme .btn-primary:hover {
  background: linear-gradient(135deg, #79c0ff 0%, #58a6ff 100%);
}

body.biz-theme .btn-secondary {
  color: #58a6ff;
  border-color: rgba(88, 166, 255, 0.35);
}

body.biz-theme .btn-secondary:hover {
  background: rgba(88, 166, 255, 0.1);
  color: #79c0ff;
}

/* About icons — blue */
body.biz-theme .about-icon {
  color: #58a6ff;
}

/* Vertical header icon — blue */
body.biz-theme .vertical-header-icon {
  background: rgba(88, 166, 255, 0.15);
  color: #58a6ff;
}

/* Divider gold → blue */
body.biz-theme .divider-gold {
  background: linear-gradient(90deg, transparent, rgba(88, 166, 255, 0.3), transparent);
}

/* Section heading accent — blue */
body.biz-theme .section-title-accent::after {
  background: #58a6ff;
}

/* =============================================
   Enterprise Page Backgrounds
   ============================================= */

#page-biz-home {
  background-image: url('../images/backgrounds/IMG_0814.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

#page-biz-services {
  background-image: url('../images/backgrounds/IMG_0809.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

#page-biz-portfolio {
  background-image: url('../images/backgrounds/IMG_0812.jpg');
  background-size: cover;
  background-position: center top;
  position: relative;
}

#page-biz-about {
  background-image: url('../images/backgrounds/IMG_0813.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

#page-biz-contact {
  background-image: url('../images/backgrounds/helloworld.png');
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Dark overlay for readability over background images */
#page-biz-home::before,
#page-biz-services::before,
#page-biz-portfolio::before,
#page-biz-about::before,
#page-biz-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 23, 0.45);
  z-index: 0;
  pointer-events: none;
}

/* Ensure all content sits above the overlay */
#page-biz-home > *,
#page-biz-services > *,
#page-biz-portfolio > *,
#page-biz-about > *,
#page-biz-contact > * {
  position: relative;
  z-index: 2;
}

/* Make hero-corporate transparent so section bg image shows through */
#page-biz-home .hero-corporate {
  background: transparent;
}

/* Remove the gradient overlay & shimmer that cause bottom fade-out */
#page-biz-home .hero-corporate::before,
#page-biz-home .hero-corporate::after {
  display: none;
}

/* Text shadow on enterprise pages so headings pop over lighter overlay */
#page-biz-home .hero-badge,
#page-biz-home .hero-title,
#page-biz-home .hero-subtitle,
#page-biz-services .page-title,
#page-biz-services .section-heading,
#page-biz-portfolio .page-title,
#page-biz-portfolio .section-heading,
#page-biz-about .page-title,
#page-biz-about .section-heading,
#page-biz-contact .page-title,
#page-biz-contact .section-heading {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.6);
}

/* Move hero content up — less top padding, align to start not center */
#page-biz-home .hero-split {
  align-items: start;
  padding-top: calc(var(--header-height) + var(--space-md));
}

/* ── Animated background — zoom + drift for visible motion ── */
#page-biz-home {
  overflow: hidden;
  background-image: none !important; /* clear static bg — ::after handles it */
}

#page-biz-home::after {
  content: '';
  position: absolute;
  inset: -15%;
  background-image: url('../images/backgrounds/IMG_0814.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: bgZoomDrift 18s ease-in-out infinite alternate;
}

/* Overlay sits above animated bg */
#page-biz-home::before {
  z-index: 1 !important;
}

@keyframes bgZoomDrift {
  0%   { transform: scale(1) translate(0, 0); }
  33%  { transform: scale(1.08) translate(-1.5%, 1%); }
  66%  { transform: scale(1.05) translate(1.5%, -0.5%); }
  100% { transform: scale(1.12) translate(-0.5%, -1.5%); }
}

/* ── Hero text panel — frosted glass ── */
#page-biz-home .hero-text {
  background: rgba(13, 17, 23, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem 2.5rem 2.5rem;
  border: 1px solid rgba(88, 166, 255, 0.15);
  overflow: visible;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(88, 166, 255, 0.08);
  /* Entrance animation */
  opacity: 0;
  transform: translateY(30px);
  animation: heroContentReveal 0.8s ease-out 0.3s forwards;
}

/* ── Staggered entrance animations ── */
@keyframes heroContentReveal {
  to { opacity: 1; transform: translateY(0); }
}

#page-biz-home .hero-badge {
  opacity: 0;
  animation: heroContentReveal 0.6s ease-out 0.6s forwards;
}

#page-biz-home .hero-title {
  opacity: 0;
  animation: heroContentReveal 0.7s ease-out 0.8s forwards;
}

#page-biz-home .hero-subtitle {
  opacity: 0;
  animation: heroContentReveal 0.6s ease-out 1.1s forwards;
}

#page-biz-home .hero-actions {
  opacity: 0;
  animation: heroContentReveal 0.6s ease-out 1.4s forwards;
}

#page-biz-home .hero-media {
  opacity: 0;
  transform: translateX(40px);
  animation: heroTerminalReveal 0.8s ease-out 1.0s forwards;
  margin-top: 80px;
}

/* CISSP credential badge */
#page-biz-home .hero-credential {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.4);
  border-radius: 20px;
  color: #d4a017;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: heroContentReveal 0.6s ease-out 1.3s forwards;
}

@keyframes heroTerminalReveal {
  to { opacity: 1; transform: translateX(0); }
}

/* ── Hero title — bold white with glow ── */
#page-biz-home .hero-split .hero-title {
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 1), 0 0 40px rgba(0, 0, 0, 0.8);
}

/* ── "is Here..." — animated gradient shimmer ── */
#page-biz-home .text-gradient-blue {
  background: linear-gradient(
    90deg,
    #58a6ff 0%, #a5d8ff 25%, #79c0ff 50%, #58a6ff 75%, #a5d8ff 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShimmer 3s ease-in-out infinite;
}

@keyframes gradientShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── Subtitle — bright white ── */
#page-biz-home .hero-split .hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.6);
  font-weight: 400;
}

/* ── Badge — glowing blue pill ── */
body.biz-theme #page-biz-home .hero-badge {
  background: rgba(88, 166, 255, 0.15);
  border: 1px solid rgba(88, 166, 255, 0.4);
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 15px rgba(88, 166, 255, 0.2), 0 0 30px rgba(88, 166, 255, 0.08);
  animation: heroContentReveal 0.6s ease-out 0.6s forwards, badgePulse 4s ease-in-out 2s infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 15px rgba(88, 166, 255, 0.2), 0 0 30px rgba(88, 166, 255, 0.08); }
  50%      { box-shadow: 0 0 20px rgba(88, 166, 255, 0.35), 0 0 45px rgba(88, 166, 255, 0.15); }
}

/* ── CTA buttons — glow on hover ── */
#page-biz-home .hero-actions .btn-primary {
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(88, 166, 255, 0.3);
}

#page-biz-home .hero-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(88, 166, 255, 0.5), 0 0 40px rgba(88, 166, 255, 0.2);
}

#page-biz-home .hero-actions .btn-secondary {
  transition: all 0.3s ease;
}

#page-biz-home .hero-actions .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(88, 166, 255, 0.15);
}

/* ── Floating particles in hero ── */
#page-biz-home .hero-corporate {
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(88, 166, 255, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  box-shadow: 0 0 6px rgba(88, 166, 255, 0.6), 0 0 12px rgba(88, 166, 255, 0.3);
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 1; }
  50%  { transform: translateY(-50vh) translateX(20px); opacity: 0.9; }
  92%  { opacity: 0.6; }
  100% { transform: translateY(-100vh) translateX(-10px); opacity: 0; }
}

/* ── Scroll-down indicator ── */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
  animation: heroContentReveal 0.5s ease-out 2.5s forwards;
}

.hero-scroll-indicator .scroll-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(88, 166, 255, 0.6);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: color 0.3s;
}

.hero-scroll-indicator .scroll-arrow:hover {
  color: rgba(88, 166, 255, 1);
}

.hero-scroll-indicator .scroll-arrow i {
  font-size: 1.2rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ── Terminal typing animation (lines hidden until JS types them) ── */
#page-biz-home .hero-code-terminal .code-line {
  opacity: 0;
}

#page-biz-home .hero-code-terminal .code-line.typed {
  opacity: 1;
  animation: terminalLineReveal 0.15s ease-out forwards;
}

@keyframes terminalLineReveal {
  from { opacity: 0; transform: translateX(-5px); }
  to   { opacity: 1; transform: translateX(0); }
}


/* =============================================
   Split Hero Layout (Two-Column)
   ============================================= */

.hero-split {
  position: relative;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  min-height: 90vh;
  padding: calc(var(--header-height) + var(--space-3xl)) var(--space-xl) var(--space-3xl);
  overflow: hidden;
  gap: var(--space-2xl);
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-split .hero-text {
  text-align: left;
}

.hero-split .hero-text .hero-title {
  margin-bottom: var(--space-lg);
}

.hero-split .hero-text .hero-subtitle {
  margin: 0 0 var(--space-xl);
  max-width: 500px;
}

.hero-split .hero-actions {
  justify-content: flex-start;
}

.hero-split .hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


/* --- Entertainment Hero: Artist Frame --- */

.hero-media-frame {
  position: relative;
  width: 320px;
  height: 380px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.08) 0%, rgba(218, 165, 32, 0.04) 100%);
  border: 2px solid rgba(184, 134, 11, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media-frame .frame-icon {
  font-size: 6rem;
  color: rgba(184, 134, 11, 0.2);
}

.hero-media-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(184, 134, 11, 0.08) 44%,
    rgba(218, 165, 32, 0.12) 50%,
    rgba(184, 134, 11, 0.08) 56%,
    transparent 62%
  );
  animation: heroShimmer 6s ease-in-out infinite;
  pointer-events: none;
}

/* Floating platform badges around the frame */
.hero-floating-badges {
  position: absolute;
  inset: -20px;
  pointer-events: none;
}

.hero-floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-text-secondary);
  animation: floatBadge 3s ease-in-out infinite;
  box-shadow: var(--shadow-md);
  pointer-events: auto;
}

.hero-floating-badge:nth-child(1) { top: 10%; right: -15%; animation-delay: 0s; }
.hero-floating-badge:nth-child(2) { bottom: 25%; right: -20%; animation-delay: 0.8s; }
.hero-floating-badge:nth-child(3) { bottom: 5%; left: -10%; animation-delay: 1.6s; }

.hero-floating-badge i {
  font-size: var(--text-base);
}

.hero-floating-badge .fa-spotify { color: #1db954; }
.hero-floating-badge .fa-apple { color: #fc3c44; }
.hero-floating-badge .fa-youtube { color: #ff0000; }


/* --- Enterprise Hero: Code Terminal --- */

.hero-code-terminal {
  width: 380px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-code-terminal .terminal-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg-tertiary);
  border-bottom: 1px solid var(--color-border);
}

.hero-code-terminal .terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-code-terminal .terminal-dot.red { background: #f85149; }
.hero-code-terminal .terminal-dot.yellow { background: #d29922; }
.hero-code-terminal .terminal-dot.green { background: #3fb950; }

.hero-code-terminal .terminal-title {
  flex: 1;
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-family: var(--font-mono);
}

.hero-code-terminal .terminal-status {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-xs);
  color: var(--color-success);
  font-family: var(--font-mono);
}

.hero-code-terminal .terminal-status .status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-success);
  animation: ambientPulse 2s ease-in-out infinite;
}

.hero-code-terminal .terminal-body {
  padding: var(--space-md);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
  min-height: 220px;
}

.hero-code-terminal .code-line {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: 4px;
}

.hero-code-terminal .code-line .line-number {
  color: var(--color-text-muted);
  min-width: 24px;
  text-align: right;
  user-select: none;
}

.hero-code-terminal .code-line .line-content {
  color: var(--color-text-secondary);
}

.hero-code-terminal .code-keyword { color: #ff7b72; }
.hero-code-terminal .code-string { color: #a5d6ff; }
.hero-code-terminal .code-function { color: #d2a8ff; }
.hero-code-terminal .code-variable { color: #79c0ff; }
.hero-code-terminal .code-comment { color: var(--color-text-muted); font-style: italic; }
.hero-code-terminal .code-operator { color: #ff7b72; }

.hero-code-terminal .terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: #58a6ff;
  animation: cursorBlink 1s step-end infinite;
  vertical-align: text-bottom;
}


/* =============================================
   Testimonials Section
   ============================================= */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.testimonial-card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.testimonial-card:hover {
  border-color: var(--color-accent-border);
  box-shadow: var(--shadow-accent);
}

.testimonial-card .quote-icon {
  font-size: var(--text-2xl);
  color: var(--color-accent-muted);
  margin-bottom: var(--space-md);
  display: block;
}

body.ent-theme .testimonial-card .quote-icon {
  color: rgba(184, 134, 11, 0.25);
}

body.biz-theme .testimonial-card .quote-icon {
  color: rgba(88, 166, 255, 0.25);
}

.testimonial-card .testimonial-text {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card .testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: var(--text-lg);
}

.testimonial-card .testimonial-author-info .testimonial-name {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
}

.testimonial-card .testimonial-author-info .testimonial-role {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}


/* =============================================
   Trust / Logo Bar
   ============================================= */

.trust-bar {
  padding: var(--space-2xl) 0;
  text-align: center;
}

.trust-bar-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.trust-bar-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.trust-bar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  opacity: 0.5;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.trust-bar-logo:hover {
  opacity: 0.9;
}

body.ent-theme .trust-bar-logo:hover {
  color: var(--color-gold);
}

body.biz-theme .trust-bar-logo {
  color: var(--color-gold);
  opacity: 0.8;
}

body.biz-theme .trust-bar-logo:hover {
  color: #58a6ff;
  opacity: 1;
}

.trust-bar-logo i {
  font-size: var(--text-2xl);
}

.trust-bar-logo span {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
}


/* =============================================
   Process Timeline (Enterprise)
   ============================================= */

.process-timeline {
  position: relative;
  padding-left: var(--space-3xl);
  margin-top: var(--space-xl);
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-accent), var(--color-border));
}

.process-step {
  position: relative;
  padding-bottom: var(--space-2xl);
}

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

.process-step-number {
  position: absolute;
  left: calc(-1 * var(--space-3xl));
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-bg-elevated);
  border: 2px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  z-index: 1;
}

.process-step-content h4 {
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xs);
}

.process-step-content p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}


/* =============================================
   Stats Bar Enhancement
   ============================================= */

.stat-item .stat-icon {
  font-size: var(--text-xl);
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
  display: block;
}

/* Enhanced stat value for animated counters */
.stat-value[data-count] {
  display: inline-block;
}


/* =============================================
   Premium CTA Section
   ============================================= */

.cta-premium {
  position: relative;
  padding: var(--space-3xl) var(--space-2xl);
  text-align: center;
  border: 1px solid var(--color-accent-border);
  overflow: hidden;
}

.cta-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-accent-muted), transparent 60%);
  pointer-events: none;
}

.cta-premium h2 {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-md);
}

.cta-premium p {
  position: relative;
  z-index: 1;
  max-width: 550px;
  margin: 0 auto var(--space-xl);
}

.cta-premium .cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}
