/*  ARTIZAN — LANDING PAGE (index.css) */

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink-900);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover { 
  color: var(--brand-purple); 
}
.nav-actions { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  margin-left: auto; 
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--ink-700);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { 
  display: flex; 
}
.mobile-menu a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: background 0.2s;
}
.mobile-menu a:hover { background: var(--ink-100); }
.mobile-cta {
  margin-top: 8px;
  background: var(--brand-purple) !important;
  color: var(--white) !important;
  text-align: center;
  border-radius: var(--radius-full) !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #F8F7FF 0%, #FAFAFA 50%, #F0FDF4 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #C7D2FE 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #A7F3D0 0%, transparent 70%);
  bottom: -100px; left: -50px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--ink-200) 1px, transparent 1px),
                    linear-gradient(90deg, var(--ink-200) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-20px,15px) scale(0.96); }
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(79,70,229,0.08);
  border: 1px solid rgba(79,70,229,0.2);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--brand-purple);
  margin-bottom: 24px;
  animation: fadeSlideUp 0.6s var(--ease) both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--brand-green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(5,150,105,0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(5,150,105,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(5,150,105,0.1); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin-bottom: 20px;
  animation: fadeSlideUp 0.6s var(--ease) 0.1s both;
}
.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--brand-purple);
}
.headline-line { display: block; }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
  animation: fadeSlideUp 0.6s var(--ease) 0.2s both;
}
.hero-search {
  margin-bottom: 36px;
  animation: fadeSlideUp 0.6s var(--ease) 0.3s both;
}
.search-box {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-box:focus-within {
  border-color: var(--brand-purple);
  box-shadow: 0 0 0 4px rgba(79,70,229,0.1), var(--shadow-lg);
}
.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  flex: 1;
  position: relative;
}
.search-icon { color: var(--ink-400); font-size: 0.95rem; flex-shrink: 0; }
.search-input {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: transparent;
}
.search-select { cursor: pointer; }
.search-input::placeholder { color: var(--ink-400); }
.locate-btn {
  padding: 4px 8px;
  color: var(--brand-purple);
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  flex-shrink: 0;
}
.locate-btn:hover { background: var(--brand-purple-light); }
.search-divider { width: 1px; background: var(--border); margin: 10px 0; }
.search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  background: var(--brand-purple);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.search-btn:hover { background: var(--brand-purple-dark); }
.search-popular {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 0 4px;
  font-size: 0.85rem;
  flex-wrap: wrap;
}
.search-popular span { color: var(--text-muted); }
.search-popular a {
  padding: 4px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}
