/* ═══════════════════════════════════════════════════
   NAR GLOBAL MEDYA — Design System
   Inspired by Razorpay Sprint 26 design language
   ═══════════════════════════════════════════════════ */

/* ─── CSS Variables (Design Tokens) ─── */
:root {
  /* Primary Colors — deep pomegranate (Sprint-style saturated) */
  --nar-red: #C41E3A;
  --nar-deep: #9E1B32;
  --nar-glow: #E2264D;

  /* Neutrals */
  --black: #0A0A0A;
  --dark: #151515;
  --dark-2: #1A1A1A;
  --grey-dark: #2c2c2c;
  --grey: #787878;
  --grey-light: #8a8a8a;
  --grey-lighter: #b8cbd1;
  --white: #ffffff;
  --off-white: #f0f0f0;
  --light-bg: #ededed;

  /* Section accent colors */
  --section-accent: #C41E3A;
  --section-accent-text: #E98A99;
  --section-accent-muted: #5b5b5b;

  /* Spacing */
  --site-margin: 66px;
  --section-pad: 110px;
  --section-pad-sm: 60px;
  --card-gap: 12px;
  --stack-overlap: 80px;

  /* Theme Dynamic Accent Glow */
  --section-glow-bg: radial-gradient(circle at 50% 50%, rgba(196, 30, 58, 0.08) 0%, transparent 70%);

  /* Typography */
  --font-display: 'Space Grotesk', Arial, sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html {
  height: 100%;
  background: var(--black);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  color: var(--white);
  background-color: var(--dark-2);
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1.35rem;
  min-height: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ─── Selection ─── */
::selection {
  background: var(--nar-red);
  color: var(--white);
}

/* ═══════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════ */
.navigation-wrapper {
  z-index: 99;
  background-color: var(--dark);
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
}

.navigation-content {
  width: 100%;
}

.navbar-menu {
  background-color: var(--dark);
  display: flex;
  width: 100%;
}

.nav-item {
  text-align: center;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  text-decoration: none;
  transition: background-color 0.3s ease;
  min-height: 48px;
}

.nav-item.nav-logo-item {
  flex: 0 0 auto;
  padding: 0 20px;
  border-right: 0.5px solid rgba(255,255,255,0.2);
}

.nav-border {
  border-left: 0.5px solid rgba(255,255,255,0.15);
  border-right: 0.5px solid rgba(255,255,255,0.15);
  border-top: 0.5px solid rgba(255,255,255,0.15);
  border-bottom: 0.5px solid rgba(255,255,255,0.15);
}

.nav-border-r {
  border-top: 0.5px solid rgba(255,255,255,0.15);
  border-bottom: 0.5px solid rgba(255,255,255,0.15);
  border-left: 0.5px solid rgba(255,255,255,0.15);
}

.nav-item.is-active {
  background-color: var(--nar-red) !important;
}

.nav-text {
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 0 12px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
}

.nav-logo-dot {
  color: var(--nar-red);
}

/* Mobile Nav */
.navbar-mobile {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 56px;
  background: var(--dark);
}

.burger-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
}

.burger-close {
  display: none;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--dark);
  padding: 10px 20px 30px;
  position: absolute;
  top: 56px;
  left: 0;
  width: 100%;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu-link {
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  padding: 16px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
  text-decoration: none;
}

/* Fixed CTA */
.fixed-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
}

.fixed-cta-link {
  background: var(--nar-red);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 24px rgba(196, 30, 58, 0.3);
}

.fixed-cta-link:hover {
  background: var(--nar-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196, 30, 58, 0.4);
}

/* ═══════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════ */
.hero-section {
  width: 100%;
  min-height: 100vh;
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100vh - 100px);
  min-height: 620px;
  padding: 40px 0 60px;
  overflow: hidden;
}

.hero-text-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.hero-row-1 {
  display: flex;
  flex-direction: row;
  gap: 0;
  padding: 0 var(--site-margin);
}

.hero-title-group {
  display: flex;
  flex-direction: column;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -6px;
  color: var(--white);
  opacity: 0;
}

.hero-body {
  color: var(--white);
  align-self: flex-end;
  max-width: 450px;
  padding: 0 0 20px 40px;
  font-size: 1.125rem;
  font-weight: 200;
  line-height: 1.35;
  opacity: 0;
}

.hero-body strong {
  font-weight: 600;
  color: var(--nar-glow);
}

/* Ticker */
.hero-ticker-wrapper {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  height: 80px;
  display: flex;
  align-items: center;
  opacity: 0;
  margin: auto 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 35s linear infinite;
  gap: 0;
  align-items: center;
}

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

.ticker-item {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--white);
  white-space: nowrap;
  padding: 0 24px;
}

.ticker-sep {
  color: var(--nar-red);
  font-size: 0.6rem;
  padding: 0 8px;
}

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

/* ─── Ticker visual cards (Sprint-style scrolling boxes) ─── */
.ticker-track-cards { gap: 0; }
.hero-ticker-wrapper:has(.ticker-track-cards) {
  height: auto;
  padding: 22px 0;
}
.ticker-card {
  flex: none;
  width: clamp(360px, 26vw, 470px);
  margin-right: 20px;
  background: #121218;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--nar-red);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.ticker-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
}
.ticker-who { display: flex; align-items: center; gap: 12px; }
.ticker-ava {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--nar-red);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  flex: none;
}
.ticker-who b { display: block; font-size: 0.88rem; color: var(--white); font-weight: 600; }
.ticker-who small { font-size: 0.74rem; color: var(--grey-light); }
.ticker-card-stat {
  width: clamp(220px, 16vw, 300px);
  align-items: flex-start;
  gap: 8px;
}
.ticker-card-stat b {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 800;
  color: var(--nar-red);
  line-height: 1;
}
.ticker-card-stat span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--grey-light);
}

