/* ============================================
   Askıda Bilet – Landing (Bulbi)
   ============================================ */

:root {
  --orange: #FF6B2C;
  --orange-dark: #E85A1C;
  --orange-soft: #FFF1EA;
  --orange-glow: rgba(255, 107, 44, 0.25);
  --ink: #1A1A1A;
  --ink-soft: #4B5563;
  --muted: #6B7280;
  --line: #F0F0F0;
  --bg: #FFFFFF;
  --bg-alt: #FAFAF9;
  --bg-dark: #1C1410;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px -20px rgba(28, 20, 16, 0.18);
  --shadow-sm: 0 8px 24px -12px rgba(28, 20, 16, 0.12);
  --max: 1120px;
  --header-h: 72px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

/* Sticky header altında section başlıkları kaybolmasın */
section[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: url("/images/cursor-heart.svg") 10 10, auto;
  position: relative;
}

/* ---------- Floating background icons ---------- */
.bg-decor {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* İçerik dekorun üstünde */
.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.bg-float {
  position: absolute;
  color: #FF6B2C;
  opacity: 0.16;
  display: grid;
  place-items: center;
  /* will-change kaldırıldı: hover jank azaltır */
  animation: bg-float-y 16s ease-in-out infinite;
  backface-visibility: hidden;
}

.bg-float svg {
  width: 100%;
  height: 100%;
  display: block;
}

.bg-float-1  { width: 64px; top: 10%; left: 4%;  animation-duration: 18s; animation-delay: 0s;    opacity: 0.18; --r: -12deg; }
.bg-float-2  { width: 36px; top: 20%; right: 6%; animation-duration: 13s; animation-delay: -2s;   opacity: 0.2;  color: #FF8A4C; --r: 8deg; }
.bg-float-3  { width: 44px; top: 36%; left: 10%; animation-duration: 16s; animation-delay: -4s;   opacity: 0.16; color: #F59E0B; --r: 15deg; }
.bg-float-4  { width: 58px; top: 52%; right: 4%; animation-duration: 20s; animation-delay: -1s;   opacity: 0.18; --r: 8deg; }
.bg-float-5  { width: 30px; top: 66%; left: 6%;  animation-duration: 12s; animation-delay: -6s;   opacity: 0.2;  color: #FF6B2C; --r: -10deg; }
.bg-float-6  { width: 46px; top: 78%; right: 12%;animation-duration: 19s; animation-delay: -3s;   opacity: 0.15; color: #FB923C; --r: 6deg; }
.bg-float-7  { width: 50px; top: 40%; right: 16%;animation-duration: 15s; animation-delay: -5s;   opacity: 0.16; --r: -6deg; }
.bg-float-8  { width: 40px; top: 16%; left: 24%; animation-duration: 14s; animation-delay: -7s;   opacity: 0.14; --r: 12deg; }
.bg-float-9  { width: 48px; top: 86%; left: 26%; animation-duration: 21s; animation-delay: -2.5s; opacity: 0.17; color: #FBBF24; --r: 10deg; }
.bg-float-10 { width: 56px; top: 28%; left: 46%; animation-duration: 22s; animation-delay: -8s;   opacity: 0.13; --r: -18deg; }
.bg-float-11 { width: 28px; top: 58%; left: 38%; animation-duration: 11s; animation-delay: -1.5s; opacity: 0.19; color: #FF8A4C; --r: 4deg; }
.bg-float-12 { width: 38px; top: 6%;  right: 26%;animation-duration: 16s; animation-delay: -9s;   opacity: 0.16; color: #F59E0B; --r: -8deg; }

@keyframes bg-float-y {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--r, 0deg)); }
  50%      { transform: translate3d(8px, -22px, 0) rotate(var(--r, 0deg)); }
}

/* Bölümler daha şeffaf → simgeler görünsün */
.section-alt {
  background: rgba(250, 250, 249, 0.72);
}

.section:not(.section-alt):not(.section-dark):not(.section-final) {
  background: rgba(255, 255, 255, 0.7);
}

.section-final {
  background: linear-gradient(180deg, rgba(255, 248, 244, 0.78) 0%, rgba(255, 255, 255, 0.82) 100%);
}

.section-dark {
  background: rgba(28, 20, 16, 0.94);
}

@media (max-width: 700px) {
  .bg-float-8,
  .bg-float-10,
  .bg-float-12 {
    display: none;
  }
  .bg-float {
    opacity: 0.12;
  }
}

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

a,
button,
.btn,
.faq-trigger,
summary,
.menu-toggle,
.campaign-hero {
  cursor: url("/images/cursor-heart.svg") 10 10, pointer;
}

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

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

ul, ol {
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - 2rem, 820px);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--orange);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 10000;
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.08);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-logo {
  height: 32px;
  width: auto;
}

.brand-badge {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-soft);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 107, 44, 0.15);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s;
}

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

.header-cta {
  display: none;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1rem 1.25rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a:not(.btn) {
  padding: 0.85rem 0.5rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 10px;
}

.mobile-nav a:not(.btn):hover {
  background: var(--orange-soft);
  color: var(--orange);
}

.mobile-nav .btn {
  margin-top: 0.5rem;
  justify-content: center;
}

@media (min-width: 900px) {
  .nav { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .brand-logo { height: 36px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-sm {
  font-size: 0.8125rem;
  padding: 0.6rem 1.1rem;
}

.btn-lg {
  font-size: 1rem;
  padding: 0.95rem 1.6rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #FF8A4C 100%);
  color: #fff;
  box-shadow: 0 8px 24px -6px var(--orange-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
  box-shadow: 0 12px 28px -6px rgba(255, 107, 44, 0.4);
  transform: translateY(-1px);
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid #E5E7EB;
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-soft);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 2.5rem 0 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}

.blob-1 {
  width: 420px;
  height: 420px;
  background: #FFD4BC;
  top: -80px;
  right: -60px;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: #FFE8D6;
  bottom: 80px;
  left: -80px;
}

.blob-3 {
  width: 200px;
  height: 200px;
  background: #FDE68A;
  top: 40%;
  left: 40%;
  opacity: 0.35;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding-bottom: 3rem;
}

@media (min-width: 960px) {
  .hero {
    padding-top: 3.5rem;
  }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    padding-bottom: 4rem;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #F3F4F6;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.08); }
}

.hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  margin-top: 0.25rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--orange) 0%, #FF9A5C 50%, #F59E0B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-lead strong {
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #F3F4F6;
  border-radius: 16px;
  backdrop-filter: blur(8px);
  width: fit-content;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.stat-value {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 28px;
  background: #E5E7EB;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: min(100%, 440px);
  border-radius: 28px;
  overflow: visible;
}

.hero-card .hero-media {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #FFF7F2 0%, #FFE8D9 100%);
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
}

.hero-card video.hero-media {
  position: relative;
  z-index: 1;
}

/* Video yüklendiğinde img gizlenir (JS) */
.hero-card.has-video .hero-fallback {
  display: none;
}

.hero-card:not(.has-video) video.hero-media {
  display: none;
}

.hero-card img.hero-fallback {
  width: 100%;
  border-radius: 28px;
}

.faq-more-count {
  color: var(--orange);
  font-weight: 800;
}

.floating-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.15);
  border: 1px solid #F3F4F6;
  animation: float 4s ease-in-out infinite;
  white-space: nowrap;
}

.chip-icon {
  font-size: 0.95rem;
}

.chip-1 {
  top: 12%;
  left: -8%;
  animation-delay: 0s;
}

.chip-2 {
  top: 48%;
  right: -6%;
  animation-delay: 0.8s;
}

.chip-3 {
  bottom: 14%;
  left: 4%;
  animation-delay: 1.4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 640px) {
  .floating-chip {
    font-size: 0.68rem;
    padding: 0.4rem 0.65rem;
  }
  .chip-1 { left: 0; }
  .chip-2 { right: 0; }
}

/* Trust bar – isbirligi banner */
.trust-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, #fff 100%);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0 1.5rem;
}

.trust-banner {
  display: block;
  width: min(100%, 720px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px -12px rgba(255, 107, 44, 0.25);
  border: 1px solid rgba(255, 107, 44, 0.12);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  background: #fff;
}

.trust-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -14px rgba(255, 107, 44, 0.35);
}

.trust-banner .trust-media {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.trust-banner.has-video .trust-fallback {
  display: none;
}

.trust-banner:not(.has-video) video.trust-media {
  display: none;
}

/* ---------- Sections ---------- */
.section {
  padding: 5rem 0;
}

/* section-alt: bg-decor ile birlikte — yukarıda yarı saydam tanım var */

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head p {
  color: var(--ink-soft);
  max-width: 36rem;
  margin: 0.75rem auto 0;
  font-size: 1.0625rem;
}

.section-head.light h2,
.section-head.light p {
  color: #fff;
}

.section-head.light p {
  color: rgba(255, 255, 255, 0.75);
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-head.light .eyebrow {
  color: #FFB08A;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

/* Features */
.feature-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 6px 18px -12px rgba(28, 20, 16, 0.12);
  /* GPU-dostu hover: ağır box-shadow animasyonu yok → donma azalır */
  transition: transform 0.22s ease, border-color 0.22s ease;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  isolation: isolate;
  contain: layout style;
}

.feature-card:hover {
  transform: translate3d(0, -4px, 0);
  border-color: rgba(255, 107, 44, 0.28);
  box-shadow: 0 14px 28px -16px rgba(255, 107, 44, 0.28);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 107, 44, 0.1);
  color: var(--c, #FF6B2C);
  margin-bottom: 1.1rem;
  transition: transform 0.22s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.06);
}

.feature-card:nth-child(2) .feature-icon {
  background: rgba(59, 130, 246, 0.1);
}

.feature-card:nth-child(3) .feature-icon {
  background: rgba(16, 185, 129, 0.1);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

/* Steps */
.steps {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  counter-reset: none;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.step-visual {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #FFF8F4;
  aspect-ratio: 1;
}

.step-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #FBBF24);
  opacity: 0;
  transition: opacity 0.3s;
}

.step:hover::after {
  opacity: 1;
}

.step-num {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--orange), #FBBF24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.step-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.step-body p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

/* CTA banner */
.cta-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #1C1410 0%, #3D2418 50%, #FF6B2C 160%);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-banner-copy h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.cta-banner-copy p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  max-width: 28rem;
}

.cta-banner .btn-primary {
  flex-shrink: 0;
}

/* Partner */
.partner-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .partner-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.partner-copy .eyebrow {
  margin-bottom: 0.75rem;
}

.partner-copy h2 {
  margin-bottom: 1rem;
}

.partner-copy > p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.check-list {
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--orange-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF6B2C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}

.partner-card {
  background: linear-gradient(160deg, #FFF8F4 0%, #FFEDE3 100%);
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 107, 44, 0.12);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 248, 244, 0.88);
  pointer-events: none;
}

.partner-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

/* Campaign CTA */
.campaign-hero {
  display: grid;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}

.campaign-hero:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

@media (min-width: 800px) {
  .campaign-hero {
    grid-template-columns: 1.1fr 1fr;
  }
}

.campaign-hero-media {
  min-height: 220px;
  background: #FFF8F4;
}

.campaign-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.campaign-hero-body {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 100%;
}

.campaign-hero-top {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.campaign-hero-body h3 {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.campaign-hero-body p {
  color: var(--ink-soft);
  font-size: 0.975rem;
  line-height: 1.55;
  margin: 0;
}

.campaign-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  font-size: 0.75rem;
  font-weight: 800;
  color: #059669;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.campaign-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  animation: pulse 2s ease infinite;
}

.campaign-cta {
  display: flex;
  justify-content: flex-start;
  margin-top: auto;
}

.campaign-btn {
  pointer-events: none;
  width: 100%;
  max-width: 220px;
}

@media (max-width: 799px) {
  .campaign-btn {
    max-width: none;
  }
}

.campaign-hero:hover .campaign-btn {
  box-shadow: 0 12px 28px -6px rgba(255, 107, 44, 0.45);
  transform: translateY(-1px);
}

.partner-brand {
  height: 40px;
  width: auto;
}

.partner-plus {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
}

.partner-ministry {
  max-height: 90px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.partner-note {
  font-size: 0.875rem;
  color: var(--ink-soft);
  max-width: 20rem;
  margin-top: 0.5rem;
}

/* Why / dark */
.section-dark {
  background: var(--bg-dark);
  color: #fff;
}

.why-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1rem 1rem 1.35rem;
  transition: background 0.3s, border-color 0.3s;
  overflow: hidden;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 107, 44, 0.35);
}

.why-img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.06);
}

