/* ============================================================
   DreaInno Portfolio — Components CSS
   PixelPoint-faithful architecture with pure CSS illustrations
   ============================================================ */

/* ── Site Header & Navigation ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background-color 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background-color: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--color-border-subtle);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-decoration: none;
  transition: opacity var(--duration-fast) ease;
}

.brand-logo:hover {
  opacity: 0.92;
}

.brand-mark-wrap {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 3px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  transition: all var(--duration-fast) ease;
}

.brand-logo:hover .brand-mark-wrap {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.brand-mark-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.brand-mark {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--color-accent-blue), #5371ff);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 0 15px rgba(43, 75, 238, 0.4);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--duration-fast) ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-accent-blue);
  transition: width var(--duration-normal) var(--ease-spring);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ── Buttons ── */
.btn-primary {
  background-color: var(--color-accent-blue);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.925rem;
  box-shadow: 0 2px 10px rgba(43, 75, 238, 0.25);
  transition: background-color var(--duration-fast) ease, transform var(--duration-fast) ease;
}

.btn-primary:hover {
  background-color: var(--color-accent-blue-hover);
  color: #ffffff;
}

.btn-magnetic {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  transition: transform var(--duration-fast) var(--ease-spring), background-color var(--duration-fast) ease;
}

.btn-magnetic:hover {
  transform: translateY(-2px);
}

.btn-magnetic:active {
  transform: translateY(1px) scale(0.98);
}

.mobile-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-drawer {
  display: none;
}


/* ============================================================
   HERO SECTION — PixelPoint Rive Architecture
   2-column scroll layout + 3000px continuous Rive canvas
   ============================================================ */

/* ── Global 3D Interactive Background (Applies across all sections, apart from footer) ── */
.global-bg-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  background: transparent !important;
}

#mainContent {
  position: relative;
  z-index: auto;
}

.hero-section {
  position: relative;
  z-index: auto;
  background-color: #03045e;
  color: #ffffff;
  overflow: hidden;
  padding: 0 0 100px;
}

/* ── Hero Background Atmosphere: Grid, Glow & Particles ── */
.hero-bg-glow {
  display: none;
}

.hero-glow-1 {
  position: absolute;
  top: -10%;
  left: 5%;
  width: clamp(350px, 45vw, 680px);
  height: clamp(350px, 45vw, 680px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.32) 0%, rgba(37, 99, 235, 0.05) 50%, transparent 70%);
  filter: blur(60px);
  animation: floatHeroGlow 16s ease-in-out infinite alternate;
}

.hero-glow-2 {
  position: absolute;
  top: 25%;
  right: 5%;
  width: clamp(320px, 40vw, 600px);
  height: clamp(320px, 40vw, 600px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.24) 0%, rgba(6, 182, 212, 0.08) 50%, transparent 70%);
  filter: blur(70px);
  animation: floatHeroGlow 20s ease-in-out infinite alternate-reverse;
}

.hero-glow-3 {
  position: absolute;
  bottom: -5%;
  left: 20%;
  width: clamp(320px, 40vw, 620px);
  height: clamp(320px, 40vw, 620px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, rgba(56, 189, 248, 0.05) 50%, transparent 70%);
  filter: blur(75px);
  animation: floatHeroGlow 18s ease-in-out infinite alternate;
}

@keyframes floatHeroGlow {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, 20px) scale(1.08); }
  100% { transform: translate(-20px, 15px) scale(0.95); }
}

/* ── 3D Perspective Grid Stage ── */
.hero-3d-stage {
  position: absolute;
  inset: -60px;
  pointer-events: none;
  z-index: 1;
  perspective: 1200px;
  perspective-origin: center center;
  overflow: hidden;
}

.hero-3d-grid-plane {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
  transform: rotateX(var(--grid-tilt-x, 0deg)) rotateY(var(--grid-tilt-y, 0deg)) scale3d(1.05, 1.05, 1);
  transition: transform 0.08s linear;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  transform: translateZ(0px);
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 100% 90% at 50% 50%, #000 55%, transparent 98%);
  -webkit-mask-image: radial-gradient(ellipse 100% 90% at 50% 50%, #000 55%, transparent 98%);
}

.hero-bg-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(147, 197, 253, 0.32) 1.5px, transparent 0);
  background-size: 52px 52px;
}

/* ── Interactive Hover Spotlight Grid (Elevated in 3D) ── */
.hero-bg-grid-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  transform: translateZ(16px);
  background-image: 
    linear-gradient(to right, rgba(56, 189, 248, 0.42) 1.5px, transparent 1.5px),
    linear-gradient(to bottom, rgba(56, 189, 248, 0.42) 1.5px, transparent 1.5px);
  background-size: 52px 52px;
  opacity: var(--grid-spotlight-opacity, 0);
  mask-image: radial-gradient(circle 340px at var(--plane-mouse-x, -999px) var(--plane-mouse-y, -999px), rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 45%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle 340px at var(--plane-mouse-x, -999px) var(--plane-mouse-y, -999px), rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 45%, transparent 100%);
  transition: opacity 0.3s ease;
}

.hero-bg-grid-spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, #38bdf8 3px, transparent 0);
  background-size: 52px 52px;
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.95));
}

.hero-mouse-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%) translateZ(8px);
  top: var(--plane-mouse-y, -999px);
  left: var(--plane-mouse-x, -999px);
  opacity: var(--grid-spotlight-opacity, 0);
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, rgba(56, 189, 248, 0.09) 40%, transparent 70%);
  transition: opacity 0.3s ease;
  filter: blur(25px);
}

.hero-particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 1023px) {
  .hero-container {
    display: block;
  }
}

/* ── Left Column: 3 Sequential Narrative Stages ── */
.hero-text-col {
  position: relative;
  z-index: 10;
  font-weight: 400;
  line-height: 1.25;
}

.hero-stage-item {
  position: relative;
}

.hero-stage-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}

.hero-stage-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 500px;
}

.hero-stage-3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 200px;
  padding-bottom: 360px;
}

@media (max-width: 1279px) {
  .hero-stage-2 {
    padding-bottom: 400px;
  }

  .hero-stage-3 {
    padding-top: 150px;
    padding-bottom: 300px;
  }
}

@media (max-width: 1023px) {
  .hero-stage-1 {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 40px;
    display: block;
  }

  .hero-stage-2 {
    padding-top: 60px;
    padding-bottom: 40px;
    display: block;
  }

  .hero-stage-3 {
    padding-top: 60px;
    padding-bottom: 60px;
    display: block;
  }
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #ffffff;
  max-width: 580px;
}

/* ── Hero CRO Elements (Information Velocity & Clarity) ── */
.hero-cro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(43, 75, 238, 0.15);
  border: 1px solid rgba(43, 75, 238, 0.4);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-mono, monospace);
  color: #93c5fd;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  width: fit-content;
}

.hero-cro-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
  animation: pulseBeacon 2s infinite;
}

.hero-cro-subheadline {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 20px;
  margin-bottom: 28px;
  max-width: 540px;
  font-weight: 400;
}

.hero-cro-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-cro-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cro-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5);
  color: #ffffff;
}

.hero-cro-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 13px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.95rem;
  color: #ffffff;
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: all 0.2s ease;
}

.hero-cro-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-cro-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.trust-chip {
  font-weight: 500;
}

.trust-chip-sep {
  color: rgba(255, 255, 255, 0.25);
}

