/* CSS Design System - Dark Premium Corporate Style */
:root {
  --bg-main: #0B0E14;
  --bg-subtle: #121722;
  --bg-card: #181E2A;
  --bg-input: #0F131C;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: #926F34;
  
  --text-primary: #F3F4F6;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  
  --accent: #926F34;
  --accent-primary: #926F34; /* Elegant Deep Bronze Gold */
  --accent-hover: #B38A45;
  --accent-subtle: rgba(146, 111, 52, 0.15);
  
  --font-heading: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-sm: 6px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --nav-height: 72px;
  --container-max: 1140px;
}

/* Reset & Global Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  opacity: 1;
  transition: opacity 0.18s ease;
}

body.page-entered {
  animation: page-fade-in 0.28s ease both;
}

body.page-leaving {
  opacity: 0;
}

@keyframes page-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

body.menu-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2000;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--accent-primary);
  color: #fff;
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:where(a, button, input, select, textarea, [role="button"]):focus-visible {
  outline: 3px solid var(--accent-hover);
  outline-offset: 3px;
}

main:focus {
  outline: none;
}

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

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.overflow-hidden {
  overflow: hidden;
}

/* Layout Utilities */
.section-padding {
  padding: 5.5rem 0;
}

.bg-subtle {
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.text-center { text-align: center; }
.mt-xs { margin-top: 0.5rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2rem; }
.mt-xl { margin-top: 3rem; }

.mb-xs { margin-bottom: 0.5rem; }
.mb-md { margin-bottom: 1.5rem; }
.mb-lg { margin-bottom: 2rem; }

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.gap-md { gap: 1.5rem; }
.gap-lg { gap: 2rem; }
.gap-xl { gap: 3rem; }
.align-start { align-items: start; }

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

/* Navigation Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(11, 14, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 max(2rem, env(safe-area-inset-right)) 0 max(2rem, env(safe-area-inset-left));
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-mark {
  color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.logo-text {
  color: var(--text-primary);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition);
}

@media (max-width: 850px) {
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: auto;
    right: 0;
    transform: translateY(-150%);
    background-color: var(--bg-subtle);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 1.5rem max(1.5rem, env(safe-area-inset-right)) max(1.5rem, env(safe-area-inset-bottom)) max(1.5rem, env(safe-area-inset-left));
    gap: 1rem;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .mobile-toggle {
    display: flex;
  }
  
  .nav-actions .btn {
    display: none;
  }
}

/* ==========================================================================
   SPLIT HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-height, 72px));
  height: calc(100svh - var(--nav-height, 72px));
  min-height: 600px;
  margin-top: var(--nav-height, 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

/* Video sits on the RIGHT half */
.hero-video {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  border-radius: 0;
  transform: none;
}

/* Left gradient fade for smooth readability */
.hero-left-fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(to right, #000 40%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Enhanced gradient fade for better readability */
.hero-video-fade {
  display: none;
}

/* Dark bottom fade for readability */
.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, var(--bg-main, #0B0E14), transparent);
  z-index: 2;
  pointer-events: none;
}

/* Content sits on the LEFT */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 4rem;
}

.hero h1 {
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}

.hero h1 em {
  font-style: normal;
  color: var(--text-primary);
}

.hero p {
  color: var(--text-secondary);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  margin-bottom: 2rem;
  max-width: 700px;
  line-height: 1.7;
}

.hero-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-explore-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: calc(100vh - 65px);
    min-height: calc(100svh - 65px);
    padding: 4rem 0;
  }
  .hero-video {
    width: 100%;
    opacity: 0.4;
  }
  .hero-left-fade {
    width: 100%;
    background: linear-gradient(to right, #000 60%, transparent 100%);
  }
  .hero-content {
    padding: 0 1.5rem;
  }
}

/* Unified Single Card Styling for Who We Are */
.unified-who-card {
  padding: 2.5rem;
  border-left: 3px solid var(--accent-primary);
}

.unified-card-content .lead-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-primary);
}

.unified-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
  .unified-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.unified-sub-block h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--accent-primary);
}

.unified-sub-block p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   3D COVERFLOW FRAMEWORK CAROUSEL LOOK
   ========================================================================== */
.coverflow-container {
  position: relative;
  width: 100%;
  padding: 3rem 0 2rem;
  perspective: 1200px;
}

.coverflow-stage {
  position: relative;
  height: 480px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coverflow-card {
  position: absolute;
  width: 320px;
  height: 440px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease, z-index 0.6s ease;
  will-change: transform, opacity;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.coverflow-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(1.15);
}

.coverflow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(11, 14, 20, 0.9) 0%, rgba(11, 14, 20, 0.35) 45%, rgba(11, 14, 20, 0.1) 100%);
}

