/* 
  ROOS*STUDIOX — World-Class Editorial Luxury & High-Converting Studio Architecture
  Exact Typographic & Aesthetic Direction inspired by Black Cherie (https://www.blackcherie.com/)
  
  Fonts:
  - Display: Inter Display / Inter (Weights: 400, 500, 600, 700, 800, 900)
  - Body: Plus Jakarta Sans (Weights: 300, 400, 500, 600, 700)
  - Accent / Mono: Fragment Mono / Space Mono (Weights: 400)
  
  Palette:
  - Pristine White: #FFFFFF
  - Soft Studio Off-White: #F7F7FA
  - Studio Border: #E5E5E9
  - Studio Border Dark: #1A1A1A
  - Deep Obsidian Black: #0A0A0C
  - Text Muted: #6B6B78
  - Accent Green Live Dot: #10B981
  - Accent Gold Star: #F59E0B
*/

@import url('https://fonts.googleapis.com/css2?family=Fragment+Mono:ital@0;1&family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  --bg-white: #FFFFFF;
  --bg-studio: #F7F7FA;
  --surface-card: #FFFFFF;
  --text-dark: #0A0A0C;
  --text-muted: #6B6B78;
  --text-subtle: #8E8E9C;
  --border-light: #E5E5E9;
  --border-strong: #D1D1D8;
  --accent-black: #0A0A0C;
  --accent-green: #10B981;
  
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Fragment Mono', monospace;
  
  --transition-bounce: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-white);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-white);
}
::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-dark);
}

/* Cursor Glow */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 320px;
  margin-left: -160px;
  margin-top: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 10, 12, 0.035) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.12s ease-out;
}

/* Typography Spectrum */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-dark);
  line-height: 1.05;
}

p {
  color: var(--text-muted);
  font-weight: 400;
}

.mono-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mono-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  background: var(--bg-studio);
  border: 1px solid var(--border-light);
  font-family: var(--font-mono);
  font-size: 0.775rem;
  color: var(--text-dark);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
  animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* Container & Sections */
.container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2.2rem;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-bounce);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--text-dark);
  color: var(--bg-white);
  box-shadow: 0 10px 30px rgba(10, 10, 12, 0.15);
}

.btn-primary:hover {
  background: #222226;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(10, 10, 12, 0.25);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--text-dark);
  border: 1px solid var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--text-dark);
  background: var(--bg-studio);
  transform: translateY(-3px);
}

.btn-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Header & Navbar (Black Cherie Style) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.8rem 0;
  transition: var(--transition-bounce);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}

.navbar.scrolled {
  padding: 1.1rem 0;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  color: var(--text-dark);
}

.brand-asterisk {
  color: var(--text-dark);
  font-family: var(--font-mono);
  font-weight: 400;
}

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

.nav-link {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 0.925rem;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.6rem;
  cursor: pointer;
}

/* HERO SECTION (REFERENCE IMAGE DESIGN & TYPOGRAPHY) */
.hero {
  position: relative;
  min-height: auto;
  padding-top: 6.5rem;
  padding-bottom: 2.2rem;
  display: flex;
  align-items: center;
  background: var(--bg-white, #ffffff);
  overflow: hidden;
}

/* Animated Background Light Glow */
.hero-geo-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.geo-grid-pattern {
  position: absolute;
  inset: -40px;
  background-image: 
    radial-gradient(circle at 1.5px 1.5px, rgba(242, 78, 30, 0.12) 1.5px, transparent 0);
  background-size: 36px 36px;
  opacity: 0.8;
}

.geo-light-aura {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.6;
}

.geo-light-aura.left-aura {
  width: 550px;
  height: 550px;
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(242, 78, 30, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
}

.geo-light-aura.right-aura {
  width: 650px;
  height: 650px;
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(242, 78, 30, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
}

.hero-container {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  position: relative;
  z-index: 2;
}

/* Top 2-Column Grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
}

/* Left Column Typography (Following Reference Image Font & Spacing) */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Eyebrow Pill Container */
.eyebrow-container {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
}

.eyebrow-accent-bar {
  width: 28px;
  height: 4px;
  background: #F24E1E;
  border-radius: 2px;
}

.eyebrow-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #F24E1E;
  text-transform: uppercase;
}

/* Main Headline (Plus Jakarta Sans 800 - Matching Reference Image Typography) */
.hero-main-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(3.2rem, 5.2vw, 4.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.038em;
  margin: 0 0 1.6rem 0;
  display: flex;
  flex-direction: column;
}

.hero-main-title .title-line {
  display: block;
  white-space: nowrap;
}

.hero-main-title .title-black {
  color: #0A0A0C;
}

.hero-main-title .title-orange {
  color: #F24E1E;
}

/* Sub-description Paragraph */
.hero-description {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #52525C;
  max-width: 760px;
  margin: 0;
}

/* Right Column Stage: Strategic Intelligence Monolith & Interactive Neural Stream */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.hero-visual-stage {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.neural-stream-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.stream-line {
  transition: stroke 0.3s ease, stroke-width 0.3s ease;
}

.stream-line.active {
  stroke: #F24E1E;
  stroke-width: 3.5px;
  filter: drop-shadow(0 0 8px #F24E1E);
}

/* 4 Floating Strategic Capability Pillar Nodes */
.pillar-node {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(10, 10, 12, 0.08);
  border-radius: 40px;
  padding: 0.45rem 0.95rem 0.45rem 0.55rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pillar-strategy { top: 12%; left: 0%; }
.pillar-storytelling { top: 32%; left: 0%; }
.pillar-design { top: 56%; left: 0%; }
.pillar-technology { top: 78%; left: 0%; }

.pillar-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0A0A0C;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all 0.3s ease;
}

.pillar-icon {
  width: 16px;
  height: 16px;
}

.pillar-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0A0A0C;
  white-space: nowrap;
}

.pillar-node:hover {
  transform: translateX(6px) scale(1.06);
  border-color: rgba(242, 78, 30, 0.45);
  box-shadow: 0 10px 30px rgba(242, 78, 30, 0.22);
  background: #FFFFFF;
}

.pillar-node:hover .pillar-badge {
  background: #F24E1E;
  box-shadow: 0 0 16px rgba(242, 78, 30, 0.6);
}

/* 3D Obsidian Monolith (The Impact Catalyst) */
.monolith-wrapper {
  position: relative;
  z-index: 3;
  width: 195px;
  height: 390px;
  perspective: 1200px;
  margin-right: 1.5rem;
}

.monolith-card {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(155deg, #0A0A0C 0%, #16161D 100%);
  border-radius: 12px;
  transform-style: preserve-3d;
  transform: rotateY(-18deg) rotateX(4deg);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  box-shadow: 
    -22px 32px 65px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem 1rem;
  overflow: hidden;
}

.monolith-light-seam {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4.5px;
  background: linear-gradient(to bottom, rgba(242, 78, 30, 0.3), #F24E1E 50%, rgba(242, 78, 30, 0.3));
  box-shadow: 
    -12px 0 35px #F24E1E,
    -24px 0 60px rgba(242, 78, 30, 0.75);
  border-radius: 2px 0 0 2px;
}

.seam-pulse-wave {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, #FFFFFF, transparent);
  animation: seamWave 2.5s ease-in-out infinite;
  opacity: 0.8;
}

@keyframes seamWave {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

.monolith-body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 0.8rem;
}

.monolith-brand-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
  width: 100%;
  position: relative;
  z-index: 4;
  perspective: 600px;
}

.monolith-brand-logo-img {
  width: 85%;
  max-width: 85%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 32px rgba(255, 255, 255, 0.85));
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.25s ease;
  transform-style: preserve-3d;
  will-change: transform, filter;
}

.monolith-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 16px 16px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none;
}

.monolith-brand-mark {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.monolith-symbol {
  font-size: 1.8rem;
  color: #F24E1E;
  filter: drop-shadow(0 0 10px #F24E1E);
}

.monolith-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.35rem 0.65rem;
  border-radius: 20px;
  font-family: monospace;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.06em;
}

.status-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F24E1E;
  box-shadow: 0 0 8px #F24E1E;
  animation: pulseLive 1.8s infinite;
}

.monolith-floor-shadow {
  position: absolute;
  bottom: -35px;
  right: -15px;
  width: 250px;
  height: 35px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, rgba(242, 78, 30, 0.25) 45%, transparent 75%);
  filter: blur(10px);
  transform: rotateX(80deg);
  transform-origin: bottom center;
  pointer-events: none;
}

/* HERO OUTCOMES GRID */
.hero-outcomes-section {
  width: 100%;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.outcome-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0 1.75rem;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.outcome-card:first-child {
  padding-left: 0;
}

.outcome-card:last-child {
  border-right: none;
  padding-right: 0;
}

.outcome-body {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  width: 100%;
}

.outcome-icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid rgba(10, 10, 12, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.outcome-card:hover .outcome-icon-badge {
  background: #FFFFFF;
  border-color: #F24E1E;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(242, 78, 30, 0.22), inset 0 0 0 1px rgba(242, 78, 30, 0.2);
}

.outcome-icon {
  width: 23px;
  height: 23px;
  transition: transform 0.3s ease;
}

.outcome-card:hover .outcome-icon {
  transform: scale(1.08);
}

.outcome-text {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.outcome-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0A0A0C;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.outcome-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 400;
  color: #555562;
  line-height: 1.6;
  margin: 0;
}

/* OUTCOMES FOOTER TAGLINE BAR (GENEROUS HEIGHT & ROOM) */
/* ==========================================================================
   OUR BELIEF MASTERPIECE SECTION (HIGH-IMPACT CREATIVE DESIGN)
   ========================================================================== */
.our-belief-section {
  width: 100%;
  background: #08080C;
  color: #FFFFFF;
  padding: calc(2.8rem + 1px) 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.belief-glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}

.belief-glow-1 {
  top: -10%;
  left: 10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.15) 0%, transparent 70%);
}

.belief-glow-2 {
  bottom: -15%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 119, 0, 0.1) 0%, transparent 70%);
}

