/* ==========================================================================
   SARVX TECH — CINEMATIC SECTIONS ARCHITECTURE
   ========================================================================== */

/* --- Common Section & Typography Utilities --- */
.section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 8rem var(--container-padding);
  background-color: var(--bg-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10;
  overflow: hidden;
}

.section.pinned-section {
  height: 100vh;
  min-height: 100vh;
  padding: 0 var(--container-padding);
  overflow: hidden;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.section-label::before {
  content: '//';
  color: #FFFFFF;
}

.display-title-huge {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 11.5vw, 13.5rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-align: center;
  word-break: break-word;
  overflow-wrap: break-word;
}

.display-title-large {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 7.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--text-primary);
  word-break: break-word;
  overflow-wrap: break-word;
}

.body-editorial {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-silver);
  max-width: 48ch;
}

/* --- 1. HERO SECTION (PINNED PINNACLE) --- */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-backdrop-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-visual-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  filter: brightness(0.45) contrast(1.15);
  transition: transform 0.1s linear;
}

.hero-backdrop-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.85) 85%),
              linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.95) 100%);
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: var(--container-max);
  padding: 0 var(--container-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  font-family: var(--font-mono);
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding: 6px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
}

.hero-phrase-container {
  position: relative;
  width: 100%;
  min-height: 54vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phrase {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  pointer-events: none;
}

.hero-phrase.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line-track {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.scroll-line-pill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #FFFFFF;
  animation: scrollDown 2s infinite ease-in-out;
}

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

/* --- 2. INTRO SECTION (PINNED NARRATIVE SEQUENCE — §20) --- */
.pinned-intro-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--container-padding);
}

.intro-backdrop-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.intro-glow-circle {
  width: min(70vw, 700px);
  height: min(70vw, 700px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(60px);
}

.intro-content-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: var(--container-max);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.intro-sequence-container {
  position: relative;
  width: 100%;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-statement {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(50px) scale(0.92);
  filter: blur(10px);
  pointer-events: none;
  will-change: transform, opacity, filter;
}

.intro-statement.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
  pointer-events: auto;
}

/* --- 3. EDITORIAL ABOUT SECTION (MULTI-SPEED PARALLAX) --- */
.about-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10rem var(--container-padding);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.about-parallax-words {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.parallax-token {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 9.5rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
  will-change: transform;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
}

.about-lead {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 3.4rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.about-subtext {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.7;
  color: var(--text-muted);
}

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

/* --- 4. THE PROBLEM SECTION (OVERLAPPING ATTENTION NOISE) --- */
.problem-section {
  position: relative;
  min-height: 120vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  overflow: hidden;
  text-align: center;
}

.problem-noise-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.attention-duplicate {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 11rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.12);
  user-select: none;
  pointer-events: none;
  transition: transform 0.1s linear, opacity 0.2s ease;
  will-change: transform;
}

.problem-resolution {
  margin-top: 3rem;
  max-width: 900px;
  opacity: 0;
  transform: translateY(40px);
}/* --- 5. THE APPROACH & 1/6 SIGNATURE INTERACTIVE PINNED SYSTEM (ELVA LABS STYLE) --- */
.signature-system-section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: #000000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  box-sizing: border-box;
}

.system-container {
  width: 100%;
  max-width: var(--container-max);
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 3.5vw, 3.5rem);
  align-items: center;
  position: relative;
  z-index: 5;
}

.system-left {
  display: flex;
  flex-direction: column;
  gap: clamp(0.6rem, 1.2vh, 1rem);
  position: relative;
}

.system-header-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.15rem;
}

/* Elva Circular SVG Progress Ring */
.elva-progress-ring-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.elva-progress-svg {
  width: 38px;
  height: 38px;
  transform: rotate(-90deg);
}

.elva-progress-circle-bg {
  cx: 21;
  cy: 21;
  r: 18;
  fill: none;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 1.5;
}

.elva-progress-circle-bar {
  cx: 21;
  cy: 21;
  r: 18;
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 113.1;
  stroke-dashoffset: 113.1;
  transition: stroke-dashoffset 0.15s ease-out;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
}

.elva-step-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #FFFFFF;
}

.system-counter-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  line-height: 1;
}

.system-counter-current {
  font-family: var(--font-mono);
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.04em;
  line-height: 1;
}

