/* ==========================================================================
   Hadi Yapalım — Website Styles
   Palet: Mor (#7C3AED) tema, Space Grotesk font, canlı ve dinamik.
   ========================================================================== */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
ul { list-style: none; }

/* Design Tokens */
:root {
  --primary: #7C3AED;
  --primary-dark: #6D28D9;
  --primary-light: #8B5CF6;
  --primary-lighter: #A78BFA;
  --primary-50: #F5F3FF;
  --primary-100: #EDE9FE;
  --primary-200: #DDD6FE;
  --primary-300: #C4B5FD;
  --accent: #22D3EE;
  --accent-dark: #06B6D4;

  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;

  --bg: #FBFAFF;
  --surface: #FFFFFF;
  --card: #FFFFFF;
  --border: #E5E1FF;
  --border-soft: #F1EEFF;

  --text-primary: #0F0E1A;
  --text-secondary: #454266;
  --text-muted: #6B6790;
  --text-hint: #9E99B8;

  --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 50%, #6D28D9 100%);
  --gradient-soft: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%);
  --gradient-hero: radial-gradient(ellipse at top, #EDE9FE 0%, #FBFAFF 60%);

  --shadow-sm: 0 1px 2px rgba(124, 58, 237, 0.06);
  --shadow-md: 0 4px 12px rgba(124, 58, 237, 0.08);
  --shadow-lg: 0 12px 32px rgba(124, 58, 237, 0.12);
  --shadow-glow: 0 8px 24px rgba(124, 58, 237, 0.25);

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 999px;

  --header-h: 68px;
  --container: 1180px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  color-scheme: light;
}

/* ── Dark Mode ────────────────────────────────────────── */
/* Sistem tercihi — kullanıcı hiç seçim yapmadıysa devreye girer */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0A0918;
    --surface: #14132A;
    --card: #1A1830;
    --border: #2B2846;
    --border-soft: #22203C;

    --text-primary: #F1F0FF;
    --text-secondary: #B8B4D6;
    --text-muted: #8F8AAF;
    --text-hint: #6B6690;

    --primary-50: #1F1B3D;
    --primary-100: #2A2452;
    --primary-200: #3A3170;

    --gradient-soft: linear-gradient(135deg, #1A1830 0%, #2A2452 100%);
    --gradient-hero: radial-gradient(ellipse at top, #2A2452 0%, #0A0918 60%);

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 8px 24px rgba(124, 58, 237, 0.5);

    color-scheme: dark;
  }
}

/* Kullanıcı manual seçtiyse — sistem tercihini override eder */
:root[data-theme="dark"] {
  --bg: #0A0918;
  --surface: #14132A;
  --card: #1A1830;
  --border: #2B2846;
  --border-soft: #22203C;

  --text-primary: #F1F0FF;
  --text-secondary: #B8B4D6;
  --text-muted: #8F8AAF;
  --text-hint: #6B6690;

  --primary-50: #1F1B3D;
  --primary-100: #2A2452;
  --primary-200: #3A3170;

  --gradient-soft: linear-gradient(135deg, #1A1830 0%, #2A2452 100%);
  --gradient-hero: radial-gradient(ellipse at top, #2A2452 0%, #0A0918 60%);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 8px 24px rgba(124, 58, 237, 0.5);

  color-scheme: dark;
}

/* Dark mode özel override'lar */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .site-header {
    background: rgba(10, 9, 24, 0.85);
  }
  :root:not([data-theme="light"]) .hero-showcase,
  :root:not([data-theme="light"]) .hero-earn-badge,
  :root:not([data-theme="light"]) .cookie-banner {
    background: var(--card);
  }
  :root:not([data-theme="light"]) .hero-activity-item .cat-icon {
    background: var(--surface);
  }
  :root:not([data-theme="light"]) .hero-showcase-heading .h-title,
  :root:not([data-theme="light"]) .hero-activity-item .a-title {
    color: var(--text-primary);
  }
  :root:not([data-theme="light"]) .cookie-banner .cookie-title {
    color: var(--text-primary);
  }
  :root:not([data-theme="light"]) .phone-mockup {
    background: #000;
  }
}
:root[data-theme="dark"] .site-header { background: rgba(10, 9, 24, 0.85); }
:root[data-theme="dark"] .hero-showcase,
:root[data-theme="dark"] .hero-earn-badge,
:root[data-theme="dark"] .cookie-banner { background: var(--card); }
:root[data-theme="dark"] .hero-activity-item .cat-icon { background: var(--surface); }
:root[data-theme="dark"] .hero-showcase-heading .h-title,
:root[data-theme="dark"] .hero-activity-item .a-title { color: var(--text-primary); }
:root[data-theme="dark"] .cookie-banner .cookie-title { color: var(--text-primary); }
:root[data-theme="dark"] .phone-mockup { background: #000; }

/* ── Accessibility ─────────────────────────────────────── */
/* Skip to main content link — klavye kullanıcıları için */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 300;
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s var(--ease);
  box-shadow: var(--shadow-lg);
}
.skip-link:focus {
  top: 12px;
  outline: none;
}

/* Klavye focus indicator — tüm interaktif öğelerde tutarlı */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}
/* Mouse tıklamalarında outline gösterme */
:focus:not(:focus-visible) { outline: none; }

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