.our-belief-container {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .our-belief-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.belief-meta-column {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  align-items: flex-start;
}

.belief-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  background: rgba(255, 77, 0, 0.1);
  border: 1px solid rgba(255, 77, 0, 0.3);
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #FF4D00;
  margin-bottom: 1.2rem;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF4D00;
  box-shadow: 0 0 10px #FF4D00;
  animation: pulseDot 2s infinite ease-in-out;
}

.belief-glass-card {
  width: 100%;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.belief-glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 77, 0, 0.3);
}

.glass-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.card-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 77, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
}

.card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 0.5rem 0;
}

.card-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin: 0 0 1.2rem 0;
}

.card-footer-stats {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.card-footer-stats strong {
  color: #FF4D00;
}

.stat-divider {
  color: rgba(255, 255, 255, 0.2);
}

.belief-main-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.belief-headline-wrapper {
  margin-bottom: 1.5rem;
}

.belief-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 2.35vw, 2.15rem);
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: -0.028em;
  color: #FFFFFF;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-transform: none;
}

.belief-text-line {
  display: block;
  opacity: 0.95;
  white-space: nowrap;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

@media (max-width: 768px) {
  .belief-text-line {
    white-space: normal;
  }
}

.gradient-orange-highlight {
  background: linear-gradient(135deg, #FF4D00 0%, #FF7700 60%, #FFAA00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(255, 77, 0, 0.45));
  font-weight: 800;
}

.belief-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
}

.feature-pill:hover {
  background: rgba(255, 77, 0, 0.12);
  border-color: rgba(255, 77, 0, 0.35);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.pill-spark {
  color: #FF4D00;
  font-size: 11px;
}

.belief-divider {
  width: 44px;
  height: 2px;
  background: #F24E1E;
  margin-bottom: 1.2rem;
  border-radius: 2px;
}

.belief-subtext {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  margin: 0;
}

/* ==========================================================================
   WHAT WE BUILD MASTERPIECE SECTION (WHITE BACKGROUND & 3x3 SERVICE GRID)
   ========================================================================== */
.what-we-build-section {
  width: 100%;
  background: #FFFFFF;
  color: #0A0A0C;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.build-geo-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.build-grid-pattern {
  position: absolute;
  inset: -40px;
  background-image: 
    radial-gradient(circle at 1.5px 1.5px, rgba(242, 78, 30, 0.08) 1.5px, transparent 0);
  background-size: 36px 36px;
  opacity: 0.85;
}

.build-container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.build-header {
  text-align: center;
  max-width: 900px;
  margin-bottom: 2.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Interactive Category Filter Bar */
.build-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.2rem;
  flex-wrap: wrap;
}

.filter-tab {
  background: rgba(10, 10, 12, 0.04);
  border: 1px solid rgba(10, 10, 12, 0.08);
  border-radius: 100px;
  padding: 0.55rem 1.3rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #52525C;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.filter-tab:hover {
  background: rgba(242, 78, 30, 0.08);
  border-color: rgba(242, 78, 30, 0.25);
  color: #F24E1E;
}

.filter-tab.active {
  background: #0A0A0C;
  border-color: #0A0A0C;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.filter-count {
  font-size: 0.7rem;
  padding: 0.15rem 0.45rem;
  background: rgba(242, 78, 30, 0.2);
  color: #F24E1E;
  border-radius: 10px;
}

.filter-tab.active .filter-count {
  background: #F24E1E;
  color: #FFFFFF;
}

.build-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.2rem;
  background: rgba(242, 78, 30, 0.06);
  border: 1px solid rgba(242, 78, 30, 0.2);
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #F24E1E;
  margin-bottom: 1.4rem;
}

.build-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0A0A0C;
  margin: 0 0 1.2rem 0;
  text-transform: uppercase;
}