.system-counter-total {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  font-weight: 500;
  color: var(--text-dim);
}

.system-titles-stack {
  position: relative;
  min-height: 200px;
}

.system-stage-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s var(--ease-cinematic), filter 0.4s ease;
}

.system-stage-item.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
  pointer-events: auto;
}

.system-stage-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.85rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #FFFFFF;
  margin-bottom: 0.65rem;
}

.system-stage-desc {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: var(--text-silver);
  line-height: 1.55;
  max-width: 50ch;
}

.system-progress-indicator {
  display: flex;
  gap: 8px;
  margin-top: 0.5rem;
}

.system-progress-dot {
  width: 24px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  transition: background-color 0.3s ease, width 0.3s ease;
}

.system-progress-dot.active {
  background: #FFFFFF;
  width: 44px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

/* Floating 3D Device Container */
.system-right-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16/11;
  max-height: min(400px, 48vh);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #0D0D0D;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(9, 137, 216, 0.15);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.6s var(--ease-cinematic);
}

.system-right-visual:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.system-visual-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.5s ease, transform 0.6s var(--ease-cinematic);
  display: flex;
  align-items: center;
  justify-content: center;
}

.system-visual-frame.active {
  opacity: 1;
  transform: scale(1);
}

.system-visual-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .system-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .system-right-visual {
    aspect-ratio: 16/9;
  }
}


/* --- 6. SERVICES SECTION (GIANT TYPOGRAPHY DRIVEN) --- */
.services-section {
  padding: 10rem var(--container-padding);
  background-color: #000000;
}

.services-header {
  margin-bottom: 6rem;
}

.services-accordion-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid var(--border-glass);
}

.service-row-item {
  position: relative;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-glass);
  cursor: pointer;
  transition: background-color 0.3s ease, padding 0.3s ease;
}

.service-row-item:hover {
  background-color: rgba(255, 255, 255, 0.02);
  padding-left: 1.5rem;
}

.service-row-main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
}

.service-num-title {
  display: flex;
  align-items: baseline;
  gap: 2.5rem;
}

.service-num {
  font-family: var(--font-mono);
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 500;
  color: var(--text-muted);
}

.service-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 5.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  transition: transform 0.3s var(--ease-cinematic), color 0.3s ease;
}

.service-row-item:hover .service-title {
  transform: translateX(10px);
}

.service-arrow-icon {
  font-size: 2rem;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-row-item:hover .service-arrow-icon {
  color: #FFFFFF;
  transform: translate(6px, -6px);
}

.service-drawer-body {
  margin-top: 1.5rem;
  padding-left: calc(clamp(1.2rem, 2vw, 2rem) + 2.5rem);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
}

.service-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  color: var(--text-silver);
}

@media (max-width: 768px) {
  .service-drawer-body {
    grid-template-columns: 1fr;
    padding-left: 0;
  }
}

/* --- 7. SOCIAL MEDIA SECTION (KINETIC EDITORIAL CARDS) --- */
.social-kinetic-section {
  padding: 10rem var(--container-padding);
  background-color: #000000;
  overflow: hidden;
}

.social-cards-track {
  display: flex;
  gap: 2.5rem;
  margin-top: 5rem;
  padding-bottom: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.social-cards-track::-webkit-scrollbar {
  display: none;
}

.social-editorial-card {
  flex: 0 0 clamp(280px, 28vw, 420px);
  aspect-ratio: 9/16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: #111111;
  border: 1px solid var(--border-glass);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  transform: translateY(0);
  transition: transform 0.4s var(--ease-cinematic), border-color 0.3s ease;
}

.social-editorial-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--border-glass-hover);
}

.social-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1);
}

.social-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
  z-index: 2;
}

.social-card-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.social-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
}

/* --- 8. PERFORMANCE MARKETING (DATA MATRIX) --- */
.performance-section {
  padding: 10rem var(--container-padding);
  background-color: #000000;
}

.metrics-hero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 6rem;
}