/* breathing room between FAQ (08) and contact (09) */
#sss .section-container {
  padding-bottom: clamp(90px, 10vw, 160px);
}

/* animated video card visual */
.card-visual-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Bottom */
.hero-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  padding: 0 var(--site-margin);
  border-top: 0.4px solid rgba(255,255,255,0.2);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -4px;
  color: var(--white);
  opacity: 0;
}

.hero-subtitle-accent {
  color: var(--nar-red);
}

.hero-body-2 {
  display: none;
  color: var(--white);
  max-width: 400px;
  padding: 20px var(--site-margin) 0;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4;
  opacity: 0;
}

.hero-body-2 strong {
  font-weight: 600;
  color: var(--nar-glow);
}

/* ─── Hero interactive collage stage (DÜZELT key) ─── */
@font-face {
  font-family: 'Doto';
  src: url('assets/fonts/doto-latin-wght-normal.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131;
}
@font-face {
  font-family: 'Doto';
  src: url('assets/fonts/doto-latin-ext-wght-normal.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0100-024F, U+1E00-1EFF;
}

.hero-stage {
  position: absolute;
  right: var(--site-margin);
  top: 24px;
  width: clamp(380px, 34vw, 940px);
  z-index: 2;
  opacity: 0;
}
.hero-stage-img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.6));
  transition: opacity 0.4s ease;
}
.hero-stage-img.is-hidden {
  opacity: 0;
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-stage .key3d {
  position: absolute;
  bottom: -14px;
  right: 8px;
  background: #000;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 7px 0 #000, 0 10px 18px rgba(0, 0, 0, 0.5);
  transition: transform 0.09s ease, box-shadow 0.09s ease;
}
.hero-stage .key3d span {
  display: block;
  background: var(--nar-red);
  color: #fff;
  font-family: 'Doto', var(--font-mono);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.08em;
  padding: 12px 24px 10px;
  border-radius: 8px;
  border-top: 2px solid var(--nar-glow);
}
.hero-stage .key3d:active,
.hero-stage .key3d.is-pressed {
  transform: translateY(6px);
  box-shadow: 0 1px 0 #000, 0 2px 6px rgba(0, 0, 0, 0.5);
}
.hero-stage-hint {
  position: absolute;
  bottom: -8px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--grey);
  text-transform: uppercase;
}
@media (max-width: 1180px) {
  .hero-stage { display: none; }
}

/* ═══════════════════════════════════════════════════
   CONTENT SECTIONS — Common
   ═══════════════════════════════════════════════════ */
.content-section {
  position: relative;
  padding: var(--section-pad) 0 var(--section-pad-sm);
  overflow: hidden;
}

.stack-section {
  position: relative;
  margin-top: calc(-1 * var(--stack-overlap));
  overflow: hidden;
  will-change: transform;
}

.section-container {
  margin: 0 var(--site-margin);
}

/* Section Themes */
.section-dark {
  background-color: var(--black);
}

.section-dark-2 {
  background-color: var(--black);
}

.section-accent {
  background-color: var(--black);
}

.section-light {
  background-color: var(--black);
}

.section-light-2 {
  background-color: var(--black);
}

.section-footer {
  background: linear-gradient(180deg, var(--nar-deep) 0%, var(--black) 100%);
  padding-bottom: 40px;
}

/* ─── Section Headers ─── */
.section-header {
  display: grid;
  grid-template-columns: 0.5fr 1.25fr;
  gap: 12px 0;
  margin-bottom: 80px;
}

.section-header-marketplace {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}

.section-header-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-header-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: flex-start;
}

.section-number {
  color: var(--grey-light);
  font-family: var(--font-mono);
  font-size: 1rem;
  line-height: 140%;
  width: 330px;
}

.section-number-accent {
  color: rgba(255,255,255,0.6);
}

.section-number-dark {
  color: rgba(255,255,255,0.4);
}

.section-title {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 90%;
  letter-spacing: -0.9px;
}

.section-title-dark {
  color: var(--white);
}

.section-description {
  color: var(--grey);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.5px;
  max-width: 420px;
}

.section-desc-accent {
  color: rgba(255,255,255,0.5);
}

.section-desc-dark {
  color: rgba(255,255,255,0.5);
  max-width: 470px;
}

/* ─── CTA Buttons ─── */
.cta-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 12px;
}

.cta-btn-dark:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* ─── Leader Card ─── */
.leader-card {
  display: flex;
  gap: 56px;
  align-items: center;
  margin-bottom: 96px;
}