.why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-emoji {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.85rem;
}

.faq-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
  padding: 0.25rem 0 0.5rem;
}

.faq-more-wrap[hidden] {
  display: none !important;
}

.faq-more-btn {
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--orange);
  background: var(--orange-soft);
  border: 1.5px solid rgba(255, 107, 44, 0.25);
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  min-height: 48px;
  cursor: url("/images/cursor-heart.svg") 10 10, pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  box-sizing: border-box;
}

.faq-more-btn:hover {
  background: #FFE4D4;
  border-color: rgba(255, 107, 44, 0.45);
}

.faq-more-btn:active {
  transform: scale(0.98);
}

.faq-more-btn.is-open {
  background: #fff;
  color: var(--ink-soft);
  border-color: #E5E7EB;
}

.faq-item.is-extra {
  display: none;
}

.faq-item.is-extra.is-shown {
  display: block;
}

/* Live campaign cards */
.campaigns-grid {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 640px) {
  .campaigns-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .campaigns-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.campaigns-loading,
.campaigns-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2.75rem 1.75rem;
  color: var(--ink-soft);
  background: var(--bg-alt);
  border-radius: 20px;
  border: 1px dashed #E5E7EB;
}

.campaigns-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
}

.campaign-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px -18px rgba(28, 20, 16, 0.22);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.campaign-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -20px rgba(255, 107, 44, 0.35);
  border-color: rgba(255, 107, 44, 0.2);
}

