:root {
  /* Sellix-inspired Premium Dark Palette */
  --bg: #000000;
  --bg-subtle: #050505;
  --panel: rgba(12, 12, 12, 0.7);
  --panel-border: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.05);

  --text: #ffffff;
  --text-subtle: rgba(255, 255, 255, 0.65);
  --text-dim: #949494;
  --text-muted: #666666;

  --primary: #7038ff;
  --primary-glow: rgba(112, 56, 255, 0.25);
  --secondary: #00d1ff;
  --secondary-glow: rgba(0, 209, 255, 0.05);
  --accent: #ff3d71;
  --grid-line: rgba(255, 255, 255, 0.12);
  --grid-size: 50px;

  /* Spacing - 8px Grid */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;
  --space-16: 128px;
  --space-20: 160px;

  --radius: 20px;
  --radius-lg: 32px;
  --container: 1200px;
  --container-wide: 1440px;

  --transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Screen reader only for AI summaries and AEO */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background-color: #000000;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* 
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url('https://grainy-gradients.vercel.app/noise.svg');
  opacity: 0.15;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}
*/

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .container {
    padding: 0;
    width: min(var(--container), calc(100% - 48px));
  }
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.2;
}

/* Section Headings Styling */
.section-head {
  max-width: 900px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  line-height: 1.1;
  background: linear-gradient(to bottom, #fff 40%, #666);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.gradient-text {
  background: linear-gradient(to bottom, #fff 40%, #666);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-glow);
  filter: brightness(1.1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* --- HEADER / NAVBAR --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  color: #fff;
}

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

.auth-links {
  display: flex;
  align-items: center;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.hamburger {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hamburger::before {
  top: -8px;
  left: 0;
}

.hamburger::after {
  top: 8px;
  left: 0;
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: block;
  }

  .nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(8, 8, 12, 0.7);
    /* Transparent background */
    backdrop-filter: blur(25px);
    /* Strong blur effect */
    -webkit-backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    /* Slight scale for entry */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav-container.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .nav-links {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
  }

  .nav-container.active .nav-links {
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    transition: all 0.3s ease;
  }

  .nav-links a:hover {
    color: var(--secondary);
    text-shadow: 0 0 20px var(--secondary-glow);
  }

  /* Hamburger to X transition */
  .nav-toggle.active .hamburger {
    background: transparent;
  }

  .nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
  }
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 300px 0 120px;
}

.hero-bg-visual {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 900px;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-visual::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 450px;
  background: #000000;
  opacity: 0.5;
  /* Reduced from default full opacity */
  filter: blur(60px);
  /* Increased blur for a smoother transition */
  pointer-events: none;
  z-index: 10;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
  transform: scale(1.2);
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8));
}

.hero-text {
  font-size: clamp(0.9rem, 3vw, 1.25rem);
  color: var(--text-subtle);
  max-width: 600px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.hero-text b,
.hero-text B {
  color: #ffffff;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 320px;
  margin: 24px auto 0;
  position: relative;
  z-index: 2;
}

.hero-actions .btn {
  width: 100%;
  justify-content: center;
}

.hero-ticker {
  margin-top: 40px;
  width: 100%;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  gap: 40px;
  animation: scrollTicker 30s linear infinite;
  width: max-content;
}

.ticker-content span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-social {
  position: absolute;
  bottom: 200px;
  left: 24px;
  display: flex;
  gap: 16px;
  z-index: 20;
}

@media (max-width: 1023px) {
  .hero-social {
    position: relative;
    bottom: auto;
    left: auto;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 20px;
  }
}

/* Hero Ticker / Brand Marquee */
.hero-ticker {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
  padding: 16px 0;
  position: relative;
  z-index: 2;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: tickerScroll 20s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .ticker-content {
    animation: none;
  }
}

.ticker-content span {
  flex-shrink: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 240px 0 60px;
    justify-content: center;
  }

  .hero-video {
    object-fit: contain;
    object-position: top center;
    opacity: 1;
  }

  .hero-title {
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .hero-text {
    max-width: 650px;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
    max-width: none;
    width: auto;
  }

  .hero-actions .btn {
    width: auto;
  }

  .hero-ticker {
    margin-top: 60px;
    padding: 24px 0;
  }

  .ticker-content {
    gap: 80px;
  }
}

.animate-headline .line-1 {
  font-size: 0.65em;
  padding-bottom: 0.08em;
  line-height: 1.25;
}

.animate-headline .line-1,
.animate-headline .line-2 {
  display: inline-block;
  opacity: 0;
  animation: fadeInHero 0.8s ease-out forwards;
  background: linear-gradient(to bottom, #fff 40%, #666);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.animate-headline .line-2 {
  animation-delay: 0.3s;
}

.word-build,
.word-clients {
  display: inline-block;
  color: var(--secondary);
  text-shadow: 0 0 25px var(--secondary-glow);
  -webkit-text-fill-color: initial;
}

.word-clients {
  opacity: 0;
  animation: emphasisReveal 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s forwards !important;
}

@keyframes fadeInHero {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.reveal-on-load {
  opacity: 0;
  animation: fadeInHero 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.delay-1 {
  animation-delay: 0.5s;
}

.delay-2 {
  animation-delay: 0.7s;
}

.delay-3 {
  animation-delay: 0.9s;
}

@keyframes emphasisReveal {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

  100% {
    opacity: 1;
    transform: scale(1.05) translateY(0);
  }
}

.hero-micro-interaction {
  margin: 32px auto 0;
  height: 44px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.micro-wrapper {
  display: flex;
  gap: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease-in-out;
}

.micro-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

.micro-wrapper.exiting {
  opacity: 0;
  transform: translateY(-10px);
}

.micro-q {
  color: var(--text-muted);
  font-weight: 500;
}

.micro-a {
  color: #fff;
  font-weight: 700;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateX(5px);
  transition: all 0.4s ease-out 0.3s;
}

.micro-wrapper.visible .micro-a {
  opacity: 1;
  transform: translateX(0);
}

/* Mega Feature Sections */
.mega-feature {
  padding: 100px 0;
}

.feature-split {
  display: flex;
  align-items: center;
  gap: 80px;
}

.feature-split.reversed {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
}

.giant-stat {
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 900;
  background: linear-gradient(to bottom, #fff, transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: -20px;
  letter-spacing: -0.05em;
}

.stat-sub {
  font-size: 1.5rem;
  color: var(--text-dim);
  line-height: 1.4;
}

.feature-visual {
  flex: 1;
  position: relative;
}

.visual-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--panel);
  border-radius: 32px;
  border: 1px solid var(--panel-border);
  overflow: hidden;
  position: relative;
}

/* CSS Mockups for Mega Features */
.scale-coins {
  background: radial-gradient(circle at bottom, #110d21, #000);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scale-coins::before {
  content: "";
  position: absolute;
  bottom: 20%;
  width: 50%;
  height: 6px;
  background: linear-gradient(90deg, #111, #333, #111);
  border-radius: 4px;
}

.scale-coins::after {
  content: "";
  position: absolute;
  bottom: 20%;
  width: 12px;
  height: 60px;
  background: #222;
}

.coin-glow {
  position: absolute;
  top: 40%;
  right: 30%;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at top left, var(--primary), var(--secondary));
  border-radius: 50%;
  box-shadow: 0 0 30px var(--primary-glow);
  border: 2px solid rgba(255, 255, 255, 0.1);
  animation: float 4s ease-in-out infinite;
}

.digital-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(112, 56, 255, 0.1), #000);
}

.digital-card::after {
  content: "REFLOWNIX  • • • • 3732";
  position: absolute;
  width: 60%;
  height: 50%;
  background: linear-gradient(135deg, rgba(112, 56, 255, 0.2), rgba(0, 209, 255, 0.1));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  transform: rotate(-10deg) scale(0.9);
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.8), 0 0 40px var(--primary-glow);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  font-weight: 700;
  font-family: monospace;
  color: rgba(255, 255, 255, 0.7);
  animation: float 5s ease-in-out infinite reverse;
}

.crystal-globe {
  background: radial-gradient(circle at center, #000, #000);
  display: grid;
  place-items: center;
}

.globe-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(112, 56, 255, 0.4), transparent);
  border: 1px dashed rgba(112, 56, 255, 0.3);
  box-shadow: inset 0 0 40px rgba(112, 56, 255, 0.2), 0 0 60px rgba(0, 209, 255, 0.1);
  animation: spinGlobe 15s linear infinite;
}

@keyframes spinGlobe {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Service Blocks */
.service-list-section {
  padding: 120px 0;
}

/* 4. REDESIGNED SERVICES SECTION */
.services-section {
  padding: 80px 0 120px;
  background-color: transparent;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 60px;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.service-card:nth-child(even) {
  flex-direction: row-reverse;
}

.card-content {
  flex: 1;
  z-index: 2;
}

.card-number {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 24px;
}

.card-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.1;
}

.card-desc {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 32px;
  max-width: 500px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dim);
  font-size: 0.95rem;
  font-weight: 500;
}

.feature-list span {
  color: var(--secondary);
  font-weight: 800;
}

.btn-card {
  display: inline-flex;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-purple {
  background: #6c47ff;
  color: #fff;
}

.btn-teal {
  background: #00d1ff;
  color: #000;
}

.btn-violet {
  background: #8b5cf6;
  color: #fff;
}

.btn-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mockup-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.8));
  animation: floatMockup 6s ease-in-out infinite;
}

@media (min-width: 1024px) {
  .mockup-img.mockup-img-sm {
    max-width: 360px;
  }
}

@keyframes floatMockup {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Card Themes */
.theme-purple {
  background: #000000;
  border-color: rgba(108, 71, 255, 0.2);
}

.theme-teal {
  background: #000000;
  border-color: rgba(0, 209, 255, 0.2);
}

.theme-violet {
  background: #000000;
  border-color: rgba(139, 92, 246, 0.2);
}

.theme-purple .card-number {
  background: #6c47ff;
}

.theme-teal .card-number {
  background: #00d1ff;
  color: #000;
}

.theme-violet .card-number {
  background: #8b5cf6;
}

/* Trust Badges - Modern Premium Row */
.trust-badges-row {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(135deg, #7038ff, #a855f7) border-box;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.badge-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.badge-icon {
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  color: var(--secondary);
}

.badge-item:hover .badge-icon {
  background: var(--secondary);
  color: #000;
  box-shadow: 0 0 15px var(--secondary-glow);
}

/* Responsive */
@media (max-width: 1024px) {
  .service-card {
    display: grid !important;
    padding: 40px;
    text-align: center;
    gap: 0;
  }

  .card-content {
    display: contents;
  }

  .card-number {
    order: 1;
    margin: 0 auto 24px;
  }

  .card-title {
    order: 2;
  }

  .card-desc {
    order: 3;
    margin: 0 auto 24px;
  }

  .card-visual {
    order: 4;
    margin: 0 auto 32px;
    display: flex;
    justify-content: center;
  }

  .feature-list {
    order: 5;
    justify-content: center;
    margin-bottom: 32px;
  }

  .btn-card {
    order: 6;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
  }

  .trust-badges-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 20px 0;
    justify-items: center;
  }

  .badge-item {
    width: 100%;
    justify-content: center;
    padding: 10px 8px;
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
  }
}

@media (max-width: 768px) {
  .service-card {
    padding: 24px 16px !important;
  }

  .card-number {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.9rem !important;
    margin-bottom: 16px !important;
  }

  .card-title {
    font-size: 1.6rem !important;
    margin-bottom: 12px !important;
  }

  .card-desc {
    font-size: 0.9rem !important;
    margin-bottom: 16px !important;
    line-height: 1.5 !important;
  }

  .card-visual {
    margin-bottom: 20px !important;
  }

  .mockup-img {
    max-width: 200px !important;
  }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 8px !important;
    margin-bottom: 20px !important;
  }

  .feature-list li {
    font-size: 0.85rem !important;
  }

  .btn-card {
    padding: 12px 24px !important;
    font-size: 0.9rem !important;
  }
}

/* Top Window Bar */
.ui-mockup::before {
  content: "• • •";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 32px;
  background: #111;
  border-bottom: 1px solid #222;
  align-items: center;
  display: flex;
  padding-left: 20px;
  font-size: 24px;
  letter-spacing: 2px;
  color: #444;
  line-height: 0;
  z-index: 10;
}

.dashboard {
  background: radial-gradient(circle at top right, rgba(112, 56, 255, 0.15), transparent 60%), #080808;
}

.dashboard::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 70px);
  background: linear-gradient(90deg, transparent 49%, var(--line) 49%, var(--line) 51%, transparent 51%) 0 0 / 20% 100%, linear-gradient(0deg, transparent 49%, var(--line) 49%, var(--line) 51%, transparent 51%) 0 0 / 100% 20%;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.transactions {
  background: radial-gradient(circle at bottom center, rgba(0, 209, 255, 0.1), #080808);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 50px 20px 20px;
}

.design-system {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 50px 20px 20px;
}

.revenue-graph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(112, 56, 255, 0.2), #080808 60%);
}