.hero-cro-tech {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.tech-label {
  font-size: 0.78rem;
  font-family: var(--font-mono, monospace);
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-right: 2px;
}

.tech-pill {
  font-size: 0.78rem;
  font-family: var(--font-mono, monospace);
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: #cbd5e1;
}

.hero-cro-scroll {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-family: var(--font-mono, monospace);
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
  width: fit-content;
}

.hero-cro-scroll:hover {
  color: #60a5fa;
}

.scroll-chevron {
  animation: bounceDown 1.8s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ── Mobile Fallback Illustrations ── */
.hero-mobile-illustration {
  display: none;
  margin-top: 36px;
  max-width: 100%;
}

@media (max-width: 1023px) {
  .hero-mobile-illustration {
    display: block;
    margin-top: 32px;
  }
}

.hero-mobile-illustration img {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 1023px) {
  .hero-stage-1 .hero-mobile-illustration img {
    animation: mobileHeroFloat1 5.5s ease-in-out infinite alternate;
    will-change: transform, filter;
  }
  .hero-stage-2 .hero-mobile-illustration img {
    animation: mobileHeroFloat2 6.5s ease-in-out infinite alternate;
    will-change: transform, filter;
  }
  .hero-stage-3 .hero-mobile-illustration img {
    animation: mobileHeroFloat3 7.5s ease-in-out infinite alternate;
    will-change: transform, filter;
  }
}

/* ── Mobile Hero Drop an Email CTA (100% Isolated to Mobile) ── */
.hero-mobile-cta-group {
  display: none !important;
}

@media (max-width: 1023px) {
  .hero-mobile-cta-group {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 24px auto 0;
    max-width: 380px;
    width: 100%;
    position: relative;
    z-index: 10;
  }

  .hero-mobile-email-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
    background: linear-gradient(135deg, rgba(43, 75, 238, 0.22) 0%, rgba(238, 43, 108, 0.16) 100%), #0c0f24;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .hero-mobile-email-btn:active {
    transform: scale(0.97);
    border-color: rgba(43, 75, 238, 0.8);
    background: linear-gradient(135deg, rgba(43, 75, 238, 0.35) 0%, rgba(238, 43, 108, 0.25) 100%), #0c0f24;
  }

  .hero-mobile-email-btn svg {
    color: #38bdf8;
    flex-shrink: 0;
  }

  .hero-mobile-email-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    text-align: left;
  }

  .hero-mobile-email-label {
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }

  .hero-mobile-email-addr {
    font-size: 0.76rem;
    font-family: var(--font-mono, monospace);
    color: #93c5fd;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-mobile-arrow {
    color: rgba(255, 255, 255, 0.5) !important;
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
  }

  .hero-mobile-email-btn:hover .hero-mobile-arrow,
  .hero-mobile-email-btn:active .hero-mobile-arrow {
    transform: translateX(3px);
    color: #ffffff !important;
  }

  .hero-mobile-quick-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.2s ease;
    flex-shrink: 0;
  }

  .hero-mobile-quick-copy svg {
    color: #cbd5e1;
    transition: transform 0.2s ease, color 0.2s ease;
  }

  .hero-mobile-quick-copy .copy-feedback-text {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
  }

  .hero-mobile-quick-copy:active {
    transform: scale(0.92);
    background: rgba(43, 75, 238, 0.25);
    border-color: #2b4bee;
  }

  .hero-mobile-quick-copy.is-copied {
    background: rgba(34, 197, 94, 0.2) !important;
    border-color: #22c55e !important;
  }

  .hero-mobile-quick-copy.is-copied svg {
    color: #22c55e !important;
  }

  .hero-mobile-quick-copy.is-copied .copy-feedback-text {
    color: #22c55e !important;
  }
}

/* ── Right Column: 3000px Continuous Rive Artboard ── */
.hero-rive-col {
  position: relative;
}

@media (max-width: 1023px) {
  .hero-rive-col {
    display: none !important;
  }
}

.hero-rive-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 1100px;
  height: 3000px;
  transform: translateY(calc(-505px - 240px + 50vh)) translateX(-254px);
  pointer-events: none;
  z-index: 5;
}

@media (max-width: 1279px) {
  .hero-rive-wrapper {
    left: 0;
    width: 846px;
    height: 2307px;
    transform: translateY(calc(-388px - 184.5px + 50vh)) translateX(-174px);
  }
}

.hero-rive-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── Word-by-word Title Animation ── */
.title-word {
  display: inline;
  opacity: 0;
  transition: opacity 60ms ease, color 200ms ease;
}


/* ============================================================
   ADVANTAGES SECTION — Premium Dark Background
   ============================================================ */

.advantages-section {
  background-color: #03041a;
  padding: 120px 0 90px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-title-dark {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.25;
  color: #ffffff;
  max-width: 760px;
}

/* ── Section Kicker Badges ── */
.section-kicker {
  margin-bottom: 16px;
}

.kicker-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #7dd3fc;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@keyframes kicker-beacon-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 8px #38bdf8, 0 0 16px rgba(56, 189, 248, 0.4);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
    box-shadow: 0 0 3px #38bdf8;
  }
}

.kicker-beacon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
  animation: kicker-beacon-pulse 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ── Pro UI/UX Header Sizing & Color Combinations ── */
.advantages-section .section-title-dark,
.features-section .section-title-dark {
  max-width: 840px;
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 0;
}

.workflow-section .section-title-dark {
  max-width: 980px;
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 0;
}

/* Vibrant Brand Cyan Glow */
.brand-glow-cyan {
  background: linear-gradient(135deg, #ffffff 15%, #7dd3fc 55%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 14px rgba(56, 189, 248, 0.4));
  font-weight: 700;
}

/* Vibrant Brand Pink Glow */
.brand-glow-pink {
  color: #ee2b6c;
  font-weight: 700;
  text-shadow: 0 0 18px rgba(238, 43, 108, 0.5);
}

@media (max-width: 1023px) {
  .advantages-section .section-title-dark,
  .features-section .section-title-dark,
  .workflow-section .section-title-dark {
    font-size: clamp(1.5rem, 3.8vw, 2rem);
    line-height: 1.28;
  }
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.advantage-item {
  padding: 28px 24px;
  background-color: #111115;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.28s ease,
              box-shadow 0.28s ease,
              background-color 0.28s ease;
}

.advantage-item:hover {
  transform: translateY(-4px);
  background-color: #13141a;
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.22),
              0 14px 36px rgba(0, 0, 0, 0.75),
              inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.advantage-num {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ee2b6c;
  margin-bottom: 12px;
  display: block;
  text-shadow: 0 0 10px rgba(238, 43, 108, 0.4);
  transition: transform 0.28s ease, text-shadow 0.28s ease;
}

.advantage-item:hover .advantage-num {
  transform: scale(1.1);
  text-shadow: 0 0 16px rgba(238, 43, 108, 0.7);
}

.advantage-title-dark {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.advantage-item:hover .advantage-title-dark {
  color: #ffffff;
}

.advantage-desc-dark {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
}


/* ============================================================
   FEATURES SECTION — Premium Dark Background (Interactive Rive Icons)
   ============================================================ */

.features-section {
  background-color: #03041a;
  padding: 0 0 120px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
  margin-top: 64px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.feature-title-dark {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.35;
  color: #ffffff;
}

/* ── Feature Icons (Rive Canvas) ── */
.feature-icon-wrap {
  width: 80px;
  height: 62px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-item:hover .feature-icon-wrap {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.5);
}

.feature-rive-canvas {
  width: 80px;
  height: 62px;
  display: block;
}


/* ============================================================
   WHAT WE OFFER SECTION — Architectural Solutions (2×2 Grid)
   ============================================================ */

.offer-section {
  background-color: #09090b;
  padding: 100px 0;
  border-top: 1px solid var(--color-border-subtle);
}

.offer-title {
  max-width: 640px;
}

.offer-subtitle {
  margin-top: 20px;
  max-width: 700px;
  font-size: 1.05rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.6);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

/* ── Card Base ── */
.offer-card {
  padding: 36px 32px;
  background-color: #111115;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.28s ease,
              box-shadow 0.28s ease,
              background-color 0.28s ease;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(56, 189, 248, 0.04) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  background-color: #13141a;
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 0 32px rgba(56, 189, 248, 0.22),
              0 16px 40px rgba(0, 0, 0, 0.75),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.offer-card:hover::before {
  opacity: 1;
}

/* ── Icon ── */
.offer-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  margin-bottom: 20px;
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  flex-shrink: 0;
}

.offer-card:hover .offer-card-icon {
  background: rgba(56, 189, 248, 0.14);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.2);
}

/* ── Number Badge ── */
.offer-card-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: #ee2b6c;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(238, 43, 108, 0.4);
}

/* ── Title ── */
.offer-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}

/* ── Description ── */
.offer-card-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 24px;
  flex: 1;
}

/* ── Tech Tags ── */
.offer-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.offer-card-tags li {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(56, 189, 248, 0.07);
  border: 1px solid rgba(56, 189, 248, 0.15);
  color: #bae6fd;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.offer-card:hover .offer-card-tags li {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.3);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .offer-card {
    padding: 28px 22px;
  }
}

/* ============================================================
   WORKFLOW SECTION — Dark Background
   ============================================================ */

.workflow-section {
  background-color: #09090b;
  padding: 100px 0;
  border-top: 1px solid var(--color-border-subtle);
}

.workflow-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.workflow-step {
  padding: 28px 24px;
  background-color: #111115;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.28s ease,
              box-shadow 0.28s ease,
              background-color 0.28s ease;
}

.workflow-step:hover {
  transform: translateY(-4px);
  background-color: #13141a;
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.22),
              0 14px 36px rgba(0, 0, 0, 0.75),
              inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ee2b6c;
  margin-bottom: 12px;
  display: block;
  text-shadow: 0 0 10px rgba(238, 43, 108, 0.4);
  transition: transform 0.28s ease, text-shadow 0.28s ease;
}