.coverflow-content {
  position: relative;
  z-index: 3;
  padding: 2rem 2rem 2rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.coverflow-num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
}

.coverflow-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #FFF;
}

.coverflow-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Number Badge - curved corner tag, bottom-right of each framework card */
.coverflow-num-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 6;
  width: 54px;
  height: 54px;
  background: var(--accent-primary);
  border-radius: 100% 0 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 10px 9px 0;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  box-shadow: -4px -4px 14px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Only the centered/active card shows its number badge */
.coverflow-card.active .coverflow-num-badge {
  opacity: 1;
  transform: scale(1);
}

/* 3D Coverflow State Positioning */
.coverflow-card.active {
  transform: translateX(0) scale(1.05) translateZ(0);
  z-index: 10;
  opacity: 1;
  filter: brightness(1) blur(0px);
  border-color: rgba(146, 111, 52, 0.8);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(146, 111, 52, 0.3);
}

.coverflow-card.prev-1 {
  transform: translateX(-240px) scale(0.85) rotateY(15deg);
  z-index: 5;
  opacity: 0.85;
  filter: brightness(0.7) blur(0px);
}

.coverflow-card.next-1 {
  transform: translateX(240px) scale(0.85) rotateY(-15deg);
  z-index: 5;
  opacity: 0.85;
  filter: brightness(0.7) blur(0px);
}

.coverflow-card.prev-2 {
  transform: translateX(-400px) scale(0.7) rotateY(25deg);
  z-index: 2;
  opacity: 0.4;
  filter: brightness(0.4) blur(1px);
}

.coverflow-card.next-2 {
  transform: translateX(400px) scale(0.7) rotateY(-25deg);
  z-index: 2;
  opacity: 0.4;
  filter: brightness(0.4) blur(1px);
}