.campaign-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #FFF8F4, #FFE8D9);
  overflow: hidden;
}

.campaign-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.campaign-card:hover .campaign-card-media img {
  transform: scale(1.06);
}

.campaign-price-chip {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(28, 20, 16, 0.88);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 18px -10px rgba(0, 0, 0, 0.45);
}

.campaign-card-body {
  padding: 1.2rem 1.25rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
  background: linear-gradient(180deg, #fff 0%, #FFFCFA 100%);
}

.campaign-card-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink);
}

.campaign-meta {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
  margin: 0;
}

.campaign-progress {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.campaign-progress-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
}

.campaign-progress-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.35;
  flex: 1;
}

.campaign-progress-pct {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--orange);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.campaign-progress-track {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: #F0E4DB;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
}

.campaign-progress-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    #E85A1C 0%,
    var(--orange) 40%,
    #FFB07A 70%,
    var(--orange) 100%
  );
  background-size: 200% 100%;
  min-width: 0;
  position: relative;
  box-shadow: 0 0 12px rgba(255, 107, 44, 0.35);
  transition: width 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Işık / shimmer – doluyormuş gibi akar */
.campaign-progress-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: progress-shimmer 2.2s ease-in-out infinite;
  border-radius: inherit;
}

.campaign-progress-fill.is-filled {
  animation: progress-glow 2.4s ease-in-out infinite;
}

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