.workflow-step:hover .step-num {
  transform: scale(1.1);
  text-shadow: 0 0 16px rgba(238, 43, 108, 0.7);
}

.workflow-step h4 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.1rem;
}

.workflow-step p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
}


/* ============================================================
   SERVICES SECTION — Dark Background (CSS Illustration)
   ============================================================ */

.services-section {
  background-color: #03045e;
  padding: 100px 0 160px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.services-container {
  position: relative;
  min-height: 2050px;
}

.services-intro {
  display: flex;
  max-width: 592px;
  align-items: center;
  padding-top: 300px;
}

.services-block {
  display: flex;
  max-width: 440px;
  flex-direction: column;
  justify-content: center;
  padding-top: 400px;
}

.services-block:last-of-type {
  padding-bottom: 365px;
}

@media (max-width: 1279px) {
  .services-container {
    min-height: 1366px;
  }

  .services-intro {
    padding-top: 200px;
    max-width: 458px;
  }

  .services-block {
    padding-top: 200px;
    max-width: 406px;
  }

  .services-block:last-of-type {
    padding-bottom: 200px;
  }
}

@media (max-width: 1023px) {
  .services-container {
    min-height: auto;
  }

  .services-intro {
    padding-top: 0;
    max-width: 100%;
  }

  .services-block {
    padding-top: 60px;
    max-width: 100%;
  }

  .services-block:last-of-type {
    padding-bottom: 60px;
  }
}

.service-title {
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  font-weight: 400;
  line-height: 1.25;
  color: #ffffff;
}

.service-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ee2b6c;
  transition: gap 0.2s ease;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.service-link:hover {
  gap: 10px;
  color: #ee2b6c;
}

/* ── Mobile Illustrations for Services ── */
.services-mobile-illustration {
  display: none;
  margin-top: 32px;
}

@media (max-width: 1023px) {
  .services-mobile-illustration {
    display: block;
  }
}

.services-mobile-illustration img {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 1023px) {
  .service-web-design-illustration img {
    max-width: 380px;
    animation: mobileHeroFloat1 5.5s ease-in-out infinite alternate;
    will-change: transform, filter;
  }
  .services-block:last-of-type .services-mobile-illustration img {
    animation: mobileServiceFloat2 6.5s ease-in-out infinite alternate;
    will-change: transform, filter;
  }
}

/* ── Services 2050px Rive Canvas (Desktop) ── */
.services-rive-wrapper {
  position: absolute;
  top: 0;
  right: -60px;
  width: 1090px;
  height: 2050px;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 1279px) {
  .services-rive-wrapper {
    right: -40px;
    width: 726px;
    height: 1366px;
  }
}

@media (max-width: 1023px) {
  .services-rive-wrapper {
    display: none !important;
  }
}

.services-rive-canvas {
  width: 100%;
  height: 100%;
  display: block;
}


/* ============================================================
   CASE STUDIES / WORK SECTION — Light Background (Dark Cards)
   ============================================================ */

.work-section {
  background-color: #03041a;
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.section-subtitle-dark {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn-dark {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-family: var(--font-mono, monospace);
  color: rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition: all var(--duration-fast) ease;
}

.filter-btn-dark:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.filter-btn-dark.active {
  background-color: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.45);
  font-weight: 600;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

/* Dark case cards */
.case-card-dark {
  grid-column: span 6;
  background: #111111;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}

.case-card-dark:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.case-card-dark.featured {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.case-card-media {
  height: 200px;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.case-card-dark.featured .case-card-media {
  height: 100%;
  min-height: 280px;
}

.venture-preview-box {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a14, #060810);
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-card-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
}

.case-card-dark.featured .case-card-body {
  padding: 36px;
}

.case-badge-dark {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.case-badge-dark.venture {
  background-color: rgba(238, 43, 108, 0.15);
  color: #ee2b6c;
  border: 1px solid rgba(238, 43, 108, 0.35);
}

.case-badge-dark.client {
  background-color: rgba(43, 75, 238, 0.15);
  color: #7a9bff;
  border: 1px solid rgba(43, 75, 238, 0.35);
}

.case-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.25;
}

.case-card-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
  flex: 1;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.case-tag-item {
  font-size: 0.775rem;
  font-family: var(--font-mono);
  padding: 2px 8px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.5);
}

.case-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #ee2b6c;
  transition: gap 0.2s ease;
  margin-top: auto;
}

.case-card-link:hover {
  gap: 10px;
}

/* ── Fogo In-House Venture Featured Carousel ── */
.case-card-dark.featured {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  background: #0d0d14;
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 92, 246, 0.08);
}

.case-card-dark.featured:hover {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 60px rgba(139, 92, 246, 0.15);
}

.case-card-dark.featured .case-card-media.fogo-carousel-media {
  position: relative;
  height: 100%;
  min-height: 440px;
  background: #050508;
  padding: 0;
  display: block;
}

.fogo-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 440px;
  overflow: hidden;
}

.fogo-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 440px;
}

.fogo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.02);
  z-index: 1;
}

.fogo-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  z-index: 2;
}

.fogo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.fogo-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 20px;
  background: linear-gradient(to top, rgba(5, 5, 8, 0.92) 0%, rgba(5, 5, 8, 0.5) 60%, transparent 100%);
  z-index: 3;
}

.fogo-slide-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.25);
  border: 1px solid rgba(139, 92, 246, 0.45);
  border-radius: var(--radius-full);
  padding: 2px 10px;
  margin-bottom: 6px;
}

.fogo-slide-caption p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  margin: 0;
}

.fogo-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(13, 13, 20, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.25s ease, background-color 0.2s ease, transform 0.2s ease;
}

.fogo-carousel:hover .fogo-carousel-btn {
  opacity: 1;
}

.fogo-carousel-btn:hover {
  background: rgba(139, 92, 246, 0.85);
  border-color: rgba(167, 139, 250, 0.8);
  transform: translateY(-50%) scale(1.08);
}

.fogo-carousel-btn.prev {
  left: 14px;
}

.fogo-carousel-btn.next {
  right: 14px;
}

.fogo-carousel-indicators {
  position: absolute;
  bottom: 16px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.fogo-indicator-dot {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.fogo-indicator-dot.is-active {
  width: 42px;
  background: rgba(255, 255, 255, 0.35);
}

.fogo-indicator-dot .indicator-progress {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  background: #a78bfa;
  border-radius: 2px;
}

.fogo-indicator-dot.is-active .indicator-progress {
  width: 100%;
  transition: width 3.8s linear;
}

/* Fogo Card Body */
.fogo-card-body {
  padding: 36px 40px !important;
  display: flex;
  flex-direction: column;
}

.fogo-brand-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.fogo-brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
  border: 1px solid rgba(139, 92, 246, 0.4);
  flex-shrink: 0;
}

.fogo-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.fogo-badge-row .case-badge-dark {
  margin-bottom: 0;
}

.fogo-ext-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 3px 9px;
  border-radius: var(--radius-full);
  display: inline-block;
}

.fogo-title {
  font-size: 1.55rem;
  line-height: 1.25;
  margin-bottom: 12px;
  color: #ffffff;
}

.fogo-desc {
  font-size: 0.925rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}

.fogo-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  margin-bottom: 20px;
}

.fogo-metric-item {
  display: flex;
  flex-direction: column;
}

.fogo-metric-num {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-mono);
}

.fogo-metric-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
  line-height: 1.2;
}

.fogo-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
  padding-top: 8px;
}

.fogo-avail-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.25);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.fogo-dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  display: inline-block;
  animation: fogoPulse 2s infinite ease-in-out;
}

@keyframes fogoPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}

