@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700;800;900&display=swap');

:root {
  --brand-50: #fff7ed;
  --brand-100: #ffedd5;
  --brand-200: #fed7aa;
  --brand-300: #fdba74;
  --brand-400: #ff8c42;
  --brand-500: #ff5722;
  --brand-600: #f4511e;
  --brand-700: #e64a19;
  --brand-800: #d84315;
  --brand-900: #bf360c;
  --heart: #e53935;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }
html.smooth-scroll { scroll-behavior: smooth; }

body {
  -webkit-tap-highlight-color: transparent;
  font-family: 'Rubik', sans-serif;
}

body.drawer-open {
  overflow: hidden;
  touch-action: none;
}

.safe-bottom {
  padding-bottom: max(2.5rem, env(safe-area-inset-bottom));
}

/* ── Reveal ── */
.reveal, .cta-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--d, 0) * 0.08s);
}

.reveal.visible, .cta-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group .reveal-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: calc(var(--d, 0) * 0.07s);
}

.reveal-group.visible .reveal-child {
  opacity: 1;
  transform: translateY(0);
}

.anim-paused *, .anim-paused::before, .anim-paused::after {
  animation-play-state: paused !important;
}

.perf-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

/* ── Navbar ── */
#navbar {
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}

#navbar .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

#navbar .nav-link:hover {
  color: #fff;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.97) !important;
  box-shadow: 0 4px 24px rgba(255, 87, 34, 0.12);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

#navbar.scrolled .nav-link {
  color: #64748b;
}

#navbar.scrolled .nav-link:hover {
  color: var(--brand-600);
}

#navbar.scrolled .nav-cta {
  background: var(--brand-500);
  color: #fff;
}

#mobile-menu-btn {
  color: #fff;
}

#mobile-menu-btn svg {
  stroke: currentColor;
}

#navbar.scrolled #mobile-menu-btn {
  color: var(--brand-700);
  background: #fff7ed;
  border-color: #fdba74;
}

.nav-cta {
  background: #fff;
  color: var(--brand-600);
  font-weight: 700;
  padding: 0.55rem 1.25rem;
  border-radius: 12px;
  font-size: 0.875rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ── Drawer ── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.drawer-overlay.active { opacity: 1; visibility: visible; }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 88vw);
  height: 100dvh;
  background: #fff;
  z-index: 70;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(255, 87, 34, 0.15);
}

.mobile-drawer.active { transform: translateX(0); }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid #ffedd5;
}

.drawer-close-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #fed7aa;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff7ed;
}

.drawer-nav { flex: 1; padding: 1rem; }

.drawer-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  color: #475569;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.drawer-link:hover {
  background: #fff7ed;
  color: var(--brand-600);
}

.drawer-footer {
  padding: 1.25rem;
  border-top: 1px solid #ffedd5;
}

.drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
}

/* ── Hero (full orange) ── */
.hero-orange {
  background: linear-gradient(155deg, #ff6d00 0%, #ff5722 35%, #e64a19 100%);
  position: relative;
  overflow: hidden;
  min-height: 100dvh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(4.5rem + env(safe-area-inset-top, 0px));
  padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
}

.hero-grid {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .hero-inner {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  .hero-grid {
    display: grid;
    gap: 3.5rem;
  }
}

/* Mobil: tek ekran turuncu */
@media (max-width: 1023px) {
  .hero-sub-desktop {
    display: none;
  }

  .hero-disclaimer {
    display: none;
  }

  .hero-copy {
    margin-bottom: 0;
  }

  .hero-title {
    font-size: clamp(1.65rem, 7.5vw, 2.25rem);
  }

  .hero-title em {
    font-size: 0.48em;
  }

  .hero-cta-row {
    justify-content: center;
  }

  .btn-ghost-white {
    padding: 0.7rem 1.1rem;
    font-size: 0.85rem;
  }

  .btn-ghost-white {
    display: none;
  }

  .hero-cta-row .btn-play {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-phone-stage {
    margin-top: 0.25rem;
  }

  .hero-phone-device {
    width: 220px;
    height: 420px;
  }

  .hero-pill {
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .hero-sub-desktop {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .btn-ghost-white {
    display: inline-flex;
  }

  .hero-phone-device {
    width: 250px;
    height: 480px;
  }
}

.hero-phone-device {
  width: 270px;
  height: 540px;
}

@media (min-width: 640px) {
  .hero-phone-device {
    width: 290px;
    height: 580px;
  }
}

.hero-orange::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, transparent 65%);
  top: -25%;
  right: -18%;
  pointer-events: none;
  animation: hero-glow-drift 12s ease-in-out infinite;
}

.hero-orange::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 200, 150, 0.15) 0%, transparent 65%);
  bottom: -15%;
  left: -10%;
  pointer-events: none;
  animation: hero-glow-drift 10s ease-in-out infinite reverse;
}