.coverflow-card.hidden-left {
  transform: translateX(-550px) scale(0.5);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.coverflow-card.hidden-right {
  transform: translateX(550px) scale(0.5);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

/* Coverflow Controls */
.coverflow-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.coverflow-arrow {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}

.coverflow-arrow:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: var(--accent-subtle);
}

.coverflow-dots {
  display: flex;
  gap: 0.5rem;
}

.coverflow-dot {
  appearance: none;
  padding: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.coverflow-dot.active {
  background: var(--accent-primary);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .coverflow-stage {
    height: 400px;
  }
  .coverflow-card {
    width: 260px;
    height: 360px;
  }
  .coverflow-card.prev-1 {
    transform: translateX(-140px) scale(0.85);
  }
  .coverflow-card.next-1 {
    transform: translateX(140px) scale(0.85);
  }
  .coverflow-card.prev-2, .coverflow-card.next-2 {
    opacity: 0;
    pointer-events: none;
  }
  .coverflow-num-badge {
    width: 42px;
    height: 42px;
    padding: 0 7px 6px 0;
    font-size: 0.72rem;
  }
  .coverflow-content {
    padding: 1.75rem 1.75rem 3rem 1.75rem;
  }
}

/* ==========================================================================
   COVERFLOW - TEXT-ONLY CARD VARIANT (no photo, badge + title + line)
   Scoped to .text-mode so the image-based homepage coverflow is untouched
   ========================================================================== */
.coverflow-container.text-mode .coverflow-stage {
  height: 230px;
}

.coverflow-container.text-mode .coverflow-card.text-card {
  width: 200px;
  height: 190px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  border-radius: 14px;
}

.coverflow-container.text-mode .coverflow-card.text-card .coverflow-content {
  justify-content: center;
  padding: 1.1rem;
  height: auto;
}

.coverflow-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

.coverflow-container.text-mode .coverflow-card.active .coverflow-badge {
  background: var(--accent-subtle);
  color: var(--accent-primary);
}

.coverflow-container.text-mode .coverflow-content h3 {
  font-size: 0.85rem;
  line-height: 1.25;
  margin-bottom: 0.4rem;
}

.coverflow-container.text-mode .coverflow-content p {
  font-size: 0.7rem;
  line-height: 1.45;
}

.coverflow-container.text-mode .coverflow-card.prev-1 { transform: translateX(-150px) scale(0.85) rotateY(15deg); }
.coverflow-container.text-mode .coverflow-card.next-1 { transform: translateX(150px) scale(0.85) rotateY(-15deg); }
.coverflow-container.text-mode .coverflow-card.prev-2 { transform: translateX(-250px) scale(0.7) rotateY(25deg); }
.coverflow-container.text-mode .coverflow-card.next-2 { transform: translateX(250px) scale(0.7) rotateY(-25deg); }
.coverflow-container.text-mode .coverflow-card.hidden-left { transform: translateX(-340px) scale(0.5); }
.coverflow-container.text-mode .coverflow-card.hidden-right { transform: translateX(340px) scale(0.5); }

.coverflow-counter {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  min-width: 62px;
  text-align: center;
}

@media (max-width: 768px) {
  .coverflow-container.text-mode .coverflow-stage {
    height: 210px;
  }
  .coverflow-container.text-mode .coverflow-card.text-card {
    width: 175px;
    height: 175px;
  }
  .coverflow-container.text-mode .coverflow-card.prev-1 { transform: translateX(-105px) scale(0.85); }
  .coverflow-container.text-mode .coverflow-card.next-1 { transform: translateX(105px) scale(0.85); }
}

/* ==========================================================================
   INFINITE HORIZONTAL SCROLLER FOR CORE EXPERTISE (NO IMAGES, LUXURY DARK DESIGN)
   ========================================================================== */
.scroller-mask {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1.5rem 0;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.scroller-row {
  display: flex;
  width: max-content;
}

.scroller-track {
  display: flex;
  gap: 2rem;
  flex-shrink: 0;
  padding: 0 1rem;
}

.animate-scroll-left {
  animation: scroll-horizontal var(--scroll-duration, 50s) linear infinite;
}

.animate-scroll-right {
  animation: scroll-horizontal-reverse var(--scroll-duration, 50s) linear infinite;
}

.scroller-mask:hover .scroller-row {
  animation-play-state: paused;
}

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

@keyframes scroll-horizontal-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.scroller-card {
  width: 360px;
  flex-shrink: 0;
  padding: 2.2rem;
  background: rgba(24, 30, 42, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.scroller-card:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(146, 111, 52, 0.2);
}

.scroller-card-num {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 0.75rem;
  display: block;
}

.scroller-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.scroller-card-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .scroller-card {
    width: 280px;
    padding: 1.5rem;
  }
}

/* Typography & Section Headers - TITLE CASE */
.hero-badge, .section-subtitle {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  text-transform: none;
  letter-spacing: -0.3px;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.section-subtitle {
  font-weight: 700;
}

.hero-badge {
  font-weight: 400;
  font-size: 1.9rem;
}

.hero-title, .section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.section-title {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-subtitle, .section-intro {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 720px;
  line-height: 1.6;
}

.five-highlight {
  display: inline-block;
  margin: 0 0.35em;
}

.section-header {
  margin-bottom: 3rem;
}

/* Compact Heroes */
.hero-section {
  position: relative;
  padding: 6rem 0;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.hero-compact {
  padding: 6rem 0 4.5rem;
  position: relative;
  background-color: #000000;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.85));
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  text-align: center;
  margin-top: var(--nav-height, 72px);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  animation: heroBgPulse 16s ease-in-out infinite alternate;
}

/* Subtle Animated Ambient Light Beams */
.hero-compact::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.08) 0%, rgba(184, 140, 66, 0.04) 40%, transparent 75%);
  pointer-events: none;
  z-index: 1;
  animation: beamFloat 14s ease-in-out infinite alternate;
  filter: blur(20px);
}

.hero-compact::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, var(--bg-main, #0B0E14), transparent);
  pointer-events: none;
  z-index: 1;
}

.hero-compact-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.75;
}

@keyframes heroBgPulse {
  0% {
    filter: brightness(0.9) contrast(1.02);
  }
  50% {
    filter: brightness(1.08) contrast(1.08);
  }
  100% {
    filter: brightness(0.92) contrast(1.03);
  }
}

@keyframes beamFloat {
  0% {
    transform: translateY(-5%) scale(0.95);
    opacity: 0.4;
  }
  50% {
    transform: translateY(5%) scale(1.08);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-2%) scale(0.98);
    opacity: 0.5;
  }
}

.hero-compact .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-compact .hero-badge {
  text-align: center;
  margin: 0 auto 0.5rem;
}

.hero-compact .hero-title {
  text-align: center;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  margin: 0 auto 1.2rem;
  color: #FFFFFF;
}

.hero-compact .hero-subtitle {
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
  color: var(--text-secondary);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.7;
}

.byc-gold {
  color: var(--accent-primary, #B88C42);
}

/* Scroll Reveal Animations */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Glassmorphism & Mouse Spotlight Cards */
.glass-card {
  position: relative;
  background: rgba(24, 30, 42, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.glass-card .card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(146, 111, 52, 0.2), transparent 40%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.glass-card:hover .card-glow {
  opacity: 1;
}

/* Interactive Tilt Cards */
.tilt-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.tilt-card:hover {
  transform: translateY(-6px);
  border-color: rgba(146, 111, 52, 0.5);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn-primary {
  background-color: var(--accent-primary);
  color: #FFFFFF;
  font-weight: 700;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 4px 15px rgba(146, 111, 52, 0.4);
}

.btn-secondary {
  background-color: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.btn-full {
  width: 100%;
}

.btn-link {
  display: inline-block;
  color: var(--accent-primary);
  font-weight: 500;
  font-size: 0.9rem;
}

.btn-link:hover {
  text-decoration: underline;
}

/* Cards */
.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.card-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.highlight-card {
  border-left: 3px solid var(--accent-primary);
}

/* Expertise Preview Cards Base */
.expertise-preview-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.num-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
}

.expertise-preview-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.expertise-preview-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.value-num {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.value-body h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.value-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Commitment Box - centered pill, sized to its content */
.commitment-box {
  background: var(--bg-card);
  border: 1px solid rgba(146, 111, 52, 0.35);
  padding: 2rem 3rem;
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.commitment-box h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--accent-primary);
}

.commitment-box p {
  color: var(--text-primary);
  font-size: 0.95rem;
  max-width: 640px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .commitment-box {
    border-radius: var(--radius-lg);
    padding: 1.75rem;
  }
}

/* Core Expertise Detailed Cards */
.expertise-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.expertise-detail-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.expertise-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.expertise-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-primary);
  line-height: 1;
}

.expertise-header h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.expertise-tagline {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.expertise-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  padding-left: 2.5rem;
}

@media (max-width: 600px) {
  .expertise-desc { padding-left: 0; }
}

.feature-bullets {
  padding-left: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
}

@media (max-width: 600px) {
  .feature-bullets { padding-left: 1rem; }
}

.feature-bullets li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.25rem;
}

.feature-bullets li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent-primary);
}