.metric-data-card {
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.metric-data-card:hover {
  border-color: var(--border-glass-hover);
  transform: translateY(-6px);
}

.metric-number-display {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #FFFFFF;
}

.metric-label-display {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1rem;
}

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

@media (max-width: 600px) {
  .metrics-hero-grid {
    grid-template-columns: 1fr;
  }
}

/* --- 9. WEB EXPERIENCES (3D DEVICE PERSPECTIVE) --- */
.web-experience-section {
  padding: 10rem var(--container-padding);
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.browser-perspective-wrap {
  width: 100%;
  max-width: 1200px;
  margin-top: 5rem;
  perspective: 1200px;
}

.browser-mockup {
  width: 100%;
  aspect-ratio: 16/10;
  background: #111111;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9), 0 0 60px rgba(255, 255, 255, 0.05);
  transform: rotateX(12deg) scale(0.95);
  transition: transform 0.6s var(--ease-cinematic), box-shadow 0.6s ease;
  will-change: transform;
}

.browser-mockup.expanded {
  transform: rotateX(0deg) scale(1);
}

.browser-top-bar {
  height: 40px;
  background: #1A1A1A;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 8px;
  border-bottom: 1px solid var(--border-glass);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333333;
}

.browser-url-pill {
  margin: 0 auto;
  background: #0A0A0A;
  padding: 4px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.browser-screen-canvas {
  width: 100%;
  height: calc(100% - 40px);
  object-fit: cover;
}

/* --- 10. CASE STUDIES (FULLSCREEN LAYERED PORTFOLIO) --- */
.case-studies-section {
  position: relative;
  background-color: #000000;
  padding: 0;
}

.case-study-card {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  overflow: hidden;
  border-top: 1px solid var(--border-glass);
}

.case-study-inner {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 5rem var(--container-padding);
}

.case-study-bg-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.1);
  transform: scale(1);
  transition: transform 0.6s var(--ease-cinematic);
}

.case-study-card:hover .case-study-bg-media {
  transform: scale(1.04);
}

.case-study-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
}

.case-study-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-silver);
}

.case-study-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.case-study-desc {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  color: var(--text-silver);
  max-width: 50ch;
}

/* --- 11. WHY SARVX SECTION --- */
.why-sarvx-section {
  padding: 10rem var(--container-padding);
  background-color: #000000;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 6rem;
}

.pillar-card {
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  transition: all 0.4s var(--ease-cinematic);
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-glass-hover);
  transform: translateY(-8px);
}

.pillar-num {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-muted);
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.pillar-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

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

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

/* --- 12. EMOTIONAL OUTRO & FINAL CTA (§25 & §26) --- */
.pinned-outro-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #000000;
  padding: 0 var(--container-padding);
  overflow: hidden;
}

.outro-content-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.outro-phrase-stack {
  position: relative;
  width: 100%;
  min-height: 48vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outro-phrase-item {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(40px) scale(0.94);
  filter: blur(8px);
  pointer-events: none;
  will-change: transform, opacity, filter;
}

.outro-phrase-item.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
  pointer-events: auto;
}

.final-cta-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  overflow: hidden;
  text-align: center;
  padding: 2.5rem var(--container-padding) 3.5rem;
  box-sizing: border-box;
  z-index: 10;
}

.cta-ready-badge {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.1vw, 12px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding: 5px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
}

.cta-huge-word {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6.5vw, 6.8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
  white-space: nowrap;
  will-change: transform;
}

.cta-actions-wrap {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 30;
  position: relative;
  width: 100%;
}

.magnetic-btn-huge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: clamp(0.9rem, 1.6vw, 1.15rem) clamp(2rem, 3.5vw, 2.85rem);
  background: #FFFFFF;
  color: #000000;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.3rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.35);
  transition: transform 0.3s var(--ease-cinematic), background-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 35;
  cursor: pointer;
  white-space: nowrap;
}

.magnetic-btn-huge .dots div {
  background: #000000 !important;
}