@media (max-width: 1023px) {
  .case-card-dark.featured {
    grid-template-columns: 1fr;
  }

  .case-card-dark.featured .case-card-media.fogo-carousel-media,
  .case-card-dark.featured .case-card-media.affiscope-carousel-media,
  .case-card-dark.featured .case-card-media.affistyle-carousel-media,
  .case-card-dark.featured .case-card-media.npm-validator-media,
  .case-card-dark.featured .case-card-media.firewall-carousel-media,
  .case-card-dark.featured .case-card-media.pawid-media,
  .case-card-dark.featured .case-card-media.kindlink-media {
    min-height: 320px;
    height: 320px;
  }

  .fogo-carousel,
  .fogo-carousel-track,
  .npm-validator-frame,
  .pawid-frame,
  .kindlink-frame {
    min-height: 320px;
  }

  .fogo-card-body,
  .affiscope-card-body,
  .affistyle-card-body,
  .npm-validator-card-body,
  .firewall-card-body,
  .pawid-card-body,
  .kindlink-card-body {
    padding: 28px 24px !important;
  }

  .fogo-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ── Master Projects Carousel Navigation & Controls ── */
.projects-showcase-wrapper {
  margin-top: 32px;
}

.projects-carousel-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 20px;
  background: rgba(13, 13, 20, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.projects-meta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.projects-counter {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 12px;
  border-radius: 6px;
}

.projects-category-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.projects-quick-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.projects-quick-tabs::-webkit-scrollbar {
  display: none;
}

.proj-tab-btn {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  border: 1px solid transparent;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.proj-tab-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.proj-tab-btn.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  font-weight: 600;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
}

.projects-nav-arrows {
  display: flex;
  align-items: center;
  gap: 8px;
}

.proj-nav-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.proj-nav-arrow:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.projects-deck {
  position: relative;
  width: 100%;
}

.project-slide {
  display: none !important;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-slide.is-active {
  display: grid !important;
  opacity: 1;
  animation: projectSlideIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes projectSlideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── AffiScope Pro Project Custom Styling ── */
.affiscope-slide-card {
  border-color: rgba(16, 185, 129, 0.25) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(16, 185, 129, 0.08) !important;
}

.affiscope-slide-card:hover {
  border-color: rgba(16, 185, 129, 0.45) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 60px rgba(16, 185, 129, 0.18) !important;
}

.affiscope-carousel-media {
  position: relative;
  height: 100%;
  min-height: 440px;
  background: #040d08;
  padding: 0;
  display: block;
}

.affi-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.02);
  z-index: 1;
}

.affi-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  z-index: 2;
}

.affi-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.affi-pill {
  color: #a7f3d0 !important;
  background: rgba(16, 185, 129, 0.25) !important;
  border-color: rgba(16, 185, 129, 0.45) !important;
}

.affiscope-card-body {
  padding: 36px 40px !important;
  display: flex;
  flex-direction: column;
}

.affiscope-brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.affi-venture-badge {
  color: #34d399 !important;
  border-color: rgba(52, 211, 153, 0.35) !important;
  background: rgba(52, 211, 153, 0.1) !important;
}

.affi-ext-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}

.affi-title {
  color: #ffffff;
}

.affi-desc {
  color: rgba(255, 255, 255, 0.75);
}

.affi-color {
  color: #34d399 !important;
}

.affi-action-row {
  margin-top: auto;
  padding-top: 14px;
}

.affi-link {
  color: #34d399;
  font-weight: 600;
}

.affi-link:hover {
  color: #6ee7b7;
}

.affi-store-pill {
  color: #34d399 !important;
  background: rgba(16, 185, 129, 0.12) !important;
  border-color: rgba(16, 185, 129, 0.3) !important;
  text-decoration: none;
}

.affi-store-pill:hover {
  background: rgba(16, 185, 129, 0.22) !important;
  border-color: rgba(16, 185, 129, 0.5) !important;
}

.affi-pulse {
  background: #10b981 !important;
  box-shadow: 0 0 8px #10b981 !important;
}

/* ── AffiStyle WordPress Plugin Custom Styling ── */
.affistyle-slide-card {
  border-color: rgba(56, 189, 248, 0.25) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(56, 189, 248, 0.08) !important;
}

.affistyle-slide-card:hover {
  border-color: rgba(56, 189, 248, 0.45) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 60px rgba(56, 189, 248, 0.18) !important;
}

.affistyle-carousel-media {
  position: relative;
  height: 100%;
  min-height: 440px;
  background: #060b14;
  padding: 0;
  display: block;
}

.affistyle-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.02);
  z-index: 1;
}

.affistyle-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  z-index: 2;
}

.affistyle-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.affistyle-pill {
  color: #bae6fd !important;
  background: rgba(56, 189, 248, 0.25) !important;
  border-color: rgba(56, 189, 248, 0.45) !important;
}

.affistyle-card-body {
  padding: 36px 40px !important;
  display: flex;
  flex-direction: column;
}

.affistyle-brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.4);
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.affistyle-venture-badge {
  color: #38bdf8 !important;
  border-color: rgba(56, 189, 248, 0.35) !important;
  background: rgba(56, 189, 248, 0.1) !important;
}

.affistyle-ext-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #93c5fd;
  background: rgba(147, 197, 253, 0.12);
  border: 1px solid rgba(147, 197, 253, 0.3);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}

.affistyle-title {
  color: #ffffff;
}

.affistyle-desc {
  color: rgba(255, 255, 255, 0.75);
}

.affistyle-color {
  color: #38bdf8 !important;
}

.affistyle-action-row {
  margin-top: auto;
  padding-top: 14px;
}

.affistyle-link {
  color: #38bdf8;
  font-weight: 600;
}

.affistyle-link:hover {
  color: #7dd3fc;
}

.affistyle-store-pill {
  color: #38bdf8 !important;
  background: rgba(56, 189, 248, 0.12) !important;
  border-color: rgba(56, 189, 248, 0.3) !important;
  text-decoration: none;
}

.affistyle-store-pill:hover {
  background: rgba(56, 189, 248, 0.22) !important;
  border-color: rgba(56, 189, 248, 0.5) !important;
}

.affistyle-pulse {
  background: #38bdf8 !important;
  box-shadow: 0 0 8px #38bdf8 !important;
}

/* ── Universal Form Validator NPM Package Custom Styling ── */
.npm-validator-slide-card {
  border-color: rgba(203, 56, 55, 0.28) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(203, 56, 55, 0.08) !important;
}

.npm-validator-slide-card:hover {
  border-color: rgba(203, 56, 55, 0.48) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 60px rgba(203, 56, 55, 0.18) !important;
}

.npm-validator-media {
  position: relative;
  height: 100%;
  min-height: 440px;
  background: #090c12;
  padding: 0;
  display: block;
}

.npm-validator-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 440px;
  overflow: hidden;
  background: #090c12;
}

.npm-validator-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.npm-pill {
  color: #fecaca !important;
  background: rgba(203, 56, 55, 0.28) !important;
  border-color: rgba(203, 56, 55, 0.48) !important;
}

.npm-validator-card-body {
  padding: 36px 40px !important;
  display: flex;
  flex-direction: column;
}

.npm-brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(203, 56, 55, 0.12);
  border: 1px solid rgba(203, 56, 55, 0.4);
  box-shadow: 0 4px 16px rgba(203, 56, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.npm-venture-badge {
  color: #f87171 !important;
  border-color: rgba(248, 113, 113, 0.35) !important;
  background: rgba(248, 113, 113, 0.1) !important;
}

.npm-ext-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #fca5a5;
  background: rgba(252, 165, 165, 0.12);
  border: 1px solid rgba(252, 165, 165, 0.3);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}

.npm-mit-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #34d399;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}

.npm-title {
  color: #ffffff;
}

.npm-desc {
  color: rgba(255, 255, 255, 0.75);
}

.npm-color {
  color: #f87171 !important;
}

.npm-action-row {
  margin-top: auto;
  padding-top: 14px;
}

.npm-gh-link {
  color: #f87171;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.npm-gh-link:hover {
  color: #fca5a5;
}

.npm-store-pill {
  color: #f87171 !important;
  background: rgba(203, 56, 55, 0.12) !important;
  border-color: rgba(203, 56, 55, 0.3) !important;
  text-decoration: none;
}

.npm-store-pill:hover {
  background: rgba(203, 56, 55, 0.22) !important;
  border-color: rgba(203, 56, 55, 0.5) !important;
}

.npm-pulse {
  background: #cb3837 !important;
  box-shadow: 0 0 8px #cb3837 !important;
}

/* ── AI Prompt Firewall NPM Package Custom Styling ── */
.firewall-slide-card {
  border-color: rgba(56, 189, 248, 0.28) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(56, 189, 248, 0.08) !important;
}

.firewall-slide-card:hover {
  border-color: rgba(56, 189, 248, 0.48) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 60px rgba(56, 189, 248, 0.18) !important;
}

.firewall-carousel-media {
  position: relative;
  height: 100%;
  min-height: 440px;
  background: #060e18;
  padding: 0;
  display: block;
}

.firewall-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.02);
  z-index: 1;
}

.firewall-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  z-index: 2;
}

.firewall-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.firewall-pill {
  color: #bae6fd !important;
  background: rgba(56, 189, 248, 0.25) !important;
  border-color: rgba(56, 189, 248, 0.45) !important;
}

.firewall-card-body {
  padding: 36px 40px !important;
  display: flex;
  flex-direction: column;
}

.firewall-brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.4);
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.firewall-venture-badge {
  color: #38bdf8 !important;
  border-color: rgba(56, 189, 248, 0.35) !important;
  background: rgba(56, 189, 248, 0.1) !important;
}

