/* ==============================
   CHATTA DZ — CLEAN WHITE DESIGN
   ============================== */

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

:root {
  /* Brand Colors */
  --green:  #00B87C;
  --green-l:#EAF7F1;
  --yellow: #F59E0B;
  --yellow-l:#FFF8E7;
  --purple: #7C3AED;
  --purple-l:#F3EEFF;
  --pink:   #EC4899;
  --pink-l: #FDF2F8;

  /* Neutral */
  --white:  #FFFFFF;
  --bg:     #F8F9FA;
  --bg2:    #F2F4F7;
  --border: #E5E7EB;
  --text:   #111827;
  --muted:  #6B7280;
  --light:  #9CA3AF;

  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.05);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--green); }

/* ==============================
   HEADER / NAVBAR
   ============================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  transition: box-shadow .3s;
}

.header.shadow { box-shadow: var(--shadow); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  object-fit: cover;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.5px;
}

.brand-name .dz {
  color: var(--green);
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 2px;
}

.nav a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}

.nav a:hover { color: var(--text); background: var(--bg); }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--white) !important;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 2px 12px rgba(0,184,124,.3);
}

.btn-nav-cta:hover {
  background: #00A36F;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,184,124,.4);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* MOBILE DRAWER */
.drawer {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 16px 24px 20px;
  box-shadow: var(--shadow-lg);
}

.drawer.open { display: block; }

.drawer ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }

.drawer a {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 10px;
  transition: background .2s;
}

.drawer a:hover { background: var(--bg); }

.drawer-cta {
  background: var(--green) !important;
  color: white !important;
  text-align: center;
  margin-top: 8px;
}

/* ==============================
   BUTTONS
   ============================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: .97rem;
  font-weight: 700;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(0,184,124,.3);
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: #00A36F;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,184,124,.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: .97rem;
  font-weight: 700;
  border: 2px solid var(--border);
  transition: all .2s;
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn-purple {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: white;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: .97rem;
  font-weight: 700;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(124,58,237,.3);
  cursor: pointer;
  border: none;
}

.btn-purple:hover {
  background: #6D28D9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124,58,237,.4);
}

.full-w { width: 100%; justify-content: center; }

/* ==============================
   HERO
   ============================== */
.hero {
  padding: 120px 0 80px;
  background: var(--white);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,184,124,.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-l);
  color: var(--green);
  border: 1px solid rgba(0,184,124,.2);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.live-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -.5px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.store-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: .85rem;
  color: var(--muted);
  font-weight: 600;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 700;
  transition: all .2s;
}

.store-badge:hover {
  background: var(--bg2);
  border-color: var(--green);
  color: var(--green);
}

/* HERO VISUAL CARD */
.hero-visual { display: flex; justify-content: center; }

.hero-card-big {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 380px;
}

.hero-app-logo {
  width: 100px; height: 100px;
  border-radius: 24px;
  object-fit: cover;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}

.hero-card-name {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 4px;
}

.hero-card-sub {
  font-size: .88rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hsg-item {
  background: var(--bg);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
}

.hsg-item strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}

.hsg-item span {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 600;
}

/* ==============================
   TRUST BAR
   ============================== */
.trust-bar {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--muted);
  padding: 6px 28px;
}

.trust-item i { color: var(--green); font-size: 1rem; }

.trust-sep {
  width: 1px; height: 24px;
  background: var(--border);
}

/* ==============================
   SECTIONS
   ============================== */
.section { padding: 88px 0; }

.section-tinted { background: var(--bg); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.sec-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  background: var(--green-l);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -.5px;
  line-height: 1.25;
}

.sec-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ==============================
   CARDS 3-COL
   ============================== */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.section-tinted .card { background: var(--white); }

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.pill {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--green-l);
  color: var(--green);
}

.card-accent-purple .pill { background: var(--purple-l); color: var(--purple); }
.card-accent-yellow .pill { background: var(--yellow-l); color: var(--yellow); }

/* ==============================
   EARN SECTION
   ============================== */
.earn-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.earn-highlight {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.earn-amount {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.earn-dollar {
  font-size: 5rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  letter-spacing: -2px;
}

.earn-period {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.earn-period strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

.earn-period span {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 600;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  color: var(--text);
  font-weight: 600;
}

.check-list i { color: var(--green); font-size: .9rem; flex-shrink: 0; }

.earn-calc {
  background: var(--bg);
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 24px;
  text-align: center;
}

.calc-label { font-size: .82rem; color: var(--muted); font-weight: 600; margin-bottom: 6px; }
.calc-amount { font-size: 1.6rem; font-weight: 900; color: var(--text); margin-bottom: 4px; }
.calc-note { font-size: .78rem; color: var(--light); }

/* STEPS */
.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: steps;
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: box-shadow .3s, border-color .3s;
}

.step:hover {
  box-shadow: var(--shadow);
  border-color: rgba(0,184,124,.25);
}

.step-num {
  width: 40px; height: 40px;
  min-width: 40px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
}

.step-body h3 {
  font-size: .97rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 5px;
}

.step-body p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ==============================
   TASKS BLOCK
   ============================== */
.tasks-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tasks-block-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  font-weight: 800;
  color: var(--text);
}

.tasks-block-header img {
  width: 32px; height: 32px;
  border-radius: 8px;
  object-fit: cover;
}

.task-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}