@keyframes hero-glow-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.05); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  font-size: 1rem;
  opacity: 0;
  animation: particle-rise 8s ease-in-out infinite;
}

.hero-particle:nth-child(1) { left: 12%; bottom: 20%; animation-delay: 0s; }
.hero-particle:nth-child(2) { left: 28%; bottom: 35%; animation-delay: -2s; font-size: 0.8rem; }
.hero-particle:nth-child(3) { left: 72%; bottom: 25%; animation-delay: -4s; }
.hero-particle:nth-child(4) { left: 85%; bottom: 40%; animation-delay: -1s; font-size: 1.2rem; }
.hero-particle:nth-child(5) { left: 50%; bottom: 15%; animation-delay: -5.5s; font-size: 0.75rem; }

@keyframes particle-rise {
  0% { opacity: 0; transform: translateY(0) scale(0.8); }
  15% { opacity: 0.35; }
  50% { opacity: 0.2; transform: translateY(-60px) scale(1); }
  100% { opacity: 0; transform: translateY(-120px) scale(0.9); }
}

.hero-heart-deco {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.18;
  pointer-events: none;
  animation: heart-float 5s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.hero-heart-deco.h1 { top: 18%; left: 8%; animation-delay: 0s; }
.hero-heart-deco.h2 { top: 12%; right: 12%; font-size: 1.8rem; animation-delay: -2s; }
.hero-heart-deco.h3 { bottom: 25%; right: 6%; font-size: 3rem; animation-delay: -3.5s; }

@keyframes heart-float {
  0%, 100% { transform: translateY(0) rotate(-8deg) scale(1); }
  50% { transform: translateY(-14px) rotate(5deg) scale(1.08); }
}

.hero-title {
  font-size: clamp(2.25rem, 6.5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.hero-title .line-accent {
  display: block;
  background: linear-gradient(90deg, #fff 0%, #ffe0b2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title em {
  font-style: normal;
  display: block;
  font-size: 0.5em;
  font-weight: 600;
  opacity: 0.92;
  margin-bottom: 0.2em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 32rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  color: var(--brand-700);
  font-weight: 800;
  padding: 0.9rem 1.5rem;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.btn-play::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: btn-shine 3s ease-in-out infinite;
}

@keyframes btn-shine {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

.btn-play:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 600;
  padding: 0.9rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  transition: background 0.2s, border-color 0.2s;
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(4px);
}

/* ── Phone mockup ── */
.hero-phone-stage {
  position: relative;
  perspective: 900px;
}

#hero-phone-wrap {
  position: relative;
  z-index: 2;
  transition: transform 0.15s ease-out;
  transform-style: preserve-3d;
}

.phone-glow-ring {
  position: absolute;
  inset: -12%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 65%);
  border-radius: 50%;
  animation: glow-pulse 4s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

.hero-float-notif {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  font-size: 0.7rem;
  font-weight: 600;
  color: #334155;
  z-index: 10;
  white-space: nowrap;
  animation: notif-float 4.5s ease-in-out infinite;
}

.hero-float-notif .notif-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.hero-float-notif--1 { top: 8%; left: -8%; animation-delay: 0s; }
.hero-float-notif--2 { top: 42%; right: -12%; animation-delay: -1.5s; }
.hero-float-notif--3 { bottom: 18%; left: -5%; animation-delay: -3s; }

.hero-float-notif--1 .notif-icon { background: #fce7f3; }
.hero-float-notif--2 .notif-icon { background: #ffedd5; }
.hero-float-notif--3 .notif-icon { background: #dcfce7; }

@keyframes notif-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.phone-shell {
  position: relative;
  border: 10px solid #1a1a1a;
  border-radius: 2rem;
  background: #1a1a1a;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 14px;
  background: #1a1a1a;
  border-radius: 0 0 10px 10px;
  z-index: 5;
}

.phone-screen {
  border-radius: 1.4rem;
  overflow: hidden;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.phone-float {
  animation: phone-bob 5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes phone-bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

/* ── App feed UI ── */
.kc-app {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fafafa;
  font-size: 10px;
}

.kc-app-header {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  padding: 24px 12px 8px;
  text-align: center;
  flex-shrink: 0;
}

.kc-app-header img {
  height: 22px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

.kc-tabs {
  display: flex;
  gap: 4px;
  padding: 6px 10px;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
}

.kc-tab {
  flex: 1;
  text-align: center;
  padding: 6px 4px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 700;
  color: #94a3b8;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.kc-tab.active {
  background: #fff7ed;
  color: var(--brand-600);
  transform: scale(1.02);
}

.kc-stories {
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
}

.kc-story {
  flex-shrink: 0;
  text-align: center;
  width: 44px;
}

.kc-story-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, var(--brand-500), var(--heart));
  margin: 0 auto 3px;
  animation: story-pulse 3s ease-in-out infinite;
}

.kc-story:nth-child(2) .kc-story-ring { animation-delay: -0.5s; }
.kc-story:nth-child(3) .kc-story-ring { animation-delay: -1s; }
.kc-story:nth-child(4) .kc-story-ring { animation-delay: -1.5s; }

@keyframes story-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.3); }
  50% { box-shadow: 0 0 0 4px rgba(255, 87, 34, 0); }
}

.kc-story-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.kc-story span {
  font-size: 7px;
  color: #64748b;
  font-weight: 600;
}

.kc-feed {
  flex: 1;
  min-height: 0;
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  overflow: hidden;
}

.kc-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #1e293b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  min-height: 0;
  animation: card-glow 4s ease-in-out infinite;
}

@keyframes card-glow {
  0%, 100% { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); }
  50% { box-shadow: 0 4px 16px rgba(255, 87, 34, 0.2); }
}

.kc-card-img {
  position: absolute;
  inset: 0;
}

.kc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kc-card-online {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  border: 1.5px solid #fff;
  z-index: 2;
}

.kc-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 18px 7px 7px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 55%, transparent 100%);
}