/* ── Container ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Header ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow 0.2s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: var(--shadow-glow);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color 0.15s var(--ease), background 0.15s var(--ease);
}
.nav-link:hover { color: var(--primary); background: var(--primary-50); }
.nav-link.active { color: var(--primary); font-weight: 600; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.15s var(--ease);
}
.lang-switch:hover { border-color: var(--primary); color: var(--primary); }
.lang-switch svg { width: 14px; height: 14px; }

.btn-menu {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
}
.btn-menu:hover { background: var(--primary-50); }
.btn-menu svg { width: 22px; height: 22px; }

.theme-toggle {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: color 0.15s var(--ease), border-color 0.15s var(--ease), background 0.15s var(--ease), transform 0.2s var(--ease);
  background: transparent;
}
.theme-toggle:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--primary-50);
  transform: rotate(15deg);
}
.theme-toggle svg { width: 16px; height: 16px; }
.theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .icon-sun { display: block; }
  :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: none; }
}

.nav-mobile {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border-soft);
  padding: 12px 20px 20px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 49;
}
.nav-mobile.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-mobile .nav-link {
  display: block;
  padding: 12px 12px;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border-soft);
}
.nav-mobile .nav-link:last-child { border-bottom: none; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease), background 0.15s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { box-shadow: 0 12px 30px rgba(124, 58, 237, 0.35); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--primary-50); }
.btn-ghost { color: var(--text-secondary); padding: 10px 14px; }
.btn-ghost:hover { color: var(--primary); }
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn svg { width: 16px; height: 16px; }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 64px 0 72px;
  background: var(--gradient-hero);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--primary-100);
  color: var(--primary-dark);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.hero h1 {
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.hero h1 .accent-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 26px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-stats {
  display: flex;
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.hero-stat .num {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}
.hero-stat .lbl {
  font-size: 12px;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  padding: 20px 24px 0 0;
}
/* hero-orb ve hero-ghost class'ları About sayfası için kalıyor */
.hero-orb {
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  border-radius: 50%;
  box-shadow: 0 30px 80px rgba(124, 58, 237, 0.35);
  animation: orb-float 6s ease-in-out infinite;
}
.hero-ghost {
  position: absolute;
  top: 8%; left: 15%; right: 15%; bottom: 8%;
  animation: ghost-float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

/* ── Hero Showcase Card ─────────────────────────────────── */
.hero-showcase {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(124, 58, 237, 0.22), 0 8px 20px rgba(124, 58, 237, 0.08);
  overflow: hidden;
  position: relative;
  animation: card-float 6s ease-in-out infinite;
}
.hero-showcase-top {
  background: var(--gradient-primary);
  padding: 32px 24px 26px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-showcase-top::before,
.hero-showcase-top::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(20px);
  pointer-events: none;
}
.hero-showcase-top::before { top: -30px; right: -30px; width: 140px; height: 140px; }
.hero-showcase-top::after { bottom: -20px; left: -20px; width: 100px; height: 100px; }
.hero-showcase-ghost {
  width: 120px;
  animation: ghost-float 4s ease-in-out infinite;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.25));
  position: relative;
  z-index: 1;
}
.hero-showcase-tagline {
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.hero-showcase-body {
  padding: 18px 18px 20px;
}
.hero-showcase-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 0 4px;
}
.hero-showcase-heading .h-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}
.hero-showcase-heading .h-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--success);
  background: rgba(16, 185, 129, 0.12);
  padding: 3px 8px;
  border-radius: 999px;
}
.hero-activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  margin-bottom: 6px;
  background: var(--primary-50);
  border-radius: 12px;
  transition: transform 0.15s var(--ease);
}
.hero-activity-item:last-child { margin-bottom: 0; }
.hero-activity-item:hover { transform: translateX(3px); }
.hero-activity-item .cat-icon {
  width: 34px; height: 34px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(124, 58, 237, 0.08);
}
.hero-activity-item .info { flex: 1; min-width: 0; }
.hero-activity-item .a-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-activity-item .a-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.hero-activity-item .a-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  flex-shrink: 0;
}