.leader-visual {
  width: 50%;
  aspect-ratio: 16/9;
  background: var(--grey-dark);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

/* Collage illustration leader — transparent cutout floating on dark */
.leader-visual.is-collage {
  width: 56%;
  aspect-ratio: 4/3;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
/* kill the legacy gray gradient overlay on collage leaders */
.leader-visual.is-collage::after,
.leader-visual.is-collage::before {
  display: none !important;
  content: none !important;
}
.leader-visual.is-collage .leader-img-bg {
  opacity: 1;
  object-fit: contain;
  filter: none;
}
.leader-visual.is-collage:hover .leader-img-bg {
  opacity: 1;
  transform: scale(1.02);
}
.collage-tag {
  position: absolute;
  bottom: 4px;
  left: 4px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--nar-glow);
}

.leader-visual-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--nar-red) 0%, var(--nar-deep) 50%, var(--dark) 100%);
  opacity: 0.8;
}

.leader-visual-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 2px;
  padding: 30%;
}

.grid-dot {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  justify-self: center;
  align-self: center;
  animation: pulse-dot 2s ease-in-out infinite;
  animation-delay: calc(var(--delay) * 0.2s);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.8); }
}

.leader-quote {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-text {
  color: var(--grey);
  font-size: 1.25rem;
  font-weight: 200;
  line-height: 130%;
  letter-spacing: -0.5px;
}

.quote-text-2 {
  color: var(--grey-light);
  font-size: 1.25rem;
  font-weight: 200;
  line-height: 130%;
  letter-spacing: -0.5px;
}

/* Sprint-style rich meta column beside the collage */
.leader-meta {
  width: 44%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.leader-statement {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.3vw, 2.15rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.6px;
  color: var(--white);
}
.leader-statement em { font-style: normal; color: var(--nar-red); }
.leader-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.leader-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.4vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.5px;
  color: var(--nar-red);
}
.leader-stat-num em {
  font-style: normal;
  font-size: 0.36em;
  color: var(--white);
  letter-spacing: 0;
  margin-left: 8px;
}
.leader-stat-label {
  font-size: 0.95rem;
  color: var(--grey-light);
  font-weight: 400;
}
.leader-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--white);
  width: fit-content;
  transition: gap 0.2s ease;
}
.leader-cta span { color: var(--nar-red); font-size: 1.1em; }
.leader-cta:hover { gap: 16px; }

@media (max-width: 900px) {
  .leader-meta { width: 100%; }
}

/* ═══════════════════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════════════════ */
.card-grid {
  display: grid;
  gap: var(--card-gap);
  margin-bottom: 80px;
}

.card-grid-2 {
  grid-template-columns: 1fr 1fr;
}

.card-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.card-grid-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

/* Card Visual */
.card-visual {
  aspect-ratio: 4/3;
  max-height: 320px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.card-visual-tall {
  aspect-ratio: 9/5;
  max-height: 340px;
}

.card-visual-light {
  background: var(--light-bg);
}

@media (hover: hover) {
  .card-visual:hover {
    transform: scale(1.03);
  }
}

.card-icon-wrapper {
  width: 64px;
  height: 64px;
  color: var(--nar-glow);
  margin-bottom: 16px;
}

.card-icon-dark {
  color: var(--nar-deep);
}

.card-icon {
  width: 100%;
  height: 100%;
}

.card-visual-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 60%;
  padding: 0 16px;
}

.code-line {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}

/* Card Content */
.card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-title-light {
  color: #e5ebff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 140%;
  width: 240px;
}

.card-title-dark {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 140%;
  width: 240px;
}

.card-body-light {
  color: var(--grey);
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  max-width: 320px;
}

.card-body-accent {
  color: rgba(255,255,255,0.45);
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  max-width: 320px;
}

.card-body-dark {
  color: var(--grey);
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  max-width: 320px;
}

/* CTA Variants */
.card-cta-accent {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.7);
  background: var(--nar-red);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  width: fit-content;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-cta-accent:hover {
  background: var(--nar-deep);
  color: var(--white);
}

.card-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--white);
  background: rgba(255,255,255,0.15);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  width: fit-content;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-cta-white:hover {
  background: rgba(255,255,255,0.3);
}

.card-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 5px 0;
  width: fit-content;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-cta-dark:hover {
  color: var(--nar-red);
}

/* ═══════════════════════════════════════════════════
   FOOTER / CONTACT
   ═══════════════════════════════════════════════════ */
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 120px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-number {
  color: rgba(255,255,255,0.5);
}

.footer-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -1.5px;
  color: var(--white);
}

.footer-desc {
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 140%;
  max-width: 400px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-input:focus {
  border-color: var(--nar-red);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23787878' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: var(--nar-red);
  color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0.5px solid rgba(255,255,255,0.15);
  padding-top: 32px;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--grey);
  font-weight: 300;
}

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

.footer-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--nar-red);
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════════════════
   WORD REVEAL ANIMATION (prepared for GSAP)
   ═══════════════════════════════════════════════════ */