.magnetic-btn-huge:hover .dots div:nth-child(1) { transform: translateY(-5px); background: #0989d8 !important; }
.magnetic-btn-huge:hover .dots div:nth-child(2) { transform: translate(4px, -4px); background: #3fa1e6 !important; }
.magnetic-btn-huge:hover .dots div:nth-child(3) { transform: translate(5px, 0); background: #850dee !important; }
.magnetic-btn-huge:hover .dots div:nth-child(4) { transform: scale(1.4); background: #000000 !important; }
.magnetic-btn-huge:hover .dots div:nth-child(5) { transform: translate(-5px, 0); background: #0989d8 !important; }
.magnetic-btn-huge:hover .dots div:nth-child(6) { transform: translate(-4px, 4px); background: #850dee !important; }
.magnetic-btn-huge:hover .dots div:nth-child(7) { transform: translate(4px, 4px); background: #3fa1e6 !important; }
.magnetic-btn-huge:hover .dots div:nth-child(8) { transform: translateY(5px); background: #850dee !important; }

.magnetic-btn-huge:hover {
  background: #F4F4F5;
  transform: scale(1.04);
  box-shadow: 0 16px 50px rgba(255, 255, 255, 0.6);
}


/* --- 13. FOOTER --- */
.site-footer {
  background-color: #000000;
  border-top: 1px solid var(--border-glass);
  padding: 8rem var(--container-padding) 4rem;
  position: relative;
  z-index: 10;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 32ch;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

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

.footer-link {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-silver);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-link:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

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

@media (max-width: 900px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-row {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* --- Contact Project Modal / Drawer --- */
.contact-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 10005;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 2.5vw, 2rem);
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  transition: opacity 0.35s var(--ease-cinematic);
}

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

.contact-modal-card {
  width: 100%;
  max-width: 740px;
  max-height: min(90vh, 720px);
  overflow-y: auto;
  background: #0B0B0B;
  border: 1px solid var(--border-glass-hover);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s var(--ease-cinematic);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.95), 0 0 40px rgba(255, 255, 255, 0.03);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.contact-modal-card::-webkit-scrollbar {
  width: 6px;
}

.contact-modal-card::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.contact-modal-overlay.active .contact-modal-card {
  transform: translateY(0) scale(1);
}

.modal-heading {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem) !important;
  line-height: 1.15;
  margin-top: 0.25rem;
  letter-spacing: -0.02em;
  padding-right: 2.5rem;
}

.modal-subheading {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  line-height: 1.4;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1.25rem;
  margin-top: 1.25rem;
}

.form-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-input-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' 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;
  padding-right: 2.5rem;
}

.form-select option {
  background: #111111;
  color: #FFFFFF;
}

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

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
}

/* Service Selection Chips */
.form-services-section {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.form-services-group-title {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3fa1e6;
  margin-bottom: 0.35rem;
}

.form-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  color: var(--text-silver);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.service-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.service-chip.active {
  background: #FFFFFF;
  color: #000000;
  font-weight: 700;
  border-color: #FFFFFF;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.35);
}

.service-chip .chip-check {
  display: inline-flex;
  font-size: 10px;
  opacity: 0.6;
}

.service-chip.active .chip-check {
  opacity: 1;
  color: #000000;
}

.form-submit-btn {
  grid-column: span 2;
  padding: 0.95rem 2rem;
  background: #FFFFFF;
  color: #000000;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-submit-btn:hover {
  background: #E5E5E5;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .contact-form {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .form-input-group.full-width, .form-submit-btn {
    grid-column: span 1;
  }
  .contact-modal-card {
    padding: 1.25rem;
    max-height: 92vh;
  }
}

/* --- 18. EXPANDED DIGITAL MARKETING SERVICES ACCORDION & DRAWERS --- */
.service-drawer-body {
  padding: 2.5rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 1.5rem;
  display: none;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  animation: fadeInDrawer 0.4s var(--ease-cinematic);
}

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

.service-drawer-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-drawer-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.service-subheading {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.service-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
}

.service-deliverable-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-silver);
}

.service-deliverable-item::before {
  content: '▸';
  color: #FFFFFF;
  font-size: 11px;
}

.service-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tech-pill {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-primary);
}

.service-kpi-pill {
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 11px;
  color: #34D399;
}

@media (max-width: 900px) {
  .service-drawer-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* --- 19. INTERACTIVE 5-STAGE CUSTOMER FUNNEL FRAMEWORK --- */
.funnel-framework-section {
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.03) 0%, #000000 70%);
}

.funnel-nav-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin: 3.5rem 0 2.5rem;
}

.funnel-tab-btn {
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  text-align: left;
  transition: all 0.3s var(--ease-cinematic);
  cursor: pointer;
}

.funnel-tab-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-glass-hover);
}

.funnel-tab-btn.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
}

.funnel-tab-step {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  margin-bottom: 0.4rem;
}

.funnel-tab-btn.active .funnel-tab-step {
  color: #FFFFFF;
}