/* Floating earn badge */
.hero-earn-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  padding: 12px 14px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.20), 0 4px 8px rgba(0, 0, 0, 0.04);
  z-index: 3;
  animation: chip-float-a 5s ease-in-out infinite;
  min-width: 118px;
}
.hero-earn-badge .badge-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-earn-badge .badge-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.hero-earn-badge .badge-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 4px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.hero-earn-badge .badge-trend {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  color: var(--success);
  font-weight: 700;
  margin-top: 4px;
}

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

@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.3); } }
@keyframes orb-float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-10px) scale(1.02); } }
@keyframes ghost-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes chip-float-a { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes chip-float-b { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes chip-float-c { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ── Section ───────────────────────────────────────────── */
.section {
  padding: 72px 0;
}
.section-tight { padding: 48px 0; }
.section-alt { background: var(--gradient-soft); }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.section-eyebrow {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-100);
  color: var(--primary-dark);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.section-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
}

/* ── Features Grid ─────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 16px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ── Categories ─────────────────────────────────────────── */
.categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.category-chip {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
  transition: transform 0.15s var(--ease-out), border-color 0.15s var(--ease), background 0.15s var(--ease);
  cursor: pointer;
}
.category-chip:hover {
  transform: translateY(-3px);
  border-color: var(--primary-300);
  background: var(--primary-50);
}
.category-emoji {
  font-size: 26px;
  margin-bottom: 6px;
  display: block;
}
.category-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ── Earn Section (Kazanç) ─────────────────────────────── */
.earn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.earn-role {
  background: var(--card);
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease), border-color 0.15s var(--ease);
  position: relative;
  overflow: hidden;
}
.earn-role:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}
.earn-role.featured {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-glow);
}
.earn-role.featured::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
}
.earn-role-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  position: relative;
}
.earn-role-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius);
  background: var(--primary-100);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.earn-role.featured .earn-role-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.earn-role-icon svg { width: 20px; height: 20px; }
.earn-role-title { font-size: 16px; font-weight: 700; line-height: 1.2; }
.earn-role-sub {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}
.earn-role.featured .earn-role-sub { color: rgba(255, 255, 255, 0.85); }
.earn-role p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  position: relative;
}
.earn-role.featured p { color: rgba(255, 255, 255, 0.92); }
.earn-role ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.earn-role ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-primary);
  line-height: 1.5;
}
.earn-role.featured ul li { color: #fff; }
.earn-role ul li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--primary-100);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237C3AED' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px;
  margin-top: 1px;
}
.earn-role.featured ul li::before {
  background-color: rgba(255, 255, 255, 0.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.earn-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
}
.earn-perk {
  display: flex;
  align-items: center;
  gap: 12px;
}
.earn-perk-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius);
  background: var(--primary-100);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.earn-perk-icon svg { width: 18px; height: 18px; }