.insights-graph {
  display: flex;
  align-items: flex-end;
  padding: 0;
}


/* Integrations */
.integration-section {
  padding: 120px 0;
  text-align: center;
}

.integration-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.icon-bubble {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  transition: var(--transition);
}

.icon-bubble:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  color: var(--primary);
}



/* Premium Diagnostic Section - Full Width Interactive Rows */
.diagnostic-premium {
  padding: 8rem 0;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}

/* Background glows */
.diagnostic-premium::before {
  display: none;
}

.diagnostic-premium::after {
  display: none;
}

.dp-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
  position: relative;
  z-index: 2;
}

.dp-header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ff3d71;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff3d71;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.dp-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.gradient-text {
  background: linear-gradient(90deg, #743dff, #00d1ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dp-desc {
  font-size: 1.15rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.slice-diagnostic {
  background-color: transparent;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.slice-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.slice {
  width: 100%;
  height: 100px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  position: relative;
  overflow: hidden;
  transition: height 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  background-color: transparent;
}

.slice:last-child {
  border-bottom: none;
}

.slice-open {
  height: 350px;
}

@media (min-width: 1024px) {
  .slice-diagnostic {
    padding: 8rem 0;
  }

  .slice-container {
    flex-direction: row;
    height: 600px;
  }

  .slice {
    height: 100%;
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .slice:last-child {
    border-right: none;
  }

  .slice-open {
    flex: 4;
    height: 100%;
  }
}

.slice:hover {
  flex: 4;
  background-color: #0a0a12;
}

/* CLOSED STATE (Vertical Text) */
.slice-closed {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 3rem;
  transition: opacity 0.4s;
  opacity: 1;
}

.slice:hover .slice-closed {
  opacity: 0;
  pointer-events: none;
}

.slice-closed span {
  font-family: monospace;
  font-size: 1.5rem;
  color: var(--primary);
  /* Cyan */
  margin-bottom: 2rem;
}

.slice-closed h4 {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
  white-space: nowrap;
}

/* OPEN STATE (Content) */
.slice-open {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s 0.2s, transform 0.4s 0.2s;
  pointer-events: none;
  min-width: 400px;
  /* Force text to not squish before opacity hits */
}

.slice:hover .slice-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.so-num {
  font-family: monospace;
  font-size: 6rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  line-height: 1;
  margin-bottom: 1rem;
}

.slice:hover .so-num {
  -webkit-text-stroke: 1px #00d1ff;
  text-shadow: 0 0 30px rgba(0, 209, 255, 0.3);
}

.slice-open h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.slice-open p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.slice-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: transparent;
  z-index: 1;
  opacity: 1;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.slice:hover .slice-bg {
  transform: scale(1.05);
}

/* Removed dark gradient overlay for full image clarity */
.slice-open::after {
  display: none;
}

.slice-open h3,
.so-num {
  position: relative;
  z-index: 2;
}

@keyframes commonSwipeHint {
  0%, 100% { opacity: 0.5; transform: translateX(-50%); }
  50% { opacity: 1; transform: translateX(calc(-50% - 8px)); }
}

/* Responsive Fallback */
@media (max-width: 991px) {
  .slice-container {
    flex-direction: row !important;
    height: auto !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    padding: 0 24px 24px !important;
    gap: 16px !important;
    scrollbar-width: none !important;
    border: none !important;
    background: transparent !important;
  }

  .slice-container::-webkit-scrollbar {
    display: none;
  }

  .slice {
    flex: 0 0 85% !important;
    min-width: 85% !important;
    scroll-snap-align: start !important;
    aspect-ratio: auto !important;
    height: auto !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    background: #08080c !important;
    padding: 0 !important;
    overflow: hidden !important;
    display: flex !important;
  }

  .slice-closed {
    display: none !important;
  }

  .slice-open {
    position: relative !important;
    inset: auto !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    height: auto !important;
    width: 100% !important;
    padding: 0 !important;
    min-width: auto !important;
    display: block !important;
  }

  .slice-bg {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
  }
}

/* Optimized Featured Projects - Mobile First */
.projects-rail {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.project-block {
  position: relative;
  overflow: hidden;
  min-height: 28rem;
  border-radius: 1.8rem;
  background: linear-gradient(#08080c, #08080c) padding-box,
    linear-gradient(135deg, #7038ff, #a855f7) border-box;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

@media (min-width: 1024px) {
  .projects-rail {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
  }

  .project-block:nth-child(1) {
    grid-column: span 12;
    min-height: 32rem;
  }

  .project-block:nth-child(2) {
    grid-column: span 7;
  }

  .project-block:nth-child(3) {
    grid-column: span 5;
  }

  .project-block:nth-child(4) {
    grid-column: span 4;
  }

  .project-block:nth-child(5) {
    grid-column: span 4;
  }

  .project-block:nth-child(6) {
    grid-column: span 4;
  }
}

.project-skin {
  position: relative;
  flex: 1;
  width: 100%;
  background-color: #0c0c12;
  overflow: hidden;
}

.project-skin::after {
  content: "";
  position: absolute;
  top: 15%;
  left: 10%;
  right: 10%;
  bottom: 0;
  border-radius: 1rem 1rem 0 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #0c0c12;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Re-adding project images */
.cover-seo-geo::after {
  background-image: url('./Material/seo_geo_cover.png');
  background-position: top center;
  top: 5%;
  left: 5%;
  right: 5%;
}

.rehabfix::after {
  background-image: url('Material/RehabFix.webp');
}

.trendmysong::after {
  background-image: url('Material/TMS.webp');
}

.hmstudioz::after {
  background-image: url('Material/HmStudioz.webp');
}

.securesongs::after {
  background-image: url('Material/SecureSongs.webp');
}

.hmpawar::after {
  background-image: url('Material/Pawar-Edits.webp');
}

.back-in-action::after {
  background-image: url('Material/back-in-action.webp');
  background-position: top center;
  top: 5%;
  left: 5%;
  right: 5%;
}

.project-block:hover .project-skin::after {
  transform: translateY(-10px) scale(1.02);
}

.project-overlay {
  padding: 1.5rem;
  background: #0d0d12;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 5;
}

.project-name {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}

.project-result {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.view-project-btn {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
  padding: 8px 16px;
  background: rgba(0, 209, 255, 0.05);
  border: 1px solid rgba(0, 209, 255, 0.1);
  border-radius: 8px;
  width: -moz-fit-content;
  width: fit-content;
}

.view-project-btn:hover {
  background: var(--secondary);
  color: #000;
  box-shadow: 0 0 20px var(--secondary-glow);
  transform: translateX(5px);
}

/* Moved to end for better specificity */


/* 5. SOLUTION SECTION (THE CONVERSION BLUEPRINT) REDESIGN */
.solution-section {
  padding: 10rem 0;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}

.blueprint-container {
  position: relative;
  max-width: 720px;
  height: 620px;
  margin: 4rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Central Core */
.blueprint-core {
  position: relative;
  z-index: 10;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-content {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #000;
  box-shadow: 0 0 100px rgba(0, 209, 255, 0.5);
}

.core-brand {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.core-status {
  font-size: 0.55rem;
  font-weight: 700;
  opacity: 0.6;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.core-pulse-icon {
  width: 40px;
  height: 16px;
}

.core-rings {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  pointer-events: none;
}

.core-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 209, 255, 0.15);
  border-radius: 50%;
  animation: corePulse 4s infinite ease-out;
}

.core-ring:nth-child(2) {
  animation-delay: 1.3s;
}

.core-ring:nth-child(3) {
  animation-delay: 2.6s;
}

@keyframes corePulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Blueprint Grid & Nodes */
.blueprint-grid {
  position: absolute;
  inset: -10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  z-index: 5;
}

.blueprint-node {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  max-width: 280px;
  transition: var(--transition);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* Diagonal Connection Lines */
.node-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.5), transparent);
  width: 100px;
  z-index: -1;
  pointer-events: none;
}

[data-pos="top-left"] .node-line {
  bottom: 5px;
  right: -35px;
  transform: rotate(40deg);
}

[data-pos="top-right"] .node-line {
  bottom: 5px;
  left: -35px;
  transform: rotate(-40deg);
  background: linear-gradient(-90deg, rgba(0, 209, 255, 0.5), transparent);
}

[data-pos="bottom-left"] .node-line {
  top: 5px;
  right: -35px;
  transform: rotate(-40deg);
}

[data-pos="bottom-right"] .node-line {
  top: 5px;
  left: -35px;
  transform: rotate(40deg);
  background: linear-gradient(-90deg, rgba(168, 85, 247, 0.5), transparent);
}

.blueprint-node[data-pos="top-left"] {
  justify-self: start;
  align-self: start;
}

.blueprint-node[data-pos="top-right"] {
  justify-self: end;
  align-self: start;
}

.blueprint-node[data-pos="bottom-left"] {
  justify-self: start;
  align-self: end;
}

.blueprint-node[data-pos="bottom-right"] {
  justify-self: end;
  align-self: end;
}

.node-icon-box {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.node-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0px;
}

.node-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  color: #00d1ff;
  margin-bottom: 4px;
}

.node-desc {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.3;
  margin-bottom: 10px;
}

.node-stat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
}

/* Node Themes */
.node-blue .node-icon-box {
  border-color: #3b82f6;
  color: #3b82f6;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.node-blue .node-subtitle {
  color: #3b82f6;
}

.node-cyan .node-icon-box {
  border-color: #00d1ff;
  color: #00d1ff;
  box-shadow: 0 0 20px rgba(0, 209, 255, 0.2);
}

.node-cyan .node-subtitle {
  color: #00d1ff;
}

.node-lblue .node-icon-box {
  border-color: #60a5fa;
  color: #60a5fa;
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.2);
}

.node-lblue .node-subtitle {
  color: #60a5fa;
}

.node-purple .node-icon-box {
  border-color: #a855f7;
  color: #a855f7;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.node-purple .node-subtitle {
  color: #a855f7;
}

/* System Background */
.blueprint-system-bg {
  position: absolute;
  inset: 0px;
  pointer-events: none;
  z-index: 1;
}

.system-circle {
  position: absolute;
  inset: 150px;
  border: 1px solid rgba(0, 209, 255, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(0, 209, 255, 0.05);
}

.system-nodes {
  position: absolute;
  inset: 150px;
}

.s-node {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #3b82f6;
  border-radius: 50%;
  box-shadow: 0 0 15px #3b82f6;
}

.n-t {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.n-tr {
  top: 14.6%;
  left: 85.4%;
  transform: translate(-50%, -50%);
}

.n-r {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}

.n-br {
  bottom: 14.6%;
  left: 85.4%;
  transform: translate(-50%, -50%);
}

.n-b {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.n-bl {
  bottom: 14.6%;
  left: 14.6%;
  transform: translate(-50%, -50%);
}

.n-l {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

.n-tl {
  top: 14.6%;
  left: 14.6%;
  transform: translate(-50%, -50%);
}

/* Footer */
.solution-footer {
  margin-top: 4rem;
  text-align: center;
  width: 100%;
}

.footer-eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #00d1ff;
  margin-bottom: 12px;
}

.footer-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
}

/* Hover Effects */
.blueprint-node:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Overrides */
@media (max-width: 991px) {

  /* Rail Containers */
  .services-grid,
  .projects-rail,
  .blueprint-grid,
  .advantage-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    gap: var(--space-3) !important;
    padding: var(--space-4) var(--space-3) var(--space-4) !important;
    margin-left: calc(var(--space-3) * -1) !important;
    margin-right: calc(var(--space-3) * -1) !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .blueprint-grid {
    position: relative !important;
    inset: auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 20px 40px !important;
    overflow: visible !important;
    margin: 0 !important;
  }

  /* Card Sizing & Snapping */
  .service-card,
  .project-block,
  .adv-tile {
    flex: 0 0 75vw !important;
    min-width: 75vw !important;
    scroll-snap-align: start !important;
    margin: 0 !important;
    bottom: auto !important;
    transform: none !important;
    max-width: none !important;
    z-index: 1 !important;
    padding: 28px 20px !important;
    overflow: visible !important;
    border-radius: 28px !important;
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .advantages-section {
    padding-top: 3rem !important;
  }

  .adv-tile {
    min-height: auto !important;
    padding: 0 !important;
  }

  .project-block {
    padding: 0 !important;
  }

  .tile-inner {
    padding: 2rem 1.5rem !important;
  }

  .tile-icon {
    font-size: 2rem !important;
    margin-bottom: 1.5rem !important;
  }

  .tile-content h3 {
    font-size: 1.5rem !important;
  }

  .tile-content p {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
  }

  .advantage-grid {
    gap: 1rem !important;
  }

  .blueprint-node {
    width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
    padding: 1.25rem 1rem !important;
    border-radius: 12px !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    background: rgba(255, 255, 255, 0.02) !important;
  }

  .blueprint-node .node-desc {
    display: none !important;
  }

  .blueprint-node .node-subtitle {
    font-size: 0.75rem !important;
    opacity: 0.7;
  }

  .blueprint-node h3 {
    font-size: 1rem !important;
    margin: 0.4rem 0 !important;
    font-weight: 800 !important;
  }

  .node-stat {
    font-size: 0.8rem !important;
    margin-top: auto !important;
    padding-top: 0.5rem !important;
    color: var(--primary) !important;
  }

  /* Specific Section Overrides */
  .blueprint-container {
    padding: 0 !important;
    height: auto !important;
    display: block !important;
  }

  .blueprint-system-bg,
  .blueprint-core {
    display: none !important;
  }

  body,
  main,
  .section {
    overflow-x: hidden !important;
  }

  .section,
  section {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  .hero {
    padding-top: 140px !important;
    padding-bottom: 60px !important;
    min-height: auto !important;
  }

  .hero-bg-visual {
    top: -120px !important;
  }

  .section-head,
  .solution-header,
  .process-header,
  .dp-header {
    padding-left: var(--space-3) !important;
    padding-right: var(--space-3) !important;
    text-align: center !important;
    margin-bottom: 48px !important;
    /* Controlled gap after header */
  }

  .section-desc {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    max-width: 100% !important;
    margin-bottom: 0 !important;
  }
}

/* 6. ACTIVATION CTA - Mobile First */
.activation-cta {
  padding: 104px 0;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}

.activation-core {
  position: relative;
  z-index: 2;
  text-align: center;
}

.activation-title {
  font-size: clamp(2.5rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 1;
  margin: 32px 0 60px;
  letter-spacing: -0.05em;
  background: linear-gradient(to bottom, #fff 40%, #666);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.activation-trigger {
  margin-bottom: 80px;
}

.btn-activation {
  display: inline-flex;
  padding: 24px 48px;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 100px;
  background: #fff;
  color: #000;
  width: 100%;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.service-detail-hero {
  background: #000000;
  position: relative;
  overflow: hidden;
}

.detail-title {
  font-size: min(15vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin: 32px 0;
}

.spec-slab {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 60px;
  padding: 100px;
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  position: relative;
  transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.4);
}

.spec-slab:hover {
  border-color: rgba(0, 209, 255, 0.3);
  transform: translateY(-10px) rotateX(2deg);
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}

.spec-visual {
  position: relative;
  height: 100%;
  min-height: 500px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.02), transparent);
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.feature-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.step-card {
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid var(--secondary);
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 0 16px 16px 0;
  transition: var(--transition);
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(10px);
}

/* Animation Overrides for Detail Pages */
.reveal:not(.reveal-left):not(.reveal-right):not(.reveal-scale):not(.reveal-up):not(.reveal-rotate):not(.reveal-fade),
.reveal-stagger {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, opacity;
}

.reveal:not(.reveal-left):not(.reveal-right):not(.reveal-scale):not(.reveal-up):not(.reveal-rotate):not(.reveal-fade).visible,
.reveal-stagger.visible {
  opacity: 1;
  transform: translateY(0) scale(1);

}

/* Unique Reveal Animations Overrides */
.reveal.reveal-up {
  transform: translateY(60px) scale(0.98);
}
.reveal.reveal-left {
  transform: translateX(-60px) scale(0.99);
}
.reveal.reveal-right {
  transform: translateX(60px) scale(0.99);
}
.reveal.reveal-scale {
  transform: scale(0.85);
}
.reveal.reveal-rotate {
  transform: translateY(50px) rotateX(10deg);
  transform-origin: top center;
}
.reveal.reveal-fade {
  transform: translateY(0) scale(1);
}

.reveal.reveal-up,
.reveal.reveal-left,
.reveal.reveal-right,
.reveal.reveal-scale,
.reveal.reveal-rotate,
.reveal.reveal-fade {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              filter 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: transform, opacity, filter;
}

.reveal.reveal-up.visible,
.reveal.reveal-left.visible,
.reveal.reveal-right.visible,
.reveal.reveal-scale.visible,
.reveal.reveal-rotate.visible,
.reveal.reveal-fade.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1) rotateX(0);
  filter: blur(0);
}

/* Unique Card Reveal Overrides */
.reveal-card.reveal-left {
  transform: translateX(-120px) scale(0.97);
  filter: blur(12px);
}
.reveal-card.reveal-right {
  transform: translateX(120px) scale(0.97);
  filter: blur(12px);
}
.reveal-card.reveal-scale {
  transform: scale(0.92);
  filter: blur(12px);
}
.reveal-card.reveal-up {
  transform: translateY(120px) scale(0.97);
  filter: blur(12px);
}

.reveal-card.reveal-left,
.reveal-card.reveal-right,
.reveal-card.reveal-scale,
.reveal-card.reveal-up {
  transition: opacity 1.3s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.3s cubic-bezier(0.16, 1, 0.3, 1), 
              filter 1.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.reveal-card.reveal-left.visible,
.reveal-card.reveal-right.visible,
.reveal-card.reveal-scale.visible,
.reveal-card.reveal-up.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
  filter: blur(0);
}

/* 6. PROCESS SECTION (SYSTEM RAIL) */
.process-section {
  padding: 6rem 0;
  background-color: #000000;
  position: relative;
}

.process-rail {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
}

/* Vertical Line */
.process-rail::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line), var(--line), transparent);
}

.process-step {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
  position: relative;
}

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

.step-number {
  flex: 0 0 50px;
  height: 50px;
  background: #000;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  z-index: 2;
  transition: var(--transition);
  box-shadow: 0 0 0 8px #000;
}

.process-step:hover .step-number {
  border-color: var(--secondary);
  box-shadow: 0 0 20px var(--secondary-glow), 0 0 0 8px #000;
  transform: scale(1.1);
}

.step-content {
  flex: 1;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.process-step:hover .step-content {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.step-content h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: #fff;
}

.step-content p {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.step-tags {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.step-tags li {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  background: rgba(0, 209, 255, 0.05);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid rgba(0, 209, 255, 0.1);
}

@media (max-width: 768px) {
  .process-rail::before {
    left: 16px;
  }

  .step-number {
    flex: 0 0 32px;
    height: 32px;
    font-size: 0.8rem;
    box-shadow: 0 0 0 6px #000;
  }

  .process-step {
    gap: 16px;
    margin-bottom: 48px;
  }

  .step-content {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }

  .step-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .step-tags {
    gap: 8px;
  }

  .step-tags li {
    padding: 4px 8px;
    font-size: 0.7rem;
  }
}

/* 7. WHY CHOOSE US (SYSTEM ADVANTAGE GRID) */
.advantages-section {
  padding: 6rem 0;
  background-color: #000000;
  position: relative;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 1.5rem;
  margin-top: 4rem;
}

.adv-tile {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}

.adv-tile[data-size="large"] {
  grid-row: span 2;
}

.adv-tile[data-size="wide"] {
  grid-column: span 2;
}

.tile-inner {
  padding: 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tile-icon {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.tile-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  color: #fff;
}

.tile-content p {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.6;
}

.tile-tag {
  margin-top: auto;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  margin-top: 2rem;
}

/* Wide Tile Flex Layout */
.tile-flex {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.flex-text {
  flex: 1.5;
}

.flex-visual {
  flex: 1;
  height: 120px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 20px;
}

.visual-node {
  width: 12px;
  height: 12px;
  background: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--secondary-glow);
}

.visual-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--secondary), transparent, var(--secondary));
  margin: 0 10px;
  animation: lineFlow 2s linear infinite;
  background-size: 200% 100%;
}

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

  100% {
    background-position: -100% 0;
  }
}

.adv-tile:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  background: rgba(15, 15, 15, 0.8);
}

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

  .adv-tile[data-size="large"] {
    grid-row: auto;
  }

  .adv-tile[data-size="wide"] {
    grid-column: span 2;
  }
}

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

  .adv-tile[data-size="wide"] {
    grid-column: auto;
  }

  .tile-flex {
    flex-direction: column;
    text-align: left;
    gap: 1.25rem;
  }

  .flex-visual {
    width: 100%;
  }

  /* Advantages Mobile Compact Styling */
  .tile-inner {
    padding: 20px 16px !important;
  }

  .tile-icon {
    font-size: 1.5rem !important;
    margin-bottom: 12px !important;
  }

  .tile-content h3 {
    font-size: 1.2rem !important;
    margin-bottom: 8px !important;
  }

  .tile-content p {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }

  .tile-tag {
    margin-top: 1.25rem !important;
    padding: 6px 12px !important;
    font-size: 0.7rem !important;
  }
}

/* 9. FAQ SECTION (HIGH-PRECISION MODULAR) */
.faq-section {
  padding: 12rem 0;
  background-color: #000000;
  position: relative;
}

.faq-container {
  max-width: 1000px;
  margin: 6rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 2.5rem;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--secondary);
  transition: height 0.4s ease;
  box-shadow: 0 0 15px var(--secondary-glow);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
}

.faq-number {
  font-family: monospace;
  font-size: 1rem;
  color: var(--text-muted);
  opacity: 0.5;
}

.faq-q {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  flex: 1;
  transition: var(--transition);
}

.faq-icon-modern {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.faq-icon-modern::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-dim);
  transition: transform 0.4s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
  opacity: 0;
}

.faq-content p {
  padding-top: 2rem;
  padding-left: 3rem;
  color: var(--text-dim);
  line-height: 1.8;
  font-size: 1.1rem;
  max-width: 800px;
}

/* Active State */
.faq-item.active {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.faq-item.active::before {
  height: 100%;
}

.faq-item.active .faq-icon-modern {
  background: var(--secondary);
  border-color: var(--secondary);
  box-shadow: 0 0 20px var(--secondary-glow);
}

.faq-item.active .faq-icon-modern::after {
  content: "+";
  color: #000;
  transform: rotate(45deg);
}

.faq-item.active .faq-content {
  max-height: 500px;
  opacity: 1;
}

.faq-item:hover:not(.active) {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .faq-item {
    padding: 1.5rem;
  }

  .faq-q {
    font-size: 1.2rem;
  }

  .faq-content p {
    padding-left: 0;
    font-size: 1rem;
  }

  .faq-number {
    display: none;
  }
}

/* Unified Section Styles */
.section,
section {
  background-color: #000000;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  overflow: hidden;
}

/* Unified Card/Panel Component */

.card-premium,
.work-card,
.blueprint-node,
.process-step .step-content,
.adv-tile,
.faq-item,
.project-block {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02)),
    #08080c !important;
  border: 1px solid var(--panel-border) !important;
  border-radius: var(--radius-lg) !important;
  /* 32px */
  position: relative;
  overflow: hidden;
  transition: var(--transition) !important;
}

/* Apply Glow Effect to Premium Cards */
.card-premium::before,
.work-card::before,
.adv-tile::before,
.project-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(116, 61, 255, 0.25), transparent 28%);
  pointer-events: none;
  z-index: 0;
}