.kc-card-name {
  font-weight: 700;
  font-size: 10px;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.kc-card-meta {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.3;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Promo section (poster banners) ── */
.promo-section {
  padding: 3.5rem 0 3rem;
  background: linear-gradient(180deg, #ffffff 0%, #fff7ed 40%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.promo-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.06) 0%, transparent 70%);
  top: -20%;
  right: -15%;
  pointer-events: none;
}

.promo-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.promo-section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-600);
  background: var(--brand-50);
  border: 1px solid var(--brand-200);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}

.promo-section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.15;
}

.promo-section-desc {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #64748b;
  max-width: 28rem;
}

.promo-wrap {
  position: relative;
  margin: 0 -1rem;
}

.promo-wrap::before,
.promo-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2.5rem;
  z-index: 2;
  pointer-events: none;
}

.promo-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff7ed 10%, transparent);
}

.promo-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff7ed 10%, transparent);
}

.promo-strip {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.75rem 1rem 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.promo-strip::-webkit-scrollbar { display: none; }

.promo-banner {
  flex: 0 0 auto;
  width: min(76vw, 250px);
  height: 380px;
  scroll-snap-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  color: #fff;
  padding: 1.35rem 1.2rem;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, #ff9100 0%, #ff5722 42%, #e64a19 100%);
  box-shadow:
    0 4px 6px rgba(255, 87, 34, 0.08),
    0 20px 50px rgba(230, 74, 25, 0.28);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
  cursor: default;
}

.promo-banner::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  top: -50px;
  right: -50px;
  pointer-events: none;
}

.promo-banner::after {
  content: '♥';
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  opacity: 0.2;
  pointer-events: none;
}

.promo-banner:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 8px 12px rgba(255, 87, 34, 0.1),
    0 28px 60px rgba(230, 74, 25, 0.35);
}

.promo-banner-eyebrow {
  position: relative;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.92;
  line-height: 1.35;
  margin-bottom: 0.2rem;
}