.build-description {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.08rem;
  font-weight: 400;
  color: #52525C;
  line-height: 1.6;
  max-width: 720px;
  margin: 0;
}

/* 3x3 Service Cards Grid */
.build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  width: 100%;
  margin-bottom: 3.5rem;
}

.build-card {
  background: #FFFFFF;
  border: 1px solid rgba(10, 10, 12, 0.08);
  border-radius: 16px;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s ease, 
              box-shadow 0.35s ease,
              opacity 0.35s ease;
  position: relative;
  overflow: hidden;
}

.build-card.is-hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: none;
  overflow: hidden;
}

/* Card Radial Cursor Spotlight */
.card-spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(242, 78, 30, 0.09), transparent 65%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.build-card:hover .card-spotlight {
  opacity: 1;
}

/* 3D Morph Floating Graphics inside Cards */
.card-has-3d {
  position: relative;
  overflow: hidden;
}

.card-3d-graphic-wrapper {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 95px;
  height: 95px;
  pointer-events: none;
  z-index: 2;
  perspective: 600px;
}

.card-3d-graphic {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(242, 78, 30, 0.25));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  animation: floatMorph3D 6s infinite ease-in-out alternate;
}

@keyframes floatMorph3D {
  0% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-8px) rotate(4deg) scale(1.05);
  }
  100% {
    transform: translateY(4px) rotate(-3deg) scale(0.98);
  }
}

.build-card:hover .card-3d-graphic {
  transform: scale(1.25) rotate(12deg) translateZ(30px);
  filter: drop-shadow(0 20px 40px rgba(242, 78, 30, 0.45));
}

/* Card Live Tags */
.card-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: rgba(10, 10, 12, 0.05);
  color: #52525C;
}

.card-live-tag.active-tag {
  background: rgba(242, 78, 30, 0.1);
  color: #F24E1E;
  border: 1px solid rgba(242, 78, 30, 0.25);
}

.card-live-tag.ai-glow-tag {
  background: rgba(10, 10, 12, 0.9);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 12px rgba(242, 78, 30, 0.3);
}

.tag-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F24E1E;
  box-shadow: 0 0 8px #F24E1E;
  animation: pulseDot 1.8s infinite ease-in-out;
}

/* Card Mini Feature Tags */
.card-tags-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(10, 10, 12, 0.06);
  z-index: 2;
  position: relative;
}

.mini-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #666675;
  background: rgba(10, 10, 12, 0.03);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.build-card:hover .mini-tag {
  background: rgba(242, 78, 30, 0.08);
  color: #F24E1E;
}