/* Unified Hover State */
.card-premium:hover,
.work-card:hover,
.adv-tile:hover,
.project-block:hover,
.faq-item:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 209, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Specific Section Adjustments */
.works-section,
.slice-diagnostic,
.solution-section,
.process-section,
.advantages-section,
.faq-section,
.activation-cta,
.footer {
  background-color: transparent !important;
  /* Remove individual gradients for total consistency */
}

/* Button & CTA Colors */
.btn-primary,
.btn-activation {
  background: var(--secondary) !important;
  color: #000 !important;
  box-shadow: 0 0 20px rgba(0, 209, 255, 0.2);
}

.btn-secondary {
  border-color: var(--panel-border) !important;
  color: #fff !important;
}

.view-work,
.view-more {
  color: var(--secondary) !important;
}

.gradient-text {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pain-list li:nth-child(1) {
  transition-delay: 0.1s;
}

.pain-list li:nth-child(2) {
  transition-delay: 0.2s;
}

.pain-list li:nth-child(3) {
  transition-delay: 0.3s;
}

.pain-list li:nth-child(4) {
  transition-delay: 0.4s;
}

.pain-list li:nth-child(5) {
  transition-delay: 0.5s;
}

/* Placeholder for validation styles */

@media (max-width: 1024px) {
  .spec-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .spec-slab {
    padding: 40px;
    border-radius: 30px;
  }

  .spec-visual {
    min-height: 300px;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(10px, -20px);
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOUNDER SECTION â€” THE DOSSIER
   Concept: Portrait as cinematic scene element
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.founder-section {
  position: relative;
  min-height: 100vh;
  background-color: transparent;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* â”€â”€ Cinematic portrait â€” fills the right portion of the section â”€â”€ */
.ds-portrait {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
  /* portrait anchors to the right edge */
  left: 42%;
  right: 0;
}

.ds-portrait__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  /* cinematic color-grade: high contrast, desaturated */
  filter: grayscale(60%) contrast(1.1) brightness(0.75);
  transition: filter 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.founder-section:hover .ds-portrait__img {
  filter: grayscale(20%) contrast(1.05) brightness(0.85);
}

/* Gradient vignette: fade portrait into the dark panel on the left, also top/bottom */
.ds-portrait__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, #050505 0%, #050505 10%, transparent 55%),
    linear-gradient(to top, #050505 0%, transparent 25%),
    linear-gradient(to bottom, #050505 0%, transparent 15%);
  pointer-events: none;
}

/* â”€â”€ Panel: all text content, positioned over the left side â”€â”€ */
.ds-panel {
  position: relative;
  z-index: 1;
  width: 58%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10vh 5vw 6vh 6vw;
  /* right-side fade into the portrait */
  background: linear-gradient(to right, #050505 65%, transparent 100%);
}

/* â”€â”€ Classification header â”€â”€ */
.ds-header {
  flex-shrink: 0;
}

.ds-classification {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ds-cls-line {
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.ds-cls-tag {
  font-family: 'Inter', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--secondary);
  text-transform: uppercase;
}

.ds-cls-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ds-cls-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  opacity: 0.5;
  flex-shrink: 0;
  animation: dsDotPulse 3s ease-in-out infinite;
}

@keyframes dsDotPulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 12px var(--secondary);
  }
}

/* â”€â”€ Name block â€” the visual anchor â”€â”€ */
.ds-nameblock {
  flex-shrink: 0;
}

.ds-name {
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.85;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  color: #fff;
  /* First word white, second shifts slightly to create rhythm */
}

.ds-name__first {
  display: block;
  color: #fff;
}

.ds-name__last {
  display: block;
  /* Slight indent to create staircase tension */
  padding-left: 0.12em;
  /* Use transparent stroke + fill for premium type effect */
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  color: transparent;
  transition: color 0.8s ease, -webkit-text-stroke 0.8s ease;
}

.founder-section:hover .ds-name__last {
  color: #fff;
  -webkit-text-stroke: 1px transparent;
}

.ds-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
  padding-left: 0.12em;
}

/* â”€â”€ Dossier entries â€” the bio as a classified file â”€â”€ */
.ds-entries {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 4vh 0;
}

.ds-entry {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.4s ease;
}

.ds-entry:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ds-entry:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.ds-entry__code {
  font-family: 'Inter', monospace;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--secondary);
  text-transform: uppercase;
  padding-top: 3px;
  opacity: 0.8;
}

.ds-entry__body p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #888;
  font-weight: 400;
  transition: color 0.4s ease;
}

.ds-entry:hover .ds-entry__body p {
  color: #aaa;
}

.ds-entry__body p strong {
  color: #ddd;
  font-weight: 600;
}

/* â”€â”€ Bottom base bar â”€â”€ */
.ds-base {
  flex-shrink: 0;
}

.ds-base__rule {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.ds-base__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ds-base__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ds-base__year,
.ds-base__loc {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ds-base__sep {
  color: var(--text-muted);
  opacity: 0.4;
  font-size: 0.8rem;
}

.ds-base__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* CTAs */
.ds-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.ds-cta--primary {
  padding: 12px 28px;
  background: #fff;
  color: #000;
}

.ds-cta--primary svg {
  transition: transform 0.3s ease;
}

.ds-cta--primary:hover {
  background: var(--secondary);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 209, 255, 0.25);
}

.ds-cta--primary:hover svg {
  transform: translate(2px, -2px);
}

.ds-cta--ghost {
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

.ds-cta--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .ds-cls-dot {
    animation: none;
  }

  .ds-portrait__img,
  .ds-name__last,
  .ds-entry__body p,
  .ds-cta {
    transition: none;
  }
}

/* ── Responsive ── */

/* Tablet: collapse portrait behind, full-width panel */
@media (max-width: 1024px) {
  .founder-section {
    min-height: auto;
    display: grid !important;
    grid-template-columns: 1fr;
    background: #050505;
    padding: 48px 24px;
    gap: 0;
  }

  .ds-portrait {
    position: relative;
    inset: auto;
    width: 100%;
    height: 70vw;
    max-height: 400px;
    order: 3;
    /* Image after name */
    margin: 40px 0;
  }

  .ds-portrait__vignette {
    background:
      linear-gradient(to top, #050505 0%, transparent 40%),
      linear-gradient(to bottom, #050505 0%, transparent 20%);
  }

  .ds-panel {
    display: contents;
    /* Allow internal items to be reordered in the section grid */
  }

  .ds-header {
    order: 1;
    margin-bottom: 24px;
    text-align: center;
  }

  .ds-classification {
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
  }

  .ds-classification__num,
  .ds-classification__label {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
  }

  .ds-header-title {
    font-size: 1.4rem !important;
    letter-spacing: 0.15em !important;
    margin-top: 8px !important;
  }

  .ds-nameblock {
    display: contents;
  }

  .ds-name {
    order: 2;
    text-align: center;
    font-size: clamp(1.8rem, 7.5vw, 2.8rem) !important;
    margin-bottom: 12px;
    white-space: nowrap !important;
    letter-spacing: -0.02em !important;
  }

  .ds-name__first,
  .ds-name__last {
    display: inline !important;
    padding: 0;
  }

  .ds-name__last {
    -webkit-text-stroke: 0;
    color: #fff;
  }

  .ds-portrait {
    position: relative;
    inset: auto;
    width: 100%;
    height: 70vw;
    max-height: 400px;
    order: 3;
    margin: 32px 0 16px;
  }

  .ds-role {
    order: 4;
    text-align: center;
    padding: 0;
    margin-bottom: 40px;
    font-size: 0.8rem;
    color: var(--secondary);
  }

  .ds-entries {
    order: 5;
    padding: 20px 0;
  }

  .ds-base {
    order: 6;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .ds-portrait {
    height: 70vw;
    max-height: 360px;
  }

  .ds-panel {
    padding: 32px 24px 48px;
    gap: 32px;
  }

  .ds-name {
    font-size: clamp(2.8rem, 15vw, 5rem);
  }

  .ds-entry {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 20px 0;
  }

  .ds-base__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .ds-base__ctas {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .ds-cta {
    width: 100%;
    justify-content: center;
  }
}

/* --- MOBILE OPTIMIZATION --- */

/* Hero Background Mobile Adjustment */
@media (max-width: 1023px) {
  .hero-video {
    object-position: center 20% !important;
    transform-origin: center top !important;
  }
}

/* Horizontal Slider for Cards on Mobile & Tablet (< 1024px) */
@media (max-width: 1023px) {

  /* Inline swipe indicators directly on the cards */
  /* Common swipe hint moved just below the cards */
  .works-section .container,
  .advantages-section .container {
    position: relative;
    padding-bottom: 2.5rem !important;
  }

  .works-section .container::after,
  .advantages-section .container::after {
    content: '\2190  SWIPE  \2192';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--secondary);
    white-space: nowrap;
    pointer-events: none;
    animation: commonSwipeHint 2.5s ease-in-out infinite;
    z-index: 10;
  }

  .slice-diagnostic {
    position: relative;
    padding-bottom: 3.5rem !important;
  }

  .slice-diagnostic::after {
    content: '\2190  SWIPE  \2192';
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--secondary);
    white-space: nowrap;
    pointer-events: none;
    animation: commonSwipeHint 2.5s ease-in-out infinite;
    z-index: 10;
  }

  .trust-badges-row {
    position: relative;
    margin-top: 3.5rem !important; /* Space for swipe text above badges */
  }

  .trust-badges-row::before {
    content: '\2190  SWIPE  \2192';
    position: absolute;
    top: -2rem; /* Sits precisely between slider and badges */
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--secondary);
    white-space: nowrap;
    pointer-events: none;
    animation: commonSwipeHint 2.5s ease-in-out infinite;
    z-index: 10;
  }

  .services-grid,
  .projects-rail {
    position: relative;
    /* Essential for indicator positioning */
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    scroll-behavior: smooth;
    gap: 20px !important;
    margin-left: -24px !important;
    margin-right: -24px !important;
    padding: 20px 24px 24px !important; /* Fixed huge gap below cards */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .services-grid::-webkit-scrollbar,
  .projects-rail::-webkit-scrollbar {
    display: none;
  }

  .service-card,
  .project-block {
    flex: 0 0 75vw !important;
    min-width: 75vw !important;
    scroll-snap-align: center;
    display: flex !important;
    flex-direction: column !important;
    padding: 32px 24px !important;
    text-align: center;
    min-width: 0;
    height: auto !important;
    overflow: visible !important;
  }

  /* Prevent section from cropping the slider's overflow */
  .services-section,
  .works-section {
    overflow: visible !important;
  }

  /* Increase tap target for interactive elements inside cards */
  .service-card a,
  .service-card button,
  .project-block a,
  .project-block button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}



/* Card Animation (Right to Left Slide) */
.reveal-card:not(.reveal-left):not(.reveal-right):not(.reveal-scale) {
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.reveal-card:not(.reveal-left):not(.reveal-right):not(.reveal-scale).visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 10. CONTACT SECTION & LEAD GEN FORM */
.contact-section {
  padding: 10rem 0;
  background-color: #000;
  position: relative;
}

.contact-header {
  text-align: center !important;
  margin-bottom: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.growth-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.input-group input {
  width: 100%;
  padding: 1.2rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  border-radius: 0;
}

.input-group input:focus {
  outline: none;
  border-bottom-color: var(--secondary);
  background: rgba(255, 255, 255, 0.02);
  padding-left: 1rem;
}

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

.form-footer {
  margin-top: 3rem;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
}

.btn-cyan {
  background: var(--secondary) !important;
  border: none;
  color: #000 !important;
  font-weight: 800;
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  box-shadow: 0 10px 30px rgba(0, 209, 255, 0.3);
  border-radius: 8px;
  width: fit-content !important;
}

.btn-cyan:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 15px 40px rgba(0, 209, 255, 0.5);
}

.micro-copy {
  margin-top: 1.5rem;
  color: var(--text-dim);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-align: center !important;
}

.form-success-msg {
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeIn 0.5s ease-out;
}

.form-success-msg.hidden {
  display: none;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 209, 255, 0.1);
  border: 2px solid var(--secondary);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 2rem;
  box-shadow: 0 0 30px rgba(0, 209, 255, 0.2);
}

.form-success-msg h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(to bottom, #fff, #888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

  .contact-section {
    padding: 6rem 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.hidden {
  display: none !important;
}

/* 7. FOOTER - Modern Grid System */
.footer {
  background-color: transparent;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
  margin-bottom: 60px;
}

@media (min-width: 1024px) {
  .footer-grid {
    flex-direction: row;
    justify-content: center;
    /* Move closer to each other */
    gap: 150px;
    /* Controlled space between the two sides */
    align-items: center;
    text-align: center;
  }
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
}

@media (min-width: 1024px) {
  .footer-info {
    align-items: center;
    /* Center internal content */
    max-width: 450px;
    text-align: center;
  }
}

.footer-logo {
  justify-content: center;
}

.footer-social {
  justify-content: center;
}

.system-status {
  justify-content: center;
}

.footer-nav-wrapper {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .footer-nav-wrapper {
    gap: 80px;
    justify-content: center;
    flex: 1;
  }

  .footer-right-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center internal content */
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .footer-nav-wrapper {
    gap: 40px;
  }
}

.footer-logo {
  margin-bottom: 24px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-desc {
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.footer-nav h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: var(--text-dim);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--secondary);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.social-link:hover {
  transform: translateY(-4px);
}

.social-link img {
  width: 36px;
  /* Slightly larger to account for padding */
  height: 36px;
  object-fit: contain;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.05));
}

.social-link:hover img {
  transform: scale(1.1);
  border-color: var(--secondary);
  background: rgba(0, 209, 255, 0.05);
  filter: drop-shadow(0 0 15px var(--secondary-glow)) brightness(1.1);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.legal-links {
  display: flex;
  gap: 24px;
}

.system-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 24px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}




/* 8. AI CHATBOT - Premium Glassmorphism */
.chatbot-toggle {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 100px;
  box-shadow: 0 10px 30px var(--primary-glow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbot-toggle:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 15px 40px var(--primary-glow);
}

.chatbot-text {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.chatbot-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  animation: pulseChat 2s infinite;
}

@keyframes pulseChat {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.chatbot-window {
  position: fixed;
  bottom: 100px;
  right: 32px;
  width: min(380px, calc(100vw - 40px));
  height: min(500px, calc(100vh - 150px));
  background: rgba(12, 12, 12, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.chatbot-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.status-dot-active {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff88;
}

.chatbot-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.chatbot-close:hover {
  color: #fff;
}

.chatbot-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.chatbot-body::-webkit-scrollbar {
  width: 4px;
}

.chatbot-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.chat-msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.bot-msg {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.05);
  color: #eee;
  border-bottom-left-radius: 4px;
}

.user-msg {
  align-self: flex-end;
  background: var(--primary);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.wa-reply-logo {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  width: 18px;
  height: 18px;
}

.chatbot-footer {
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  gap: 12px;
}

#chatInput {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 16px;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
}

#chatInput:focus {
  border-color: var(--secondary);
}

#chatSend {
  background: var(--secondary);
  color: #000;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

#chatSend:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--secondary-glow);
}

@media (max-width: 480px) {
  .chatbot-toggle {
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
  }

  .chatbot-window {
    bottom: 80px;
    right: 20px;
    width: calc(100vw - 40px);
  }
}

/* MOBILE PROJECT IMAGE FIX - FORCED SPECIFICITY */
@media (max-width: 767px) {
  .projects-rail {
    display: flex !important;
    overflow-x: auto !important;
    gap: 1.25rem !important;
    padding: 20px 24px 24px !important; /* Fixed huge gap below cards */
    scroll-snap-type: x mandatory !important;
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
  }

  .projects-rail::-webkit-scrollbar {
    display: none !important;
  }

  .project-block {
    min-width: 75vw !important;
    flex: 0 0 75vw !important;
    scroll-snap-align: center !important;
    min-height: 24rem !important;
    border-radius: 2rem !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    background: #0d0d12 !important;
    /* Base color match */
  }

  .project-skin {
    flex: none !important;
    height: 220px !important;
    width: 100% !important;
    position: relative !important;
    background-color: #0c0c12 !important;
    overflow: hidden !important;
  }

  .project-skin::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 24px !important;
    left: 20px !important;
    right: 20px !important;
    bottom: 0 !important;
    border-radius: 1.5rem 1.5rem 0 0 !important;
    z-index: 1 !important;
    opacity: 1 !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }

  .project-overlay {
    flex: 1 !important;
    margin-top: 0 !important;
    padding: 1.5rem 1.25rem !important;
    background: rgba(10, 10, 15, 0.95) !important;
    /* Slightly more opaque */
    -webkit-backdrop-filter: blur(15px) !important;
    backdrop-filter: blur(15px) !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 2 !important;
  }

  .project-name {
    font-size: 1.35rem !important;
    margin-bottom: 0.5rem !important;
  }

  .project-result {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1rem !important;
  }
}