@keyframes progress-glow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .campaign-progress-fill {
    transition: none;
    animation: none;
  }
  .campaign-progress-fill::after {
    animation: none;
  }
}

.campaign-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 107, 44, 0.12);
}

.campaign-cta-label {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--orange);
}

.campaign-cta-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange-soft);
  color: var(--orange);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}

.campaign-card:hover .campaign-cta-arrow {
  background: var(--orange);
  color: #fff;
  transform: translateX(3px);
}

.campaigns-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(135deg, #FFF8F4 0%, #fff 60%);
  border: 1px solid rgba(255, 107, 44, 0.14);
  border-radius: 18px;
  box-shadow: 0 8px 24px -18px rgba(255, 107, 44, 0.35);
}

.campaigns-footer-text {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  flex: 1 1 220px;
}

.campaigns-footer .btn {
  padding: 0.9rem 1.45rem;
  min-height: 48px;
  gap: 0.5rem;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .campaigns-footer {
    flex-direction: column;
    text-align: center;
    padding: 1.35rem 1.25rem;
  }

  .campaigns-footer .btn {
    width: 100%;
  }
}

/* Inner pages */
.page-main {
  padding: 2.5rem 0 4rem;
  min-height: 60vh;
}

.page-wrap h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 1.25rem;
  line-height: 1.15;
}