/* Journey Box Glass Card UI */
.journey-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 3.5rem 3rem;
  background: rgba(18, 24, 36, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(146, 111, 52, 0.08);
  position: relative;
  overflow: hidden;
}

.journey-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-primary, #926F34), transparent);
}

.journey-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-primary, #926F34);
  background: rgba(146, 111, 52, 0.12);
  border: 1px solid rgba(146, 111, 52, 0.25);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.journey-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.journey-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 780px;
  margin: 0 auto 2.5rem;
}

.journey-cta-wrapper {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.journey-cta-heading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.journey-cta-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Reasons List */
.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.reason-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.reason-num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.reason-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.reason-body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Contact Section Styling */
.info-group {
  margin-bottom: 1.5rem;
}

.info-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.info-val {
  font-size: 1rem;
  color: var(--text-primary);
}

a.info-val:hover {
  color: var(--accent-primary);
}

.contact-form-panel {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-required-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 2px var(--accent-subtle);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%9CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

select.form-control option {
  background-color: var(--bg-card);
  color: var(--text-primary);
}

.error-msg {
  display: none;
  color: #EF4444;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.form-group.has-error .error-msg {
  display: block;
}

.form-group.has-error .form-control {
  border-color: #EF4444;
}

.form-success-box {
  display: none;
  margin-top: 1.5rem;
  padding: 1.25rem;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-sm);
}

.form-success-box h4 {
  font-family: var(--font-heading);
  color: #10B981;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.form-success-box p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.form-success-box.active {
  display: block;
}

.form-success-box.is-error {
  background-color: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.35);
}

.form-success-box.is-error h4 {
  color: #f87171;
}

.form-control[aria-invalid="true"] {
  border-color: #ef4444;
}

.btn:disabled {
  cursor: wait;
  opacity: 0.65;
}

/* Minimal Centered Footer (Matching Reference Layout & User Links) */
.site-footer {
  background-color: #07090D;
  border-top: 1px solid var(--border-color);
  padding: 4.5rem 0 3rem;
  color: var(--text-secondary);
}

.footer-minimal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.footer-logo-img {
  height: 45px;
  width: auto;
  display: block;
  object-fit: contain;
  margin: 0;
  padding: 0;
}

.footer-minimal-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.75rem 0;
  max-width: 580px;
}

.footer-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon-btn:hover {
  background: var(--accent-subtle);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(146, 111, 52, 0.25);
}

.footer-nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.25rem;
}

.footer-nav-row a {
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav-row a:hover {
  color: var(--accent-primary);
}

.footer-minimal-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.75rem;
  width: 100%;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Purpose & Vision (PV) Section & Target Graphic (User Reference Redesign)
   ========================================================================== */

.pv-section {
  position: relative;
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 5.5rem 0;
  overflow: hidden;
}

/* Central Target Showcase Container */
.pv-showcase-container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 3rem;
  background: #0B0E14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 3.5rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.pv-showcase-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(146, 111, 52, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.pv-target-frame {
  width: 100%;
  max-width: 720px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.pv-main-target-svg {
  width: 100%;
  height: auto;
  max-height: 520px;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.7));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pv-showcase-container:hover .pv-main-target-svg {
  transform: scale(1.02);
}

