/* ============================================================
   KECHUP LANDING PAGE – STYLE.CSS
   Primary: #c0392b (Red) | Accent: #e74c3c | Dark: #1a2231
   Font: Outfit (headings) + Nunito (body)
   ============================================================ */

:root {
  --red:       #ed1b24;
  --red-dark:  #96281b;
  --red-light: #e74c3c;
  --red-50:    #fff5f5;
  --red-100:   #ffe0e0;
  --yellow:    #f39c12;
  --yellow-50: #fffbf0;
  --green:     #27ae60;
  --green-50:  #f0fdf4;
  --blue:      #2980b9;
  --blue-50:   #eff6ff;
  --purple:    #8b5cf6;
  --purple-50: #f5f3ff;
  --orange:    #ea580c;
  --orange-50: #fff7ed;
  --teal:      #0d9488;
  --teal-50:   #f0fdfa;
  --gray-25:   #fcfcfd;
  --gray-50:   #f9fafb;
  --gray-100:  #f2f4f7;
  --gray-200:  #e4e7ec;
  --gray-300:  #d0d5dd;
  --gray-400:  #98a2b3;
  --gray-500:  #667085;
  --gray-600:  #475467;
  --gray-700:  #344054;
  --gray-800:  #1d2939;
  --gray-900:  #101828;
  --dark:      #1a2231;
  --white:     #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.12);
  --radius-sm: 0.5rem;
  --radius-md: 12px;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --radius-2xl: 2.5rem;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  /* Fluid root: 360px ekranda 13px → 1920px ekranda 17px → akıllı tahta 2560px'de max 18px */
  font-size: clamp(0.8125rem, 0.6vw + 0.675rem, 1.125rem);
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100%;
}

/* ── Section snap enter animation (desktop only) ── */
@media (min-width: 769px) {
  .snap-inner {
    opacity: 0;
    transition: opacity 0.8s ease;
    will-change: opacity;
  }
  .snap-section.snap-entered .snap-inner {
    opacity: 1;
  }
}

body {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.container {
  max-width: min(1200px, 94vw);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn svg { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192,57,43,.35);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--gray-100); color: var(--gray-900); }

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover { background: var(--red-50); }

.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--red-50);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,255,255,.3);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-lg { padding: 0.875rem 1.75rem; font-size: 1rem; border-radius: var(--radius-lg); }
.w-full { width: 100%; }