.page-lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 40rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.page-cards {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 720px) {
  .page-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-cards article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.page-cards h2 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.page-cards p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.breadcrumbs a {
  color: var(--orange);
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.page-steps {
  margin-top: 1rem;
}

.section-head p a {
  color: var(--orange);
  font-weight: 600;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.why-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

/* FAQ – smooth accordion */
.faq {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition:
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.faq-item:hover {
  border-color: rgba(255, 107, 44, 0.2);
}

.faq-item.is-open {
  border-color: rgba(255, 107, 44, 0.35);
  box-shadow: 0 12px 40px -16px rgba(255, 107, 44, 0.25);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--ink);
  transition: background 0.25s var(--ease);
}

.faq-trigger:hover {
  background: rgba(255, 107, 44, 0.03);
}

.faq-q {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.faq-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange-soft);
  color: var(--orange);
  transition:
    transform 0.4s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease);
}

.faq-icon svg {
  transition: transform 0.4s var(--ease);
}

.faq-item.is-open .faq-icon {
  background: var(--orange);
  color: #fff;
  transform: rotate(45deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-answer-inner {
  padding: 0 1.35rem 1.35rem;
  border-top: 1px solid transparent;
  transition: border-color 0.3s;
}

.faq-item.is-open .faq-answer-inner {
  border-top-color: rgba(255, 107, 44, 0.1);
  padding-top: 1rem;
}

.faq-answer-inner p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-answer-inner p + p {
  margin-top: 0.65rem;
}

.faq-answer-inner strong {
  color: var(--ink);
  font-weight: 700;
}

.faq-answer-inner a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .faq-panel {
    transition: none;
  }
  .faq-icon,
  .faq-icon svg {
    transition: none;
  }
}

/* Final CTA */
.section-final {
  background: linear-gradient(180deg, rgba(255, 248, 244, 0.78) 0%, rgba(255, 255, 255, 0.82) 100%);
  padding-bottom: 4rem;
}

.final-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .final-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.final-copy .eyebrow {
  margin-bottom: 0.75rem;
}

.final-copy h2 {
  margin-bottom: 1rem;
}

.final-copy > p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 28rem;
}

.final-copy .btn {
  margin-bottom: 1.5rem;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.2s, opacity 0.2s;
}

.store-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.store-btn small {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  opacity: 0.7;
  line-height: 1.2;
}

.final-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.final-visual img {
  width: min(100%, 380px);
  max-height: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 48px rgba(28, 20, 16, 0.2));
}

@media (min-width: 900px) {
  .final-visual img {
    width: min(100%, 440px);
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.75rem 2rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 0.85rem;
}

.footer-brand img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-brand p {
  font-size: 0.875rem;
  max-width: 18rem;
  line-height: 1.55;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
}

.footer-social-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}

.footer-social a:hover {
  color: var(--orange);
  border-color: rgba(255, 107, 44, 0.45);
  background: rgba(255, 107, 44, 0.1);
  transform: translateY(-2px);
}

.footer-tagline {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  text-align: right;
}

.footer-grid {
  display: grid;
  gap: 2rem 1.5rem;
  margin-bottom: 2.25rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col h4 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.footer-col a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-note {
  margin: 0;
}

@media (max-width: 640px) {
  .footer-social-block {
    align-items: flex-start;
    width: 100%;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-tagline {
    text-align: left;
  }
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange) 0%, #FF8A4C 100%);
  color: #fff;
  box-shadow: 0 10px 28px -8px rgba(255, 107, 44, 0.55);
  cursor: url("/images/cursor-heart.svg") 10 10, pointer;
  transition: transform 0.25s var(--ease), opacity 0.25s, box-shadow 0.25s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.92);
}

.back-to-top:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 32px -8px rgba(255, 107, 44, 0.65);
}

.back-to-top:active {
  transform: scale(0.96);
}

.back-to-top[hidden] {
  display: grid; /* keep layout for transition; visibility via opacity */
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 640px) {
  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 44px;
    height: 44px;
  }
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .floating-chip,
  .pill-dot {
    animation: none;
  }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