.funnel-tab-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.funnel-content-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 4rem);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.funnel-card-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
}

.funnel-card-header {
  margin-bottom: 2rem;
}

.funnel-stage-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--text-silver);
  margin-bottom: 1rem;
}

.funnel-stage-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #FFFFFF;
}

.funnel-stage-desc {
  font-size: 1.15rem;
  color: var(--text-silver);
  line-height: 1.6;
  margin-top: 1rem;
}

.funnel-channels-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.funnel-channels-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.funnel-channel-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.funnel-channel-item:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.06);
}

.funnel-channel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFFFFF;
}

.funnel-metrics-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-top: 1.5rem;
}

@media (max-width: 1024px) {
  .funnel-nav-tabs {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .funnel-card-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* --- 20. MARKETING ROI & GROWTH SIMULATOR --- */
.roi-simulator-section {
  background-color: #030303;
}

.roi-calculator-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 4rem);
  margin-top: 3.5rem;
}

.roi-controls-column {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.roi-slider-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.roi-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-silver);
}

.roi-slider-val {
  font-weight: 700;
  color: #FFFFFF;
  font-size: 1.1rem;
}

.roi-range-input {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  outline: none;
}

.roi-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFFFFF;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  transition: transform 0.2s ease;
}

.roi-range-input::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}

.roi-display-card {
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0.6) 100%);
  border: 1px solid var(--border-glass-hover);
  border-radius: var(--radius-md);
  padding: clamp(2rem, 3.5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.roi-big-stat-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.roi-big-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  line-height: 1;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

.roi-big-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.roi-stats-breakdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.roi-micro-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.roi-micro-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
}

.roi-micro-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .roi-calculator-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* --- 21. STRATEGIC DIGITAL MARKETING PLAYBOOKS --- */
.playbooks-section {
  background-color: #050505;
}

.playbooks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.playbook-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  transition: all 0.35s var(--ease-cinematic);
  position: relative;
  overflow: hidden;
}

.playbook-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.playbook-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-glass-hover);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

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

.playbook-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.playbook-cat-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-silver);
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
}

.playbook-read-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

.playbook-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-top: 1rem;
}

.playbook-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 0.5rem;
}

.playbook-summary {
  font-size: 1rem;
  color: var(--text-silver);
  line-height: 1.6;
  margin-top: 1.25rem;
}

.playbook-takeaways-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.playbook-takeaway-item {
  font-size: 0.85rem;
  color: var(--text-dim);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.playbook-takeaway-item::before {
  content: '✓';
  color: #10B981;
  font-weight: bold;
}

.playbook-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
  width: fit-content;
}

.playbook-action-btn:hover {
  border-bottom-color: #FFFFFF;
  letter-spacing: 0.2em;
}

/* --- 22. TECH STACK & MARKETING TOOLS ECOSYSTEM --- */
.tech-stack-section {
  background-color: #000000;
  text-align: center;
}

.tech-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.tech-tool-badge {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
}

.tech-tool-badge:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-glass-hover);
  transform: translateY(-4px);
}

.tech-tool-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
}

.tech-tool-category {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* --- 23. INTERACTIVE WEBSITES & APPLICATIONS SHOWCASE --- */
.apps-showcase-section {
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, #000000 80%);
}

.apps-showcase-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 3rem 0 2.5rem;
}

.app-tab-btn {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-silver);
  cursor: pointer;
  transition: all 0.3s var(--ease-cinematic);
}

.app-tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border-color: var(--border-glass-hover);
}

.app-tab-btn.active {
  background: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.app-showcase-display {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 4rem);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  animation: fadeInApp 0.4s var(--ease-cinematic);
}

@keyframes fadeInApp {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

.app-mockup-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass-hover);
  background: #000000;
  aspect-ratio: 16 / 10;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 255, 255, 0.05);
}

.app-mockup-canvas {
  width: 100%;
  height: 100%;
  display: block;
  background: #050505;
  cursor: crosshair;
}

.app-mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-cinematic);
}

.app-mockup-frame:hover .app-mockup-img {
  transform: scale(1.04);
}

.app-mockup-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.app-window-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.app-window-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-left: auto;
  letter-spacing: 0.1em;
}

.app-info-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.app-category-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--text-silver);
  width: fit-content;
}