.firewall-ext-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #93c5fd;
  background: rgba(147, 197, 253, 0.12);
  border: 1px solid rgba(147, 197, 253, 0.3);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}

.firewall-mit-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #34d399;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}

.firewall-title {
  color: #ffffff;
}

.firewall-desc {
  color: rgba(255, 255, 255, 0.75);
}

.firewall-color {
  color: #38bdf8 !important;
}

.firewall-action-row {
  margin-top: auto;
  padding-top: 14px;
}

.firewall-gh-link {
  color: #38bdf8;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.firewall-gh-link:hover {
  color: #7dd3fc;
}

.firewall-store-pill {
  color: #38bdf8 !important;
  background: rgba(56, 189, 248, 0.12) !important;
  border-color: rgba(56, 189, 248, 0.3) !important;
  text-decoration: none;
}

.firewall-store-pill:hover {
  background: rgba(56, 189, 248, 0.22) !important;
  border-color: rgba(56, 189, 248, 0.5) !important;
}

.firewall-pulse {
  background: #38bdf8 !important;
  box-shadow: 0 0 8px #38bdf8 !important;
}

/* ── PawID & Care Open Source Project Custom Styling ── */
.pawid-slide-card {
  border-color: rgba(16, 185, 129, 0.28) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(16, 185, 129, 0.08) !important;
}

.pawid-slide-card:hover {
  border-color: rgba(16, 185, 129, 0.52) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 60px rgba(16, 185, 129, 0.18) !important;
}

.pawid-media {
  position: relative;
  height: 100%;
  min-height: 440px;
  background: #020c09;
  padding: 0;
  display: block;
}

.pawid-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 440px;
  overflow: hidden;
}

.pawid-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pawid-slide-card:hover .pawid-frame img {
  transform: scale(1.03);
}

.pawid-pill {
  color: #a7f3d0 !important;
  background: rgba(16, 185, 129, 0.25) !important;
  border-color: rgba(16, 185, 129, 0.45) !important;
}

.pawid-card-body {
  padding: 36px 40px !important;
  display: flex;
  flex-direction: column;
}

.pawid-brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pawid-venture-badge {
  color: #34d399 !important;
  border-color: rgba(52, 211, 153, 0.35) !important;
  background: rgba(52, 211, 153, 0.1) !important;
}

.pawid-ai-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}

.pawid-chain-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #c084fc;
  background: rgba(192, 132, 252, 0.12);
  border: 1px solid rgba(192, 132, 252, 0.3);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}

.pawid-mit-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}

.pawid-title {
  color: #ffffff;
}

.pawid-desc {
  color: rgba(255, 255, 255, 0.75);
}

.pawid-color {
  color: #34d399 !important;
}

.pawid-action-row {
  margin-top: auto;
  padding-top: 14px;
}

.pawid-gh-link {
  color: #34d399;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.pawid-gh-link:hover {
  color: #6ee7b7;
}

.pawid-status-pill {
  color: #34d399 !important;
  background: rgba(16, 185, 129, 0.12) !important;
  border-color: rgba(16, 185, 129, 0.3) !important;
  text-decoration: none;
}

.pawid-pulse {
  background: #34d399 !important;
  box-shadow: 0 0 8px #34d399 !important;
}

/* ── KindLink Open Source Project Custom Styling ── */
.kindlink-slide-card {
  border-color: rgba(0, 245, 212, 0.28) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 245, 212, 0.08) !important;
}

.kindlink-slide-card:hover {
  border-color: rgba(0, 245, 212, 0.52) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 245, 212, 0.18) !important;
}

.kindlink-media {
  position: relative;
  height: 100%;
  min-height: 440px;
  background: #041014;
  padding: 0;
  display: block;
}

.kindlink-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 440px;
  overflow: hidden;
}

.kindlink-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.kindlink-slide-card:hover .kindlink-frame img {
  transform: scale(1.03);
}

.kindlink-pill {
  color: #a7f3d0 !important;
  background: rgba(0, 245, 212, 0.25) !important;
  border-color: rgba(0, 245, 212, 0.45) !important;
}

.kindlink-card-body {
  padding: 36px 40px !important;
  display: flex;
  flex-direction: column;
}

.kindlink-brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(0, 245, 212, 0.12);
  border: 1px solid rgba(0, 245, 212, 0.4);
  box-shadow: 0 4px 16px rgba(0, 245, 212, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kindlink-venture-badge {
  color: #00f5d4 !important;
  border-color: rgba(0, 245, 212, 0.35) !important;
  background: rgba(0, 245, 212, 0.1) !important;
}

.kindlink-ai-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}

.kindlink-sol-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #a78bfa;
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}

.kindlink-mit-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #34d399;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}

.kindlink-title {
  color: #ffffff;
}

.kindlink-desc {
  color: rgba(255, 255, 255, 0.75);
}

.kindlink-color {
  color: #00f5d4 !important;
}

.kindlink-action-row {
  margin-top: auto;
  padding-top: 14px;
}

.kindlink-gh-link {
  color: #00f5d4;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.kindlink-gh-link:hover {
  color: #5eead4;
}

.kindlink-status-pill {
  color: #00f5d4 !important;
  background: rgba(0, 245, 212, 0.12) !important;
  border-color: rgba(0, 245, 212, 0.3) !important;
  text-decoration: none;
}

.kindlink-pulse {
  background: #00f5d4 !important;
  box-shadow: 0 0 8px #00f5d4 !important;
}

/* ── Placeholder Slide Styling ── */
.placeholder-slide {
  min-height: 420px;
}

.placeholder-media {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  position: relative;
}

.placeholder-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.placeholder-pill {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  letter-spacing: 0.05em;
}


/* ============================================================
   FOUNDER SECTION — Dark Background
   ============================================================ */

.founder-section {
  background-color: #03045e;
  padding: 100px 0;
  border-top: 1px solid var(--color-border-subtle);
}

.founder-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 48px;
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
}

.founder-text {}