[data-word-reveal] .word-inner {
  display: inline-block;
  opacity: 0.15;
  transition: opacity 0.3s;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 991px) {
  :root {
    --site-margin: 40px;
    --section-pad: 120px;
  }

  .navbar-menu {
    display: none;
  }

  .navbar-mobile {
    display: flex;
  }

  .hero-title {
    font-size: clamp(4rem, 10vw, 7rem);
    letter-spacing: -4px;
  }

  .hero-row-1 {
    flex-direction: column;
    gap: 20px;
  }

  .hero-body {
    align-self: flex-start;
    padding: 0;
    display: none;
  }

  .hero-body-2 {
    display: block;
  }

  .hero-subtitle {
    font-size: clamp(2.5rem, 7vw, 5rem);
    letter-spacing: -2px;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-header-marketplace {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .card-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .card-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .leader-card {
    flex-direction: column;
  }

  .leader-visual,
  .leader-quote {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --site-margin: 20px;
    --section-pad: 80px;
    --section-pad-sm: 60px;
    --stack-overlap: 0px;
  }

  .stack-section {
    margin-top: 0;
    will-change: auto;
  }

  .hero-title {
    font-size: clamp(3rem, 14vw, 5rem);
    letter-spacing: -3px;
  }

  .hero-subtitle {
    font-size: clamp(2rem, 10vw, 3.5rem);
    letter-spacing: -1.5px;
  }

  .hero-ticker-wrapper {
    height: 60px;
  }

  .ticker-item {
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 0 16px;
  }

  .section-number {
    width: auto;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .card-grid-2,
  .card-grid-3,
  .card-grid-4 {
    grid-template-columns: 1fr;
  }

  .card-title-light,
  .card-title-dark {
    width: auto;
  }

  .fixed-cta {
    bottom: 16px;
    right: 16px;
  }

  .fixed-cta-link {
    padding: 10px 18px;
    font-size: 0.7rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

/* ═══════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }

  .grid-dot {
    animation: none;
  }

  .card-visual {
    transition: none;
  }

  [data-word-reveal] .word-inner {
    opacity: 1 !important;
  }

  .hero-title,
  .hero-body,
  .hero-ticker-wrapper,
  .hero-subtitle,
  .hero-body-2 {
    opacity: 1 !important;
  }
}

/* ═══════════════════════════════════════════════════
   PHASE 2 — PREMIUM ENHANCEMENTS
   ═══════════════════════════════════════════════════ */

/* ─── Preloader ─── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -2px;
  opacity: 0;
  transform: translateY(10px);
  animation: preloader-fade 0.8s 0.2s ease forwards;
}

.preloader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: preloader-fade 0.5s 0.5s ease forwards;
}

.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--nar-red);
  border-radius: 2px;
  animation: preloader-fill 1.8s 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes preloader-fade {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes preloader-fill {
  to { width: 100%; }
}

/* ─── Scroll Progress Bar ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--nar-red), var(--nar-glow));
  z-index: 200;
  transition: width 0.1s linear;
}

/* ─── Hero Canvas Background ─── */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 1;
}

/* ─── Gradient Text ─── */
.gradient-text {
  background: linear-gradient(135deg, var(--white) 0%, var(--nar-glow) 50%, var(--nar-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Stats Section ─── */
.stats-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 60px var(--site-margin);
  background: var(--dark);
  border-top: 0.5px solid rgba(255,255,255,0.08);
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,45,85,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .stat-suffix {
  color: var(--nar-red);
  font-size: 0.7em;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--grey);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── Enhanced Card Visuals ─── */
.card-visual {
  background: linear-gradient(145deg, var(--grey-dark) 0%, #1e1e1e 100%);
  position: relative;
}

.card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(280px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--nar-red) 0%, transparent 80%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 6px;
  z-index: 1;
}

.card-visual:hover::after {
  opacity: 0.12;
}

.card-visual-light {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.card-visual-light::after {
  background: radial-gradient(280px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--nar-red) 0%, transparent 80%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 6px;
  z-index: 1;
}

.card-visual-light:hover::after {
  opacity: 0.12;
}

/* ─── Glow dot on card corners ─── */
.product-card-dark .card-visual::before {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 6px;
  height: 6px;
  background: var(--nar-red);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255,45,85,0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.product-card-dark .card-visual:hover::before {
  opacity: 1;
}

/* ─── Video Modal ─── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.video-modal-container {
  position: relative;
  z-index: 2;
  width: 80vw;
  max-width: 1000px;
  aspect-ratio: 16/9;
  background: var(--dark);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: scale(0.95);
  opacity: 0;
}

.video-modal.is-open .video-modal-container {
  transform: scale(1);
  opacity: 1;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  padding: 8px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.video-modal-close:hover {
  opacity: 1;
}

.video-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── Section Dot Pattern Backgrounds ─── */
.section-dark {
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 40px 40px;
}

.section-dark-2 {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.02) 1px, transparent 0),
    radial-gradient(circle at 20% 50%, rgba(196, 30, 58, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(196, 30, 58, 0.02) 0%, transparent 40%);
  background-size: 40px 40px, 100% 100%, 100% 100%;
}

/* ─── Enhanced Section Accent Bg ─── */
.section-accent {
  background-color: var(--black) !important;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0),
    var(--section-glow-bg);
  background-size: 40px 40px, 100% 100%;
}

/* ─── Noise texture overlay ─── */
.section-dark::after,
.section-dark-2::after,
.section-accent::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.section-container {
  position: relative;
  z-index: 1;
}

/* ─── Enhanced Hero Bottom Glow ─── */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 300px;
  background: radial-gradient(ellipse at center bottom, rgba(255,45,85,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ─── Leader Card Enhancement ─── */
.leader-visual {
  border: 0.5px solid rgba(255,255,255,0.08);
}

.leader-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--grey-dark), transparent);
  pointer-events: none;
}

/* ─── Enhanced Ticker ─── */
.hero-ticker-wrapper {
  background: rgba(255,255,255,0.02);
}

/* ─── Section Transition Glow Lines ─── */
.stack-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,45,85,0.3), transparent);
  z-index: 2;
}

/* ─── Form Enhancements ─── */
.form-input {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
  border-color: var(--nar-red);
  box-shadow: 0 0 0 3px rgba(255,45,85,0.1);
}

/* ─── Smooth page transitions ─── */
.content-section {
  transition: background-color 0.3s ease;
}

/* ─── Stats responsive ─── */
@media (max-width: 767px) {
  .stats-bar {
    flex-wrap: wrap;
    gap: 32px;
    padding: 40px var(--site-margin);
  }

  .stat-item {
    flex: 0 0 45%;
  }

  .video-modal-container {
    width: 95vw;
  }
}

/* ═══════════════════════════════════════════════════
   PHASE 3 — INTERACTIVE ENHANCEMENTS
   ═══════════════════════════════════════════════════ */

/* ─── Custom Cursor ─── */
.custom-cursor {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(196, 30, 58, 0.4);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
  will-change: top, left, width, height;
}

.custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--nar-red);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10001;
  will-change: top, left;
}

/* Cursor Hover states */
.custom-cursor.is-hovering {
  width: 50px;
  height: 50px;
  background-color: rgba(196, 30, 58, 0.1);
  border-color: var(--nar-red);
}

/* Hide cursor on mobile or touch devices */
@media (max-width: 991px) {
  .custom-cursor,
  .custom-cursor-dot {
    display: none !important;
  }
}

/* ─── Play Button Overlay ─── */
.leader-visual {
  cursor: pointer;
}

.play-btn-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: rgba(10, 10, 10, 0.4);
  transition: background 0.3s ease;
  z-index: 3;
}