.app-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
}

.app-description {
  font-size: 1.05rem;
  color: var(--text-silver);
  line-height: 1.6;
}

.app-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}

.app-spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.app-spec-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.app-spec-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
}

@media (max-width: 1024px) {
  .app-showcase-display {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* --- 24. CLIENT ROSTER & WHAT'S INCLUDED SECTION --- */
.clients-section {
  background-color: #030303;
  overflow: hidden;
}

/* Infinite Marquee Ticker */
.client-marquee-container {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
  margin-bottom: 3.5rem;
}

.client-marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marqueeRoll 32s linear infinite;
}

.client-marquee-track:hover {
  animation-play-state: paused;
}

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

.marquee-brand-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  white-space: nowrap;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full);
}

.marquee-brand-logo-wrap {
  height: 32px;
  min-width: 54px;
  max-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 6px;
  padding: 3px 8px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.marquee-logo-img {
  max-width: 100%;
  max-height: 24px;
  object-fit: contain;
}

.marquee-brand-text {
  color: var(--text-silver);
  transition: color 0.2s ease;
}

.marquee-brand-item:hover .marquee-brand-text {
  color: #FFFFFF;
}

.marquee-brand-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  margin-left: 4px;
}

/* Client Filter Tabs */
.client-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.client-filter-btn {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
}

.client-filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.client-filter-btn.active {
  background: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
  font-weight: 700;
}

/* Client Matrix Grid */
.clients-matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.client-brand-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  min-height: 160px;
  transition: all 0.35s var(--ease-cinematic);
  position: relative;
  overflow: hidden;
}

.client-brand-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6);
}

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