/* Card Live Interactive Micro-Widgets */
.card-interactive-widget {
  margin-top: 1.2rem;
  padding: 0.85rem 1rem;
  background: rgba(10, 10, 12, 0.03);
  border: 1px solid rgba(10, 10, 12, 0.06);
  border-radius: 12px;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

.build-card:hover .card-interactive-widget {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(242, 78, 30, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

/* 01. Positioning Matrix Meter */
.matrix-meter {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.meter-label { font-size: 0.68rem; font-weight: 800; color: #52525C; }
.meter-bar { flex: 1; height: 6px; background: rgba(10, 10, 12, 0.08); border-radius: 4px; overflow: hidden; }
.meter-fill { height: 100%; background: linear-gradient(90deg, #F24E1E, #FF7733); border-radius: 4px; transition: width 0.4s ease; }
.meter-value { font-size: 0.72rem; font-weight: 800; color: #F24E1E; font-family: monospace; }
.widget-btn { width: 100%; padding: 0.35rem; background: #0A0A0C; color: #FFFFFF; border: none; border-radius: 6px; font-size: 0.7rem; font-weight: 800; cursor: pointer; transition: background 0.2s ease; }
.widget-btn:hover { background: #F24E1E; }

/* 02. Live Palette Switcher */
.widget-palette { display: flex; align-items: center; justify-content: space-between; }
.widget-label { font-size: 0.68rem; font-weight: 800; color: #52525C; }
.palette-dots { display: flex; gap: 0.5rem; }
.palette-dot { width: 22px; height: 22px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; transition: transform 0.2s ease, border-color 0.2s ease; }
.palette-dot.active { border-color: #0A0A0C; transform: scale(1.15); }

/* 03. Live Code Terminal */
.widget-code { background: #0A0A0C !important; color: #FFFFFF; border-color: rgba(255,255,255,0.1); }
.code-terminal-header { display: flex; align-items: center; gap: 0.35rem; margin-bottom: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 0.35rem; }
.code-dot { width: 8px; height: 8px; border-radius: 50%; }
.code-dot.red { background: #FF5F56; } .code-dot.yellow { background: #FFBD2E; } .code-dot.green { background: #27C93F; }
.terminal-title { font-family: monospace; font-size: 0.65rem; color: rgba(255,255,255,0.5); margin-left: auto; }
.code-line { font-family: monospace; font-size: 0.72rem; }
.c-purple { color: #C792EA; } .c-yellow { color: #FFCB6B; } .c-orange { color: #F24E1E; } .c-cyan { color: #89DDFF; }

/* 04. Live AI Prompt */
.widget-ai { background: rgba(242, 78, 30, 0.05) !important; border-color: rgba(242, 78, 30, 0.2); }
.ai-prompt-box { display: flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; font-weight: 700; color: #0A0A0C; margin-bottom: 0.4rem; }
.ai-response-pill { font-size: 0.68rem; font-weight: 800; color: #F24E1E; background: rgba(242,78,30,0.1); padding: 0.2rem 0.5rem; border-radius: 4px; display: inline-block; }

/* 05. Data Node Flow */
.widget-node-flow { display: flex; align-items: center; justify-content: space-between; gap: 0.3rem; }
.node-item { font-size: 0.65rem; font-weight: 800; padding: 0.2rem 0.4rem; background: rgba(10,10,12,0.06); border-radius: 4px; color: #52525C; }
.node-item.active { background: #0A0A0C; color: #FFFFFF; }
.node-connector { flex: 1; height: 2px; background: rgba(242,78,30,0.3); position: relative; overflow: hidden; }
.node-pulse { position: absolute; top:0; left:-100%; width: 50%; height: 100%; background: #F24E1E; animation: nodePulse 1.6s infinite linear; }
@keyframes nodePulse { 0% { left: -100%; } 100% { left: 100%; } }

/* 06. Viewport Switcher */
.widget-viewport { padding: 0.4rem !important; }
.viewport-toggle { display: flex; gap: 0.3rem; }
.view-btn { flex: 1; padding: 0.35rem; border: none; border-radius: 6px; font-size: 0.7rem; font-weight: 800; background: transparent; color: #52525C; cursor: pointer; transition: all 0.2s ease; }
.view-btn.active { background: #0A0A0C; color: #FFFFFF; }

/* 07. Live ROI Simulator */
.roi-header { display: flex; justify-content: space-between; font-size: 0.68rem; font-weight: 800; margin-bottom: 0.4rem; }
.roi-val { color: #F24E1E; font-family: monospace; }
.roi-slider { width: 100%; accent-color: #F24E1E; cursor: pointer; }

/* 08. Motion Waves Equalizer */
.widget-motion { display: flex; align-items: center; justify-content: space-between; }
.motion-bars { display: flex; gap: 3px; align-items: flex-end; height: 16px; }
.m-bar { width: 4px; background: #F24E1E; border-radius: 2px; animation: waveBar 1.2s infinite ease-in-out alternate; }
.m-bar:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.m-bar:nth-child(2) { height: 90%; animation-delay: 0.3s; }
.m-bar:nth-child(3) { height: 60%; animation-delay: 0.2s; }
.m-bar:nth-child(4) { height: 100%; animation-delay: 0.4s; }
.m-bar:nth-child(5) { height: 50%; animation-delay: 0.15s; }
@keyframes waveBar { 0% { height: 20%; } 100% { height: 100%; } }
.motion-tag { font-size: 0.65rem; font-weight: 800; color: #52525C; letter-spacing: 0.05em; }

/* 09. Milestone Stepper */
.widget-roadmap { display: flex; align-items: center; justify-content: space-between; }
.step-item { font-size: 0.65rem; font-weight: 800; padding: 0.2rem 0.45rem; border-radius: 4px; background: rgba(10,10,12,0.06); color: #52525C; }
.step-item.done { background: rgba(242,78,30,0.1); color: #F24E1E; }
.step-item.active { background: #0A0A0C; color: #FFFFFF; }
.step-line { flex: 1; height: 2px; background: rgba(10,10,12,0.1); margin: 0 4px; }

.build-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F24E1E, #FF7733);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.build-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 78, 30, 0.35);
  box-shadow: 0 20px 45px rgba(242, 78, 30, 0.12), 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.card-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}

.card-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(242, 78, 30, 0.08);
  border: 1px solid rgba(242, 78, 30, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, background 0.35s ease;
}

.build-card:hover .card-icon-wrapper {
  background: #F24E1E;
  transform: scale(1.08) rotate(-4deg);
}

.build-card-icon {
  width: 24px;
  height: 24px;
  stroke: #F24E1E;
  transition: stroke 0.35s ease;
}

.build-card:hover .build-card-icon {
  stroke: #FFFFFF;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.card-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #F24E1E;
  letter-spacing: -0.02em;
}

.card-arrow {
  font-size: 1.2rem;
  color: #0A0A0C;
  opacity: 0.35;
  transition: transform 0.35s ease, opacity 0.35s ease, color 0.35s ease;
}

.build-card:hover .card-arrow {
  opacity: 1;
  color: #F24E1E;
  transform: translateX(5px);
}

.build-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0A0A0C;
  line-height: 1.25;
  margin: 0 0 0.8rem 0;
  letter-spacing: -0.02em;
}

.build-card-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.94rem;
  font-weight: 400;
  color: #52525C;
  line-height: 1.6;
  margin: 0;
}

/* Bottom Tagline Footer Bar */
.build-footer-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  width: 100%;
  padding-top: 1rem;
}

.build-footer-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0;
  text-align: center;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.tagline-dark {
  color: #0A0A0C;
}

.tagline-orange {
  color: #F24E1E;
}

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

@media (max-width: 768px) {
  .build-grid {
    grid-template-columns: 1fr;
  }
  .what-we-build-section {
    padding: 3.5rem 1.5rem;
  }
}

/* Scroll Reveal Classes (Visible by Default - Fail-Safe) */
.scroll-reveal-line {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), filter 0.75s ease;
}

/* JS-activated initial hidden state for smooth scroll entrance */
.scroll-reveal-line.animate-init {
  opacity: 0;
  transform: translateY(35px) scale(0.97);
  filter: blur(4px);
}

.scroll-reveal-line.animate-init.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Bottom Journey Strip ("OUR PROMISE. YOUR JOURNEY.") */
.journey-strip {
  width: 100%;
  padding-top: 2rem;
  border-top: 1px solid #eaeae8;
  display: flex;
  align-items: center;
}

.journey-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

.journey-step {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  flex: 1;
  min-width: 130px;
  transition: transform 0.3s ease;
}

.journey-step:hover {
  transform: translateY(-2px);
}

.journey-icon-wrap {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.journey-icon {
  width: 22px;
  height: 22px;
}

.journey-step-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.journey-step-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #0a0a0c;
  text-transform: uppercase;
}

.journey-step-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.74rem;
  line-height: 1.45;
  color: #666672;
  font-weight: 400;
}

.journey-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d0d0d8;
  flex-shrink: 0;
}

.journey-arrow svg {
  width: 14px;
  height: 14px;
}

.badge-pos-1 { top: 10%; left: 6%; }
.badge-pos-2 { bottom: 12%; right: 6%; animation-delay: 2s; }
.badge-pos-3 { top: 56%; left: 2%; animation-delay: 4s; }

@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-14px); }
}

.badge-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-subtle);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.badge-value {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
}

/* HIGH CONVERTING PROOF & METRICS STRIP */
.metrics-strip {
  padding: 4.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-studio);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.metric-card {
  padding: 1.5rem;
}

.metric-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.metric-label {
  font-family: var(--font-mono);
  font-size: 0.825rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* BRAND LOGO WALL */
.brand-wall {
  padding: 3.5rem 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.brand-wall-heading {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 2rem;
}

.brand-logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 3.5rem;
}

.brand-logo-item {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #B0B0B8;
  transition: var(--transition-fast);
}

.brand-logo-item:hover {
  color: var(--text-dark);
}

/* SELECTED WORK (Luxury Full-Width Showcase Cards) */
.work-section {
  background: var(--bg-white);
}

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

.section-title {
  font-size: clamp(2.6rem, 4.8vw, 4.5rem);
  font-weight: 900;
  margin-top: 1rem;
}

.work-list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.work-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: var(--bg-studio);
  border: 1px solid var(--border-light);
  transition: var(--transition-bounce);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  min-height: 540px;
}

.work-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.work-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  background: #E8E8EC;
}

.work-media-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover .work-media-img {
  transform: scale(1.05);
}

.work-info {
  padding: 4.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-white);
  border-left: 1px solid var(--border-light);
}

.work-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.work-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  background: var(--bg-studio);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}

.work-title {
  font-size: 2.6rem;
  margin-bottom: 0.75rem;
}

.work-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.work-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.work-link:hover {
  gap: 1.1rem;
}

/* CAPABILITIES & SERVICES (Editorial List 01-06) */
.services-section {
  background: var(--bg-studio);
}

.service-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-strong);
}

.service-item {
  display: grid;
  grid-template-columns: 100px 1.2fr 1.8fr auto;
  align-items: center;
  padding: 3rem 2rem;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-bounce);
  cursor: pointer;
  background: var(--bg-studio);
}

.service-item:hover {
  background: var(--bg-white);
  padding-left: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.service-num {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--text-subtle);
  transition: var(--transition-fast);
}

.service-item:hover .service-num {
  color: var(--text-dark);
  font-weight: 700;
}

.service-title {
  font-size: 2.1rem;
  font-weight: 800;
}

.service-outcome {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.service-arrow {
  width: 28px;
  height: 28px;
  color: var(--text-subtle);
  transition: var(--transition-bounce);
}

.service-item:hover .service-arrow {
  color: var(--text-dark);
  transform: translateX(10px);
}

/* HIGH CONVERTING PROJECT SCOPE ESTIMATOR COMPONENT */
.estimator-section {
  background: var(--bg-white);
}

.estimator-card {
  padding: 4.5rem;
  border-radius: 36px;
  background: var(--bg-studio);
  border: 1px solid var(--border-strong);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.05);
}

.estimator-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.estimator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.estimator-group-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 1.25rem;
}

.estimator-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.estimator-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.estimator-option:hover, .estimator-option.active {
  border-color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.estimator-option.active {
  background: var(--text-dark);
  color: var(--bg-white);
}

.estimator-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  border-radius: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-strong);
}

/* WHY ROOS STUDIOX (Pillars & Comparison) */
.why-section {
  background: var(--bg-white);
}

.philosophy-banner {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 5.5rem;
}

.philosophy-quote {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.pillar-card {
  padding: 3.8rem 2.8rem;
  border-radius: 28px;
  background: var(--bg-studio);
  border: 1px solid var(--border-light);
  transition: var(--transition-bounce);
}

.pillar-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

.pillar-num {
  font-family: var(--font-mono);
  font-size: 2rem;
  color: var(--text-subtle);
  margin-bottom: 1.5rem;
}

.pillar-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* PROCESS TIMELINE */
.process-section {
  background: var(--bg-studio);
}

.timeline-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 4.5rem;
  position: relative;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--border-strong);
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  padding-top: 3.5rem;
}

.timeline-dot {
  position: absolute;
  top: 15px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 3px solid var(--text-dark);
  transition: var(--transition-fast);
}

.timeline-step:hover .timeline-dot {
  background: var(--text-dark);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.step-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
}

/* TESTIMONIAL CAROUSEL CARD */
.testimonial-card {
  max-width: 960px;
  margin: 0 auto;
  padding: 5rem 4.5rem;
  border-radius: 32px;
  background: var(--bg-studio);
  border: 1px solid var(--border-light);
  text-align: center;
}

.stars {
  color: var(--text-dark);
  font-size: 1.3rem;
  margin-bottom: 1.8rem;
  letter-spacing: 6px;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 2.2rem;
  color: var(--text-dark);
}

.testimonial-author {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
}

/* FAQ ACCORDION */
.faq-section {
  max-width: 960px;
  margin: 0 auto;
  background: var(--bg-white);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.faq-item {
  border-radius: 20px;
  background: var(--bg-studio);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-strong);
  background: var(--bg-white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.9rem 2.4rem;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 2.4rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.9rem;
}

/* STARK HIGH CONVERTING FINAL CTA */
.cta-section {
  position: relative;
  padding: 11rem 0;
  background: var(--text-dark);
  color: var(--bg-white);
  text-align: center;
}

.cta-title {
  font-size: clamp(3.4rem, 6.8vw, 5.8rem);
  font-weight: 900;
  line-height: 1.02;
  margin-bottom: 2.5rem;
  color: var(--bg-white);
}

.cta-btn {
  background: var(--bg-white);
  color: var(--text-dark);
  padding: 1.25rem 3rem;
  font-size: 1.15rem;
}

.cta-btn:hover {
  background: #EBEBEF;
}

/* FOOTER */
.footer {
  padding: 6rem 0 3.5rem;
  border-top: 1px solid var(--border-light);
  background: var(--bg-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4.5rem;
}

.footer-desc {
  margin-top: 1.2rem;
  max-width: 360px;
  color: var(--text-muted);
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-light);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-subtle);
}

/* INQUIRY MODAL DRAWER */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 12, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-bounce);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  width: 92%;
  max-width: 680px;
  background: var(--bg-white);
  border: 1px solid var(--border-strong);
  border-radius: 32px;
  padding: 3.8rem;
  position: relative;
  transform: scale(0.95);
  transition: var(--transition-bounce);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.18);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  background: none;
  border: none;
  color: var(--text-subtle);
  font-size: 1.6rem;
  cursor: pointer;
}

.modal-close:hover { color: var(--text-dark); }

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

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.form-input, .form-textarea {
  width: 100%;
  padding: 1.15rem 1.4rem;
  border-radius: 16px;
  background: var(--bg-studio);
  border: 1px solid var(--border-strong);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--text-dark);
  background: var(--bg-white);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.08);
}

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

.reveal.active {
  opacity: 1;
  transform: translateY(0).drawer-submit-btn:hover { background: #0A0A0C; }

/* ==========================================================================
   NEW SECTIONS: SELECTED WORK, TRIAD, PROCESS & CONTACT PANELS
   ========================================================================== */
.roos-section {
  position: relative;
  padding: 6rem 0;
  background: #FAF9F6;
  border-top: 1px solid rgba(10, 10, 12, 0.06);
}

.roos-section-dark {
  background: #08080A;
  color: #FFFFFF;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.roos-section-dark .roos-badge-pill {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

.roos-section-dark .sec2-main-title {
  color: #FFFFFF;
}

.roos-section-dark .roos-bento-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* Selected Work Grid */
.roos-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.roos-work-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(10, 10, 12, 0.08);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.roos-work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10, 10, 12, 0.12);
  border-color: #F24E1E;
}

.roos-work-media {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #0A0A0C 0%, #1A1A24 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1.5rem;
}

.roos-work-swatch {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.roos-work-card:hover .roos-work-swatch {
  color: #FFD700;
  border-color: #FFD700;
  transform: scale(1.05);
}

.roos-work-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.roos-work-cat {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #F24E1E;
  margin-bottom: 0.6rem;
}

.roos-work-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #0A0A0C;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.roos-work-sector {
  font-size: 0.85rem;
  color: #6B6B78;
  margin-top: auto;
}

/* Triad Grid (How We Work) */
.roos-triad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.roos-triad-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
}

.roos-triad-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: #F24E1E;
  transform: translateY(-4px);
}

.roos-triad-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: #F24E1E;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  display: block;
}

.roos-triad-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.85rem;
}

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

/* Process Section */
.roos-process-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.roos-process-card {
  display: grid;
  grid-template-columns: 80px 1.2fr 2fr;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid rgba(10, 10, 12, 0.08);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.roos-process-card:hover {
  border-color: #F24E1E;
  transform: translateX(6px);
  box-shadow: 0 10px 30px rgba(10, 10, 12, 0.08);
}

.roos-process-num {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 800;
  color: #F24E1E;
}

.roos-process-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0A0A0C;
}

.roos-process-card p {
  font-size: 0.92rem;
  color: #52525C;
  line-height: 1.6;
}

/* Contact & Final CTA Section */
.roos-contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  background: #08080A;
  color: #FFFFFF;
  border-radius: 28px;
  padding: 4rem 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.roos-contact-info h2 {
  font-size: 2.8rem;
  color: #FFFFFF;
  line-height: 1.1;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.roos-contact-info p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.roos-contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFD700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 215, 0, 0.4);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.roos-contact-email-link:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.roos-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.roos-contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.roos-contact-form label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.4rem;
  display: block;
}