.founder-photo-wrap {
  aspect-ratio: 1/1;
  max-width: 420px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* Spotlight card effect */
.spotlight-card {
  position: relative;
  overflow: hidden;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(43, 75, 238, 0.1),
      transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.spotlight-card:hover::before {
  opacity: 1;
}


/* ============================================================
   CTA SECTION — Direct Contact & Inquiry Form (Dark Theme)
   ============================================================ */

.cta-section {
  background-color: #03041a;
  padding: 100px 0 120px;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: flex-start;
  gap: 56px;
}

.cta-text {
  padding-top: 12px;
}

.cta-kicker {
  display: inline-block;
  font-family: var(--font-mono, monospace);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #60a5fa;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  margin-bottom: 20px;
}

.cta-heading {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff !important;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta-subheading {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72) !important;
  max-width: 500px;
  margin-bottom: 32px;
}

.cta-contact-meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-email-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: #ffffff;
  max-width: 380px;
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cta-email-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
  border-color: #3b82f6;
}

.cta-email-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(37, 99, 235, 0.18);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-email-info {
  display: flex;
  flex-direction: column;
}

.cta-email-lbl {
  font-size: 0.72rem;
  font-family: var(--font-mono, monospace);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.cta-email-val {
  font-size: 0.98rem;
  font-weight: 600;
  color: #ffffff;
}

.cta-email-arrow {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.15rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.cta-email-card:hover .cta-email-arrow {
  color: #60a5fa;
  transform: translate(2px, -2px);
}

.cta-badges-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-pill-badge {
  font-family: var(--font-mono, monospace);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cta-dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
  animation: ctaDotPulse 1.8s infinite ease-in-out;
}

@keyframes ctaDotPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}

/* ── CTA Direct Contact Form Card ── */
.cta-form-col {
  width: 100%;
}

.cta-form-card {
  background: #080a18;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.cta-form-header {
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
}

.cta-card-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.cta-card-subtitle {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.cta-direct-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cta-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cta-form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 4px;
}

.cta-form-label .req {
  color: #ef4444;
}

.cta-select-wrap {
  position: relative;
}

.cta-form-input,
.cta-form-select,
.cta-form-textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  background: #0b0f1f;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.cta-form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #0b0f1f;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.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 14px center;
  padding-right: 40px;
  color: #ffffff;
  cursor: pointer;
}

.cta-form-select option {
  background-color: #0b0f1f !important;
  color: #ffffff !important;
  padding: 12px 14px;
}

.cta-form-input:-webkit-autofill,
.cta-form-input:-webkit-autofill:hover, 
.cta-form-input:-webkit-autofill:focus,
.cta-form-textarea:-webkit-autofill,
.cta-form-select:-webkit-autofill {
  -webkit-text-fill-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0 1000px #0b0f1f inset !important;
  box-shadow: 0 0 0 1000px #0b0f1f inset !important;
  border-color: #3b82f6 !important;
  caret-color: #ffffff !important;
  transition: background-color 5000s ease-in-out 0s;
}

.cta-form-input:focus,
.cta-form-select:focus,
.cta-form-textarea:focus {
  outline: none;
  background: #0e1428;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.cta-form-input::placeholder,
.cta-form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.cta-form-textarea {
  resize: vertical;
  min-height: 85px;
  line-height: 1.5;
}

.cta-budget-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cta-chip {
  padding: 7px 14px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cta-chip:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.cta-chip.is-active {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* ── JavaScript Security Captcha Widget ── */
.cta-captcha-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-captcha-display {
  display: inline-flex;
  align-items: center;
  background: #0f172a;
  border-radius: 8px;
  padding: 2px 6px;
  border: 1px solid #334155;
  flex-shrink: 0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-captcha-canvas {
  display: block;
  border-radius: 4px;
}

.cta-captcha-reload {
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: color 0.2s ease, transform 0.3s ease;
}

.cta-captcha-reload:hover {
  color: #ffffff;
  transform: rotate(180deg);
}

.cta-captcha-input {
  flex: 1;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: var(--font-mono);
  font-weight: 700;
}

.cta-captcha-hint {
  font-size: 0.74rem;
  color: #64748b;
  margin-top: 2px;
}

.cta-form-status {
  font-size: 0.88rem;
  border-radius: 8px;
  padding: 0;
  display: none;
  transition: all 0.2s ease;
}

.cta-form-status.success {
  display: block !important;
  padding: 12px 16px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
}

.cta-form-status.error {
  display: block !important;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}

/* ── GDPR / DPDP Consent Checkbox ── */
.cta-consent-group {
  margin-top: 14px;
  margin-bottom: 8px;
}

.cta-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--color-text-secondary);
}

.cta-consent-checkbox {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--color-accent-blue);
  cursor: pointer;
  flex-shrink: 0;
}

.cta-consent-text .privacy-link {
  color: var(--color-accent-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.cta-consent-text .privacy-link:hover {
  color: #60a5fa;
}

.cta-trust-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.78rem;
  font-family: var(--font-mono, monospace);
  color: rgba(255, 255, 255, 0.55);
}

.cta-trust-reassurance svg {
  color: #10b981;
  flex-shrink: 0;
}

.cta-submit-btn {
  width: 100%;
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  background: #2563eb;
  border: none;
  color: #ffffff;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-submit-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.spinner-icon {
  animation: ctaSpin 0.9s linear infinite;
}

@keyframes ctaSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 991px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-form-card {
    padding: 26px 20px;
  }
}

@media (max-width: 640px) {
  .cta-form-row {
    grid-template-columns: 1fr;
  }

  .cta-captcha-wrap {
    flex-direction: column;
    align-items: stretch;
  }
}


/* ============================================================
   MODAL
   ============================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background-color: var(--color-surface-base);
  border: 1px solid var(--color-border-hover);
  border-radius: var(--radius-xl);
  max-width: 620px;
  width: 100%;
  padding: clamp(24px, 5vw, 40px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s var(--ease-spring);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.is-active .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-surface-card);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.modal-close:hover {
  color: #ffffff;
  border-color: var(--color-border-hover);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  background-color: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-accent-blue);
  box-shadow: 0 0 0 3px rgba(43, 75, 238, 0.2);
  outline: none;
}

.budget-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.budget-chip {
  padding: 8px 12px;
  background-color: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.85rem;
  font-family: var(--font-mono);
  cursor: pointer;
  color: var(--color-text-secondary);
  transition: all var(--duration-fast) ease;
}

.budget-chip.active {
  background-color: rgba(43, 75, 238, 0.15);
  border-color: var(--color-accent-blue);
  color: #ffffff;
}


/* ============================================================
   SITE FOOTER
   ============================================================ */

.site-footer {
  position: relative;
  z-index: 20;
  border-top: 1px solid var(--color-border-subtle);
  padding: 64px 0 32px;
  background-color: #030304;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-col h5 {
  font-size: 0.9rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.925rem;
  color: var(--color-text-secondary);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--color-border-subtle);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-social-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(147, 197, 253, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bae6fd;
  transition: all 0.22s ease;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.footer-social-btn:hover {
  background: rgba(37, 99, 235, 0.22);
  border-color: rgba(96, 165, 250, 0.55);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.footer-social-btn svg {
  width: 18px;
  height: 18px;
  display: block;
  transition: transform 0.2s ease;
}

.footer-social-btn:hover svg {
  transform: scale(1.08);
}


/* ============================================================
   SHARED UTILITIES
   ============================================================ */

.section-spacing {
  padding: 100px 0;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .hero-sticky-pane {
    grid-template-columns: 1fr;
  }

  .hero-illus-col {
    display: none;
  }

  .hero-stage-text {
    position: relative;
    opacity: 0;
    transform: translateY(0);
    padding: 0;
  }

  .hero-stage-text.vis-active {
    opacity: 1;
  }

  .hero-text-col {
    padding: 120px clamp(16px, 4vw, 48px) 60px;
    align-items: flex-start;
    height: auto;
  }

  .hero-scroll-driver {
    height: auto;
    min-height: 100vh;
  }

  .hero-sticky-pane {
    position: relative;
    height: auto;
    padding-bottom: 60px;
  }

  .services-story-grid {
    grid-template-columns: 1fr;
  }

  .services-illus-col {
    height: 240px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-illus-col {
    display: none;
  }

  .advantages-grid {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }


}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .status-beacon {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .brand-logo {
    gap: 12px;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  #headerStartProjectBtn {
    padding: 8px 14px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-drawer {
    position: fixed;
    inset: 0;
    background-color: #050614;
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 96px 24px 40px;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.35s;
    overflow-y: auto;
  }

  .mobile-drawer.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }

  .mobile-drawer-links a {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
  }

  .case-card-dark,
  .case-card-dark.featured {
    grid-column: span 1;
  }

  .case-card-dark.featured {
    grid-template-columns: 1fr;
  }

  .workflow-timeline {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .budget-options {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stage-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
}

/* ============================================================
   ABOUT PAGE — REDESIGN ARCHITECTURE
   ============================================================ */

.about-hero-section {
  position: relative;
  padding: 180px 0 90px;
  overflow: hidden;
  background-color: #03045e;
}

.about-hero-ambient {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.18), rgba(238, 43, 108, 0.08) 50%, transparent 75%);
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.about-telemetry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.about-telemetry-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px 20px;
  position: relative;
  transition: all 0.25s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about-telemetry-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-telemetry-num {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.about-telemetry-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.about-telemetry-desc {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

/* ── Founder Spotlight Card ── */
.founder-spotlight-card {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 48px;
  align-items: center;
  background: radial-gradient(circle at 90% 15%, rgba(37, 99, 235, 0.12), transparent 60%), #0c0d14;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 56px 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
}

.founder-spotlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent-blue), var(--color-accent-pink), transparent);
}

.founder-credentials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 28px;
}

.founder-cred-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: var(--font-mono);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.founder-cred-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent-blue);
}

.founder-portrait-wrap {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.founder-portrait-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(37, 99, 235, 0.2);
  background-color: #12131c;
  aspect-ratio: 1/1;
}

.founder-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-portrait-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(10, 10, 15, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Principles 4-Card Bento ── */
.principles-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.principle-bento-card {
  background: #0d0e16;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  transition: all 0.25s ease;
  overflow: hidden;
}

.principle-bento-card:hover {
  background: #11131e;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
}

.principle-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-blue);
  margin-bottom: 20px;
}

.principle-bento-card:nth-child(2) .principle-icon-wrap {
  background: rgba(238, 43, 108, 0.12);
  border-color: rgba(238, 43, 108, 0.25);
  color: var(--color-accent-pink);
}

.principle-bento-card:nth-child(3) .principle-icon-wrap {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.25);
  color: #10b981;
}

.principle-bento-card:nth-child(4) .principle-icon-wrap {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.25);
  color: #a855f7;
}

.principle-metric-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 6px;
  margin-top: 16px;
}

/* ── Venture Ecosystem Grid ── */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ecosystem-card {
  background: #0c0d15;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ecosystem-card:hover {
  background: #10121d;
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.ecosystem-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ecosystem-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

.ecosystem-links-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ecosystem-action-link {
  font-size: 0.85rem;
  color: var(--color-accent-blue);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.ecosystem-action-link:hover {
  color: #60a5fa;
}

/* ── About Responsive Queries ── */
@media (max-width: 1023px) {
  .about-telemetry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder-spotlight-card {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 36px;
  }

  .founder-portrait-wrap {
    max-width: 320px;
  }

  .principles-bento-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-telemetry-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   20. LEGAL PAGES (Privacy Policy & Terms of Service)
   ============================================================ */
.legal-hero-section {
  padding-top: clamp(120px, 14vw, 160px);
  padding-bottom: clamp(36px, 5vw, 60px);
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% -20%, rgba(37, 99, 235, 0.15), transparent 60%);
}

.legal-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-accent-blue);
  margin-bottom: 20px;
}