/* Purpose & Vision Cards Grid */
.pv-app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pv-app-card {
  background: rgba(18, 24, 36, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pv-app-card:hover {
  border-color: rgba(146, 111, 52, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(146, 111, 52, 0.12);
  transform: translateY(-6px);
}

.pv-card-top {
  background: #0B0E14;
  padding: 2.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.pv-graphic-wrapper {
  width: 100%;
  max-width: 260px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pv-icon-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s ease;
}

.pv-app-card:hover .pv-icon-svg {
  transform: scale(1.05);
}

.pv-card-bottom {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pv-card-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 0.6rem;
}

.pv-card-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.pv-card-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ==========================================================================
   3D Flipping Cards (Purpose & Vision Section)
   ========================================================================== */

.pv-flip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 820px) {
  .pv-flip-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
}

[id="strategic-advisory"],
[id="global-market-expansion"],
[id="strategic-partnerships"],
[id="execution-support"],
[id="growth-services"] {
  scroll-margin-top: calc(var(--nav-height) + 1rem);
}

@media (max-width: 480px) {
  .header {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .container {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .coverflow-stage {
    height: 410px;
  }

  .coverflow-card {
    width: min(280px, calc(100vw - 3rem));
    height: 390px;
  }

  .coverflow-card.prev-1 { transform: translateX(-78px) scale(0.82) rotateY(14deg); }
  .coverflow-card.next-1 { transform: translateX(78px) scale(0.82) rotateY(-14deg); }

  .fc-meta-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .fc-tag {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .scroller-row {
    animation: none !important;
    flex-wrap: wrap;
    justify-content: center;
  }

  .scroller-track[aria-hidden="true"] {
    display: none;
  }

  .hero-compact-canvas {
    display: none;
  }

  body,
  body.page-entered,
  body.page-leaving {
    opacity: 1;
    animation: none !important;
    transition: none !important;
  }
}

.flip-card-container {
  perspective: 1000px;
  width: 100%;
  height: 310px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  transition: transform 2.2s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  cursor: pointer;
}

.flip-card-container:hover .flip-card-inner,
.flip-card-inner.is-flipped {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Front Face Styling */
.flip-card-front {
  background: rgba(18, 24, 36, 0.95);
  color: var(--text-primary);
  transform: rotateY(0deg);
  justify-content: space-between;
}

.flip-card-top {
  width: 100%;
  height: 190px;
  background: #0B0E14;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.flip-card-top svg {
  width: 100%;
  max-width: 210px;
  height: 150px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.6));
  transition: transform 0.4s ease;
}

.flip-card-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.flip-card-container:hover .flip-card-top svg,
.flip-card-container:hover .flip-card-top img {
  transform: scale(1.06);
}

.flip-card-front-body {
  padding: 0.4rem 0 0.2rem;
  text-align: center;
}

.flip-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0;
}

/* Back Face Styling */
.flip-card-back {
  background: #0B0E14;
  color: var(--text-primary);
  transform: rotateY(180deg);
  border-color: rgba(146, 111, 52, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(146, 111, 52, 0.15);
}

.flip-back-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 1rem 0.75rem;
}

.flip-back-text {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 380px;
}

/* ==========================================================================
   3D PERSPECTIVE FLIPPING BOOKS (3 TOP + 2 BOTTOM)
   Auto-rotating flip animation — no tap/click required.
   Each card flips open, holds, flips back, staggered across the 5 cards.
   ========================================================================== */
.perspective-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  perspective: 1000px;
}

.row-top {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.row-bottom {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.flip-book-wrapper {
  perspective: 1000px;
  width: 260px;
  height: 330px;
}

.flip-book-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 6px 4px 4px 6px;
  transform-style: preserve-3d;
  /* Same easing as the Purpose & Vision flip cards, slowed down slightly */
  transition: transform 3.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Flip open only the card under the cursor, same as Purpose & Vision */
.flip-book-wrapper:hover .flip-book-card {
  transform: rotateY(180deg);
}

.book-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px 4px 4px 6px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Front Face: Book Cover */
.book-front {
  background: #121824;
  color: #FFFFFF;
  transform: rotateY(0deg);
}

/* Inside Face: Content Page */
.book-inside {
  background: #0B0E14;
  color: #FFFFFF;
  transform: rotateY(180deg);
  border-color: rgba(146, 111, 52, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(146, 111, 52, 0.2);
}

.inside-header {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.inside-chapter {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-primary, #926F34);
}

.inside-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 0.35rem;
}

.inside-body {
  margin: 0.75rem 0;
}

.inside-lead {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-primary, #926F34);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.inside-text {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.inside-footer {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.close-hint {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
}

@media (max-width: 820px) {
  .perspective-row {
    flex-direction: column;
    align-items: center;
  }

  .flip-book-wrapper {
    width: 100%;
    max-width: 300px;
  }
}

.book-author {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.book-action {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-primary, #926F34);
}

/* Detail Panel below books */
.perspective-detail-panel {
  max-width: 900px;
  margin: 0 auto;
  background: #0E121A;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-chapter-num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-primary, #926F34);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.detail-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.detail-lead {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-primary, #926F34);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.detail-desc {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.75;
}

@media (max-width: 820px) {
  .book-3d-wrapper {
    min-height: auto;
  }
  .book-binding-spine,
  .book-ribbon-bookmark {
    display: none;
  }
  .book-pages-container {
    min-height: auto;
  }
  .book-page-spread {
    position: relative;
    grid-template-columns: 1fr;
    display: none;
  }
  .book-page-spread.active {
    display: flex;
    flex-direction: column;
  }
  .left-page {
    min-height: 220px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .right-page {
    padding: 2rem 1.5rem;
  }
}



/* ==========================================================================
   FIVE PILLARS - EDITORIAL SHOWCASE (WHY BYC PAGE)
   Oversized ghost numerals + alternating alignment, no card containers
   ========================================================================== */
.pillars-list {
  display: flex;
  flex-direction: column;
  max-width: 980px;
  margin: 0 auto;
}

.pillar-row {
  position: relative;
  padding: 2.1rem 0;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  min-height: 120px;
  display: flex;
  align-items: center;
}

.pillar-row:last-child {
  border-bottom: 1px solid var(--border-color);
}

.pillar-row.align-right {
  display: flex;
  justify-content: flex-end;
}

.pillar-num {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1;
  font-size: clamp(80px, 9vw, 130px);
  color: var(--accent-primary);
  z-index: 0;
  user-select: none;
  pointer-events: none;
}

.pillar-row:not(.align-right) .pillar-num { left: -6px; opacity: 0.16; }
.pillar-row.align-right .pillar-num { right: -6px; opacity: 0.16; }

/* Slight rhythm variation per row so it doesn't feel mechanical */
.pillar-row:nth-child(1) .pillar-num { opacity: 0.22; }
.pillar-row:nth-child(2) .pillar-num { opacity: 0.14; }
.pillar-row:nth-child(3) .pillar-num { opacity: 0.20; }
.pillar-row:nth-child(4) .pillar-num { opacity: 0.13; }
.pillar-row:nth-child(5) .pillar-num { opacity: 0.18; }

.pillar-content {
  position: relative;
  z-index: 1;
  max-width: 480px;
  padding-left: 150px;
}

.pillar-row.align-right .pillar-content {
  padding-left: 0;
  padding-right: 150px;
  text-align: right;
}

.pillar-row .book-heading {
  margin-bottom: 0.5rem;
  font-size: clamp(1.5rem, 2.3vw, 2.05rem);
  letter-spacing: -0.01em;
}

.pillar-line {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 820px) {
  .pillar-row,
  .pillar-row.align-right {
    display: block;
    padding: 2rem 0;
    min-height: 0;
  }

  .pillar-num,
  .pillar-row.align-right .pillar-num {
    position: static;
    display: block;
    font-size: 52px;
    opacity: 0.55 !important;
    margin-bottom: 0.5rem;
  }

  .pillar-content,
  .pillar-row.align-right .pillar-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }
}

/* ==========================================================================
   FLOATING CARDS - CORE EXPERTISE PAGE
   Split card: index/title/meta/tagline on the left, photo on the right
   ========================================================================== */
.floating-card-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.floating-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s ease;
}

.floating-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(146, 111, 52, 0.12);
  border-color: rgba(146, 111, 52, 0.35);
}

.fc-gradient-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), #e8c98a, var(--accent-primary));
  opacity: 0.85;
}

.fc-body {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  min-height: 260px;
}

.fc-info {
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.fc-top {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.fc-index {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--accent-primary);
  letter-spacing: 0.5px;
}

.fc-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.fc-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
}

.fc-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.fc-meta-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.fc-meta-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.fc-tag {
  font-family: 'Courier New', monospace;
  font-size: 0.7rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  white-space: nowrap;
}

.fc-tagline {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.fc-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.fc-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.fc-chip {
  font-size: 0.72rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  padding: 0.3rem 0.65rem;
  border-radius: 50px;
}

.fc-image {
  position: relative;
  overflow: hidden;
}

.fc-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 14, 20, 0.35) 0%, transparent 18%);
}

.fc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.08) contrast(1.05);
  transition: transform 0.6s ease;
}