.roos-contact-form input,
.roos-contact-form select,
.roos-contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: all 0.3s ease;
}

.roos-contact-form input::placeholder,
.roos-contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.roos-contact-form select option {
  background: #08080A;
  color: #FFFFFF;
}

.roos-contact-form input:focus,
.roos-contact-form select:focus,
.roos-contact-form textarea:focus {
  outline: none;
  border-color: #F24E1E;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(242, 78, 30, 0.25);
}

.consent-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

.consent-checkbox-row input {
  width: auto;
  margin-top: 3px;
  accent-color: #F24E1E;
}

.contact-submit-btn {
  padding: 1.1rem 2.2rem;
  border-radius: 100px;
  background: #F24E1E;
  color: #FFFFFF;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 10px 30px rgba(242, 78, 30, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  align-self: flex-start;
}

.contact-submit-btn:hover {
  background: #FFFFFF;
  color: #0A0A0C;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(255, 255, 255, 0.3);
}

/* Footer */
.roos-site-footer {
  background: #040405;
  color: #FFFFFF;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.roos-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.roos-footer-brand .nebula-top-brand {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.roos-footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 320px;
}

.roos-footer-col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.2rem;
}

.roos-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.roos-footer-col a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.roos-footer-col a:hover {
  color: #F24E1E;
}