.legal-grid-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 80px;
}

@media (max-width: 1023px) {
  .legal-grid-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.legal-toc-sidebar {
  position: sticky;
  top: 100px;
  background: rgba(15, 17, 26, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
}

.legal-toc-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 16px;
}

.legal-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-toc-link {
  color: #94a3b8;
  font-size: 0.88rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.legal-toc-link:hover,
.legal-toc-link.active {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.08);
}

.legal-toc-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  opacity: 0.6;
}

.legal-card-section {
  background: rgba(15, 17, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 40px);
  margin-bottom: 28px;
  scroll-margin-top: 110px;
  transition: border-color 0.25s ease;
}

.legal-card-section:hover {
  border-color: rgba(56, 189, 248, 0.25);
}

.legal-card-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 14px;
}

.legal-card-header h2 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  color: #ffffff;
  margin: 0;
}

.legal-card-num {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-brand-primary);
}

.legal-body-text {
  color: #cbd5e1;
  line-height: 1.75;
  font-size: 0.98rem;
  margin-bottom: 16px;
}

.legal-highlight-box {
  background: rgba(37, 99, 235, 0.08);
  border-left: 3px solid #3b82f6;
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  margin: 20px 0;
  color: #e2e8f0;
  font-size: 0.92rem;
  line-height: 1.65;
}

.legal-list {
  padding-left: 20px;
  margin-bottom: 16px;
  color: #cbd5e1;
  line-height: 1.75;
  font-size: 0.95rem;
}

.legal-list li {
  margin-bottom: 8px;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-legal-link {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-link:hover {
  color: #bae6fd;
}

.footer-legal-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}

/* ============================================================
   21. GLOBAL REGIONS & SEO EXPANSION (US, UK & CANADA)
   ============================================================ */
.global-regions-section {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  background: radial-gradient(circle at 50% 10%, rgba(37, 99, 235, 0.08), transparent 70%), #03041a;
  border-top: 1px solid var(--color-border-subtle);
}

.global-regions-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}

.global-regions-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-accent-blue);
  margin-bottom: 20px;
}

.global-regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

@media (max-width: 1200px) {
  .global-regions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .global-regions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.region-card {
  background-color: #111115;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.28s ease,
              box-shadow 0.28s ease,
              background-color 0.28s ease;
  position: relative;
  overflow: hidden;
}

.region-card:hover {
  transform: translateY(-4px);
  background-color: #13141a;
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.22),
              0 14px 36px rgba(0, 0, 0, 0.75),
              inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.region-card-top {
  margin-bottom: 20px;
}

.region-flag-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.region-flag-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.region-flag-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.region-country-name {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #94a3b8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.region-badge-pill {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #bae6fd;
}

.region-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.35;
}

.region-card-desc {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.region-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.region-features-list li {
  font-size: 0.85rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.region-features-list li svg {
  color: #10b981;
  flex-shrink: 0;
}

.region-hub-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.region-hub-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: #94a3b8;
}

/* FAQ Accordion Section */
.seo-faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.seo-faq-header {
  text-align: center;
  margin-bottom: 36px;
}

.seo-faq-item {
  background: rgba(15, 17, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.seo-faq-item[open] {
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(15, 17, 26, 0.85);
}

.seo-faq-summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.05rem;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}

.seo-faq-summary::-webkit-details-marker {
  display: none;
}

.seo-faq-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
  color: var(--color-brand-primary);
  flex-shrink: 0;
}

.seo-faq-item[open] .seo-faq-icon {
  transform: rotate(180deg);
}

.seo-faq-content {
  padding: 0 24px 24px 24px;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
}

.seo-faq-content p {
  margin: 0;
}

/* ============================================================
   22. DREAINNO VS OFFSHORE COMPARISON MATRIX PAGE
   High-Contrast Executive Battle Cockpit & 6-Dimension Matrix
   ============================================================ */

.vs-page {
  background-color: #03041a;
  color: #ffffff;
  overflow-x: hidden;
}

/* ── Hero Section Atmosphere ── */
.vs-hero-section {
  position: relative;
  z-index: auto;
  /* Translucent radial gradient over obsidian base lets 3D interactive grid & particles show through */
  background: radial-gradient(circle at 50% 18%, rgba(37, 99, 235, 0.28) 0%, rgba(3, 4, 94, 0.45) 45%, rgba(3, 4, 26, 0.95) 85%);
  padding: 98px 0 54px;
  color: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vs-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Hero Badge with Pulsing Beacon */
.vs-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.16);
  border: 1px solid rgba(56, 189, 248, 0.38);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.18);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  color: #7dd3fc;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.vs-badge-pulse-beacon {
  position: relative;
  width: 8px;
  height: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vs-beacon-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
}

.vs-beacon-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid #38bdf8;
  opacity: 0.75;
  animation: beaconPing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes beaconPing {
  0% { transform: scale(0.8); opacity: 0.9; }
  80%, 100% { transform: scale(2.4); opacity: 0; }
}

/* Hero Title & Strapline */
.vs-hero-title {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0 auto 10px;
  max-width: 980px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.vs-title-glow {
  background: linear-gradient(135deg, #ffffff 20%, #7dd3fc 70%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 14px rgba(56, 189, 248, 0.3));
}

.vs-title-vs-badge {
  font-family: var(--font-mono);
  font-size: clamp(0.85rem, 1.5vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  border-radius: 999px;
  background: rgba(238, 43, 108, 0.16);
  border: 1px solid rgba(238, 43, 108, 0.5);
  color: #ff5c8d;
  box-shadow: 0 0 16px rgba(238, 43, 108, 0.3);
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
}

.vs-title-offshore {
  color: #e2e8f0;
}

.vs-hero-strapline {
  font-family: var(--font-sans);
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  font-weight: 600;
  color: #93c5fd;
  margin: 0 auto 12px;
  max-width: 820px;
  letter-spacing: -0.01em;
}

.vs-hero-lead {
  font-size: clamp(0.95rem, 1.25vw, 1.05rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.76);
  max-width: 780px;
  margin: 0 auto 26px;
}

.vs-highlight-lead {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(56, 189, 248, 0.45);
  text-underline-offset: 4px;
}

/* ── Hero Split "Battle Cockpit" (Head-to-Head Visual Centerpiece) ── */
.vs-battle-cockpit {
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  align-items: center;
  gap: 0;
  max-width: 1160px;
  margin: 0 auto 32px;
  text-align: left;
  position: relative;
}

.vs-cockpit-side {
  border-radius: 20px;
  padding: 32px 30px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  position: relative;
}

/* Offshore Side */
.vs-cockpit-offshore {
  background: linear-gradient(135deg, rgba(20, 15, 24, 0.85) 0%, rgba(12, 10, 16, 0.92) 100%);
  border: 1px solid rgba(239, 68, 68, 0.28);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(239, 68, 68, 0.15);
}

.vs-cockpit-offshore:hover {
  border-color: rgba(239, 68, 68, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(239, 68, 68, 0.12);
}

/* Dreainno Side */
.vs-cockpit-dreainno {
  background: linear-gradient(135deg, rgba(14, 25, 58, 0.85) 0%, rgba(7, 13, 34, 0.95) 100%);
  border: 1px solid rgba(56, 189, 248, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(37, 99, 235, 0.22), inset 0 1px 0 rgba(56, 189, 248, 0.3);
}

.vs-cockpit-dreainno:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 45px rgba(56, 189, 248, 0.28);
}

/* Cockpit Headers */
.vs-cockpit-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 12px;
}

.vs-cockpit-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}

.vs-cockpit-tag.neg {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.vs-cockpit-tag.pos {
  background: rgba(56, 189, 248, 0.16);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.45);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.2);
}

.vs-cockpit-status {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #94a3b8;
}

.vs-cockpit-status-elite {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vs-cockpit-status-elite::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
}

.vs-cockpit-heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.vs-cockpit-summary {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 42px;
}

/* Cockpit Points List */
.vs-cockpit-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.vs-point-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.86rem;
  line-height: 1.45;
}

.vs-point-item.neg {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.12);
}

.vs-point-item.pos {
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.18);
}