.leader-visual:hover .play-btn-overlay {
  background: rgba(10, 10, 10, 0.2);
}

.play-btn-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.3s;
}

.leader-visual:hover .play-btn-circle {
  transform: scale(1.1);
  background-color: var(--nar-red);
  border-color: var(--nar-red);
  box-shadow: 0 0 20px rgba(196, 30, 58, 0.4);
}

.play-btn-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--white);
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  opacity: 0.8;
  transition: opacity 0.3s;
}

.leader-visual:hover .play-btn-text {
  opacity: 1;
}

/* ─── Details Modal ─── */
.details-modal-container {
  position: relative;
  z-index: 2;
  width: 90vw;
  max-width: 760px;
  background: rgba(20, 20, 20, 0.85);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: scale(0.95);
  opacity: 0;
  max-height: 85vh;
  overflow-y: auto;
}

.details-modal.is-open .details-modal-container {
  transform: scale(1);
  opacity: 1;
}

.details-modal-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.modal-header-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--nar-red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-top: 4px;
}

.modal-tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 4px;
}

.modal-tech-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
}

.modal-body-desc {
  font-size: 1rem;
  color: var(--grey);
  line-height: 150%;
}

.modal-features-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin-top: 10px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  padding-bottom: 8px;
}

.modal-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal-feature-item {
  font-size: 0.9rem;
  color: var(--white);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 130%;
}

.modal-feature-item svg {
  color: var(--nar-red);
  flex-shrink: 0;
  margin-top: 2px;
}

.modal-cta-box {
  margin-top: 16px;
  padding-top: 24px;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: flex-end;
}

/* ─── Portfolio Section ─── */
.portfolio-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 40px;
}

.portfolio-slider-container {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.portfolio-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.portfolio-card {
  flex: 0 0 calc(33.333% - 16px);
  background: rgba(255, 255, 255, 0.01);
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 30, 58, 0.3);
  background: rgba(255, 255, 255, 0.02);
}

.portfolio-visual {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1b1b1b, #0f0f0f);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}

.portfolio-visual-inner {
  width: 80%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.portfolio-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--nar-red);
  background: rgba(196, 30, 58, 0.1);
  border: 0.5px solid rgba(196, 30, 58, 0.2);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

/* Portfolio Mockups */
.portfolio-mockup {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.mockup-code {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--grey);
}

.mockup-ui {
  flex: 1;
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  background: #0f0f0f;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ui-bar {
  height: 4px;
  width: 30%;
  background: var(--nar-red);
  border-radius: 2px;
}

.ui-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ui-line {
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 1px;
}

/* E-Commerce Grid mockup */
.ui-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  height: 100%;
}

.ui-box {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 2px;
}

/* App Mockup phone frame */
.phone-frame {
  width: 80px;
  height: 140px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.2);
  background: #000;
  margin: 0 auto;
  position: relative;
  padding: 8px;
}

.phone-notch {
  width: 30px;
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 0 0 3px 3px;
  margin: -8px auto 8px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0f0f0f;
  border-radius: 6px;
  border: 0.5px solid rgba(255,255,255,0.08);
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.screen-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--nar-red);
  margin: 0 auto;
}

.portfolio-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.portfolio-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: -0.3px;
}

.portfolio-card-desc {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 140%;
  flex: 1;
}

.portfolio-techs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.tech-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--grey-lighter);
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  padding: 3px 6px;
  border-radius: 3px;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.8);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: var(--nar-red);
  border-color: var(--nar-red);
  box-shadow: 0 0 15px rgba(196, 30, 58, 0.4);
}

.slider-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: rgba(20, 20, 20, 0.3);
  border-color: rgba(255, 255, 255, 0.05);
}

.arrow-left {
  left: -22px;
}

.arrow-right {
  right: -22px;
}

