/* ═══════════════════════════════════════════════════════════
   Görev Plus – Landing Page CSS  ·  Premium SaaS design
   ═══════════════════════════════════════════════════════════ */

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

.lp-body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #F7F9FC;
  color: #0F172A;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img, svg { display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Prevent CSS from overriding HTML hidden attribute */
[hidden] { display: none !important; }

.lp-container {
  width: min(1160px, calc(100vw - 40px));
  margin: 0 auto;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 20px;
  border-radius: 10px; font-size: 14px; font-weight: 600;
  transition: all .18s ease; cursor: pointer; border: none; white-space: nowrap;
}
.btn-primary { background: #2563EB; color: #fff; }
.btn-primary:hover { background: #1D4ED8; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,99,235,.35); }
.btn-ghost { background: transparent; color: #374151; border: 1.5px solid #E2E8F0; }
.btn-ghost:hover { border-color: #CBD5E1; background: #F8FAFC; }
.btn-lg { height: 50px; padding: 0 26px; font-size: 15px; border-radius: 12px; }
.btn-xl { height: 56px; padding: 0 32px; font-size: 16px; border-radius: 14px; font-weight: 700; }
.btn-white { background: #fff; color: #1D3B8A; font-weight: 700; }
.btn-white:hover { background: #EFF6FF; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,.12); }

/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,249,252,.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226,232,240,.8);
  transition: box-shadow .2s;
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(15,23,42,.08); }
.navbar-inner {
  display: flex; align-items: center; gap: 32px;
  height: 66px;
  width: min(1160px, calc(100vw - 40px));
  margin: 0 auto;
}
.navbar-logo { display: flex; align-items: center; gap: 10px; flex: none; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  overflow: hidden; flex: none;
  display: grid; place-items: center;
}
.logo-mark img { width: 36px; height: 36px; object-fit: contain; }
.logo-text { font-size: 17px; font-weight: 700; color: #0F172A; letter-spacing: -0.3px; }
.navbar-links { display: flex; align-items: center; gap: 28px; flex: 1; }
.navbar-links a { font-size: 14px; font-weight: 500; color: #374151; transition: color .15s; }
.navbar-links a:hover { color: #2563EB; }
.navbar-actions { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #374151; border-radius: 2px; transition: all .2s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: flex; flex-direction: column; gap: 12px;
  padding: 16px 20px; border-top: 1px solid #E2E8F0; background: #fff;
  animation: menuSlideDown .22s ease;
}
@keyframes menuSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu a { font-size: 15px; font-weight: 500; color: #374151; padding: 4px 0; }
.mobile-menu .btn { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero { position: relative; padding: 96px 0 80px; overflow: hidden; }
.hero-bg-blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,.12) 0%, transparent 70%);
  top: -120px; left: -120px;
}
.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,.09) 0%, transparent 70%);
  top: 50px; right: -80px;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  height: 32px; padding: 0 14px; border-radius: 999px;
  background: #EFF6FF; border: 1px solid #BFDBFE;
  color: #1D4ED8; font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #10B981; box-shadow: 0 0 0 3px rgba(16,185,129,.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,.25); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,.1); }
}
.hero-title {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900; line-height: 1.08; letter-spacing: -0.03em;
  color: #0F172A; margin-bottom: 20px;
}
.title-gradient {
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: 18px; line-height: 1.65; color: #64748B; max-width: 480px; margin-bottom: 32px; }
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.trust-badges { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-badges li { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: #4B5563; }

/* Mockup card */
.hero-right { position: relative; }
.mockup-card {
  background: #fff; border-radius: 20px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 20px 60px rgba(15,23,42,.12), 0 4px 16px rgba(15,23,42,.06);
  padding: 20px; position: relative; z-index: 2;
}
.mockup-header { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.mockup-dots { display: flex; gap: 5px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dots span:nth-child(1) { background: #FC5454; }
.mockup-dots span:nth-child(2) { background: #FDBB2D; }
.mockup-dots span:nth-child(3) { background: #29C940; }
.mockup-title-text { font-size: 13px; font-weight: 600; color: #64748B; margin-left: 4px; }
.mockup-balance {
  background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
  border-radius: 14px; padding: 18px 20px; color: #fff; margin-bottom: 16px;
}
.balance-label { font-size: 12px; opacity: .75; margin-bottom: 6px; }
.balance-amount { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; }
.balance-tag {
  display: inline-block; margin-top: 8px; font-size: 12px;
  background: rgba(255,255,255,.18); padding: 3px 10px; border-radius: 999px;
}
.mockup-tasks { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.m-task {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px;
  border: 1px solid #F1F5F9; background: #FAFBFC;
}
.m-task-icon { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; flex: none; }
.icon-green { background: #10B981; }
.icon-yellow { background: #F59E0B; }
.icon-blue { background: #2563EB; }
.m-task-info { flex: 1; }
.m-task-info span { display: block; font-size: 13px; font-weight: 600; color: #0F172A; }
.m-task-sub { font-size: 11px !important; font-weight: 400 !important; color: #94A3B8 !important; }
.m-task-reward { font-size: 13px; font-weight: 700; color: #10B981; }
.reward-pending { color: #F59E0B !important; }
.mockup-chart svg { width: 100%; height: auto; }
.chart-label { font-size: 12px; color: #94A3B8; margin-top: 4px; }
.chart-label strong { color: #0F172A; }

/* Floating cards */
.float-card {
  position: absolute; background: #fff;
  border-radius: 12px; border: 1px solid #E2E8F0;
  box-shadow: 0 8px 24px rgba(15,23,42,.1);
  padding: 10px 14px; display: flex; align-items: center; gap: 10px;
  z-index: 3; animation: floatBob 3s ease-in-out infinite;
}
.float-top-right { top: -18px; right: -20px; animation-delay: 0s; }
.float-bottom-left { bottom: 20px; left: -30px; animation-delay: 1.5s; }
@keyframes floatBob {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}
.float-icon { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; flex: none; }
.ficon-green { background: #10B981; }
.ficon-blue { background: #2563EB; }
.float-label { font-size: 11px; color: #94A3B8; }
.float-value { font-size: 13px; font-weight: 700; color: #0F172A; }

/* ══════════════════════════════════════════════════════════
   STATS SECTION
══════════════════════════════════════════════════════════ */
.stats-section {
  padding: 64px 0; background: #fff;
  border-top: 1px solid #F1F5F9; border-bottom: 1px solid #F1F5F9;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-card {
  padding: 32px 24px; text-align: center;
  border-right: 1px solid #F1F5F9; transition: background .2s;
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: #F8FAFC; }
.stat-value { font-size: clamp(28px, 3.5vw, 42px); font-weight: 900; color: #0F172A; letter-spacing: -0.03em; margin-bottom: 8px; }
.stat-label { font-size: 14px; font-weight: 600; color: #374151; margin-bottom: 4px; }
.stat-note { font-size: 12px; color: #94A3B8; }

/* ══════════════════════════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════════════════════════ */
.lp-section { padding: 96px 0; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-kicker {
  display: inline-block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: #2563EB;
  background: #EFF6FF; padding: 4px 12px; border-radius: 999px; margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  letter-spacing: -0.03em; color: #0F172A; margin-bottom: 16px; line-height: 1.15;
}
.section-sub { font-size: 17px; color: #64748B; max-width: 560px; margin: 0 auto; line-height: 1.6; }

/* ══════════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════════ */
.steps-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps-connector {
  position: absolute; top: 56px;
  left: calc(16.666% + 20px); right: calc(16.666% + 20px);
  height: 2px; background: linear-gradient(90deg, #BFDBFE, #93C5FD); z-index: 0;
}
.step-card {
  position: relative; z-index: 1; background: #fff;
  border-radius: 20px; border: 1px solid #EFF6FF;
  padding: 32px 28px; text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.step-card:hover { box-shadow: 0 12px 40px rgba(37,99,235,.1); transform: translateY(-4px); }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #1D4ED8); color: #fff;
  font-size: 18px; font-weight: 800; display: grid; place-items: center;
  margin: 0 auto 20px; box-shadow: 0 4px 12px rgba(37,99,235,.3);
}
.step-icon-wrap {
  width: 64px; height: 64px; border-radius: 18px; background: #EFF6FF;
  display: grid; place-items: center; margin: 0 auto 20px;
}
.step-card h3 { font-size: 20px; font-weight: 700; color: #0F172A; margin-bottom: 12px; }
.step-card p { font-size: 15px; color: #64748B; line-height: 1.6; }

/* ══════════════════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════════════════ */
.features-section { background: #F8FAFC; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: #fff; border-radius: 20px; border: 1px solid #E2E8F0;
  padding: 32px 28px; transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: 0 16px 48px rgba(15,23,42,.09); transform: translateY(-4px); }
.feature-primary { border-color: #BFDBFE; background: linear-gradient(160deg, #EFF6FF 0%, #fff 60%); }
.feat-icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px; }
.feat-icon-blue { background: linear-gradient(135deg, #2563EB, #1D4ED8); }
.feat-icon-green { background: linear-gradient(135deg, #10B981, #059669); }
.feat-icon-purple { background: linear-gradient(135deg, #7C3AED, #6D28D9); }
.feature-card h3 { font-size: 20px; font-weight: 700; color: #0F172A; margin-bottom: 12px; }
.feature-card p { font-size: 15px; color: #64748B; line-height: 1.65; margin-bottom: 20px; }
.feat-checklist { display: flex; flex-direction: column; gap: 8px; }
.feat-checklist li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #374151; font-weight: 500; }
.feat-badges, .feat-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.feat-badges span {
  font-size: 12px; font-weight: 600;
  background: #F0FDF4; color: #065F46; border: 1px solid #A7F3D0;
  padding: 4px 10px; border-radius: 999px;
}
.feat-pills span {
  font-size: 12px; font-weight: 600;
  background: #EFF6FF; color: #1E40AF; border: 1px solid #BFDBFE;
  padding: 4px 10px; border-radius: 999px;
}

/* ══════════════════════════════════════════════════════════
   EARNINGS FEED
══════════════════════════════════════════════════════════ */
.earnings-feed { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 40px; }
.earn-item {
  background: #fff; border-radius: 14px; border: 1px solid #E2E8F0;
  padding: 16px; display: flex; align-items: center; gap: 12px;
  transition: box-shadow .2s, transform .15s;
}
.earn-item:hover { box-shadow: 0 8px 24px rgba(15,23,42,.08); transform: translateY(-2px); }
.earn-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700; color: #fff; flex: none;
}
.av-1 { background: linear-gradient(135deg, #EF4444, #DC2626); }
.av-2 { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.av-3 { background: linear-gradient(135deg, #10B981, #059669); }
.av-4 { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }
.av-5 { background: linear-gradient(135deg, #F59E0B, #D97706); }
.av-6 { background: linear-gradient(135deg, #EC4899, #DB2777); }
.earn-info { flex: 1; min-width: 0; }
.earn-info strong { display: block; font-size: 14px; font-weight: 600; color: #0F172A; }
.earn-info span { font-size: 12px; color: #94A3B8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.earn-amount { font-size: 15px; font-weight: 700; color: #10B981; flex: none; }
.earn-time { font-size: 11px; color: #CBD5E1; flex: none; }
.earnings-cta { text-align: center; }
.earnings-cta p { font-size: 16px; color: #64748B; margin-bottom: 16px; }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials-section { background: #F8FAFC; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.testimonial-card { background: #fff; border: 1px solid #E2E8F0; border-radius: 20px; padding: 28px; transition: box-shadow .2s; }
.testimonial-card:hover { box-shadow: 0 12px 36px rgba(15,23,42,.09); }
.testimonial-featured {
  border-color: #2563EB;
  background: linear-gradient(160deg, #EFF6FF 0%, #fff 50%);
  box-shadow: 0 0 0 1px #BFDBFE; position: relative;
}
.featured-label {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: #2563EB; color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 14px; border-radius: 999px; white-space: nowrap;
}
.tcard-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.tuser-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700; color: #fff; flex: none;
}
.av-t1 { background: linear-gradient(135deg, #EC4899, #DB2777); }
.av-t2 { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.av-t3 { background: linear-gradient(135deg, #10B981, #059669); }
.tuser-info { flex: 1; }
.tuser-info strong { display: block; font-size: 15px; font-weight: 600; color: #0F172A; }
.tuser-info span { font-size: 13px; color: #94A3B8; }
.tcard-stars { font-size: 15px; color: #F59E0B; flex: none; }
.testimonial-card blockquote { font-size: 15px; line-height: 1.7; color: #374151; margin-bottom: 18px; }
.tcard-earning { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.earn-pill {
  font-size: 12px; font-weight: 700;
  background: #F0FDF4; color: #065F46; border: 1px solid #A7F3D0;
  padding: 4px 12px; border-radius: 999px;
}
.earn-pill-featured { background: #EFF6FF; color: #1E40AF; border-color: #BFDBFE; }
.earn-since { font-size: 12px; color: #94A3B8; }

/* ══════════════════════════════════════════════════════════
   APP SHOWCASE
══════════════════════════════════════════════════════════ */
.app-section { background: #fff; }
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.app-left h2 {
  font-size: clamp(26px, 3.5vw, 40px); font-weight: 800;
  letter-spacing: -0.03em; color: #0F172A; margin-bottom: 18px; line-height: 1.2;
}
.app-sub { font-size: 16px; color: #64748B; line-height: 1.7; margin-bottom: 32px; }
.app-feats { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.app-feats li { display: flex; gap: 14px; align-items: flex-start; }
.af-icon {
  width: 36px; height: 36px; border-radius: 10px; background: #EFF6FF;
  display: grid; place-items: center; flex: none; margin-top: 2px;
}
.app-feats li strong { display: block; font-size: 15px; font-weight: 600; color: #0F172A; margin-bottom: 4px; }
.app-feats li p { font-size: 14px; color: #64748B; }
.store-row { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 46px; padding: 0 18px; border-radius: 12px;
  background: #0F172A; color: #fff; font-size: 14px; font-weight: 600;
  transition: background .15s, transform .15s;
}
.store-btn:hover { background: #1E293B; transform: translateY(-1px); }

/* Phone mockup */
.app-right { display: flex; justify-content: center; }
.phone-mockup {
  width: 240px; background: #0F172A; border-radius: 36px; padding: 14px;
  box-shadow: 0 32px 80px rgba(15,23,42,.25), 0 0 0 1px rgba(255,255,255,.06);
}
.phone-inner { background: #fff; border-radius: 26px; overflow: hidden; }
.phone-screen { padding: 16px 14px; }
.phone-nav {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; font-weight: 700; color: #0F172A;
  padding-bottom: 12px; border-bottom: 1px solid #F1F5F9; margin-bottom: 12px;
}
.phone-notif {
  background: #EF4444; color: #fff; font-size: 10px; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center;
}
.phone-tasks { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.phone-task {
  display: flex; align-items: center; gap: 8px;
  padding: 8px; border: 1px solid #F1F5F9; border-radius: 8px; background: #FAFBFC;
}
.ptask-dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.dot-blue { background: #3B82F6; }
.dot-green { background: #10B981; }
.dot-orange { background: #F59E0B; }
.phone-task div { flex: 1; }
.ptask-name { font-size: 11px; font-weight: 600; color: #0F172A; }
.ptask-meta { font-size: 10px; color: #94A3B8; }
.phone-task strong { font-size: 12px; font-weight: 700; color: #0F172A; flex: none; }
.pt-green { color: #10B981 !important; }
.phone-wallet {
  background: linear-gradient(135deg, #2563EB, #1E40AF);
  border-radius: 12px; padding: 12px; text-align: center; color: #fff;
}
.phone-wallet p { font-size: 10px; opacity: .75; margin-bottom: 4px; }
.pw-amount { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.pw-btn {
  background: rgba(255,255,255,.2); color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 6px; padding: 4px 16px; font-size: 11px; font-weight: 700; cursor: pointer;
}

/* ══════════════════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════════════════ */
.final-cta { padding: 80px 0; }
.final-cta-card {
  background: linear-gradient(135deg, #1E3A8A 0%, #1D4ED8 50%, #2563EB 100%);
  border-radius: 28px; padding: 72px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-blob {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.06); top: -100px; right: -80px; pointer-events: none;
}
.final-cta-card h2 {
  font-size: clamp(28px, 4vw, 48px); font-weight: 900;
  color: #fff; letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 18px;
}
.cta-sub { font-size: 18px; color: rgba(255,255,255,.8); max-width: 480px; margin: 0 auto 36px; line-height: 1.6; }
.cta-disclaimer { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,.55); }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.lp-footer { background: #fff; border-top: 1px solid #F1F5F9; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 32px 0; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-links { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: #64748B; font-weight: 500; transition: color .15s; }
.footer-links a:hover { color: #2563EB; }
.footer-socials { display: flex; align-items: center; gap: 12px; }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 8px;
  background: #F8FAFC; border: 1px solid #E2E8F0;
  display: grid; place-items: center; color: #64748B; transition: all .15s;
}
.footer-socials a:hover { color: #2563EB; border-color: #BFDBFE; background: #EFF6FF; }
.footer-bottom { border-top: 1px solid #F1F5F9; padding: 16px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: #94A3B8; width: min(1160px, calc(100vw - 40px)); margin: 0 auto; }

/* ══════════════════════════════════════════════════════════
   MOBILE STICKY CTA
══════════════════════════════════════════════════════════ */
.mobile-sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  background: rgba(247,249,252,.95);
  backdrop-filter: blur(12px); border-top: 1px solid #E2E8F0; z-index: 90;
}

/* ══════════════════════════════════════════════════════════
   PAGE LOAD ANIMATIONS
══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 15px) scale(.97); }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

/* Navbar entrance */
.navbar { animation: slideDown .4s ease both; }

/* Hero entrance cascade */
.hero-badge  { animation: fadeUp .5s .1s ease both; }
.hero-title  { animation: fadeUp .55s .18s ease both; }
.hero-sub    { animation: fadeUp .55s .28s ease both; }
.hero-ctas   { animation: fadeUp .55s .36s ease both; }
.trust-badges { animation: fadeUp .55s .44s ease both; }
.mockup-card  { animation: scaleIn .65s .3s ease both; }
.float-top-right   { animation: floatBob 3s 1s ease-in-out infinite, fadeIn .6s .7s ease both; }
.float-bottom-left { animation: floatBob 3s 2.5s ease-in-out infinite, fadeIn .6s .9s ease both; }

/* Animated blobs */
.blob-1 { animation: blobDrift 14s ease-in-out infinite; }
.blob-2 { animation: blobDrift 18s 3s ease-in-out infinite; }

/* Button shimmer on hover */
.btn-primary:hover::after,
.btn-white:hover::after {
  content: '';
  position: absolute;
  inset: 0; border-radius: inherit;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.22) 50%, transparent 60%);
  background-size: 400px 100%;
  animation: shimmer .6s ease;
  pointer-events: none;
}
.btn-primary, .btn-white { position: relative; overflow: hidden; }

/* CTA button pulse ring */
.btn-xl::before {
  content: '';
  position: absolute;
  inset: -4px; border-radius: 18px;
  border: 2px solid rgba(255,255,255,.35);
  animation: ctaPulse 2.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ctaPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.04); }
}

/* Step card number bounce on hover */
.step-card:hover .step-num {
  animation: stepBounce .4s ease;
}
@keyframes stepBounce {
  0%, 100% { transform: scale(1);    }
  40%       { transform: scale(1.18); }
  70%       { transform: scale(.95); }
}

/* Earn item entrance pulse (live ticker) */
@keyframes earnPop {
  0%   { opacity: 0; transform: translateX(-12px) scale(.96); }
  60%  { transform: translateX(2px) scale(1.01); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}
.earn-item:first-child { animation: earnPop .38s ease; }

/* Stat value accent */
.stat-card:hover .stat-value {
  background: linear-gradient(135deg, #2563EB, #7C3AED);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  transition: all .25s;
}

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE – TABLET (max 1024px)
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 72px 0 56px; }
  .hero-right { max-width: 440px; margin: 0 auto; }
  .hero-sub { max-width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-right: none; border-bottom: 1px solid #F1F5F9; }
  .stat-card:nth-child(odd) { border-right: 1px solid #F1F5F9; }
  .stat-card:last-child { border-bottom: none; }
  .steps-flow { grid-template-columns: 1fr; }
  .steps-connector { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .earnings-feed { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; gap: 48px; }
  .app-right { display: none; }
  .navbar-links { display: none; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE – MOBILE (max 640px)
══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .hero { padding: 56px 0 40px; }
  .hero-title { font-size: 34px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .earnings-feed { grid-template-columns: 1fr; }
  .final-cta-card { padding: 48px 24px; border-radius: 20px; }
  .final-cta-card h2 { font-size: 26px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-links { gap: 16px; }
  .navbar-actions { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .lp-section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .mobile-sticky-cta { display: flex; }
}