.roos-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   SECTION 01: OUR APPROACH (Light Theme & Process Timeline)
   ========================================================================== */
.approach-section {
  position: relative;
  background-color: #ffffff;
  padding: 7rem 0 5rem 0;
  overflow: hidden;
}

.approach-container {
  width: 95%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: flex-start;
}

.approach-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.approach-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #111111;
  margin-bottom: 2rem;
}

.accent-orange {
  color: var(--accent-orange, #FF6A00);
}

.approach-supporting {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.12rem;
  line-height: 1.65;
  color: #555562;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.btn-approach-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111111;
  text-decoration: none;
  border-bottom: 2px solid #111111;
  padding-bottom: 4px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.btn-approach-cta:hover {
  color: var(--accent-orange, #FF6A00);
  border-color: var(--accent-orange, #FF6A00);
}

.btn-approach-cta .cta-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-approach-cta:hover .cta-arrow {
  transform: translateX(6px);
}

/* Horizontal Timeline Stage */
.approach-right {
  width: 100%;
  padding-top: 1rem;
}

.timeline-stage {
  position: relative;
  width: 100%;
}

.timeline-line-svg {
  position: absolute;
  top: 48px;
  left: 0;
  width: 100%;
  height: 12px;
  z-index: 1;
}

.timeline-nodes {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 125px;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.node-num-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent-orange, #FF6A00);
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}

.node-circle-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid rgba(255, 106, 0, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05), 0 0 0 6px #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.node-circle-icon svg {
  width: 24px;
  height: 24px;
}

.timeline-node:hover {
  transform: translateY(-8px);
}

.timeline-node:hover .node-circle-icon {
  border-color: var(--accent-orange, #FF6A00);
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.3), 0 0 0 6px #ffffff;
  transform: scale(1.1);
}

.node-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.node-text-block .node-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: #111111;
  text-transform: uppercase;
}

.node-text-block .node-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #555562;
  font-weight: 500;
}

/* 4 Value Cards Row */
.value-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.8rem 2rem;
  background-color: #FAFAFD;
  border: 1px solid #EFEFEF;
  border-radius: 24px;
}

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: #ffffff;
  border: 1px solid #EFEFEF;
  border-radius: 18px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.value-card-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 106, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.value-card-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.value-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.value-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #111111;
  text-transform: uppercase;
}

.value-card-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #666672;
  font-weight: 500;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 0, 0.4);
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.12);
}

.value-card:hover .value-card-icon-wrap {
  transform: rotate(5deg) scale(1.08);
}


/* ==========================================================================
   SECTION 02: WHAT WE BUILD (Dark Charcoal #111111 Layout)
   ========================================================================== */
.dark-services-section {
  position: relative;
  background-color: #111111;
  border-radius: 40px 40px 0 0;
  padding: 7rem 0 6rem 0;
  color: #ffffff;
  overflow: hidden;
}

.dark-section-radial-light {
  position: absolute;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.08) 0%, rgba(255, 106, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
  transition: transform 0.15s ease-out;
}

.dark-services-container {
  position: relative;
  z-index: 2;
  width: 95%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

.dark-services-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 800px;
}

.dark-services-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 1.8rem;
}

.dark-services-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  line-height: 1.65;
  color: #a0a0b0;
  max-width: 680px;
}

/* 2 x 3 Grid of Service Cards */
.services-grid-2x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card-dark {
  position: relative;
  background-color: #191919;
  border: 1px solid #262626;
  border-radius: 22px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 106, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.service-icon-box svg {
  width: 24px;
  height: 24px;
}

.service-card-arrow {
  width: 22px;
  height: 22px;
  color: #666675;
  transition: transform 0.35s ease, color 0.35s ease;
}

.service-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}

.service-card-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #9999a5;
  font-weight: 400;
}

/* Service Card Hover States */
.service-card-dark:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 0, 0.6);
  background-color: #202020;
  box-shadow: 0 14px 35px rgba(255, 106, 0, 0.18);
}

.service-card-dark:hover .service-icon-box {
  transform: scale(1.1);
  background-color: rgba(255, 106, 0, 0.22);
}

.service-card-dark:hover .service-card-arrow {
  color: var(--accent-orange, #FF6A00);
  transform: translateX(6px);
}

/* Global Location Banner */
.global-location-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #181818;
  border: 1px solid #2A2A2A;
  border-radius: 24px;
  padding: 2rem 2.5rem;
  margin-top: 2rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.banner-left .banner-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
}

.banner-divider {
  width: 1px;
  height: 48px;
  background-color: #333333;
}