/* Responsive slider */
@media (max-width: 991px) {
  .portfolio-card {
    flex: 0 0 calc(50% - 12px);
  }
  
  .arrow-left {
    left: -10px;
  }

  .arrow-right {
    right: -10px;
  }
}

@media (max-width: 767px) {
  .portfolio-card {
    flex: 0 0 100%;
  }

  .details-modal-container {
    padding: 30px 20px;
  }

  .modal-features-list {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════
   PHASE 4 — UI POLISH & GSAP MOBILE MENU
   ═══════════════════════════════════════════════════ */

/* ─── GSAP Fullscreen Mobile Menu ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 150;
  display: none; /* Controlled via JS (GSAP timeline toggles display) */
  padding: 0;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  opacity: 0;
  z-index: 1;
}

.mobile-menu-links {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 20px;
  padding: 40px;
}

.mobile-menu-link {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 12px;
  letter-spacing: -1.5px;
  border: none;
  padding: 8px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: color 0.3s ease;
}

.mobile-menu-link:hover {
  color: var(--nar-red);
}

.mobile-menu-link .link-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--nar-red);
  font-weight: 400;
  letter-spacing: 0;
}

/* Z-index adjustments during menu open */
.navbar-mobile {
  position: relative;
  z-index: 160; /* Higher than full-screen mobile menu */
}

/* ─── Floating Label Form Groups ─── */
.form-container-relative {
  position: relative;
  width: 100%;
}

.form-group {
  position: relative;
  margin-bottom: 20px !important;
}

.form-group .form-input {
  padding: 22px 18px 8px; /* Room for floating labels */
  height: 54px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.form-group .form-textarea {
  height: auto;
  min-height: 120px;
}

/* Label base styling */
.form-label {
  position: absolute;
  left: 18px;
  top: 18px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: left top;
  line-height: 1;
}

/* Textarea label alignment adjustment */
.form-group textarea ~ .form-label {
  top: 18px;
}

/* Floating behavior */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label,
.form-select:focus ~ .form-label,
.form-select:valid ~ .form-label {
  transform: translateY(-12px) scale(0.75);
  color: var(--nar-red);
}

/* Adjust select input styling specifically */
.form-select {
  padding-top: 22px !important;
}

.form-select option {
  background: var(--dark);
  color: var(--white);
}

/* ─── Form Validation States ─── */
.validation-indicator {
  position: absolute;
  right: 18px;
  top: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
}

.validation-indicator::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

/* Valid Indicator */
.form-input:valid:not(:placeholder-shown) ~ .validation-indicator::after,
.form-select:valid ~ .validation-indicator::after {
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

/* Invalid Indicator */
.form-input:invalid:not(:placeholder-shown):not(:focus) ~ .validation-indicator::after {
  background: var(--nar-red);
  box-shadow: 0 0 8px var(--nar-red);
}

/* Show indicators only when filled */
.form-input:not(:placeholder-shown) ~ .validation-indicator,
.form-select:valid ~ .validation-indicator {
  opacity: 1;
}

/* ─── Glassmorphic Success Overlay ─── */
.form-success-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.9);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-success-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.success-card {
  text-align: center;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 380px;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-success-overlay.is-visible .success-card {
  transform: scale(1);
}

.success-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #22c55e;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #22c55e;
  margin-bottom: 8px;
  background: rgba(34, 197, 94, 0.1);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}

.success-desc {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 140%;
}

.success-close-btn {
  margin-top: 12px;
  max-width: 120px;
  padding: 10px 16px;
  font-size: 0.75rem;
  border-radius: 4px;
  background: var(--white);
  color: var(--black);
}

.success-close-btn:hover {
  background: var(--nar-red);
  color: var(--white);
}

/* Confetti particles for success popup */
.success-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  pointer-events: none;
  z-index: 12;
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════════
   PHASE 5 — THEME CUSTOMIZER, TESTIMONIALS & FAQ
   ═══════════════════════════════════════════════════ */

/* ─── Accent Color Customizer Widget ─── */
.color-customizer {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
}

.customizer-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.85);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.customizer-toggle:hover {
  border-color: var(--nar-red);
  transform: rotate(45deg);
}

.customizer-panel {
  background: rgba(20, 20, 20, 0.9);
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.color-customizer.is-active .customizer-panel {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.customizer-title {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--grey);
  text-align: center;
}

.color-options {
  display: flex;
  gap: 8px;
}

.color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
  padding: 0;
}

.color-dot:hover {
  transform: scale(1.2);
}

.color-dot.is-active {
  border-color: var(--white);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* ─── Testimonials Slider ─── */
.testimonials-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 40px;
}

.testimonials-slider-container {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.testimonials-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: rgba(255, 255, 255, 0.02);
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 30, 58, 0.3);
  background: rgba(255, 255, 255, 0.03);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(196, 30, 58, 0.1);
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  color: var(--nar-red);
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--grey-lighter);
  line-height: 150%;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.author-title {
  font-size: 0.75rem;
  color: var(--grey);
}

/* ─── FAQ Accordion (Smooth Grid Heights) ─── */
.faq-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

.faq-card {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
  border-color: var(--nar-red);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  text-align: left;
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.3px;
  padding-right: 20px;
  transition: color 0.3s ease;
}

.faq-card:hover .faq-question {
  color: var(--nar-red);
}