.search-popular a:hover { border-color: var(--brand-purple); color: var(--brand-purple); }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeSlideUp 0.6s var(--ease) 0.4s both;
}
.hero-stat { text-align: left; }
.hero-stat strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1;
}
.hero-stat span { font-size: 1.2rem; font-weight: 700; color: var(--brand-purple); }
.hero-stat p { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.stat-sep { width: 1px; height: 36px; background: var(--border); }

/* Hero visual */
.hero-visual {
  position: relative;
  height: 480px;
  animation: fadeSlideUp 0.8s var(--ease) 0.3s both;
}
.visual-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.main-card {
  position: absolute;
  top: 40px; left: 20px; right: 20px;
  padding: 22px;
}
.card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.artisan-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}
.av-1 { background: linear-gradient(135deg, #4F46E5, #7C3AED); }
.artisan-name { font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.artisan-skill { font-size: 0.82rem; color: var(--text-secondary); }
.trust-badge {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: flex; align-items: center; gap: 4px;
  flex-shrink: 0;
}
.trust-high { background: var(--trust-high-bg); color: var(--trust-high-color); }
.trust-mid  { background: var(--trust-mid-bg);  color: var(--trust-mid-color); }
.card-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.card-rating i { color: #F59E0B; font-size: 0.85rem; }
.card-rating span { font-size: 0.82rem; color: var(--text-secondary); }
.card-meta { display: flex; gap: 16px; margin-bottom: 16px; font-size: 0.82rem; color: var(--text-secondary); }
.card-meta i { color: var(--brand-purple); margin-right: 4px; }
.card-btn {
  width: 100%;
  padding: 11px;
  background: var(--brand-purple);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s;
}
.card-btn:hover { background: var(--brand-purple-dark); }
.float-card {
  position: absolute;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  border-radius: var(--radius-md);
  animation: floatAnim 4s ease-in-out infinite;
}
.fc-1 { right: -20px; top: 200px; animation-delay: 0.5s; }
.fc-2 { left: -10px; bottom: 140px; animation-delay: 1s; }
.fc-3 { right: 10px; bottom: 40px; max-width: 220px; flex-direction: column; align-items: flex-start; gap: 6px; animation-delay: 1.5s; }
@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fc-icon { font-size: 1.3rem; flex-shrink: 0; }
.fc-icon.green { color: var(--brand-green); }
.fc-icon.purple { color: var(--brand-purple); }
.fc-title { font-size: 0.85rem; font-weight: 600; margin-bottom: 1px; }
.fc-sub { font-size: 0.75rem; color: var(--text-secondary); }
.fc-stars { color: #F59E0B; font-size: 0.9rem; letter-spacing: 2px; }
.fc-review { font-size: 0.82rem; font-style: italic; color: var(--text-secondary); line-height: 1.4; }
.fc-reviewer { font-size: 0.75rem; color: var(--text-muted); }
.visual-badge {
  position: absolute;
  top: 20px; right: -10px;
  padding: 6px 14px;
  background: var(--brand-green);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  box-shadow: var(--shadow-md);
  animation: floatAnim 5s ease-in-out infinite 0.2s;
}

/* Hero scroll */
.hero-scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.75rem; color: var(--text-muted);
  animation: fadeIn 1s var(--ease) 1s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--ink-300), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ── CATEGORIES ── */
.categories { padding: var(--space-3xl) 0; background: var(--ink-50); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex; flex-direction: column;
  transition: transform 0.2s var(--ease), border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--cat-color, var(--brand-purple));
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.cat-icon {
  width: 48px; height: 48px;
  background: var(--cat-bg, var(--brand-purple-light));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--cat-color, var(--brand-purple));
  margin-bottom: 14px;
  transition: transform 0.2s var(--ease-spring);
}
.cat-card:hover .cat-icon { transform: scale(1.1) rotate(-5deg); }
.cat-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.cat-card p { font-size: 0.8rem; color: var(--text-secondary); flex: 1; margin-bottom: 12px; line-height: 1.4; }
.cat-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cat-color, var(--brand-purple));
  background: var(--cat-bg, var(--brand-purple-light));
  padding: 3px 10px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: var(--space-3xl) 0;
  background: linear-gradient(180deg, #1E1B4B 0%, #312E81 100%);
  color: var(--white);
}
.how-it-works .section-title { color: var(--white); }
.hiw-tabs {
  display: flex; gap: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  padding: 4px;
  width: fit-content;
  margin: 0 auto 52px;
}
.hiw-tab {
  padding: 10px 28px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
}
.hiw-tab.active { background: var(--white); color: var(--brand-purple); font-weight: 600; }
.hiw-steps {
  display: flex; align-items: flex-start;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.hiw-step {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: background 0.2s;
}
.hiw-step:hover { background: rgba(255,255,255,0.1); }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.1);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
}
.step-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 18px;
}
.step-icon.artisan-icon { background: rgba(5,150,105,0.3); }
.hiw-step h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.hiw-step p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.hiw-arrow { color: rgba(255,255,255,0.3); font-size: 1.2rem; margin-top: 60px; flex-shrink: 0; }