.banner-middle {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.location-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent-orange, #FF6A00);
  text-transform: uppercase;
}

.location-cities {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  color: #cccccc;
  font-weight: 500;
}

.banner-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background: #ffffff;
  padding: 0.85rem 1.6rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.banner-contact-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.25);
}

.mail-icon {
  width: 22px;
  height: 22px;
}

.contact-pill-text {
  display: flex;
  flex-direction: column;
}

.pill-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.76rem;
  color: #666670;
  font-weight: 500;
}

.pill-email {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent-orange, #FF6A00);
}

@media (max-width: 1024px) {
  .approach-grid { grid-template-columns: 1fr; }
  .value-cards-wrapper { grid-template-columns: repeat(2, 1fr); }
  .services-grid-2x3 { grid-template-columns: repeat(2, 1fr); }
  .global-location-banner { flex-direction: column; align-items: flex-start; }
  .banner-divider { display: none; }
}

@media (max-width: 768px) {
  .value-cards-wrapper { grid-template-columns: 1fr; }
  .services-grid-2x3 { grid-template-columns: 1fr; }
  .timeline-nodes { flex-direction: column; align-items: center; gap: 2rem; }
  .timeline-line-svg { display: none; }
}

/* ==========================================================================
   ENTERPRISE AGENTIC AI PLATFORM SECTION & ECOSYSTEM BANNER (MASTERPIECE)
   ========================================================================== */
.ai-platform-section {
  position: relative;
  width: 100%;
  background-color: #fafafc;
  padding: 5.5rem 2rem;
  box-sizing: border-box;
  z-index: 2;
}

.ai-platform-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* CENTERED MASTER HERO HEADER BLOCK */
.ai-platform-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.ai-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid rgba(255, 106, 0, 0.25);
  border-radius: 30px;
  padding: 0.45rem 1.2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent-orange, #FF6A00);
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.08);
  margin-bottom: 1.4rem;
}

.pill-sparkle {
  font-size: 0.85rem;
}

.ai-platform-main-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  line-height: 1.14;
  font-weight: 800;
  color: #050508;
  letter-spacing: -0.03em;
  margin: 0 0 1.2rem 0;
}

.ai-platform-lead {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #555562;
  max-width: 780px;
  margin: 0 0 2.5rem 0;
}

/* 4 HORIZONTAL METRIC COUNTER BAR */
.ai-metrics-counter-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 1.2rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
}

.counter-badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.counter-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.counter-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #050508;
  line-height: 1.1;
}

.counter-lbl {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #666675;
}

.counter-divider {
  width: 1px;
  height: 36px;
  background-color: rgba(0, 0, 0, 0.08);
}

/* REALISTIC 3D GRADIENT ICON BADGES */
.badge-icon-3d {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge-icon-3d.sm {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.badge-icon-3d svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.badge-icon-3d.sm svg {
  width: 18px;
  height: 18px;
}

.agent-matrix-card:hover .badge-icon-3d,
.capability-item:hover .badge-icon-3d {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 24px rgba(255, 106, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

/* Gradient Presets for 3D Icon Badges */
.gradient-1, .gradient-copilot { background: linear-gradient(135deg, #FF6A00 0%, #EE0979 100%); }
.gradient-2, .gradient-support { background: linear-gradient(135deg, #FF9900 0%, #FF5500 100%); }
.gradient-3, .gradient-ops     { background: linear-gradient(135deg, #4776E6 0%, #8E54E9 100%); }
.gradient-4, .gradient-fin     { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }
.gradient-hr                   { background: linear-gradient(135deg, #FC466B 0%, #3F5EFB 100%); }
.gradient-mktg                 { background: linear-gradient(135deg, #F857A6 0%, #FF5858 100%); }
.gradient-knw                  { background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%); }
.gradient-sales                { background: linear-gradient(135deg, #f89b29 0%, #ff0f7b 100%); }

/* DUAL-PANEL SHOWCASE CONSOLE */
.ai-console-card {
  width: 100%;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
  padding: 2.5rem;
  box-sizing: border-box;
}

.ai-console-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* LEFT & RIGHT PANEL HEADERS */
.panel-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.panel-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.live-indicator {
  color: #10b981;
  font-size: 0.75rem;
  animation: livePulse 2s infinite ease-in-out;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.85); }
}

.panel-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #050508;
}

.agents-count-tag, .panel-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent-orange, #FF6A00);
  background: rgba(255, 106, 0, 0.1);
  padding: 3px 9px;
  border-radius: 12px;
}

/* 2x4 COMMAND CARD MATRIX */
.agent-matrix-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
}

.agent-matrix-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 1.1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.agent-matrix-card:hover, .agent-matrix-card.active {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 0, 0.45);
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.15);
  background: #fffcfb;
}

.matrix-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.card-status-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.08);
  padding: 2px 8px;
  border-radius: 10px;
}

.pulse-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #10b981;
}

.matrix-card-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: #050508;
  margin-top: 0.2rem;
}

.matrix-card-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #666675;
}

/* RIGHT PANEL: CAPABILITIES ACCORDION LIST */
.ai-capabilities-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 100%;
}

.capability-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.capability-item:hover, .capability-item.active {
  border-color: rgba(255, 106, 0, 0.35);
  background-color: #fffaf8;
  transform: translateX(4px);
}

.cap-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cap-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: #050508;
}

.cap-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #666675;
}

.cap-arrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #aaaab5;
  transition: color 0.25s ease, transform 0.25s ease;
}

.capability-item:hover .cap-arrow {
  color: var(--accent-orange, #FF6A00);
  transform: translateX(3px);
}

/* CENTERED SYMMETRICAL CTA ROW */
.ai-platform-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  width: 100%;
  margin-top: 0.5rem;
}

.btn-large {
  padding: 0.9rem 2.2rem;
  font-size: 0.95rem;
}

/* ECOSYSTEM INTEGRATION BANNER */
.ai-integration-banner {
  width: 100%;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  padding: 1.4rem 2rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.integration-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  color: #050508;
  flex-shrink: 0;
}

.integration-badges-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #f8f8fb;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #22222e;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.tech-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 0, 0.3);
}

.badge-icon {
  font-weight: 800;
  font-size: 0.85rem;
}