.faq-icon-wrapper {
  color: var(--grey);
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.faq-card:hover .faq-icon-wrapper {
  color: var(--nar-red);
}

.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-card.is-open .faq-answer-wrapper {
  grid-template-rows: 1fr;
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 24px 24px;
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 150%;
}

.faq-answer p strong {
  color: var(--white);
  font-weight: 600;
}

/* ─── Responsive Adjustments ─── */
@media (max-width: 991px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 767px) {
  .testimonial-card {
    flex: 0 0 100%;
  }

  .color-customizer {
    bottom: 16px;
    left: 16px;
    display: none; /* Hide customizer panel on mobile/tablet to avoid collision with cursor/cta */
  }
}

/* ═══════════════════════════════════════════════════
   PHASE 6 — SPOTLIGHT GLOWS & CUSTOM SCROLLBAR
   ═══════════════════════════════════════════════════ */

/* ─── Premium Scrollbar ─── */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid var(--black);
  border-radius: 99px;
  transition: background-color 0.3s;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--nar-red);
}

/* ─── Dynamic Spotlight Hover Glows ─── */
.portfolio-card {
  position: relative;
}

.portfolio-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--nar-red) 0%, transparent 80%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: inherit;
  z-index: 1;
}

.portfolio-card:hover::after {
  opacity: 0.12;
}

/* ═══════════════════════════════════════════════════
   PHASE 7 — MOCKUP ASSETS & ZOOM TRANSITIONS
   ═══════════════════════════════════════════════════ */

/* ─── Yazılım Leader Image ─── */
.leader-img-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 0;
}

.leader-visual:hover .leader-img-bg {
  opacity: 0.8;
  transform: scale(1.04);
}

/* ─── Portfolio Mockup Images ─── */
.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════════════════
   PHASE 8 — BRAND LOGOS & BESPOKE CARD ANIMATIONS
   ═══════════════════════════════════════════════════ */

/* ─── Ticker Brand Logos ─── */
.ticker-logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  color: var(--white);
  transition: color 0.3s, transform 0.3s;
  cursor: pointer;
}

.ticker-logo-group:hover {
  color: var(--nar-red);
  transform: translateY(-2px);
}

.ticker-logo-svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.ticker-brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.hero-ticker-wrapper {
  transition: border-color 0.3s, background 0.3s;
}

.hero-ticker-wrapper:hover {
  border-color: var(--nar-red);
  background: rgba(196, 30, 58, 0.01);
}

/* ─── CSS Keyframes for Cards ─── */
@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes card-rotate-3d {
  0% { transform: rotate3d(1, 1, 0, 0deg); }
  100% { transform: rotate3d(1, 1, 0, 360deg); }
}

@keyframes card-dash-flow {
  to { stroke-dashoffset: -24; }
}

@keyframes card-pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.95; }
}

@keyframes card-needle {
  0%, 100% { transform: rotate(-50deg); }
  40% { transform: rotate(45deg); }
  60% { transform: rotate(15deg); }
  85% { transform: rotate(35deg); }
}

@keyframes card-chart-rise-1 {
  0%, 100% { height: 24px; y: 52px; }
  50% { height: 44px; y: 32px; }
}
@keyframes card-chart-rise-2 {
  0%, 100% { height: 40px; y: 36px; }
  50% { height: 56px; y: 20px; }
}
@keyframes card-chart-rise-3 {
  0%, 100% { height: 28px; y: 48px; }
  50% { height: 48px; y: 28px; }
}