/* ── FEATURED ARTISANS ── */
.featured { padding: var(--space-3xl) 0; }
.artisans-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 40px; }
.artisan-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
  animation: fadeSlideUp 0.5s var(--ease) both;
}
.artisan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ac-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.ac-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--white);
}
.av-orange { background: linear-gradient(135deg, #E85D04, #F4A261); }
.av-purple { background: linear-gradient(135deg, #7B2D8B, #C084FC); }
.av-green  { background: linear-gradient(135deg, #059669, #34D399); }
.av-blue   { background: linear-gradient(135deg, #1447E6, #60A5FA); }
.ac-trust {
  font-size: 0.68rem; font-weight: 600;
  padding: 3px 8px; border-radius: var(--radius-full);
  display: flex; align-items: center; gap: 4px;
}
.ac-name { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.ac-skill { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 12px; }
.ac-skill i { color: var(--brand-purple); margin-right: 4px; }
.ac-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.stars { color: #F59E0B; font-size: 0.85rem; letter-spacing: 1px; }
.ac-rating span { font-size: 0.82rem; color: var(--text-secondary); }
.ac-rating em { font-style: normal; color: var(--text-muted); }
.ac-meta { display: flex; gap: 12px; font-size: 0.78rem; color: var(--text-secondary); margin-bottom: 12px; flex-wrap: wrap; }
.ac-meta i { color: var(--brand-purple); margin-right: 3px; }
.ac-skills-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.ac-skills-tags span {
  font-size: 0.72rem; padding: 3px 8px;
  background: var(--ink-100);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
}
.ac-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background: var(--brand-purple-light);
  color: var(--brand-purple);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}
.ac-btn:hover { background: var(--brand-purple); color: var(--white); }
.featured-cta { text-align: center; }
.btn-outline-lg {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  border: 2px solid var(--brand-purple);
  border-radius: var(--radius-full);
  color: var(--brand-purple);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-lg:hover { background: var(--brand-purple); color: var(--white); }

/* ── TRUST SECTION ── */
.trust-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #0F0F10 0%, #1C1C2E 100%);
  overflow: hidden;
}
.trust-section .section-label { color: rgba(255,255,255,0.5); }
.trust-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.trust-title {
  font-family: var(--font-display);
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 700; line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.trust-title em { font-style: italic; font-weight: 300; color: #A5B4FC; }
.trust-body { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 36px; }
.trust-features { display: flex; flex-direction: column; gap: 24px; }
.trust-feat { display: flex; gap: 18px; }
.tf-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #A5B4FC;
  flex-shrink: 0;
}
.trust-feat h4 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.trust-feat p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* Trust visual */
.trust-visual { position: relative; }
.ts-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(20px);
}
.ts-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
}
.ts-label { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.5); }
.ts-score {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 900;
  color: var(--white); line-height: 1;
}
.ts-score small { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.4); }
.ts-bars { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.ts-bar-row { display: grid; grid-template-columns: 130px 1fr 60px; align-items: center; gap: 12px; }
.ts-bar-row > span:first-child { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.ts-bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.ts-fill { height: 100%; border-radius: 3px; transition: width 1s var(--ease); }
.ts-pts { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-align: right; }
.ts-badge-row { display: flex; justify-content: center; }
.ts-badge-big {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #059669, #34D399);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.9rem; font-weight: 600;
}
.ts-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: floatAnim 4s ease-in-out infinite;
}
.f1 { top: -20px; right: -30px; animation-delay: 0s; }
.f2 { bottom: -20px; left: -30px; animation-delay: 1s; }

/* ── TESTIMONIALS ── */
.testimonials { padding: var(--space-3xl) 0; background: var(--ink-50); overflow: hidden; }
.testimonials-track {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 12px 4px;
  margin-bottom: 28px;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testi-card {
  flex: 0 0 calc(33.33% - 14px);
  scroll-snap-align: start;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.2s;
}
.testi-card:hover { transform: translateY(-3px); }
.testi-stars { font-size: 1.1rem; color: #F59E0B; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text {
  font-size: 0.95rem; line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.ta-blue { background: linear-gradient(135deg, #4F46E5, #818CF8); }
.ta-green { background: linear-gradient(135deg, #059669, #34D399); }
.ta-purple { background: linear-gradient(135deg, #7B2D8B, #C084FC); }
.ta-orange { background: linear-gradient(135deg, #E85D04, #F4A261); }
.testi-author strong { font-size: 0.9rem; font-weight: 600; }
.testi-author p { font-size: 0.78rem; color: var(--text-muted); }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 16px; }
.testi-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: border-color 0.2s, color 0.2s;
}
.testi-btn:hover { border-color: var(--brand-purple); color: var(--brand-purple); }
.testi-dots { display: flex; gap: 6px; }
.testi-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border); cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.testi-dot.active { background: var(--brand-purple); transform: scale(1.3); }

/* ── ARTISAN CTA ── */
.artisan-cta {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #ECFDF5 0%, #F0FDF4 100%);
}
.acta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.acta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.15;
  color: var(--ink-900); margin-bottom: 16px;
}
.acta-content h2 em { font-style: italic; font-weight: 300; color: var(--brand-green); }
.acta-content p { font-size: 1rem; color: var(--text-secondary); margin-bottom: 24px; }
.acta-perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.acta-perks li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-secondary); }
.acta-perks i { color: var(--brand-green); font-size: 1rem; }
.btn-artisan {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  background: var(--brand-green);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.95rem; font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.btn-artisan:hover { background: var(--brand-green-dark); transform: translateY(-2px); }
/* Earnings card */
.earnings-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-xl);
}
.ec-label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 6px; }
.ec-amount {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 900;
  color: var(--brand-green); margin-bottom: 20px;
}
.ec-artisan { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.ec-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #059669, #34D399);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem;
}
.ec-artisan strong { font-size: 0.9rem; font-weight: 600; }
.ec-artisan p { font-size: 0.78rem; color: var(--text-muted); }
.ec-chart { display: flex; align-items: flex-end; gap: 6px; height: 80px; margin-bottom: 10px; }
.ec-bar {
  flex: 1; border-radius: 4px 4px 0 0;
  background: var(--ink-100); transition: height 1s var(--ease);
}
.ec-bar.active { background: var(--brand-green); }
.ec-foot { font-size: 0.75rem; color: var(--text-muted); }

/* ── FOOTER ── */
.footer { background: var(--ink-900); color: var(--white); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--brand-purple); color: var(--white); }
.footer-col h4 { font-size: 0.85rem; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-bottom: 4px; }

/* ── ANIMATIONS ── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .artisans-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 110px 24px 60px; }
  .hiw-steps { flex-direction: column; gap: 16px; }
  .hiw-arrow { transform: rotate(90deg); align-self: center; margin: 0; }
  .trust-inner { grid-template-columns: 1fr; }
  .acta-inner { grid-template-columns: 1fr; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 640px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .artisans-grid { grid-template-columns: 1fr; }
  .testi-card { flex: 0 0 calc(90% - 10px); }
  .search-box { flex-direction: column; border-radius: var(--radius-lg); }
  .search-divider { width: 100%; height: 1px; margin: 0; }
  .search-btn { border-radius: 0 0 var(--radius-lg) var(--radius-lg); padding: 14px; }
  .hero-stats { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .ts-bar-row { grid-template-columns: 100px 1fr 50px; }
}