.badge-icon.ms { color: #00a4ef; }
.badge-icon.google { color: #4285f4; }
.badge-icon.slack { color: #e01e5a; }
.badge-icon.sf { color: #00a1e0; }
.badge-icon.hub { color: #ff7a59; }
.badge-icon.shop { color: #96bf48; }
.badge-icon.sap { color: #008fd3; }
.badge-icon.zoho { color: #e42527; }
.badge-icon.wa { color: #25d366; }
.badge-icon.api { color: #ff6a00; font-family: monospace; }

.and-more {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #888898;
  margin-left: 0.2rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .ai-console-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ai-metrics-counter-bar {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }

  .counter-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .ai-platform-section {
    padding: 3.5rem 1rem;
  }

  .ai-console-card {
    padding: 1.5rem 1rem;
  }

  .agent-matrix-grid {
    grid-template-columns: 1fr;
  }

  .ai-platform-cta-row {
    flex-direction: column;
    width: 100%;
  }

  .ai-platform-cta-row .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   MASTER COMPREHENSIVE RESPONSIVE DESIGN SYSTEM (320px - 2560px+)
   Roos StudioX — Universal Fluid Responsiveness across All Devices & Screens
   ========================================================================== */

/* 1. ULTRA-WIDE & 4K MONITORS (> 1540px) */
@media (min-width: 1540px) {
  .container, .nebula-container, .our-belief-container {
    max-width: 1540px;
    margin-left: auto;
    margin-right: auto;
  }

  .nebula-main-title {
    font-size: 4.5rem;
  }
}

/* 2. LARGE DESKTOPS & LAPTOPS (1200px - 1539px) */
@media (min-width: 1200px) and (max-width: 1539px) {
  .nebula-container {
    max-width: 1280px;
  }
  
  .nebula-master-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

/* 3. DESKTOP / TABLET LANDSCAPE BREAKPOINT (992px - 1199px) */
@media (max-width: 1199px) {
  .nebula-container {
    padding: 0 2rem;
  }

  .nebula-master-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .roos-work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .roos-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .roos-triad-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* 4. TABLET PORTRAIT & SMALL LAPTOP BREAKPOINT (768px - 991px) */
@media (max-width: 991px) {
  .nebula-top-row {
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: space-between;
  }

  .nebula-nav-links {
    gap: 1rem 1.5rem;
    flex-wrap: wrap;
  }

  .nebula-master-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .nebula-hero-visual-stage {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .kinetic-stage-card {
    max-width: 540px;
    height: 380px;
    margin: 0 auto;
  }

  .roos-bento-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .roos-bento-card.card-featured {
    grid-column: span 1;
  }

  .roos-triad-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .roos-process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .roos-contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .roos-footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
  }
}

/* 5. PHABLET & MOBILE LANDSCAPE (576px - 767px) */
@media (max-width: 767px) {
  .nebula-container, .container {
    padding: 0 1.25rem;
  }

  .nebula-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nebula-nav-links {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    white-space: nowrap;
    gap: 1.25rem;
  }

  .nebula-main-title {
    font-size: clamp(2.1rem, 7.5vw, 3.2rem);
    line-height: 1.1;
  }

  .nebula-header-desc {
    font-size: 1rem;
    line-height: 1.55;
  }

  .nebula-hero-actions {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    gap: 1rem;
  }

  .nebula-hero-actions .nebula-btn,
  .nebula-hero-actions .nebula-link-underline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-impact-metrics-bar {
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    padding-top: 1.25rem;
  }

  .hero-impact-metrics-bar .metric-divider {
    display: none;
  }

  .kinetic-stage-card {
    height: 320px;
  }

  .roos-work-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .roos-process-list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .bento-filter-bar-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
  }

  .bento-filter-tabs {
    flex-wrap: nowrap;
    white-space: nowrap;
    width: max-content;
  }

  .roos-contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .roos-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .roos-footer-brand {
    grid-column: 1 / -1;
  }

  .roos-footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    align-items: center;
  }
}

/* 6. SMALL MOBILE DEVICES (320px - 575px) */
@media (max-width: 575px) {
  .nebula-container, .container {
    padding: 0 1rem;
  }

  .nebula-main-title {
    font-size: clamp(1.85rem, 8.5vw, 2.6rem);
  }

  .sec2-main-title, .roos-bento-title {
    font-size: clamp(1.75rem, 7.5vw, 2.4rem);
  }

  .kinetic-stage-card {
    height: 280px;
  }

  .roos-bento-card {
    padding: 1.25rem;
  }

  .card-interactive-widget {
    padding: 0.85rem;
  }

  .palette-dots {
    gap: 0.5rem;
  }

  .roi-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .roos-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .roos-modal-content, .drawer-panel {
    width: 96%;
    padding: 1.25rem;
    max-height: 92vh;
    border-radius: 18px;
  }

  .modal-metrics-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .modal-cta-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .modal-primary-btn, .modal-secondary-btn {
    width: 100%;
    justify-content: center;
  }
}

/* 7. PRELOADER RESPONSIVENESS */
@media (max-width: 640px) {
  .preloader-stage {
    transform: scale(0.82);
  }
  .preloader-telemetry {
    width: 88%;
    max-width: 320px;
  }
  .preloader-brand-title {
    font-size: 1.1rem;
  }
}

/* 8. GENERAL OVERFLOW & TOUCH HARDENING */
html, body {
  max-width: 100vw;
  overflow-x: hidden !important;
}

img, video, canvas, svg {
  max-width: 100%;
  height: auto;
}

/* 9. CRITICAL MOBILE FIXES (TEXT WRAPPING, NAV & SPACING) */
@media (max-width: 991px) {
  .nebula-main-title .title-line,
  .hero-main-title .title-line,
  .title-line {
    white-space: normal !important;
    word-break: break-word !important;
    display: inline !important;
  }
}

@media (max-width: 767px) {
  .nebula-hero {
    padding-top: 1.5rem !important;
  }

  .nebula-top-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.85rem !important;
    margin-bottom: 1.5rem !important;
  }

  .nebula-top-brand {
    font-size: 1.2rem !important;
  }

  .nebula-nav-links {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    gap: 1.1rem !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    padding-bottom: 6px !important;
  }

  .nebula-nav-links::-webkit-scrollbar {
    display: none !important;
  }

  .nebula-main-title {
    font-size: clamp(2rem, 8vw, 2.75rem) !important;
    line-height: 1.15 !important;
    margin-bottom: 1.25rem !important;
  }

  .nebula-header-desc {
    font-size: 0.98rem !important;
    line-height: 1.55 !important;
  }

  .nebula-hero-actions {
    margin-top: 1.5rem !important;
  }

  .hero-impact-metrics-bar {
    margin-top: 1.75rem !important;
    gap: 1rem !important;
  }

  .kinetic-stage-card {
    height: 270px !important;
  }

  .preloader-telemetry {
    width: 90% !important;
    max-width: 310px !important;
  }
}

/* 10. LINKEDIN BADGE & SOCIAL CARD WIDGET STYLES */
.linkedin-badge-card {
  width: 100%;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(10, 102, 194, 0.35);
  border-radius: 14px;
  padding: 0.95rem 1.2rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.linkedin-badge-card:hover {
  background: rgba(10, 102, 194, 0.14);
  border-color: #0A66C2;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(10, 102, 194, 0.25);
}

.linkedin-badge-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.linkedin-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.linkedin-info-text {
  display: flex;
  flex-direction: column;
}