.point-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.vs-point-item.neg .point-icon {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.vs-point-item.pos .point-icon {
  background: rgba(56, 189, 248, 0.22);
  color: #38bdf8;
}

.point-body strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.vs-point-item.neg .point-body strong {
  color: #fca5a5;
}

.vs-point-item.pos .point-body strong {
  color: #ffffff;
}

.point-body p {
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  font-size: 0.82rem;
}

.vs-point-item.pos .point-body p {
  color: rgba(255, 255, 255, 0.8);
}

/* Cockpit Footer Takeaways */
.vs-cockpit-bottom {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vs-cockpit-bottom.neg {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.22);
  color: #fca5a5;
}

.vs-cockpit-bottom.pos {
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #bae6fd;
}

.bottom-label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.vs-cockpit-bottom.neg .bottom-label {
  color: #f87171;
}

.vs-cockpit-bottom.pos .bottom-label {
  color: #38bdf8;
}

/* Cockpit Center VS Orb */
.vs-cockpit-core {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 3;
}

.vs-core-shield {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #090e24, #030514);
  border: 2px solid rgba(56, 189, 248, 0.6);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.4), inset 0 0 12px rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-core-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(56, 189, 248, 0.4);
  animation: corePulseRing 2.4s ease-out infinite;
}

@keyframes corePulseRing {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.vs-core-text {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
}

.vs-core-sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #7dd3fc;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Hero Actions CTA Group ── */
.vs-hero-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.vs-cta-btn {
  padding: 14px 28px;
  font-size: 0.96rem;
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.45);
}

.btn-secondary-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f1f5f9;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(56, 189, 248, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* ── Executive Benchmark Scorecards Strip ── */
.vs-scorecard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 10px;
  text-align: left;
}

.vs-scorecard-item {
  position: relative;
  background: linear-gradient(180deg, rgba(23, 27, 56, 0.7) 0%, rgba(10, 13, 30, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 22px 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.25s var(--ease-spring), border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.vs-scorecard-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #38bdf8, transparent);
  opacity: 0.6;
}

.vs-scorecard-item:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 20px rgba(56, 189, 248, 0.15);
}

.vs-scorecard-item:hover::before {
  opacity: 1;
}

.vs-scorecard-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #7dd3fc;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.vs-scorecard-num {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.vs-scorecard-item:nth-child(1) .vs-scorecard-num {
  color: #38bdf8;
  text-shadow: 0 0 16px rgba(56, 189, 248, 0.35);
}

.vs-scorecard-item:nth-child(2) .vs-scorecard-num {
  color: #34d399;
  text-shadow: 0 0 16px rgba(52, 211, 153, 0.35);
}

.vs-scorecard-item:nth-child(3) .vs-scorecard-num {
  color: #a78bfa;
  text-shadow: 0 0 16px rgba(167, 139, 250, 0.35);
}

.vs-scorecard-item:nth-child(4) .vs-scorecard-num {
  color: #f8fafc;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.35);
}

.vs-scorecard-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.vs-scorecard-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}

/* ============================================================
   2. DETAILED CAPABILITY MATRIX SECTION
   6 Illuminated Dual-Comparison Battle Modules
   ============================================================ */
.vs-matrix-section {
  position: relative;
  z-index: auto;
  background-color: #03041a;
  padding: 96px 0 120px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vs-matrix-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 54px;
}

.vs-matrix-header-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  color: #38bdf8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.vs-matrix-header h2 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.vs-matrix-header p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

/* The 6 Battle Modules Container */
.vs-battle-matrix-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

/* Single Battle Card Container */
.battle-dimension-card {
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(16, 20, 42, 0.8) 0%, rgba(9, 12, 26, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.battle-dimension-card:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 30px rgba(37, 99, 235, 0.15);
}

/* Card Header Banner */
.dim-card-header {
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.dim-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dim-num-pill {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38bdf8;
}

.dim-title-group h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.dim-focus-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.dim-verdict-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #7dd3fc;
}

/* Side-by-side comparative body */
.dim-card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Offshore Column */
.dim-col-offshore {
  padding: 30px 28px;
  background: rgba(239, 68, 68, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.dim-col-header-offshore {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.dim-badge-cross {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.45);
  color: #f87171;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}

.dim-label-offshore {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #f87171;
  text-transform: uppercase;
}

.dim-copy-offshore {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #94a3b8;
  margin: 0;
  flex: 1;
}

.dim-pill-warning {
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  font-size: 0.78rem;
  color: #fca5a5;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Dreainno Column */
.dim-col-dreainno {
  padding: 30px 28px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(56, 189, 248, 0.04) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.dim-col-header-dreainno {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.dim-header-left-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dim-badge-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.2);
  border: 1px solid rgba(52, 211, 153, 0.5);
  color: #4ade80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}

.dim-label-dreainno {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #38bdf8;
  text-transform: uppercase;
}

.dim-pill-advantage-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #03041a;
  background: #38bdf8;
  padding: 2px 8px;
  border-radius: 4px;
}

.dim-copy-dreainno {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #f1f5f9;
  margin: 0;
  flex: 1;
}

.dim-copy-dreainno strong {
  color: #ffffff;
  font-weight: 600;
}

.dim-pill-outcome {
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.16);
  border: 1px solid rgba(56, 189, 248, 0.35);
  font-size: 0.78rem;
  color: #bae6fd;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   3. TOTAL COST OF OWNERSHIP (TCO) COMPARISON SECTION
   ============================================================ */
.vs-tco-section {
  margin-top: 72px;
  padding: 44px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(20, 24, 52, 0.75) 0%, rgba(10, 13, 30, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.vs-tco-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.vs-tco-head h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.vs-tco-head p {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.vs-tco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.vs-tco-card {
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vs-tco-card.offshore {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.vs-tco-card.dreainno {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.14) 0%, rgba(56, 189, 248, 0.08) 100%);
  border: 1px solid rgba(56, 189, 248, 0.45);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.18);
}

.tco-card-tag {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.vs-tco-card.offshore .tco-card-tag { color: #f87171; }
.vs-tco-card.dreainno .tco-card-tag { color: #38bdf8; }

.tco-card-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.tco-breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.tco-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}

.tco-step-icon {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.82rem;
  width: 20px;
  text-align: center;
}

.vs-tco-card.offshore .tco-step-icon { color: #f87171; }
.vs-tco-card.dreainno .tco-step-icon { color: #34d399; }

.tco-net-result {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.86rem;
  line-height: 1.45;
}

.vs-tco-card.offshore .tco-net-result {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #fca5a5;
}

.vs-tco-card.dreainno .tco-net-result {
  background: rgba(37, 99, 235, 0.25);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #ffffff;
}

/* ============================================================
   4. STRATEGIC AUDIT CALLOUT BANNER
   ============================================================ */
.vs-audit-banner {
  margin-top: 72px;
  border-radius: 24px;
  padding: 48px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(238, 43, 108, 0.1) 60%, rgba(9, 12, 32, 0.95) 100%);
  border: 1px solid rgba(56, 189, 248, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(37, 99, 235, 0.2);
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.vs-audit-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: 15%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.vs-audit-heading {
  font-size: clamp(1.8rem, 2.9vw, 2.4rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.vs-audit-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.vs-audit-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vs-audit-badge-item {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vs-audit-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.vs-audit-actions .btn-primary {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 16px 28px;
  font-size: 1rem;
  box-shadow: 0 0 28px rgba(37, 99, 235, 0.5);
}

.vs-audit-actions .btn-secondary-link {
  color: #93c5fd;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.vs-audit-actions .btn-secondary-link:hover {
  color: #ffffff;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS FOR VS PAGE
   ============================================================ */
@media (max-width: 1023px) {
  .vs-hero-section {
    padding: 110px 0 54px;
  }

  .vs-battle-cockpit {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vs-cockpit-core {
    flex-direction: row;
    padding: 8px 0;
  }

  .vs-cockpit-summary {
    min-height: auto;
  }

  .vs-scorecard-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dim-card-body {
    grid-template-columns: 1fr;
  }

  .dim-col-offshore {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .vs-tco-grid {
    grid-template-columns: 1fr;
  }

  .vs-audit-banner {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .vs-hero-section {
    padding: 100px 0 44px;
  }

  .vs-hero-title {
    font-size: 2rem;
  }

  .vs-cockpit-side {
    padding: 22px 18px;
  }

  .vs-scorecard-grid {
    grid-template-columns: 1fr;
  }

  .dim-card-header {
    padding: 16px 18px;
  }

  .dim-col-offshore,
  .dim-col-dreainno {
    padding: 20px 18px;
  }

  .vs-tco-section {
    padding: 28px 18px;
  }

  .vs-audit-banner {
    padding: 28px 20px;
  }
}