.earn-perk-title { font-size: 13px; font-weight: 700; color: var(--text-primary); line-height: 1.2; }
.earn-perk-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── How It Works ──────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.step-card {
  background: var(--card);
  padding: 26px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  position: relative;
}
.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: var(--shadow-glow);
}
.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.step-card p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ── Showcase / App Preview ─────────────────────────────── */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.showcase-content h2 {
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.showcase-content p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-primary);
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--primary-100);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237C3AED' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px;
  margin-top: 2px;
}

.phone-mockup {
  position: relative;
  width: 260px;
  height: 520px;
  margin: 0 auto;
  background: #1A1A2E;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(124, 58, 237, 0.25);
  transform: rotate(-3deg);
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  background: var(--gradient-primary);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  z-index: 2;
}
.phone-inner {
  flex: 1;
  padding: 30px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.phone-ghost {
  width: 90px;
  animation: ghost-float 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}
.phone-inner h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.phone-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  text-align: center;
}
.phone-cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.phone-card-line {
  background: rgba(255, 255, 255, 0.15);
  height: 32px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 8px;
}
.phone-card-line::before {
  content: '';
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}
.phone-card-line::after {
  content: '';
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

/* ── CTA Banner ────────────────────────────────────────── */
.cta-banner {
  position: relative;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.3);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(30px);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: rgba(34, 211, 238, 0.2);
  border-radius: 50%;
  filter: blur(30px);
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.cta-content p {
  font-size: 15px;
  opacity: 0.92;
  margin-bottom: 20px;
}
.cta-content .btn-primary {
  background: #fff;
  color: var(--primary-dark);
}
.cta-content .btn-primary:hover { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15); }
.cta-content .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.cta-content .btn-outline:hover { background: rgba(255, 255, 255, 0.1); }
.cta-ghost {
  position: relative;
  z-index: 1;
  width: 180px;
  margin: 0 auto;
  animation: ghost-float 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

/* ── Testimonials ──────────────────────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease), border-color 0.15s var(--ease);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
  color: #F59E0B;
  align-items: center;
}
.testimonial-stars svg {
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0;
  display: block;
}
.testimonial-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-text::before {
  content: '"';
  color: var(--primary);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin-right: 4px;
  vertical-align: -6px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── FAQ ───────────────────────────────────────────────── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.faq-item[open] { border-color: var(--primary-300); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237C3AED' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.2s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item .faq-body {
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* ── Page Hero (inner pages) ───────────────────────────── */
.page-hero {
  padding: 56px 0 40px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
}
.page-hero h1 {
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.page-hero p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
}
.crumb {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.crumb a { color: var(--primary); font-weight: 600; }

/* ── About ─────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-grid h2 {
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.about-grid p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.about-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 380px;
  margin: 0 auto;
}
.about-visual .hero-orb { animation-duration: 8s; }

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.value-card {
  background: var(--card);
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.value-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--primary-100);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.value-icon svg { width: 20px; height: 20px; }
.value-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.value-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

/* ── Contact ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-item {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.15s var(--ease);
}
.contact-item:hover { border-color: var(--primary-200); }
.contact-item .icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item .icon svg { width: 18px; height: 18px; }
.contact-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.contact-item p, .contact-item a {
  font-size: 13px;
  color: var(--text-secondary);
}
.contact-item a:hover { color: var(--primary); }

.contact-form {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--primary-50);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}
.form-success,
.form-error {
  display: none;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 14px;
}
.form-success { background: rgba(16, 185, 129, 0.1); color: #047857; }
.form-error { background: rgba(239, 68, 68, 0.1); color: #B91C1C; }
.form-success.show,
.form-error.show { display: flex; align-items: center; gap: 8px; }

/* ── Legal Pages ───────────────────────────────────────── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 0 72px;
}
.legal-content h2 {
  font-size: 21px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 32px 0 12px;
  letter-spacing: -0.01em;
  scroll-margin-top: calc(var(--header-h) + 16px);
  line-height: 1.3;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 22px 0 8px;
  scroll-margin-top: calc(var(--header-h) + 16px);
  line-height: 1.35;
}
.legal-content p, .legal-content li {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  line-height: 1.75;
}
.legal-content strong { color: var(--text-primary); font-weight: 700; }
.legal-content ul, .legal-content ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.legal-content ul li, .legal-content ol li {
  list-style: disc;
  margin-bottom: 6px;
  padding-left: 4px;
}
.legal-content ol li { list-style: decimal; }
.legal-content ul ul, .legal-content ol ol,
.legal-content ul ol, .legal-content ol ul {
  margin-top: 6px;
  margin-bottom: 6px;
}
.legal-content code {
  background: var(--primary-50);
  color: var(--primary-dark);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  word-break: break-word;
}
.legal-content a { word-break: break-word; }
.legal-updated {
  font-size: 13px;
  color: var(--text-muted);
  padding: 10px 14px;
  background: var(--primary-50);
  border-radius: var(--radius);
  display: inline-block;
  margin-bottom: 26px;
  font-weight: 500;
}

/* ── Legal sayfalar — mobil tipografi (uygulama WebView) ── */
@media (max-width: 720px) {
  .legal-content {
    padding: 24px 0 56px;
    max-width: 100%;
  }
  .legal-content h2 {
    font-size: 19px;
    margin: 26px 0 10px;
  }
  .legal-content h3 {
    font-size: 16px;
    margin: 20px 0 6px;
  }
  .legal-content p, .legal-content li {
    font-size: 15.5px;
    line-height: 1.72;
  }
  .legal-content ul, .legal-content ol {
    padding-left: 20px;
  }
  .legal-updated {
    display: block;
    text-align: center;
    padding: 9px 12px;
    font-size: 12.5px;
    margin-bottom: 22px;
  }
  .page-hero {
    padding: 32px 0 24px;
  }
  .page-hero h1 {
    font-size: 26px;
    line-height: 1.2;
  }
  .page-hero p {
    font-size: 14.5px;
  }
  .crumb { font-size: 11.5px; margin-bottom: 10px; }
}

@media (max-width: 480px) {
  .legal-content h2 { font-size: 18px; margin-top: 24px; }
  .legal-content h3 { font-size: 15.5px; }
  .legal-content p, .legal-content li { font-size: 15px; }
  .legal-content ul, .legal-content ol { padding-left: 18px; }
  .page-hero h1 { font-size: 22px; }
  .page-hero p { font-size: 14px; }
}

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
  background: #0F0E1A;
  color: #C8C4E0;
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #fff;
  font-size: 17px;
  margin-bottom: 12px;
}
.footer-brand .brand-logo { width: 32px; height: 32px; border-radius: 9px; }
.footer-desc {
  font-size: 13px;
  color: #8B87A8;
  max-width: 300px;
  margin-bottom: 14px;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8C4E0;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 14px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  font-size: 13px;
  color: #A8A3C0;
  transition: color 0.15s var(--ease);
}
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: #8B87A8;
  flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom-links a:hover { color: #fff; }

/* ── Cookie Consent Banner ─────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  box-shadow: 0 20px 50px rgba(15, 14, 26, 0.15), 0 6px 15px rgba(15, 14, 26, 0.06);
  z-index: 200;
  display: none;
  gap: 14px;
  align-items: flex-start;
  animation: cookie-slide 0.35s var(--ease-out);
}
.cookie-banner.show { display: flex; }
@keyframes cookie-slide {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-banner .cookie-icon {
  font-size: 22px;
  flex-shrink: 0;
  padding-top: 2px;
  line-height: 1;
}
.cookie-banner .cookie-content { flex: 1; min-width: 0; }
.cookie-banner .cookie-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.cookie-banner .cookie-text {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.cookie-banner .cookie-text a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  align-self: center;
}
.cookie-banner .cookie-actions .btn {
  padding: 9px 16px;
  font-size: 13px;
  box-shadow: none;
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    padding: 14px 16px;
    gap: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    border-radius: var(--radius);
  }
  .cookie-banner .cookie-icon { display: none; }
  .cookie-banner .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
  .cookie-banner .cookie-actions .btn {
    flex: 1;
    padding: 10px 12px;
  }
}

/* ── Reveal on scroll ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero { padding: 44px 0 56px; }
  .hero .container { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-visual { max-width: 320px; order: -1; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .categories { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .earn-grid { grid-template-columns: 1fr; }
  .earn-perks { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; gap: 14px; }
  .hero-visual { max-width: 340px; padding-top: 16px; padding-right: 18px; }
  .hero-showcase-ghost { width: 100px; }
  .showcase { grid-template-columns: 1fr; text-align: center; }
  .showcase .check-list li { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-visual { order: -1; max-width: 280px; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-banner { grid-template-columns: 1fr; text-align: center; padding: 36px 24px; }
  .cta-ghost { width: 140px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .section { padding: 56px 0; }
  .nav-desktop { display: none; }
  .btn-menu { display: inline-flex; }
}

@media (max-width: 560px) {
  body { font-size: 14px; }
  .container { padding: 0 16px; }
  .hero { padding: 32px 0 44px; }
  .hero h1 { font-size: 26px; }
  .hero-visual { max-width: 300px; padding-top: 14px; padding-right: 14px; }
  .hero-showcase-top { padding: 24px 18px 20px; }
  .hero-showcase-ghost { width: 90px; }
  .hero-showcase-body { padding: 14px 14px 16px; }
  .hero-activity-item { padding: 8px 10px; }
  .hero-activity-item .cat-icon { width: 30px; height: 30px; font-size: 15px; }
  .hero-activity-item .a-title { font-size: 12px; }
  .hero-activity-item .a-sub { font-size: 10px; }
  .hero-activity-item .a-price { font-size: 12px; }
  .hero-earn-badge { padding: 9px 11px; min-width: 100px; }
  .hero-earn-badge .badge-value { font-size: 16px; }
  .hero-earn-badge .badge-label { font-size: 9px; }
  .hero-earn-badge .badge-trend { font-size: 9px; }
  .hero-stats { gap: 18px; }
  .features { grid-template-columns: 1fr; }
  .categories { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: 1fr; }
  .section { padding: 44px 0; }
  .section-header { margin-bottom: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .phone-mockup { width: 220px; height: 440px; }
  .brand { font-size: 15px; }
  .brand-logo { width: 30px; height: 30px; }
  .btn { padding: 10px 16px; font-size: 13px; }
  .btn-lg { padding: 12px 20px; font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Print styles ──────────────────────────────────────── */
@media print {
  *, *::before, *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  body { font-size: 11pt; line-height: 1.5; }
  .site-header,
  .site-footer,
  .cookie-banner,
  .btn,
  .hero-cta,
  .lang-switch,
  .theme-toggle,
  .btn-menu,
  .nav-mobile,
  .header-actions,
  .footer-social,
  .skip-link,
  .hero-visual,
  .hero-earn-badge,
  .cta-banner,
  .faq-item summary::after {
    display: none !important;
  }
  a { color: #000 !important; text-decoration: underline; }
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
    color: #555 !important;
  }
  h1, h2, h3, h4 {
    page-break-after: avoid;
    color: #000 !important;
  }
  h1 { font-size: 22pt; }
  h2 { font-size: 16pt; margin-top: 20pt; }
  h3 { font-size: 13pt; }
  p, li { orphans: 3; widows: 3; }
  .container, .legal-content { max-width: 100% !important; padding: 0 !important; }
  .page-hero {
    padding: 0 0 20pt !important;
    text-align: left !important;
    background: none !important;
  }
  .page-hero::before, .page-hero::after { display: none !important; }
  .crumb { display: none; }
  .section { padding: 20pt 0 !important; }
  .faq-item {
    border: 1px solid #ccc !important;
    page-break-inside: avoid;
  }
  .faq-item[open] .faq-body,
  .faq-item .faq-body {
    display: block !important;
  }
  .legal-updated {
    background: none !important;
    border: 1px solid #ccc !important;
    padding: 6pt 10pt !important;
  }
  @page {
    margin: 2cm;
  }
}