.floating-card:hover .fc-image img {
  transform: scale(1.04);
}

@media (max-width: 820px) {
  .fc-body {
    grid-template-columns: 1fr;
  }

  .fc-image {
    height: 220px;
    order: -1;
  }

  .fc-info {
    padding: 1.75rem;
  }

  .fc-top {
    margin-bottom: 1.25rem;
  }
}

/* Compact phone presentation */
@media (max-width: 600px) {
  :root {
    --nav-height: 62px;
    --radius-md: 12px;
    --radius-lg: 18px;
  }

  body {
    font-size: 0.94rem;
  }

  .header {
    height: var(--nav-height);
  }

  .logo-img,
  .footer-logo-img {
    height: 36px;
  }

  .mobile-toggle {
    padding: 0.6rem;
  }

  .mobile-toggle span {
    width: 24px;
    height: 3px;
    border-radius: 999px;
    transform-origin: center;
  }

  .nav-menu {
    top: 0;
    left: auto;
    right: 0;
    bottom: auto;
    z-index: 1100;
    width: min(78vw, 280px);
    height: auto;
    min-height: 0;
    padding: 4.65rem max(1rem, env(safe-area-inset-right)) 1.15rem 1rem;
    gap: 0.05rem;
    justify-content: flex-start;
    align-items: stretch;
    background: rgba(11, 14, 20, 0.82);
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 0 0 0 16px;
    box-shadow: -18px 0 45px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(18px) saturate(1.15);
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
    opacity: 1;
    pointer-events: none;
    transform: translateX(105%);
    transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
  }

  .nav-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav-link {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0.25rem 0.45rem 0.25rem 0.8rem;
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 4.6vw, 1.1rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: rgba(255, 255, 255, 0.88);
    border: 0;
    border-radius: 0;
    opacity: 0;
    transform: translateX(28px);
    transition: color 0.25s ease, opacity 0.35s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-menu.active .nav-link {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-menu.active .nav-link:nth-child(1) { transition-delay: 0.14s; }
  .nav-menu.active .nav-link:nth-child(2) { transition-delay: 0.19s; }
  .nav-menu.active .nav-link:nth-child(3) { transition-delay: 0.24s; }
  .nav-menu.active .nav-link:nth-child(4) { transition-delay: 0.29s; }
  .nav-menu.active .nav-link:nth-child(5) { transition-delay: 0.34s; }

  .nav-link:hover,
  .nav-link:focus-visible {
    color: #fff;
    background: transparent;
  }

  .nav-link.active {
    color: #fff;
    background: transparent;
  }

  .nav-link.active::after {
    top: 50%;
    bottom: auto;
    left: 0;
    right: auto;
    width: 3px;
    height: 25px;
    border-radius: 999px;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(179, 138, 69, 0.65);
  }

  .mobile-toggle {
    position: relative;
    z-index: 1200;
  }

  body.menu-open .header {
    background: rgba(11, 14, 20, 0.18);
    border-bottom-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.menu-open .logo {
    opacity: 0.32;
    pointer-events: none;
  }

  .mobile-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .section-padding {
    padding: 3.25rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
  }

  .section-subtitle,
  .hero-badge {
    font-size: 1.35rem;
  }

  .section-intro,
  .hero-compact .hero-subtitle {
    font-size: 0.86rem;
    line-height: 1.65;
  }

  .hero-compact {
    margin-top: var(--nav-height);
    padding: 3.75rem 0 2.75rem;
  }

  .hero-compact .hero-title {
    font-size: clamp(1.5rem, 7vw, 1.85rem);
    line-height: 1.22;
    margin-bottom: 0.85rem;
  }

  .hero {
    margin-top: var(--nav-height);
    height: calc(100vh - var(--nav-height));
    height: calc(100svh - var(--nav-height));
    min-height: 500px;
    padding: 0;
    align-items: center;
    background: #000;
  }

  .hero-video {
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #000;
    opacity: 0.82;
    filter: brightness(1.18) contrast(1.08);
  }

  .hero-left-fade {
    width: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.42) 34%, rgba(0, 0, 0, 0.08) 100%);
  }

  .hero-bottom-fade {
    height: 38%;
    background: linear-gradient(to top, #000 35%, transparent);
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0 1.2rem;
  }

  .hero h1 {
    max-width: 330px;
    font-size: clamp(1.5rem, 7vw, 1.82rem);
    line-height: 1.14;
    margin-bottom: 0.9rem;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
  }

  .hero p {
    max-width: 325px;
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 1.55rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.95);
  }

  .hero-explore-btn,
  .btn {
    min-height: 42px;
    padding: 0.65rem 1.15rem;
    font-size: 0.82rem;
  }

  .grid,
  .values-grid,
  .pv-flip-grid,
  .floating-card-list {
    gap: 1.15rem;
  }

  .glass-card,
  .unified-who-card,
  .commitment-box,
  .contact-form-panel,
  .contact-info-panel {
    padding: 1.25rem;
  }

  .unified-card-content .lead-text {
    font-size: 0.96rem;
  }

  .coverflow-stage {
    height: 350px;
  }

  .coverflow-card {
    width: min(238px, calc(100vw - 4rem));
    height: 325px;
    border-radius: 14px;
  }

  .coverflow-card.prev-1 {
    transform: translateX(-72px) scale(0.82) rotateY(12deg);
  }

  .coverflow-card.next-1 {
    transform: translateX(72px) scale(0.82) rotateY(-12deg);
  }

  .coverflow-content {
    padding: 1.15rem 1.15rem 2.4rem;
  }

  .coverflow-content h3 {
    font-size: 1.15rem;
  }

  .coverflow-content p {
    font-size: 0.78rem;
  }

  .scroller-card {
    width: min(238px, calc(100vw - 3rem));
    min-height: 0;
    padding: 1.15rem;
  }

  .scroller-card-title {
    font-size: 1rem;
  }

  .flip-card-container {
    height: 265px;
  }

  .flip-card-top {
    height: 150px;
  }

  .flip-card-title {
    font-size: 1.2rem;
  }

  .flip-card-back {
    padding: 1.15rem;
  }

  .flip-book-wrapper {
    max-width: 230px;
    height: 290px;
  }

  .book-face {
    padding: 1.15rem 1rem;
  }

  .inside-title {
    font-size: 0.92rem;
  }

  .inside-lead {
    font-size: 0.76rem;
  }

  .inside-text {
    font-size: 0.72rem;
  }

  .pillar-row,
  .pillar-row.align-right {
    padding: 1.35rem 0;
  }

  .pillar-num,
  .pillar-row.align-right .pillar-num {
    font-size: 42px;
  }

  .fc-image {
    height: 175px;
  }

  .fc-info {
    padding: 1.25rem;
    gap: 1rem;
  }

  .fc-top {
    margin-bottom: 0.8rem;
  }

  .fc-title {
    font-size: 1.18rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-control {
    padding: 0.68rem 0.8rem;
    font-size: 0.86rem;
  }

  .site-footer {
    padding: 3rem 0 2rem;
  }

  .footer-minimal-desc {
    font-size: 0.84rem;
    margin-bottom: 1.2rem;
  }

  .footer-social-row {
    gap: 0.8rem;
    margin-bottom: 1.35rem;
  }

  .social-icon-btn {
    width: 38px;
    height: 38px;
  }

  .footer-nav {
    gap: 0.65rem 1rem;
  }

  .footer-nav a,
  .footer-copyright {
    font-size: 0.76rem;
  }

  .framework-section {
    padding-top: 2.6rem;
    padding-bottom: 2.5rem;
  }

  .framework-section .section-header {
    margin-bottom: 0.75rem;
  }

  .framework-section .section-title {
    font-size: 1.12rem;
  }

  .framework-section .section-intro {
    max-width: 330px;
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .framework-section .coverflow-container {
    padding: 0.75rem 0 0;
  }

  .framework-section .coverflow-stage {
    height: 302px;
  }

  .framework-section .coverflow-card {
    width: min(205px, calc(100vw - 6rem));
    height: 280px;
    border-radius: 13px;
  }

  .framework-section .coverflow-card.active {
    transform: translateX(0) scale(1.02) translateZ(0);
  }

  .framework-section .coverflow-card.prev-1 {
    transform: translateX(-62px) scale(0.8) rotateY(10deg);
  }

  .framework-section .coverflow-card.next-1 {
    transform: translateX(62px) scale(0.8) rotateY(-10deg);
  }

  .framework-section .coverflow-content {
    padding: 1rem 0.9rem 2rem;
  }

  .framework-section .coverflow-content h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .framework-section .coverflow-content p {
    font-size: 0.7rem;
    line-height: 1.4;
  }

  .framework-section .coverflow-num-badge {
    width: 36px;
    height: 36px;
    padding: 0 6px 5px 0;
    font-size: 0.65rem;
  }

  .framework-section .coverflow-controls {
    gap: 1rem;
    margin-top: 0.65rem;
  }

  .framework-section .coverflow-arrow {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 450px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }
}