.task-row:last-of-type { border-bottom: none; }
.task-row:hover { background: var(--bg); }

.task-icon-wrap {
  width: 52px; height: 52px;
  min-width: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.green-bg { background: var(--green-l); color: var(--green); }
.pink-bg  { background: var(--pink-l); color: var(--pink); }

.task-details { flex: 1; }

.task-name {
  font-size: .97rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.task-note {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.task-progress-bar {
  height: 6px;
  background: var(--bg2);
  border-radius: 3px;
  overflow: hidden;
}

.task-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), #00D4A0);
  border-radius: 3px;
}

.task-count {
  font-size: .97rem;
  font-weight: 800;
  color: var(--green);
  white-space: nowrap;
  text-align: left;
  min-width: 90px;
}

.task-count small { font-size: .75rem; color: var(--muted); font-weight: 600; }

/* SCREENSHOT */
.task-screenshot {
  padding: 24px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.screenshot-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.screenshot-label i { color: var(--green); }

.screenshot-img {
  display: block;
  max-width: 380px;
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin: 0 auto;
}

/* ==============================
   AGENCY
   ============================== */
.agency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.agency-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}

.agency-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.agency-top {
  padding: 28px 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.green-top { background: linear-gradient(135deg, #EAF7F1, #D1F5E8); }
.purple-top { background: linear-gradient(135deg, #F3EEFF, #E9D8FD); }

.agency-badge {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(255,255,255,.7);
  color: var(--text);
}

.agency-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
}

.green-icon { background: var(--green); box-shadow: 0 4px 16px rgba(0,184,124,.35); }
.purple-icon { background: var(--purple); box-shadow: 0 4px 16px rgba(124,58,237,.35); }

.agency-body { padding: 24px 28px 28px; }

.agency-body h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
}

.agency-body p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 24px;
}

/* COMPARE TABLE */
.compare-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-title {
  padding: 18px 24px;
  font-size: .88rem;
  font-weight: 800;
  color: var(--muted);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.table-wrap { overflow-x: auto; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  direction: rtl;
}

.compare-table th {
  padding: 14px 20px;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--bg);
  color: var(--muted);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.compare-table th:first-child { text-align: right; }

.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  text-align: center;
}

.compare-table td:first-child { text-align: right; color: var(--muted); }

.compare-table tr:last-child td { border-bottom: none; }

.compare-table tr:hover td { background: var(--bg); }

.yes-icon { color: var(--green); font-size: 1.1rem; font-weight: 900; }
.no-icon  { color: #EF4444; font-size: 1.1rem; font-weight: 900; }

/* ==============================
   FAQ
   ============================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s;
}

.faq-item:hover { box-shadow: var(--shadow); }
.faq-item.open { border-color: rgba(0,184,124,.3); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: right;
  font-family: 'Cairo', sans-serif;
  font-size: .97rem;
  font-weight: 700;
  color: var(--text);
  transition: color .2s;
}

.faq-q:hover { color: var(--green); }
.faq-item.open .faq-q { color: var(--green); }

.faq-q i {
  color: var(--muted);
  font-size: .85rem;
  transition: transform .3s;
  flex-shrink: 0;
}

.faq-item.open .faq-q i { transform: rotate(180deg); color: var(--green); }

.faq-a {
  padding: 0 22px 20px;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
}

.faq-a[hidden] { display: none; }

/* ==============================
   CTA SECTION
   ============================== */
.cta-section { background: var(--bg); }

.cta-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.cta-logo {
  width: 72px; height: 72px;
  border-radius: 18px;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}

.cta-box p {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 28px;
  line-height: 1.72;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: var(--text);
  color: #9CA3AF;
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .brand-name { color: white; }
.footer-brand .dz { color: var(--green); }

.footer-brand img {
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.75;
  margin-top: 14px;
  max-width: 280px;
}

.footer-links h4 {
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: white;
  margin-bottom: 16px;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  color: #9CA3AF;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  transition: color .2s;
}

.footer-links a:hover { color: var(--green); }

.footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,.2);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .8rem;
  color: #6B7280;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-badge { margin: 0 auto 20px; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .store-row { justify-content: center; }
  .hero-visual { display: none; }
  .earn-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .btn-nav-cta { display: none; }
  .burger { display: flex; }

  .cards-3 { grid-template-columns: 1fr; }
  .agency-grid { grid-template-columns: 1fr; }

  .trust-inner { gap: 0; }
  .trust-item { padding: 6px 16px; font-size: .82rem; }
  .trust-sep { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .cta-box { padding: 36px 24px; }

  .hero { padding: 100px 0 60px; }

  .task-row { flex-wrap: wrap; }
  .task-count { min-width: auto; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .hero-text h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .cta-btns { flex-direction: column; }
}