.promo-banner-headline {
  position: relative;
  z-index: 2;
  font-size: clamp(1.5rem, 5vw, 1.85rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  max-width: 85%;
}

.promo-banner-photo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72%;
  object-fit: cover;
  object-position: center 15%;
  z-index: 1;
  mask-image: linear-gradient(to top, #000 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, #000 55%, transparent 100%);
  pointer-events: none;
  transition: transform 0.5s ease;
}

.promo-banner:hover .promo-banner-photo {
  transform: scale(1.04);
}

@media (min-width: 768px) {
  .promo-banner {
    width: 260px;
    height: 400px;
  }
}

/* ── Features list ── */
.feature-list-item {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #ffedd5;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.feature-list-item:hover {
  border-color: var(--brand-300);
  box-shadow: 0 8px 24px rgba(255, 87, 34, 0.1);
  transform: translateX(4px);
}

.feature-check {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── About ── */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.about-photo {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 12px 32px rgba(255, 87, 34, 0.15);
  transition: transform 0.4s ease;
}

.about-photo:hover { transform: scale(1.03); }

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo--tall { grid-row: span 2; aspect-ratio: auto; }

.about-stat-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.about-stat {
  flex: 1;
  min-width: 90px;
  text-align: center;
  padding: 0.85rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #fed7aa;
}

.about-stat strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-600);
}

.about-stat span {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ── Features grid ── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

.feature-tile {
  display: flex;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #ffedd5;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-tile:hover {
  transform: translateY(-4px);
  border-color: var(--brand-300);
  box-shadow: 0 12px 28px rgba(255, 87, 34, 0.12);
}

/* ── CTA enhanced ── */
.cta-orange {
  background: linear-gradient(135deg, #ff5722 0%, #e64a19 50%, #d84315 100%);
  position: relative;
  overflow: hidden;
}

.cta-hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-heart {
  position: absolute;
  font-size: 2rem;
  opacity: 0.08;
  animation: cta-heart-drift 10s ease-in-out infinite;
}

.cta-heart:nth-child(1) { top: 15%; left: 10%; }
.cta-heart:nth-child(2) { top: 60%; right: 15%; animation-delay: -3s; font-size: 3rem; }
.cta-heart:nth-child(3) { bottom: 20%; left: 25%; animation-delay: -6s; }

@keyframes cta-heart-drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(10px, -15px) rotate(10deg); }
}

/* Nav logo — beyaz zemin ile turuncu arka planda okunur */
.nav-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.nav-logo-img {
  height: 2rem;
  width: auto;
  display: block;
}

@media (min-width: 768px) {
  .nav-logo-img { height: 2.35rem; }
}

#navbar.scrolled .nav-logo-wrap {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

#navbar.scrolled .nav-logo-img {
  height: 2.25rem;
}

@media (min-width: 768px) {
  #navbar.scrolled .nav-logo-img { height: 2.5rem; }
}

.menu-btn--hero {
  background: rgba(255, 255, 255, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
}

.menu-btn--scrolled {
  background: #fff7ed !important;
  border: 1px solid #fdba74 !important;
  color: var(--brand-700) !important;
}

@media (max-width: 1023px) {
  .hero-float-notif { display: none; }
  .hero-particle { display: none; }
  .btn-play::after { animation: none; }
}

/* ── About highlight box ── */
.about-highlight {
  background: linear-gradient(135deg, #fff7ed, #fff);
  border: 2px solid #fed7aa;
  border-radius: 1.5rem;
  padding: 1.5rem;
}

/* ── FAQ ── */
.faq-item {
  border-radius: 1rem;
  border: 1px solid #ffedd5;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.08);
}

.faq-btn.active + div {
  max-height: 400px !important;
  opacity: 1 !important;
}

.faq-btn.active i {
  transform: rotate(180deg);
}

/* ── Legal ── */
.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p, .legal-content li {
  color: #64748b;
  line-height: 1.7;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-top: 0.5rem;
}

.legal-content a {
  color: var(--brand-600);
}

/* ── Carousel nav ── */
.carousel-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #fed7aa;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.12);
  transition: background 0.2s, transform 0.2s;
}

.carousel-nav-btn:hover {
  background: #fff7ed;
  transform: scale(1.05);
}

/* ── Responsive / perf ── */
@media (max-width: 1023px) {
  .hero-heart-deco, .phone-float {
    animation: none;
  }
  .reveal, .cta-reveal, .reveal-group .reveal-child {
    transform: none !important;
    transition: opacity 0.45s ease !important;
  }
  .reveal.visible, .cta-reveal.visible, .reveal-group.visible .reveal-child {
    transform: none !important;
  }
  .promo-banner:hover, .feature-list-item:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .cta-reveal, .reveal-group .reveal-child {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-heart-deco, .phone-float { animation: none !important; }
}