@keyframes card-ripple {
  0% { transform: scale(0.7); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ─── Card Visual Custom Elements ─── */
.card-visual-svg {
  width: clamp(130px, 10vw, 190px);
  height: clamp(90px, 7vw, 132px);
  color: var(--nar-glow);
  z-index: 2;
  transition: color 0.3s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: visible;
}

.product-card:hover .card-visual-svg {
  transform: scale(1.08) translateY(-3px);
  color: var(--white);
}

.product-card-light .card-visual-svg {
  color: var(--nar-deep);
}

.product-card-light:hover .card-visual-svg {
  color: var(--black);
}

/* ─── Specific Anim Triggers ─── */
.anim-float {
  animation: card-float 4.5s ease-in-out infinite;
}

.anim-rotate-3d {
  transform-style: preserve-3d;
  animation: card-rotate-3d 10s linear infinite;
}

.anim-dash {
  stroke-dasharray: 6, 6;
  animation: card-dash-flow 1.2s linear infinite;
}

.anim-pulse {
  animation: card-pulse 2.8s ease-in-out infinite;
}

.anim-needle {
  transform-origin: 50px 65px;
  animation: card-needle 6s ease-in-out infinite;
}

.anim-chart-bar-1 { animation: card-chart-rise-1 2.2s ease-in-out infinite alternate; }
.anim-chart-bar-2 { animation: card-chart-rise-2 1.8s ease-in-out infinite alternate; }
.anim-chart-bar-3 { animation: card-chart-rise-3 2.5s ease-in-out infinite alternate; }

.anim-ripple {
  transform-origin: center;
  animation: card-ripple 2.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}



/* ═══════════════════════════════════════════════════
   POLISH PASS — testimonial marquee, FAQ center, form
   ═══════════════════════════════════════════════════ */

/* — Müşteri Yorumları: seamless auto-loop — */
.testimonials-slider.is-marquee {
  width: max-content;
  animation: ticker 55s linear infinite;
}
.testimonials-slider-container:hover .testimonials-slider.is-marquee {
  animation-play-state: paused;
}
.testimonials-slider.is-marquee .testimonial-card {
  flex: none;
  width: clamp(380px, 30vw, 540px);
}
.is-marquee ~ .slider-arrow,
.testimonials-slider-wrapper .slider-arrow,
.testimonials-nav {
  display: none !important;
}

/* — SSS: ortalanmış başlık + içerik — */
#sss .section-header-marketplace {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
#sss .section-header-marketplace .section-header-left {
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
#sss .section-description {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto;
}
#sss .faq-accordion-container {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* — Projenizi Konuşalım: form kartı (ticker kart diliyle) — */
.form-container-relative {
  background: #121218;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--nar-red);
  border-radius: 14px;
  padding: clamp(28px, 3vw, 44px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
.form-group .form-input {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.form-group .form-input:hover {
  border-color: rgba(255, 255, 255, 0.26);
}
.form-group .form-input:focus {
  border-color: var(--nar-red);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.22);
  background: rgba(255, 255, 255, 0.06);
}
.form-textarea { min-height: 110px; }
.form-submit {
  background: var(--nar-red) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 9px !important;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 17px 24px !important;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 26px rgba(196, 30, 58, 0.35);
}
.form-submit:hover {
  background: var(--nar-glow) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(196, 30, 58, 0.45);
}
.form-submit:active { transform: translateY(1px); }

/* ═══════════════════════════════════════════════════
   POLISH PASS 2 — hero tiles, card text, typewriter
   ═══════════════════════════════════════════════════ */

/* — Hero scrolling VIDEO tiles (Sprint-style visuals) — */
.hero-tiles-wrapper { height: auto; padding: 18px 0; }
.ticker-track-tiles { gap: 0; }
.ticker-tile {
  flex: none;
  width: clamp(300px, 22vw, 380px);
  aspect-ratio: 16 / 9;
  margin-right: 18px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0d0d12;
}
.ticker-tile video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ticker-tile-label {
  position: absolute;
  left: 12px;
  bottom: 10px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(196, 30, 58, 0.92);
  padding: 4px 10px;
  border-radius: 4px;
}

/* — Service card text: bigger + brighter — */
.card-title-light,
.card-title-dark {
  font-size: clamp(1.15rem, 1.5vw, 1.4rem) !important;
  font-weight: 600 !important;
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.card-body-light,
.card-body-accent,
.card-body-dark {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem) !important;
  line-height: 1.55 !important;
  color: rgba(255, 255, 255, 0.62) !important;
}
.card-content { gap: 10px; }

/* — Section 07 marquee testimonials: always visible — */
.testimonials-slider.is-marquee .testimonial-card {
  opacity: 1 !important;
  transform: none !important;
}

/* — Hero bottom: line up, text down — */
.hero-bottom {
  padding-top: 26px;
  margin-top: 8px;
}

/* — Typewriter cursor — */
.tw-cursor {
  display: inline-block;
  color: var(--nar-red);
  font-weight: 400;
  margin-left: 2px;
  animation: tw-blink 1s steps(2, start) infinite;
}
@keyframes tw-blink { to { opacity: 0; } }

/* — Contact section decorative collage (dynamic, diagonal, edge-bleeding) — */
#iletisim { position: relative; overflow: hidden; min-height: auto; padding-bottom: 40px; }
#iletisim .section-container { position: static; }
#iletisim .footer-content {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
#iletisim .footer-content,
#iletisim .footer-bottom { position: relative; z-index: 2; }
/* real contact details under the description */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 30px;
  position: relative;
  z-index: 3;
}
.contact-detail {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  width: fit-content;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.contact-detail svg { color: var(--nar-red); flex: none; width: 18px; height: 18px; }
a.contact-detail:hover { color: #fff; }

/* decorative collage — small accent in the lower-left, below the contact details, bleeding off the bottom */
.contact-deco {
  position: absolute;
  z-index: 0;
  left: max(10px, calc(50% - 600px));
  bottom: -55px;
  right: auto;
  top: auto;
  width: clamp(220px, 18vw, 320px);
  margin: 0;
  pointer-events: none;
  filter: drop-shadow(0 26px 50px rgba(0, 0, 0, 0.55));
  animation: deco-float-rot 7s ease-in-out infinite;
}
@keyframes deco-float-rot {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(-12px); }
}
@media (max-width: 1100px) {
  .contact-deco { width: 200px; left: auto; right: -30px; bottom: -40px; }
}
@media (max-width: 760px) {
  .contact-deco { display: none; }
  #iletisim { padding-bottom: 40px; }
}

/* SSS decorative collage — BAŞLA button couple, right flank beside the accordion, bleeding off the edge */
#sss { position: relative; overflow: hidden; }
#sss .faq-accordion-container { position: relative; z-index: 2; }
.sss-deco {
  position: absolute;
  z-index: 0;
  right: -45px;
  top: 52%;
  width: clamp(300px, 24vw, 460px);
  pointer-events: none;
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.45));
  animation: sss-deco-float 8s ease-in-out infinite;
}
@keyframes sss-deco-float {
  0%, 100% { transform: translateY(-50%) rotate(6deg); }
  50% { transform: translateY(calc(-50% - 12px)) rotate(7.5deg); }
}
@media (max-width: 1600px) {
  .sss-deco { display: none; }
}