/* ── SECTION COMMONS ── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  background: var(--red-100);
  color: var(--red-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: 6.25rem;
  margin-bottom: 0.75rem;
}
.section-tag.white {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title.white { color: var(--white); }
.section-title.left { text-align: left; }
.section-desc {
  font-size: clamp(0.875rem, 1.1vw, 1.0625rem);
  color: var(--gray-500);
  max-width: min(600px, 90vw);
  margin: 0 auto;
  line-height: 1.7;
}
.section-desc.white { color: rgba(255,255,255,0.8); }

/* ================================================================
   NAVBAR
================================================================ */
.navbar .container { max-width: 100%; }
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none;
}
/* Dark section navbar (hero, features, footer) */
.navbar.nav-visible {
  opacity: 1;
  transform: translateY(0);
  background: rgba(15,25,35,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow: none;
  pointer-events: auto;
}
.navbar.nav-visible.scrolled {
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 2px 16px rgba(15,25,35,0.4);
}

/* Orange/red section navbar (features) */
.navbar.nav-visible.nav-orange {
  background: rgba(150,40,27,0.82);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 2px 16px rgba(100,20,10,0.4);
}

/* Light section navbar (journey, app-preview, about, testimonials) */
.navbar.nav-visible.nav-light {
  background: rgba(255,255,255,0.88);
  border-bottom-color: rgba(0,0,0,0.07);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.navbar.nav-visible.nav-light .nav-link {
  color: var(--gray-700);
}
.navbar.nav-visible.nav-light .nav-link:hover {
  background: var(--gray-100);
  color: var(--gray-900);
}
.navbar.nav-visible.nav-light .hamburger span {
  background: var(--gray-800);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 4.25rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 2.25rem; height: 2.25rem;
  background: var(--red);
  color: var(--white);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -1px;
}
.logo-mark.large { width: 3rem; height: 3rem; font-size: 1.625rem; border-radius: 0.875rem; }
.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--gray-900);
  letter-spacing: -0.03125rem;
}
.logo-text.large { font-size: 1.75rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-link {
  padding: 0.4375rem 0.875rem;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: all var(--transition);
}
.nav-link:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.btn-login {
  padding: 0.4375rem 1.125rem;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  background: #ed1b24;
  margin-left: 0.75rem;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-login:hover { background: #c8151d; transform: translateY(-1px); }
.nav-login-mobile { display: none; margin-left: auto; }
.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.3125rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.hamburger span {
  width: 1.375rem; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  display: block;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--gray-100);
  background: var(--white);
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: var(--gray-700);
  font-size: 1rem;
  transition: all var(--transition);
}
.mobile-link:hover { background: var(--gray-100); }
.btn-login-mobile { background: #ed1b24; color: #fff; font-weight: 700; margin-top: 0.25rem; }
.btn-login-mobile:hover { background: #c8151d; }
.mobile-actions { display: flex; flex-direction: column; gap: 0.625rem; margin-top: 0.75rem; }

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative;
  padding: 8.125rem 0 0;
  background:
    linear-gradient(145deg, rgba(10,17,28,0.55) 0%, rgba(18,30,50,0.50) 50%, rgba(10,17,28,0.55) 100%),
    url('background.webp') center / cover no-repeat;
  overflow: hidden;
  height: 100dvh;
  display: flex;
  align-items: center;
  scroll-snap-align: start;
}
.hero-grid-overlay { display: none; }
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 31.25rem; height: 31.25rem;
  background: radial-gradient(circle, rgba(237,27,36,0.18), transparent 70%);
  top: -6.25rem; right: 5%;
  animation: glow-pulse 6s ease-in-out infinite;
}
.hero-glow-2 {
  width: 25rem; height: 25rem;
  background: radial-gradient(circle, rgba(243,156,18,0.12), transparent 70%);
  bottom: 3.125rem; left: 5%;
  animation: glow-pulse 8s ease-in-out infinite 2s;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
  align-items: center;
  padding-bottom: 5rem;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4375rem 1rem;
  border-radius: 6.25rem;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
  animation: fade-up 0.6s ease both;
}
.badge-dot {
  width: 0.4375rem; height: 0.4375rem;
  background: #4ade80;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  50% { opacity: 0.5; box-shadow: 0 0 0 4px rgba(74,222,128,0); }
}
.hero-title {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.5rem;
  animation: fade-up 0.6s ease 0.1s both;
  letter-spacing: -0.03125rem;
}
.title-word {
  display: inline-block;
  padding-top: 0.15em;
  padding-bottom: 0.2em;
  margin-bottom: -0.22em;
  background: linear-gradient(90deg, #ffffff 0%, #f39c12 42%, #ed1b24 68%, #ffffff 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: title-wave 8s ease-in-out infinite;
}
.tw-2 { animation-delay: -2.67s; }
.tw-3 { animation-delay: -5.33s; }
@keyframes title-wave {
  0%   { background-position: 100% center; }
  50%  { background-position: 0% center; }
  100% { background-position: 100% center; }
}
.hero-desc {
  font-size: clamp(0.9rem, 1.1vw, 1.0625rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: min(460px, 90vw);
  animation: fade-up 0.6s ease 0.2s both;
}
.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
  animation: fade-up 0.6s ease 0.3s both;
}
.btn-hero-primary {
  background: linear-gradient(135deg, #ed1b24, #c0392b);
  color: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(237,27,36,0.35);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.8125rem 1.75rem;
  border-radius: 0.875rem;
  transition: all 0.25s ease;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(237,27,36,0.5);
}
.btn-hero-ghost {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.8125rem 1.75rem;
  border-radius: 0.875rem;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: fade-up 0.6s ease 0.4s both;
}
.stat { text-align: left; }
.stat-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: #ffffff;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.stat-divider {
  width: 1px;
  height: 2.25rem;
  background: rgba(255,255,255,0.12);
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HERO VISUAL CARDS ── */
.hero-visual-cards {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  padding: 1.25rem 0;
  animation: fade-up 0.7s ease 0.35s both;
}
.hero-center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 5rem;
  height: 5rem;
  background: #0f1923;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.hero-center-logo img {
  width: 3.75rem;
  height: auto;
  object-fit: contain;
}
.hcard {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 1.25rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.hcard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), transparent);
  pointer-events: none;
}
.hcard:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.hcard-1 { animation: fade-up 0.6s ease 0.5s both; }
.hcard-2 { animation: fade-up 0.6s ease 0.6s both; }
.hcard-3 { animation: fade-up 0.6s ease 0.65s both; }
.hcard-4 { animation: fade-up 0.6s ease 0.7s both; }
.hcard-icon {
  width: 3rem; height: 3rem;
  background: rgba(255,255,255,0.07);
  border-radius: 0.875rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hcard-icon svg { width: 1.375rem; height: 1.375rem; stroke: rgba(255,255,255,0.85); }
.hcard-body { flex: 1; min-width: 0; }
.hcard-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 3px;
}
.hcard-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.hcard-badge {
  font-size: 0.625rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, #f39c12, #ed1b24);
  color: #fff;
  padding: 3px 0.5rem;
  border-radius: 0.375rem;
  flex-shrink: 0;
  letter-spacing: 0.03125rem;
}

/* ================================================================
   SCREENSHOTS SECTION
================================================================ */
.screenshots { padding: 6rem 0; background: var(--white); }

/* ── Shared ss-row layout ── */
.ss-row {
  display: grid;
  align-items: center;
  gap: 3.5rem;
  margin-bottom: 5.5rem;
}
.ss-row:last-child { margin-bottom: 0; }

.ss-row-a { grid-template-columns: 1fr 1fr; }
.ss-row-b { grid-template-columns: 1fr; }
.ss-row-c { grid-template-columns: 1fr 1fr; }

/* ── Text block ── */
.ss-text { min-width: 0; }
.ss-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.3125rem 0.75rem;
  border-radius: 6.25rem;
  margin-bottom: 0.875rem;
}
.ss-tag.red    { background: #fff0ef; color: var(--red); }
.ss-tag.purple { background: #f5f3ff; color: var(--purple); }
.ss-text h3 {
  font-size: clamp(1.375rem, 3vw, 2.125rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 0.875rem;
}
.ss-text p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.ss-bullets { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.ss-bullets li {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.9375rem; color: var(--gray-700); font-weight: 500;
}
.ss-bullets span { color: var(--red); font-size: 0.75rem; }

/* ── DUO phone pair ── */
.ss-phones-duo {
  position: relative;
  height: 26.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.ss-phone { position: absolute; }
.phone-frame-modern.ss-size { width: 12.5rem; border-radius: 2.5rem; }
.ss-ph { height: 22.5rem; border-radius: 1.75rem; }
.ss-phone-back {
  bottom: 0; left: 2.5rem;
  transform: rotate(-6deg);
  z-index: 1;
  opacity: 0.85;
}
.ss-phone-front {
  bottom: 1.875rem; right: 2.5rem;
  transform: rotate(3deg);
  z-index: 2;
}
.ss-phones-duo.flipped .ss-phone-back  { left: auto; right: 2.5rem; transform: rotate(6deg); }
.ss-phones-duo.flipped .ss-phone-front { right: auto; left: 2.5rem; transform: rotate(-3deg); }

/* ── Triple phone row ── */
.ss-triple-wrap { display: flex; flex-direction: column; align-items: center; gap: 2.5rem; }
.ss-triple-phones {
  display: flex;
  align-items: flex-end;
  gap: 1.25rem;
  justify-content: center;
}
.ss-triple-phone { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.tp-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.phone-frame-modern.tp-size { width: 10.625rem; border-radius: 2.25rem; }
.phone-frame-modern.tp-main { width: 12.5rem; border-radius: 2.5rem; }
.tp-ph { height: 18.75rem; border-radius: 1.5rem; }
.phone-frame-modern.tp-main .tp-ph { height: 22.5rem; border-radius: 1.875rem; }
.tp-left  { transform: rotate(-5deg) translateY(20px); opacity: 0.88; }
.tp-right { transform: rotate(5deg)  translateY(20px); opacity: 0.88; }
.tp-center { z-index: 2; }

/* Caption row under triple */
.ss-triple-caption {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.cap-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.cap-dot {
  width: 0.625rem; height: 0.625rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.yellow-dot { background: var(--yellow); }
.green-dot  { background: var(--green); }
.blue-dot   { background: var(--blue); }
.cap-item strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gray-900);
}
.cap-item span { font-size: 0.8125rem; color: var(--gray-400); }
.wave-divider {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 3;
}
.wave-divider svg { width: 100%; height: auto; display: block; }

/* ================================================================
   TRUSTED BY
================================================================ */
.trusted {
  position: absolute;
  bottom: 1.75rem;
  left: 0; right: 0;
  padding: 1rem 0;
  z-index: 4;
  text-align: center;
}
.trusted-label {
  text-align: center;
  font-size: 0.5625rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.trust-item {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}
.trust-sep { color: rgba(255,255,255,0.25); font-size: 1rem; }

/* ================================================================
   APP PREVIEW
================================================================ */
.app-preview {
  background: var(--white);
  height: 100dvh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  scroll-snap-align: start;
}
/* ── Carousel wrapper ── */
.cs-carousel-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cs-track-outer {
  flex: 1;
  overflow: visible;
  display: flex;
  align-items: center;
  position: relative;
}
.cs-track-clip {
  flex: 1;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.cs-track {
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Each slide */
.cs-slide {
  min-width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.5rem;
}

.cs-slide-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

/* Left: text */
.cs-slide-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.cs-slide-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3125rem 0.875rem;
  border-radius: 6.25rem;
  width: fit-content;
}

.cs-slide-title {
  font-size: clamp(1.4rem, 2.5vw, 2.6rem);
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.03125rem;
}

.cs-slide-desc {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--gray-500);
  line-height: 1.75;
  margin: 0;
  max-width: min(400px, 90vw);
}

.cs-slide-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5625rem;
  margin: 0.25rem 0 0;
}
.cs-slide-feats li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  font-weight: 600;
}
.cs-feat-dot { width: 0.4375rem; height: 0.4375rem; border-radius: 50%; flex-shrink: 0; }

.cs-slide-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}
.cs-badge {
  background: var(--gray-100);
  color: var(--gray-600);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3125rem 0.75rem;
  border-radius: 6.25rem;
  letter-spacing: 0.02em;
}

/* Right: visual / mockup */
.cs-slide-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mockup frame */
.cs-mockup {
  width: 100%;
  max-width: 32.5rem;
  background: #12161f;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.22), 0 8px 24px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
}
.cs-mock-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0.875rem;
  background: #0d1018;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
}
.cs-mock-dots { display: flex; gap: 0.3125rem; }
.cs-mock-dots span { width: 0.5625rem; height: 0.5625rem; border-radius: 50%; }
.cs-mock-dots span:nth-child(1) { background: #ff5f57; }
.cs-mock-dots span:nth-child(2) { background: #ffbd2e; }
.cs-mock-dots span:nth-child(3) { background: #28c940; }
.cs-mock-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.03em;
}
.cs-mock-screen {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.cs-mock-art {
  height: 16.25rem;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.cs-mock-art svg { width: 100%; height: 100%; }
.cs-mock-player {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5625rem 0.875rem;
  background: rgba(0,0,0,0.32);
  backdrop-filter: blur(6px);
  flex-shrink: 0;
}
.cs-mock-play-icon {
  width: 1.75rem; height: 1.75rem;
  background: rgba(255,255,255,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cs-mock-progress {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  overflow: hidden;
}
.cs-mock-bar-fill { height: 100%; background: rgba(255,255,255,0.65); border-radius: 2px; }
.cs-mock-time { font-size: 0.625rem; color: rgba(255,255,255,0.45); font-family: 'Outfit', sans-serif; white-space: nowrap; }

/* Bottom navigation bar */
/* Platform label inside slides area */

/* Side arrow buttons */
.cs-side-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 1.5px solid var(--gray-200);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  color: var(--gray-700);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.cs-side-arrow:hover {
  background: #fff;
  box-shadow: 0 6px 28px rgba(0,0,0,0.18);
  transform: translateY(-50%) scale(1.08);
}
.cs-side-prev { left: 1.5rem; }
.cs-side-next { right: 1.5rem; }

.cs-platform-label {
  position: absolute;
  top: -4.5rem;
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.cs-bottom-bar {
  flex-shrink: 0;
  border-top: 1px solid var(--gray-100);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
}
.cs-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.cs-bottom-brand { display: flex; align-items: center; gap: 0.625rem; }
.cs-bottom-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: var(--red-100);
  color: var(--red-dark);
  padding: 3px 0.625rem;
  border-radius: 6.25rem;
}
.cs-bottom-name,
.cs-platform-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gray-700);
}
.cs-bar-arrow {
  display: none; /* sadece mobilde göster */
  align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--gray-100); border: none; cursor: pointer;
  color: var(--gray-700); flex-shrink: 0;
  transition: background 0.15s;
}
.cs-bar-arrow:hover { background: var(--gray-200); }
.cs-nav-group { display: flex; align-items: center; gap: 0.5rem; }
.cs-dots { display: flex; align-items: center; gap: 0.4375rem; }
.cs-dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
  flex-shrink: 0;
}
.cs-dot.active {
  background: var(--red);
  width: 1.5rem;
  border-radius: 0.25rem;
}
.cs-dot:hover:not(.active) { background: var(--gray-400); }
.cs-controls { display: flex; align-items: center; gap: 0.5rem; }
.cs-ctrl {
  width: 2.125rem; height: 2.125rem;
  border-radius: 0.5rem;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray-600);
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.cs-ctrl:hover { border-color: var(--red); color: var(--red); background: var(--red-50); }
.cs-counter {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gray-500);
  min-width: 2.75rem;
  text-align: center;
}

/* Keep color bg classes */
.cc-icon { width: 1.125rem; height: 1.125rem; }
.red-bg    { background: #fff0ef; } .red-bg .cc-icon    { color: var(--red); }
.yellow-bg { background: #fffbea; } .yellow-bg .cc-icon { color: var(--yellow); }
.green-bg  { background: #efffee; } .green-bg .cc-icon  { color: var(--green); }
.purple-bg { background: #f5f3ff; } .purple-bg .cc-icon { color: var(--purple); }
.orange-bg { background: #fff7ed; } .orange-bg .cc-icon { color: var(--orange); }
.teal-bg   { background: #f0fdfa; } .teal-bg .cc-icon   { color: var(--teal); }

/* ================================================================
   FEATURES
================================================================ */
.features {
  padding: clamp(2.5rem, 6vh, 5rem) 0;
  padding-top: clamp(7rem, 14vh, 10rem);
  position: relative;
  overflow: hidden;
  height: 100dvh;
  display: flex;
  align-items: center;
  scroll-snap-align: start;
}
.features-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #c0392b 0%, #96281b 50%, #7b241c 100%);
}
.features-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 1.75rem 1.75rem;
}
.features .container { position: relative; z-index: 1; width: 100%; }
.app-preview .container,
.about .container,
.testimonials .container { width: 100%; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.125rem;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.feature-card:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-4px);
}
.feat-icon {
  width: 2.5rem; height: 2.5rem;
  background: rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.feat-icon svg { width: 1.25rem; height: 1.25rem; color: var(--white); }
.feature-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.375rem;
}
.feature-card p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}

/* ================================================================
   ABOUT
================================================================ */
.about {
  padding: clamp(2.5rem, 6vh, 5rem) 0;
  background: var(--gray-50);
  height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  scroll-snap-align: start;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.about-visual { display: flex; justify-content: center; align-items: center; }

/* ── Bento grid ── */
.about-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
  width: min(23.75rem, 95vw);
}
.ab-card {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid #e8eaed;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}
.ab-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }

/* Main big card — col 1-2, row 1 */
.ab-main {
  grid-column: 1 / 3;
  grid-row: 1;
  padding: 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ab-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.375rem;
  font-weight: 900;
  color: #111;
  line-height: 1;
  margin-top: 0.625rem;
}
.ab-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #222;
  margin-top: 0.25rem;
}
.ab-sub { font-size: 0.75rem; color: #888; margin-top: 2px; }

/* Small cards */
.ab-sm {
  padding: 1.125rem 1rem;
  display: flex;
  flex-direction: column;
  min-height: 8.125rem;
}
.ab-sm-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}
.ab-sm-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-top: 0.3125rem;
}
.ab-red {
  grid-column: 3; grid-row: 1;
  background: #ed1b24;
  border-color: transparent;
}
.ab-dark {
  grid-column: 1; grid-row: 2;
  background: #1a1a2e;
  border-color: transparent;
}

/* Wide card — col 2-3, row 2 */
.ab-wide {
  grid-column: 2 / 4;
  grid-row: 2;
  padding: 1.125rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ab-wide-top { display: flex; align-items: center; gap: 0.75rem; }
.ab-wide-title { font-family: 'Outfit', sans-serif; font-size: 0.8125rem; font-weight: 700; color: #111; }
.ab-wide-sub { font-size: 0.6875rem; color: #888; margin-top: 2px; }
.ab-badges { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.ab-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.25rem 0.625rem; border-radius: 6.25rem;
  background: #f5f5f5; color: #444;
  border: 1px solid #e0e0e0;
}

/* Icon wraps */
.ab-icon-wrap {
  width: 2.375rem; height: 2.375rem; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ab-icon-red { background: #fff0ef; color: #ed1b24; }
.ab-icon-soft { background: #f5f5f5; color: #555; }
.about-content .section-tag { display: inline-block; margin-bottom: 0.75rem; }
.about-text {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-text strong { color: var(--gray-900); }
.about-vals { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.625rem; }
.val-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9375rem; color: var(--gray-700); font-weight: 500; }
.val-dot { width: 0.5rem; height: 0.5rem; background: var(--red); border-radius: 50%; flex-shrink: 0; }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials {
  padding: clamp(2.5rem, 6vh, 5rem) 0;
  background: var(--white);
  height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  scroll-snap-align: start;
}
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  transition: all var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testi-card.featured {
  background: var(--red);
  border-color: var(--red);
}
.testi-stars {
  font-size: 1rem;
  color: var(--yellow);
  margin-bottom: 0.875rem;
  letter-spacing: 2px;
}
.testi-text {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testi-card.featured .testi-text { color: rgba(255,255,255,.9); }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.testi-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.9375rem; color: var(--gray-900); }
.testi-card.featured .testi-name { color: var(--white); }
.testi-role { font-size: 0.75rem; color: var(--gray-400); }
.testi-card.featured .testi-role { color: rgba(255,255,255,.7); }

/* ================================================================
   FAQ
================================================================ */
.faq {
  padding: 2.5rem 0 3.75rem;
  padding-top: clamp(9rem, 18vh, 13rem);
  background: var(--gray-50);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  scroll-snap-align: start;
}
.faq .section-header { margin-bottom: 2rem; }
.faq-inner {
  display: grid;
  grid-template-columns: clamp(11.25rem, 18vw, 16.25rem) 1fr;
  gap: 3rem;
  align-items: center;
}
.faq-dino {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}
.faq-dino img {
  width: 13.75rem;
  max-height: 26.25rem;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
}
.faq-content { width: 100%; }
.faq-content .section-header { margin-bottom: 1.75rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item.open { border-color: var(--red-100); box-shadow: 0 4px 20px rgba(192,57,43,.08); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-900);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--red); }
.faq-item.open .faq-q { color: var(--red); }
.faq-arrow {
  width: 1.25rem; height: 1.25rem;
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform var(--transition);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--red); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}
.faq-a-inner {
  overflow: hidden;
  min-height: 0;
}
.faq-a p {
  padding: 0 1.25rem 1rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ================================================================
   CTA BAND
================================================================ */
.cta-band {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--dark) 0%, #2d3748 100%);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 1.5rem 1.5rem;
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.cta-content h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.375rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.625rem;
}
.cta-content p { font-size: 1rem; color: rgba(255,255,255,.65); }
.cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ================================================================
   CONTACT
================================================================ */
.contact { padding: 6rem 0; background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); border-color: var(--red-100); }
.contact-icon {
  width: 2.75rem; height: 2.75rem;
  background: var(--red-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 1.25rem; height: 1.25rem; color: var(--red); }
.ci-label { font-size: 0.75rem; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.ci-value { font-size: 0.9375rem; color: var(--gray-800); font-weight: 600; line-height: 1.5; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.6875rem 0.875rem;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: 'Nunito', sans-serif;
  font-size: 0.9375rem;
  color: var(--gray-900);
  transition: all var(--transition);
  outline: none;
  resize: vertical;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(192,57,43,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-success {
  display: none;
  align-items: center;
  gap: 0.625rem;
  background: var(--green-50);
  border: 1.5px solid #a7f3d0;
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  color: var(--green);
  font-weight: 600;
}
.form-success svg { width: 1.125rem; height: 1.125rem; color: var(--green); flex-shrink: 0; }
.form-success.visible { display: flex; }

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: var(--dark);
  padding: 4rem 0 0;
  color: rgba(255,255,255,.7);
  scroll-snap-align: start;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .nav-logo { margin-bottom: 0.875rem; }
.footer-brand .logo-text { color: var(--white); }
.footer-tagline { font-size: 0.875rem; line-height: 1.65; margin-bottom: 0.375rem; }
.footer-company { font-size: 0.75rem; color: rgba(255,255,255,.4); margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.625rem; }
.social-link {
  width: 2.25rem; height: 2.25rem;
  background: rgba(255,255,255,.08);
  border-radius: 0.5625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-link svg { width: 1rem; height: 1rem; color: rgba(255,255,255,.7); }
.social-link:hover { background: var(--red); }
.social-link:hover svg { color: var(--white); }
.footer-links-group { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links-group h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links-group a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links-group a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.badge-item {
  background: rgba(255,255,255,.07);
  border-radius: 6.25rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,.6);
}

/* ================================================================
   LOGIN MODAL
================================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  display: flex;
  overflow: hidden;
  width: 100%;
  max-width: 48.75rem;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform var(--transition);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 2.125rem; height: 2.125rem;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 5;
}
.modal-close svg { width: 1rem; height: 1rem; color: var(--gray-600); }
.modal-close:hover { background: var(--gray-200); }
.modal-left {
  width: 40%;
  background: linear-gradient(150deg, #c0392b, #96281b);
  padding: 3rem 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.modal-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 22px 22px;
}
.modal-left > * { position: relative; z-index: 1; }
.modal-brand { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 2rem; }
.modal-left h2 {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1.75rem;
}
.modal-perks { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; margin-top: auto; }
.modal-perks li { display: flex; align-items: center; gap: 0.625rem; font-size: 0.875rem; color: rgba(255,255,255,.9); font-weight: 500; }
.modal-perks li span { width: 1.25rem; height: 1.25rem; background: rgba(255,255,255,.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.6875rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
.modal-right { flex: 1; padding: 3rem 2.5rem; }
.modal-right h3 { font-size: 1.5rem; font-weight: 800; color: var(--gray-900); margin-bottom: 0.375rem; }
.modal-sub { font-size: 0.9375rem; color: var(--gray-500); margin-bottom: 1.75rem; }
.login-form { display: flex; flex-direction: column; gap: 1.125rem; }
.input-wrap { position: relative; }
.input-icon {
  position: absolute;
  left: 0.8125rem; top: 50%;
  transform: translateY(-50%);
  width: 1rem; height: 1rem;
  color: var(--gray-400);
  pointer-events: none;
}
.input-wrap input {
  width: 100%;
  padding: 0.6875rem 0.875rem 0.6875rem 2.5rem;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: 'Nunito', sans-serif;
  font-size: 0.9375rem;
  color: var(--gray-900);
  outline: none;
  transition: all var(--transition);
}
.input-wrap input:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(192,57,43,.1);
}
.toggle-pass {
  position: absolute;
  right: 0.75rem; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
.toggle-pass svg { width: 1.125rem; height: 1.125rem; color: var(--gray-400); display: block; }
.toggle-pass:hover svg { color: var(--gray-600); }
.forgot-link { font-size: 0.8125rem; color: var(--red); font-weight: 600; }
.forgot-link:hover { text-decoration: underline; }
.form-check { display: flex; align-items: center; }
.check-label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--gray-600); cursor: pointer; }
.check-label input { width: 1rem; height: 1rem; accent-color: var(--red); cursor: pointer; }
.login-btn { margin-top: 0.25rem; }
.login-error {
  display: none;
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #dc2626;
  font-weight: 500;
}
.login-error.visible { display: block; }
.modal-footer-text { text-align: center; font-size: 0.875rem; color: var(--gray-500); margin-top: 1.25rem; }
.modal-footer-text a { color: var(--red); font-weight: 600; }

/* ── LEGAL MODAL ── */
.legal-modal { flex-direction: column; max-width: 43.75rem; padding: 3rem; }
.legal-title { font-size: 1.625rem; font-weight: 800; color: var(--gray-900); margin-bottom: 1.5rem; padding-right: 2.5rem; }
.legal-content { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.8; max-height: 60vh; overflow-y: auto; }
.legal-content h3 { font-size: 1.0625rem; font-weight: 700; color: var(--gray-800); margin: 1.25rem 0 0.5rem; }
.legal-content p { margin-bottom: 0.75rem; }
.legal-content ul { padding-left: 1.25rem; margin-bottom: 0.75rem; }
.legal-content li { margin-bottom: 0.375rem; }

/* ================================================================
   BACK TO TOP
================================================================ */
.back-to-top {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  width: 2.75rem; height: 2.75rem;
  background: var(--dark);
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 900;
}
.back-to-top svg { width: 1.125rem; height: 1.125rem; color: var(--white); }
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--red); transform: translateY(-2px); }

/* ================================================================
   MEDIA — VIDEO PLAYER
================================================================ */
.cs-vid-screen { background: #000; height: 19.125rem; }
.cs-video { width: 100%; height: 100%; object-fit: contain; display: block; }
.cs-vid-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.38);
  border: none; cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  z-index: 2;
}
.cs-vid-overlay.playing { background: transparent; opacity: 0; pointer-events: none; }
.cs-vid-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.75rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
}
.cs-vid-pp {
  background: none; border: none; cursor: pointer; padding: 0.25rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cs-vid-prog {
  flex: 1; height: 0.25rem; background: rgba(255,255,255,0.28);
  border-radius: 2px; cursor: pointer; overflow: hidden;
}
.cs-vid-fill { height: 100%; background: #fff; border-radius: 2px; width: 0%; transition: width 0.1s linear; }
.cs-vid-time { font-size: 0.6875rem; color: rgba(255,255,255,0.85); font-family: 'Outfit', sans-serif; white-space: nowrap; }

/* ================================================================
   MEDIA — AUDIO PLAYER
================================================================ */
.cs-aud-art {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.875rem; padding: 1.125rem;
}
.cs-aud-disc {
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
  will-change: transform;
}
.cs-aud-disc.spinning { animation: discSpin 3.5s linear infinite; }
@keyframes discSpin { to { transform: rotate(360deg); } }
.cs-story-book { display: flex; align-items: center; justify-content: center; }
.cs-aud-info { text-align: center; }
.cs-aud-title { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 800; color: rgba(0,0,0,0.85); }
.cs-aud-sub { font-family: 'Outfit', sans-serif; font-size: 0.75rem; color: rgba(0,0,0,0.45); margin-top: 3px; }
.cs-aud-controls {
  padding: 0.75rem 1rem; background: rgba(0,0,0,0.17); flex-shrink: 0;
}
.cs-aud-prog {
  width: 100%; height: 0.3125rem; background: rgba(255,255,255,0.28);
  border-radius: 3px; cursor: pointer; overflow: hidden; margin-bottom: 0.625rem;
}
.cs-aud-fill { height: 100%; background: rgba(255,255,255,0.9); border-radius: 3px; width: 0%; transition: width 0.1s linear; }
.cs-aud-row { display: flex; align-items: center; justify-content: space-between; }
.cs-aud-time { font-family: 'Outfit', sans-serif; font-size: 0.6875rem; color: rgba(255,255,255,0.7); }
.cs-aud-btn {
  width: 2.625rem; height: 2.625rem; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.cs-aud-btn:hover { background: rgba(255,255,255,0.36); }

/* ================================================================
   GAME — SHARED
================================================================ */
.game-label {
  font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 600;
  color: rgba(255,255,255,0.82); text-align: center; flex-shrink: 0;
}
.game-btn {
  padding: 0.4375rem 1.25rem; border-radius: 1.25rem;
  border: 1.5px solid rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.16); color: #fff;
  font-size: 0.75rem; font-weight: 700; font-family: 'Outfit', sans-serif;
  cursor: pointer; transition: background 0.15s; flex-shrink: 0;
}
.game-btn:hover { background: rgba(255,255,255,0.3); }
.game-win {
  position: absolute; inset: 0; z-index: 10;
  background: rgba(0,0,0,0.58); backdrop-filter: blur(5px);
  display: none; flex-direction: column;
  align-items: center; justify-content: center;
}
.game-win.show { display: flex; }
.game-win-box { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }

/* ================================================================
   GAME — JIGSAW PUZZLE
================================================================ */
.jig-screen {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.625rem; padding: 0.875rem;
  background: linear-gradient(145deg, #a78bfa, #5b1fa8);
}
.jig-header {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.jig-ref-wrap { display: flex; align-items: center; gap: 0.5rem; }
.jig-ref-label { color: rgba(255,255,255,0.75); font-size: 0.625rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-family: 'Outfit', sans-serif; }
.jig-ref-img {
  width: 2.875rem; height: 2.875rem; border-radius: 0.375rem;
  border: 2px solid rgba(255,255,255,0.45);
  background-size: 2.875rem 2.875rem;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.jig-full-img {
  width: 9.375rem; height: 9.375rem; border-radius: 0.625rem;
  border: 3px solid rgba(255,255,255,0.6);
  background-size: 150px 150px;
  background-repeat: no-repeat;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.jig-ui { display: flex; align-items: flex-start; gap: 0.75rem; }
.jig-board {
  display: grid;
  grid-template-columns: repeat(3, 3.5rem);
  grid-template-rows: repeat(3, 3.5rem);
  gap: 3px;
  background: rgba(0,0,0,0.25);
  padding: 3px;
  border-radius: 0.5rem;
}
.jig-slot {
  width: 3.5rem; height: 3.5rem;
  border: 2px dashed rgba(255,255,255,0.3);
  border-radius: 0.3125rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s, background 0.15s;
}
@media (max-width: 768px) {
  .cs-mockup { max-width: min(360px, 94vw) !important; }
  .jig-screen { padding: 0.5rem 0.625rem; gap: 0.5rem; }
  .jig-ui { flex-direction: row; align-items: flex-start; gap: 0.5rem; }
  .jig-header { margin-bottom: 0.25rem; }
}
.jig-slot.jig-over { border-color: #fff; background: rgba(255,255,255,0.18); }
.jig-pool-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.3125rem; }
.jig-pool-label { color: rgba(255,255,255,0.65); font-size: 0.625rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; font-family: 'Outfit', sans-serif; }
.jig-pool {
  display: grid;
  grid-template-columns: repeat(3, 50px);
  gap: 3px;
  background: rgba(0,0,0,0.18);
  padding: 0.25rem;
  border-radius: 0.5rem;
  border: 2px dashed rgba(255,255,255,0.2);
  min-height: 3.375rem;
  align-content: start;
}
.jig-piece {
  cursor: grab; border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: transform 0.1s, box-shadow 0.1s;
  user-select: none;
}
.jig-piece:hover { transform: scale(1.07); box-shadow: 0 4px 14px rgba(0,0,0,0.4); z-index: 5; position: relative; }
.jig-piece:active { cursor: grabbing; }

/* ================================================================
   GAME — COLORING
================================================================ */
.col-screen {
  display: flex; flex-direction: column; align-items: stretch;
  background: #f7fbff; padding: 0.625rem; min-height: 19.125rem;
}
.col-palette { display: flex; gap: 0.375rem; justify-content: center; flex-wrap: wrap; flex-shrink: 0; padding-bottom: 0.375rem; }
.col-swatch {
  width: 1.625rem; height: 1.625rem; border-radius: 50%;
  border: 2.5px solid transparent; cursor: pointer;
  transition: transform 0.15s, border-color 0.15s; flex-shrink: 0; outline: none;
}
.col-swatch.selected { border-color: #333; transform: scale(1.28); }
.col-svg { flex: 1; width: 100%; display: block; cursor: crosshair; }
.col-r { cursor: pointer; }
.col-r:hover { filter: brightness(1.1); }
.col-bottom { display: flex; justify-content: center; padding-top: 0.375rem; flex-shrink: 0; }
.col-reset {
  padding: 0.3125rem 1rem; border-radius: 1.25rem; border: 1.5px solid #ddd;
  background: #fff; color: #666; font-size: 0.6875rem; font-weight: 600;
  cursor: pointer; font-family: 'Outfit', sans-serif; transition: background 0.15s;
}
.col-reset:hover { background: #f0f0f0; }

/* ================================================================
   GAME — MEMORY CARDS
================================================================ */
.mem-screen {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.625rem; padding: 0.875rem; min-height: 19.125rem;
}
.mem-score { font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.85); flex-shrink: 0; }
.mem-grid { display: grid; grid-template-columns: repeat(4, 3.625rem); gap: 0.375rem; }
.mem-card {
  width: 3.625rem; height: 3.625rem; border-radius: 0.625rem; cursor: pointer;
  position: relative; transform-style: preserve-3d;
  transition: transform 0.36s ease; user-select: none;
}
.mem-card.flipped, .mem-card.matched { transform: rotateY(180deg); }
.mem-front, .mem-back {
  position: absolute; inset: 0; border-radius: 0.625rem;
  display: flex; align-items: center; justify-content: center;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
}
.mem-front {
  background: rgba(255,255,255,0.18); border: 2px solid rgba(255,255,255,0.28);
  font-size: 1.25rem; font-weight: 800; color: rgba(255,255,255,0.45); font-family: 'Outfit', sans-serif;
}
.mem-back { background: rgba(255,255,255,0.92); transform: rotateY(180deg); }
.mem-card.matched .mem-back { background: rgba(255,255,255,0.5); border: 2px solid rgba(255,255,255,0.7); }

/* ================================================================
   RESPONSIVE
================================================================ */
/* ================================================================
   RESPONSIVE — 1024px (Tablet geniş)
================================================================ */
@media (max-width: 1024px) {
  .cs-slide-inner { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 0 1.5rem; }
  .cs-mockup { max-width: 26.25rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ================================================================
   RESPONSIVE — 900px (Tablet)
================================================================ */
@media (max-width: 900px) {
  /* Hero */
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }

  /* About */
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .about-content { text-align: center; }
  .about-vals { align-items: center; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* FAQ */
  .faq-inner { grid-template-columns: 1fr; gap: 0; }
  .faq-dino { display: none; }

  /* Modal */
  .modal-left { display: none; }
  .modal { max-width: 28.75rem; }
}

/* ================================================================
   RESPONSIVE — 768px (Mobil)
================================================================ */
@media (max-width: 768px) {

  /* ── Global: scroll-snap mobilde devre dışı ── */
  html { scroll-snap-type: none; }

  /* ── Global: section height lock'ları kaldır ── */
  .hero, .app-preview, .features, .about,
  .testimonials, .faq { height: auto; min-height: auto; overflow: visible; }

  /* ── Global: data-reveal animasyonları mobilde hep görünür ── */
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* ── Navbar ── */
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .hamburger { display: none; }
  .nav-login-mobile { display: inline-flex; }

  /* Mobilde tüm navbar varyantları beyaz transparan */
  .navbar.nav-visible,
  .navbar.nav-visible.nav-orange,
  .navbar.nav-visible.nav-light,
  .navbar.nav-visible.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  }
  /* Hamburger çizgileri koyu olsun */
  .navbar .hamburger span {
    background: var(--gray-800);
  }

  /* ── Hero ── */
  .hero {
    padding-top: 5.5rem;
    padding-bottom: 10rem; /* trusted için alt boşluk */
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-glow-1 { width: 16.25rem; height: 16.25rem; }
  .hero-glow-2 { width: 11.25rem; height: 11.25rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 0; }
  .hero-title { font-size: 2.125rem; line-height: 1.15; }
  .hero-desc { font-size: 0.9375rem; max-width: 100%; }
  .hero-content { text-align: center; }
  .hero-badge { margin: 0 auto; }
  .hero-ctas { justify-content: center; flex-wrap: wrap; gap: 0.625rem; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 0.75rem; }
  .hero-visual-cards { grid-template-columns: 1fr 1fr; gap: 0.625rem; }
  .hcard { padding: 0.875rem 0.75rem; gap: 0.5rem; }
  .hcard-title { font-size: 0.75rem; }
  .hcard-sub { font-size: 0.6875rem; }
  /* trusted absolute konumunu koru, mobil için sadece bottom değiştir */
  .trusted { position: absolute; bottom: 1.5rem; left: 0; right: 0; }

  /* ── Carousel / İçerikler ── */
  .app-preview { padding: 0; overflow: hidden; }
  .cs-carousel-wrap { height: 100dvh; display: flex; flex-direction: column; }
  .cs-track-outer { flex: 1; overflow: hidden; position: relative; }
  /* Slide tam yüksekliği doldurur, flex column */
  .cs-slide {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    align-items: stretch;
    overflow: hidden;
  }
  /* cs-slide-inner: grid yerine flex column */
  .cs-slide-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 0;
    padding: 0;
  }
  /* Metin üstte, sabit yükseklik */
  .cs-slide-text {
    flex-shrink: 0;
    padding: 0.875rem 1.125rem 0.625rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
  }
  .cs-platform-label { position: static; margin-bottom: 0; }
  .cs-slide-title { font-size: 1.25rem; line-height: 1.2; }
  .cs-slide-desc { font-size: 0.75rem; line-height: 1.5; display: none; }
  .cs-slide-feats { display: none; }
  .cs-slide-badges { flex-wrap: wrap; gap: 0.3125rem; }
  /* Görsel kalan alanı doldurur */
  .cs-slide-visual {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem 0.75rem;
  }
  .cs-mockup {
    max-width: min(21.25rem, 90vw);
    width: 100%;
    max-height: 100%;
  }
  /* Yan oklar: cs-slide-visual alanının ortasına hizala */
  .cs-side-arrow {
    display: flex;
    width: 2.125rem;
    height: 2.125rem;
    /* Metin bloğu ~130px, geri kalan visual alanın ortası */
    top: calc(50% + 4.0625rem);
    z-index: 20;
  }
  .cs-side-arrow:hover { transform: translateY(-50%) scale(1.08); }
  .cs-side-prev { left: 0.5rem; }
  .cs-side-next { right: 0.5rem; }
  /* Bottom bar: sadece dots + counter */
  .cs-bar-arrow { display: none; }
  .cs-bottom-bar { flex-shrink: 0; }
  .cs-bottom-inner { height: 3rem; padding: 0 1.25rem; justify-content: center; gap: 1rem; }
  .cs-nav-group { display: flex; align-items: center; gap: 0.625rem; }

  /* ── Journey / Yol Haritası — mobilde kart düzeni ── */
  .journey { overflow: visible; }
  .journey-inner { grid-template-columns: 1fr; padding-left: 0; }
  .journey-path-col { display: none; }
  .journey-panels-col { display: flex; flex-direction: column; gap: 0; }
  .journey-panel {
    height: auto !important;
    min-height: auto !important;
    padding: 3rem 1.5rem 2.5rem;
    overflow: visible;
    scroll-snap-align: none;
    display: block;
    border-left: 4px solid var(--red);
    border-bottom: 1px solid var(--gray-100);
    margin: 0 1rem;
    border-radius: 0;
  }
  /* panel-content'i mobilde her zaman görünür yap */
  .panel-content {
    opacity: 1 !important;
    transform: none !important;
  }
  .panel-tag { font-size: 0.625rem; }
  .panel-title { font-size: 1.625rem; line-height: 1.2; }
  .panel-desc { font-size: 0.875rem; }
  .panel-features li { font-size: 0.8125rem; }
  .panel-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem; height: 2rem;
    background: var(--red);
    color: white;
    border-radius: 50%;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }

  /* ── Features ── */
  .features { padding: clamp(2.5rem, 6vh, 5rem) 0; }
  .features-bg::before { display: none; }
  .features-grid { grid-template-columns: 1fr; max-width: 100%; gap: 1rem; }
  .feature-card { padding: 1.25rem 1.125rem; }
  .feature-card h3 { font-size: 1rem; }
  .feature-card p { font-size: 0.875rem; }

  /* ── About ── */
  .about {
    padding: 3rem 0 2.5rem;
    height: auto;
    display: block;
    overflow: visible;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 0;
    display: block;
  }
  .about-visual { display: none !important; }
  .about-content {
    text-align: center;
    padding: 0 0.25rem;
  }
  .about-content .section-tag { display: inline-block; }
  .about-content .section-title { text-align: center; }
  .about-vals { align-items: center; }
  .val-item { justify-content: center; }
  .about-text { font-size: 0.9375rem; text-align: center; }
  /* data-reveal elementleri mobilde hep görünür */
  .about [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* ── Testimonials ── */
  .testimonials { padding: 3rem 0; }
  .testi-grid { grid-template-columns: 1fr; max-width: 30rem; margin: 0 auto; gap: 0.875rem; }
  .testi-card { padding: 1.25rem 1rem; }
  .testi-card p { font-size: 0.875rem; }

  /* ── FAQ ── */
  .faq { padding: 3rem 0 3.75rem; }
  .faq-inner { grid-template-columns: 1fr; gap: 0; }
  .faq-dino { display: none; }
  .faq-q { font-size: 0.9375rem; padding: 1rem 0.875rem; }
  .faq-a p { font-size: 0.875rem; padding: 0 0.875rem 0.875rem; }

  /* ── Footer ── */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 1.75rem; padding-bottom: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-tagline { font-size: 0.8125rem; }

  /* ── Section ortak ── */
  .section-title { font-size: 1.75rem; }
  .section-desc { font-size: 0.9375rem; }
  .section-header { margin-bottom: 2rem; }

  /* ── Genel ── */
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ================================================================
   RESPONSIVE — 560px (Küçük telefon)
================================================================ */
@media (max-width: 560px) {

  /* ── Hero ── */
  .hero-title { font-size: 1.75rem; }
  .hero-desc { font-size: 0.875rem; }
  .hero-visual-cards { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .hcard { padding: 0.75rem 0.625rem; }
  .hcard-icon { width: 2rem; height: 2rem; }
  .hero-glow-1 { width: 11.25rem; height: 11.25rem; }
  .hero-glow-2 { display: none; }
  .stat-number { font-size: 1.25rem; }
  .stat-label { font-size: 0.6875rem; }

  /* ── Carousel ── */
  .cs-slide-title { font-size: 1.3125rem; }
  .cs-slide-desc { font-size: 0.8125rem; }
  .cs-mockup { max-width: min(18.75rem, 88vw); }
  .cs-bottom-inner { height: 2.75rem; padding: 0 0.75rem; gap: 0.5rem; }
  .cs-counter { font-size: 0.6875rem; }

  /* ── Journey ── */
  .journey-panel { padding: 2.75rem 1rem 2.25rem; }
  .panel-title { font-size: 1.5rem; }
  .panel-step-label { font-size: 0.625rem; }

  /* ── Features ── */
  .feature-card { padding: 1.125rem 1rem; }
  .feature-icon { width: 2.75rem; height: 2.75rem; }

  /* ── About ── */
  .about-bento { width: 100%; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .ab-main { grid-column: 1 / 3; }
  .ab-wide { grid-column: 1 / 3; }
  .ab-red { grid-column: 1; grid-row: 2; }
  .ab-dark { grid-column: 2; grid-row: 2; }
  .ab-num { font-size: 1.75rem; }

  /* ── FAQ ── */
  .faq-q { font-size: 0.875rem; padding: 0.875rem 0.75rem; }
  .faq-a p { font-size: 0.8125rem; }

  /* ── Testimonials ── */
  .testi-card { padding: 1rem 0.875rem; }

  /* ── Footer ── */
  .footer-top { grid-template-columns: 1fr; gap: 1.25rem; padding-bottom: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.625rem; }
  .footer-brand { max-width: 100%; }

  /* ── Trusted ── */
  .trusted-logos { flex-direction: column; gap: 0.5rem; align-items: center; }
  .trust-sep { display: none; }
  .trust-item { font-size: 0.75rem; }

  /* ── Section ortak ── */
  .section-title { font-size: 1.5rem; }
  .section-tag { font-size: 0.625rem; }
  .section-desc { font-size: 0.875rem; }

  /* ── Modal ── */
  .legal-modal { padding: 1.75rem 1rem; }
  .modal { margin: 0.75rem; max-width: calc(100vw - 1.5rem); }
}

/* ================================================================
   SCROLL REVEAL ANIMATIONS
================================================================ */

/* Base hidden state */
[data-reveal] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

/* Up: aşağıdan yukarıya */
[data-reveal="up"]     { transform: translateY(44px); transition-duration: 0.65s; }
/* Down: yukarıdan aşağıya */
[data-reveal="down"]   { transform: translateY(-32px); transition-duration: 0.6s; }
/* Left: sağdan sola */
[data-reveal="left"]   { transform: translateX(52px); transition-duration: 0.65s; }
/* Right: soldan sağa */
[data-reveal="right"]  { transform: translateX(-52px); transition-duration: 0.65s; }
/* Scale: büyüyerek belirir */
[data-reveal="scale"]  { transform: scale(0.88); transition-duration: 0.6s; }
/* Fade: sadece opacity */
[data-reveal="fade"]   { transform: none; transition-duration: 0.7s; }

/* Revealed state */
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
[data-delay="100"] { transition-delay: 0.10s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.20s; }
[data-delay="250"] { transition-delay: 0.25s; }
[data-delay="300"] { transition-delay: 0.30s; }
[data-delay="350"] { transition-delay: 0.35s; }
[data-delay="400"] { transition-delay: 0.40s; }
[data-delay="500"] { transition-delay: 0.50s; }

/* Count-up number */
.count-up-num {
  display: inline-block;
  transition: none;
}

/* Section tag underline accent */
.section-tag::after {
  content: none;
}

/* Divider line that draws on scroll */
.reveal-line {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  width: 0;
  border-radius: 2px;
  margin: 0.75rem 0 0;
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-line.is-visible { width: 4rem; }
.reveal-line.line-center { margin-left: auto; margin-right: auto; }
.reveal-line.line-white {
  background: rgba(255,255,255,.6);
}

/* Journey panels get the same reveal treatment */
.journey-panel .panel-content[data-reveal] {
  transition-duration: 0.6s;
}

/* ================================================================
   JOURNEY STEPPER
================================================================ */
.journey {
  position: relative;
  background: var(--white);
}
.journey-inner {
  display: grid;
  grid-template-columns: clamp(13.75rem, 22vw, 20rem) 1fr;
  align-items: start;
  padding-left: clamp(1rem, 5vw, 5rem);
}
.journey-header {
  text-align: center;
  margin-bottom: 2rem;
}
.journey-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 0.5rem 0 0.25rem;
  line-height: 1.2;
}
.journey-subtitle {
  font-size: 0.8125rem;
  color: var(--gray-400);
  font-weight: 500;
}
.journey-path-col {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 5rem;
  background: var(--white);
  border-right: 1px solid var(--gray-100);
}
.journey-path-wrap {
  position: relative;
  width: 11.25rem;
  height: 31.25rem;
  overflow: visible;
}
.journey-trail-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.trail-bg {
  fill: none;
  stroke: var(--gray-200);
  stroke-width: 4;
  stroke-dasharray: 12 7;
  stroke-linecap: round;
}
.trail-active {
  fill: none;
  stroke: url(#trailGrad);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 0 1000;
  transition: stroke-dasharray 0.6s ease;
}
.jdot {
  position: absolute;
  width: 2.875rem; height: 2.875rem;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--gray-400);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.jdot.active { background: var(--red); border-color: var(--red); color: var(--white); box-shadow: 0 0 0 8px rgba(237,27,36,0.12); transform: scale(1.18); }
.jdot.done   { background: var(--green); border-color: var(--green); color: var(--white); }
.jdot-label {
  position: absolute;
  left: calc(100% + 10px);
  font-family: 'Outfit', sans-serif;
  font-size: 0.625rem; font-weight: 600;
  color: var(--gray-400);
  white-space: nowrap;
  transition: color 0.3s;
}
.jdot-label-l {
  position: absolute;
  right: calc(100% + 10px); left: auto;
  font-family: 'Outfit', sans-serif;
  font-size: 0.625rem; font-weight: 600;
  color: var(--gray-400);
  white-space: nowrap; text-align: right;
  transition: color 0.3s;
}
.jdot.active .jdot-label,
.jdot.active .jdot-label-l { color: var(--red); font-weight: 700; }
.jdot.done .jdot-label,
.jdot.done .jdot-label-l   { color: var(--green); }

/* ── Step characters: her dot'un yanında 1 adet ── */
.jstep-char {
  position: absolute;
  width: 2.375rem;
  opacity: 0;
  transform: scale(0.75) translateY(8px);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 3;
}
.jstep-char img { height: 5.125rem; width: auto; display: block; filter: drop-shadow(0 3px 8px rgba(0,0,0,0.2)); }
.jstep-char svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 3px 8px rgba(0,0,0,0.2)); }
.jstep-char.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  animation: jstep-idle 3s ease-in-out infinite;
}
@keyframes jstep-idle {
  0%, 100% { transform: scale(1) translateY(0) rotate(0deg); }
  40%       { transform: scale(1) translateY(-8px) rotate(-3deg); }
  70%       { transform: scale(1) translateY(-4px) rotate(2deg); }
}

.journey-panels-col { min-width: 0; }
.journey-panel {
  height: 100dvh;
  display: flex;
  align-items: flex-start;
  padding: 5rem 5rem 5rem 12.5rem;
  border-bottom: 1px solid var(--gray-100);
  scroll-snap-align: start;
  overflow: hidden;
  position: relative;
}
.journey-panel:nth-child(even) { background: var(--gray-50); }
.journey-panel:nth-child(odd)  { background: var(--white); }
.panel-content {
  max-width: 33.75rem;
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.panel-content.visible { opacity: 1; transform: translateX(0); }
.panel-tag {
  display: inline-block;
  background: var(--red-100);
  color: var(--red-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3125rem 0.875rem; border-radius: 6.25rem;
  margin-bottom: 1.125rem;
}
.panel-title {
  font-size: clamp(1.75rem, 3.5vw, 3.375rem);
  font-weight: 900; color: var(--gray-900);
  line-height: 1.05; margin-bottom: 1.125rem; letter-spacing: -0.03125rem;
}
.panel-desc { font-size: clamp(0.9rem, 1.2vw, 1.0625rem); color: var(--gray-500); line-height: 1.75; margin-bottom: 1.875rem; }
.panel-features { list-style: none; display: flex; flex-direction: column; gap: 0.8125rem; }
.panel-features li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9375rem; color: var(--gray-700); font-weight: 500; }
.panel-features li::before { content: ''; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* ── Son step: iki çocuk sol alttan sadece kafasını çıkarır ── */
.journey-end-peekers {
  position: fixed;
  bottom: 0; left: 0.75rem;
  display: flex;
  align-items: flex-end;
  gap: 0.625rem;
  z-index: 800;
  pointer-events: none;
}
.jep-boy, .jep-girl {
  width: auto;
  transform: translateY(100%);
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.jep-boy  { transition-delay: 0s; }
.jep-girl { transition-delay: 0.2s; }
.jep-boy img, .jep-girl img {
  height: 6.875rem;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
}
.jep-boy svg, .jep-girl svg { width: 4.25rem; height: auto; display: block; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25)); }
.journey-end-peekers.visible .jep-boy,
.journey-end-peekers.visible .jep-girl {
  transform: translateY(62%);
  animation: jep-peek 3.2s ease-in-out infinite;
}
.journey-end-peekers.visible .jep-girl { animation-delay: 0.5s; }
@keyframes jep-peek {
  0%, 100% { transform: translateY(62%); }
  40%       { transform: translateY(45%); }
  70%       { transform: translateY(55%); }
}

@media (max-width: 960px) {
  .journey-inner { grid-template-columns: 1fr; padding-left: 0; }
  .journey-path-col { display: none; }
  .journey-panel { height: auto; min-height: auto; padding: 4rem 2.5rem 3.5rem; overflow: visible; scroll-snap-align: none; }
  .journey-panels-col { padding: 0; }
  .panel-title { font-size: clamp(1.75rem, 4vw, 3rem); }
  .panel-content { opacity: 1; transform: none; }
}

/* ── İNDİR (uygulama mağaza rozetleri) ── */
.download {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--white) 0%, #fff5f5 100%);
  scroll-snap-align: start;
}
.store-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  background: #000;
  color: #fff;
  border: 1.5px solid #000;
  border-radius: 0.875rem;
  padding: 0.75rem 1.5rem;
  min-width: 13.5rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.store-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}
.store-badge-logo {
  width: 2.125rem;
  height: 2.125rem;
  flex-shrink: 0;
}
.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}
.store-badge-text small {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.85;
}
.store-badge-text strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
@media (max-width: 640px) {
  .download { padding: 3.5rem 0; }
  .store-badges { flex-direction: column; }
  .store-badge { width: 100%; max-width: 20rem; justify-content: center; }
}