.client-logo-badge {
  width: 100%;
  height: 72px;
  border-radius: 8px;
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.client-brand-card:hover .client-logo-badge {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.client-logo-img {
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
}

.client-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.client-brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.client-brand-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.show-all-clients-btn {
  padding: 15px 36px;
  font-size: 12.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Package Inclusions Grid */
.package-inclusions-wrap {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.package-inclusions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.package-inclusion-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.package-inclusion-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-glass-hover);
  transform: translateY(-3px);
}

.package-inclusion-title {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.package-inclusion-desc {
  font-size: 0.9rem;
  color: var(--text-silver);
  line-height: 1.5;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS & TOUCH OPTIMIZATIONS (< 768px & < 480px)
   ========================================================================== */

@media (max-width: 768px) {
  /* Section Spacing & Containers */
  .section {
    padding: 4.5rem clamp(1rem, 3.5vw, 1.5rem);
    min-height: auto;
  }

  .section.pinned-section {
    padding: 0 clamp(1rem, 3.5vw, 1.5rem);
  }

  .section-label {
    font-size: 10px;
    letter-spacing: 0.18em;
    margin-bottom: 1.25rem;
  }

  /* 1. Hero Section */
  .hero-content-wrapper {
    padding: 0 1rem;
  }

  .hero-badge {
    font-size: 9.5px;
    letter-spacing: 0.12em;
    padding: 5px 12px;
    margin-bottom: 1.25rem;
    max-width: 92vw;
    line-height: 1.4;
  }

  .hero-phrase-container {
    min-height: 52vh;
  }

  .hero-phrase .display-title-huge {
    font-size: clamp(2.8rem, 12.5vw, 5.2rem);
    line-height: 0.85;
    letter-spacing: -0.04em;
  }

  .hero-scroll-indicator {
    bottom: 1.5rem;
    font-size: 10px;
  }

  .scroll-line-track {
    height: 36px;
  }

  /* 2. Intro Section */
  .intro-section {
    min-height: 80vh;
    padding: 4rem 1rem;
  }

  .intro-word-list {
    gap: 0.75rem;
  }

  /* 3. About Section */
  .about-section {
    padding: 4.5rem clamp(1rem, 3.5vw, 1.5rem);
    min-height: auto;
  }

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

  .parallax-token {
    font-size: clamp(2.4rem, 11vw, 4.5rem);
  }

  .about-lead {
    font-size: clamp(1.25rem, 4.5vw, 1.85rem);
  }

  /* 4. The Problem Section */
  .problem-section {
    min-height: 80vh;
    padding: 4rem 1rem;
  }

  .problem-noise-container {
    height: 35vh;
  }

  .attention-duplicate {
    font-size: clamp(2rem, 9vw, 5.5rem);
  }

  /* 5. 1/6 Signature System */
  .signature-system-section {
    height: auto;
    min-height: auto;
    padding: 4.5rem clamp(1rem, 3.5vw, 1.5rem);
  }

  .system-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
  }

  .system-counter-current {
    font-size: clamp(2.4rem, 8vw, 4.5rem);
  }

  .system-titles-stack {
    min-height: 130px;
  }

  .system-stage-title {
    font-size: clamp(1.5rem, 5.5vw, 2.5rem);
  }

  .system-right-visual {
    aspect-ratio: 16 / 10;
  }

  /* 6. Capabilities & Accordions */
  .services-section {
    padding: 4.5rem clamp(1rem, 3.5vw, 1.5rem);
  }

  .services-header {
    margin-bottom: 2.5rem;
  }

  .service-row-item {
    padding: 1.5rem 0;
  }

  .service-num-title {
    gap: 1rem;
  }

  .service-num {
    font-size: 1rem;
  }

  .service-title {
    font-size: clamp(1.25rem, 5vw, 2.2rem);
  }

  .service-arrow-icon {
    font-size: 1.25rem;
  }

  .service-drawer-body {
    grid-template-columns: 1fr;
    padding-left: 0;
    gap: 1.25rem;
    margin-top: 1rem;
  }

  /* 7. Websites & Applications Showcase */
  .apps-showcase-section {
    scroll-margin-top: 70px;
  }

  .apps-showcase-tabs {
    display: flex;
    gap: 0.5rem;
    margin: 1.25rem 0 1.5rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 2px 2px 0.6rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .apps-showcase-tabs::-webkit-scrollbar {
    display: none;
  }

  .app-tab-btn {
    padding: 8px 16px;
    font-size: 11px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .app-showcase-display {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.25rem 1rem;
    border-radius: var(--radius-md);
  }

  .app-mockup-frame {
    aspect-ratio: 16 / 10;
    width: 100%;
    border-radius: 8px;
  }

  .app-info-column {
    gap: 1rem;
  }

  .app-category-badge {
    font-size: 10px;
    letter-spacing: 0.15em;
    padding: 3px 10px;
  }

  .app-headline {
    font-size: clamp(1.35rem, 5vw, 1.85rem);
    line-height: 1.2;
    margin-top: 0.6rem !important;
  }

  .app-description {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-silver);
    margin-top: 0.5rem !important;
  }

  .app-specs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding-top: 1rem;
    margin-top: 0.25rem;
  }

  .app-spec-label {
    font-size: 10px;
  }

  .app-spec-value {
    font-size: 0.95rem;
  }

  .app-info-column .open-contact-modal {
    width: 100% !important;
    justify-content: center;
    text-align: center;
    padding: 13px 20px;
    font-size: 11.5px;
    margin-top: 0.5rem;
    display: flex;
  }

  /* 8. 5-Stage Funnel Section */
  .funnel-nav-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.6rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 1.5rem 0;
  }

  .funnel-nav-tabs::-webkit-scrollbar {
    display: none;
  }

  .funnel-tab-btn {
    padding: 8px 14px;
    font-size: 11px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .funnel-content-card {
    padding: 1.25rem;
  }

  /* 9. Clients Section & Roster */
  .clients-section {
    scroll-margin-top: 70px;
  }

  .client-marquee-container {
    padding: 1rem 0;
    margin-bottom: 2rem;
  }

  .client-filter-tabs {
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 2px 2px 0.5rem;
    scrollbar-width: none;
    margin-bottom: 1.75rem;
    -webkit-overflow-scrolling: touch;
  }

  .client-filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .client-filter-btn {
    padding: 6px 14px;
    font-size: 10.5px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .clients-matrix-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .client-brand-card {
    padding: 0.85rem;
    min-height: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .client-logo-badge {
    height: 52px;
    padding: 6px 10px;
    border-radius: 6px;
  }

  .client-logo-img {
    max-height: 34px;
  }

  .client-brand-name {
    font-size: 0.92rem;
    line-height: 1.25;
  }

  .client-brand-tag {
    font-size: 9.5px;
  }

  .show-all-clients-wrap {
    margin-top: 2rem !important;
  }

  .show-all-clients-btn {
    width: 100%;
    padding: 14px 16px;
    font-size: 11.5px;
    white-space: normal;
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
    display: flex;
  }

  .package-inclusions-wrap {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
  }

  .package-standards-heading {
    font-size: clamp(1.35rem, 5vw, 1.85rem) !important;
    line-height: 1.2;
  }

  .package-standards-subtext {
    font-size: 0.9rem !important;
    line-height: 1.5;
  }

  .package-inclusions-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 1.5rem;
  }

  .package-inclusion-card {
    padding: 1.25rem 1rem;
    gap: 0.5rem;
  }

  .package-inclusion-title {
    font-size: 11.5px;
  }

  .package-inclusion-desc {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  /* 10. Tech Stack */
  .tech-ecosystem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-top: 2rem;
  }

  .tech-tool-badge {
    padding: 0.85rem 0.65rem;
  }

  .tech-tool-name {
    font-size: 0.95rem;
  }

  /* 11. Case Studies */
  .case-studies-section {
    padding: 4.5rem clamp(1rem, 3.5vw, 1.5rem);
  }

  .case-study-inner {
    padding: 1.5rem;
    min-height: 340px;
  }

  .case-study-title {
    font-size: clamp(1.6rem, 5.5vw, 2.6rem);
  }

  /* 12. Results Section */
  .results-section {
    padding: 4.5rem clamp(1rem, 3.5vw, 1.5rem);
  }

  .results-metric-giant {
    padding: 1.5rem 1rem !important;
  }

  /* 13. Footer */
  .site-footer {
    padding: 3.5rem clamp(1rem, 3.5vw, 1.5rem) 2rem;
  }

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

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

@media (max-width: 480px) {
  .hero-phrase-container {
    min-height: 50vh;
  }

  .hero-phrase .display-title-huge {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
    line-height: 0.86;
    letter-spacing: -0.04em;
  }

  .hero-phrase .hero-logo-phrase {
    font-size: clamp(2.8rem, 13.5vw, 4.2rem) !important;
  }

  .clients-matrix-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .tech-ecosystem-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .app-specs-grid {
    grid-template-columns: 1fr;
  }
}

/* --- FOUNDERS & EXECUTIVE LEADERSHIP EDITORIAL SECTION --- */
.founder-section {
  position: relative;
  background-color: #030303;
  padding: 7rem var(--container-padding);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.leadership-story-block {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4.5rem;
  align-items: center;
  margin-bottom: 6rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.leadership-story-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.leadership-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.leadership-photo-frame {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0D0D0D;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 199, 0, 0.08);
  transition: transform 0.5s var(--ease-cinematic), border-color 0.4s ease, box-shadow 0.4s ease;
}

.leadership-story-block:hover .leadership-photo-frame {
  transform: translateY(-6px);
  border-color: rgba(255, 199, 0, 0.5);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 199, 0, 0.18);
}

.leadership-photo-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block;
  transition: transform 0.6s var(--ease-cinematic);
}

.leadership-story-block:hover .leadership-photo-img {
  transform: scale(1.03);
}

.leadership-content-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1.25rem;
}

.leadership-index-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  color: #FFC700;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.leadership-story-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
}

.leadership-meta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFC700;
}

.leadership-meta-bar .dot-sep {
  color: rgba(255, 255, 255, 0.3);
}

.leadership-meta-bar .role-title {
  color: var(--text-silver);
  font-weight: 500;
}

.leadership-lead-quote {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 600;
  line-height: 1.55;
  color: #FFFFFF;
  margin: 0.25rem 0 0;
  padding-left: 1.25rem;
  border-left: 3px solid #FFC700;
  font-style: italic;
}

.leadership-story-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-silver);
  margin: 0;
  max-width: 65ch;
}

.leadership-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.leadership-tag-item {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-silver);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: 5px 14px;
}

@media (max-width: 1024px) {
  .leadership-story-block {
    grid-template-columns: 320px 1fr;
    gap: 3rem;
  }
  .leadership-photo-frame {
    height: 420px;
  }
}

@media (max-width: 820px) {
  .leadership-story-block {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: left;
  }
  .leadership-photo-wrap {
    max-width: 360px;
    margin: 0 auto;
  }
  .leadership-photo-frame {
    height: 440px;
  }
}



