/* =====================================================
   DEFIXERHUB LANDING PAGE — STYLE.CSS
   Brand Color: #FA623E
   ===================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #FA623E;
  --primary-dark: #e8542f;
  --primary-light: #ff8a6e;
  --primary-pale: #fff0ec;
  --secondary: #1a1a2e;
  --dark: #0d0d1a;
  --darker: #080810;
  --text: #1f1f2e;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --white: #ffffff;
  --off-white: #f9fafb;
  --border: #e5e7eb;
  --card-bg: #ffffff;
  --section-bg: #f8f9fb;
  --gradient: linear-gradient(135deg, #FA623E 0%, #ff8a6e 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-xl: 0 40px 80px rgba(0,0,0,0.2);
  --shadow-orange: 0 20px 60px rgba(250, 98, 62, 0.3);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --nav-height: 72px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(250, 98, 62, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(250, 98, 62, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

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

/* ===== SECTION HEADERS ===== */
.section-tag {
  display: inline-block;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-tag.orange {
  background: var(--primary);
  color: white;
}

.section-tag.light {
  background: rgba(255,255,255,0.2);
  color: white;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
  background: var(--primary-pale);
}

.nav-cta {
  flex-shrink: 0;
}

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

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

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 80px;
  background: linear-gradient(160deg, #fff8f6 0%, #ffffff 40%, #fff0ec 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  right: -150px;
  animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  bottom: 100px;
  left: -100px;
  animation: floatShape 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--primary);
  top: 50%;
  left: 40%;
  animation: floatShape 6s ease-in-out infinite;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  min-height: calc(100vh - var(--nav-height) - 60px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.hero-title {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.scroll-indicator {
  width: 28px;
  height: 44px;
  border: 2px solid var(--border);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(18px); }
}

/* ===== PHONE MOCKUP ===== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  width: 280px;
  max-width: 100%;
}

.phone-frame {
  background: var(--dark);
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 50px 100px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1) inset;
  position: relative;
}

.phone-notch {
  width: 100px;
  height: 28px;
  background: var(--dark);
  border-radius: 0 0 20px 20px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 2;
}

.phone-notch::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 10px;
  background: #1a1a2e;
  border-radius: 10px;
}

.phone-screen {
  background: #0f1729;
  border-radius: 32px;
  overflow: hidden;
  min-height: 560px;
}

.phone-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
}

/* App UI inside phone */
.app-ui {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-logo-small {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
}

.notif-icon {
  font-size: 18px;
}

.app-greeting .greeting-text {
  font-size: 13px;
  font-weight: 600;
  color: white;
}

.app-greeting .greeting-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

.app-search {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.app-services-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.service-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  flex-shrink: 0;
}

.service-chip.active {
  background: var(--primary);
  color: white;
}

.app-card {
  background: rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}

.card-artisan {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.artisan-avatar {
  width: 36px;
  height: 36px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.artisan-avatar.blue {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.artisan-info {
  flex: 1;
  min-width: 0;
}

.artisan-info strong {
  display: block;
  font-size: 12px;
  color: white;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.artisan-info span {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.artisan-price {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-light);
}

.quote-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quote-badge {
  font-size: 10px;
  font-weight: 600;
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  padding: 3px 8px;
  border-radius: 100px;
}

.quote-badge.pending {
  background: rgba(250, 98, 62, 0.2);
  color: var(--primary-light);
}

.accept-btn {
  font-size: 10px;
  font-weight: 700;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 5px 12px;
  cursor: pointer;
  font-family: inherit;
}

.accept-btn.outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary-light);
}

.escrow-banner {
  background: rgba(250, 98, 62, 0.15);
  border: 1px solid rgba(250, 98, 62, 0.3);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-light);
}

/* Floating cards */
.floating-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  animation: float 4s ease-in-out infinite;
}

.card-rating {
  top: 20px;
  right: -40px;
  animation-delay: 0s;
}

.card-notif {
  bottom: 60px;
  left: -40px;
  animation-delay: 2s;
}

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

.fc-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.fc-content strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

.fc-content span {
  font-size: 11px;
  color: var(--text-muted);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--dark);
  padding: 28px 0;
  overflow: hidden;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.trust-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--section-bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.step-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary-pale);
  line-height: 1;
  margin-bottom: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.step-card:hover .step-number {
  color: rgba(250, 98, 62, 0.15);
}

.step-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
  z-index: 2;
}

.step-arrow.last {
  display: none;
}

/* ===== ARTISAN SHOWCASE ===== */
.artisan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.artisan-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.artisan-card.big {
  grid-row: 1 / 3;
  grid-column: 1;
  aspect-ratio: unset;
}

.artisan-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.artisan-card:hover img {
  transform: scale(1.05);
}

.artisan-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,20,0.9) 0%, rgba(10,10,20,0.3) 60%, transparent 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
}

.artisan-tag {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 8px;
  width: fit-content;
}

.artisan-overlay h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.artisan-card.big .artisan-overlay h3 {
  font-size: 24px;
}

.artisan-overlay p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  line-height: 1.5;
}

.artisan-meta {
  display: flex;
  gap: 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.more-services {
  margin-top: 48px;
  text-align: center;
}

.more-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.chip {
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  cursor: default;
}

.chip:hover {
  background: var(--primary-pale);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ===== FEATURES ===== */
.features {
  background: white;
  position: relative;
}

.features-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(250, 98, 62, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.features-visual {
  position: relative;
}

.feature-phone {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.feature-phone-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.feature-badge {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
  min-width: 220px;
}

.feature-badge span:first-child {
  font-size: 24px;
}

.feature-badge > div {
  display: flex;
  flex-direction: column;
}

.feature-badge strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.feature-badge span:last-child {
  font-size: 11px;
  color: var(--text-muted);
}

.badge-escrow {
  top: 30px;
  left: -30px;
  animation-delay: 0s;
}

.badge-complete {
  bottom: 40px;
  right: -30px;
  animation-delay: 2s;
}

.features-intro {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateX(4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: var(--primary);
  transform: scale(1.1);
}

.feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== FOR ARTISANS ===== */
.for-artisans {
  background: var(--section-bg);
}

.artisan-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.artisan-split-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.artisan-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.artisan-benefits li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-check {
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.artisan-benefits li strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.artisan-benefits li span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Earnings Card */
.earnings-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.earnings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.month-label {
  background: var(--primary-pale);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
}

.earnings-big {
  font-size: 40px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 4px;
}

.earnings-sub {
  font-size: 13px;
  color: #22c55e;
  font-weight: 600;
  margin-bottom: 24px;
}

.earnings-chart {
  margin-bottom: 24px;
}

.bar-group {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  height: 80px;
}

.bar {
  flex: 1;
  background: var(--primary-pale);
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 4px;
  transition: var(--transition);
  position: relative;
  cursor: default;
}

.bar:hover {
  background: rgba(250, 98, 62, 0.3);
}

.bar.active {
  background: var(--gradient);
}

.bar span {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  position: absolute;
  bottom: -20px;
}

.bar.active span {
  color: var(--primary);
}

.earnings-jobs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  margin-top: 24px;
}

.job-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.job-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.job-dot.green { background: #22c55e; }
.job-dot.orange { background: var(--primary); }
.job-dot.yellow { background: #f59e0b; }

.job-row span {
  flex: 1;
  color: var(--text-muted);
}

.job-row strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.pending-row {
  opacity: 0.6;
}

.withdraw-btn-wrap {
  text-align: center;
}

.withdraw-btn {
  width: 100%;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(250, 98, 62, 0.35);
}

.withdraw-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(250, 98, 62, 0.45);
}

/* ===== EXPANSION ===== */
.expansion {
  background: white;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.country-card {
  background: var(--section-bg);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
}

.country-card.live {
  border-color: var(--primary);
  background: var(--primary-pale);
}

.country-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.country-flag {
  font-size: 48px;
  margin-bottom: 12px;
}

.country-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.status-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.status-badge.live {
  background: rgba(34, 197, 94, 0.15);
  color: #16a34a;
}

.status-badge.coming {
  background: rgba(250, 98, 62, 0.12);
  color: var(--primary);
}

.status-badge.west {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
}

.country-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.expansion-cta {
  text-align: center;
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.expansion-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

.notify-form {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.notify-select,
.notify-input {
  flex: 1;
  min-width: 140px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 12px 20px;
  font-size: 14px;
  color: white;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.notify-select option {
  background: #1a1a2e;
  color: white;
}

.notify-select:focus,
.notify-input:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.15);
}

.notify-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.notify-btn {
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--section-bg);
  position: relative;
  overflow: hidden;
}

.testi-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(250, 98, 62, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.testi-slider {
  overflow: hidden;
  position: relative;
}

.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  flex: 0 0 calc(33.333% - 16px);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.testi-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.testi-stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.author-avatar.blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.author-avatar.green { background: linear-gradient(135deg, #22c55e, #15803d); }
.author-avatar.orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.author-avatar.purple { background: linear-gradient(135deg, #a855f7, #7c3aed); }

.author-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.author-info span {
  font-size: 12px;
  color: var(--text-muted);
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text);
}

.testi-btn:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

.testi-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.testi-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ===== DOWNLOAD ===== */
.download {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.download-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dl-shape {
  position: absolute;
  border-radius: 50%;
}

.dl-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  opacity: 0.08;
  top: -200px;
  right: -100px;
}

.dl-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  opacity: 0.06;
  bottom: -100px;
  left: 100px;
}

.download-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.download-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.download-title span {
  color: var(--primary);
}

.download-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
}

.download-stores {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 14px 24px;
  transition: var(--transition);
  min-width: 170px;
}

.store-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(250, 98, 62, 0.4);
}

.store-icon {
  flex-shrink: 0;
}

.store-text span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

.store-text strong {
  display: block;
  font-size: 16px;
  color: white;
  font-weight: 700;
}

.download-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dl-stars {
  color: #f59e0b;
  font-size: 16px;
}

.download-rating span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* Phones group */
.phones-group {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dl-phone {
  position: absolute;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dl-phone.back {
  width: 220px;
  height: 320px;
  top: 20px;
  left: 50%;
  transform: translateX(-70%) rotate(-8deg);
  opacity: 0.6;
}

.dl-phone.front {
  width: 260px;
  height: 360px;
  z-index: 2;
  left: 50%;
  transform: translateX(-30%) rotate(4deg);
  box-shadow: var(--shadow-xl);
  background: rgba(255,255,255,0.08);
}

.dl-phone img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* ===== STATS ===== */
.stats-section {
  background: var(--gradient);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-box {
  color: white;
}

.stat-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.stat-big {
  font-size: 52px;
  font-weight: 900;
  color: white;
  line-height: 1;
  display: inline;
}

.stat-plus {
  font-size: 32px;
  font-weight: 900;
  color: rgba(255,255,255,0.7);
  display: inline;
}

.stat-box p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  margin-top: 8px;
}

/* ===== FAQ ===== */
.faq {
  background: var(--section-bg);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 4px 24px rgba(250, 98, 62, 0.1);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  gap: 16px;
}

.faq-q:hover {
  color: var(--primary);
}

.faq-icon {
  font-size: 24px;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-a p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact {
  background: white;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--section-bg);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}

.contact-card:hover {
  background: var(--primary-pale);
  transform: translateX(4px);
}

.contact-icon {
  font-size: 24px;
  width: 44px;
  height: 44px;
  background: var(--primary-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-card p, .contact-card a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-card a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--section-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.social-link:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--section-bg);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(250, 98, 62, 0.1);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--darker);
}

.footer-top {
  padding: 80px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 16px 0 24px;
}

.footer-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials .social-link {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
}

.footer-socials .social-link:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  box-shadow: var(--shadow-orange);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(250, 98, 62, 0.5);
}

/* ===== PHONE MOCKUP — prevent overflow ===== */
.phone-mockup {
  max-width: 100%;
  width: 280px;
}

.phone-screen {
  width: 100%;
}

.app-ui {
  overflow: hidden;
}

.card-artisan {
  flex-wrap: nowrap;
}

.artisan-info strong,
.artisan-info span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80px;
}

/* ===== AOS ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0);
}

[data-aos][data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos][data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos][data-aos-delay="500"] { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */

/* --- 1280px and below --- */
@media (max-width: 1280px) {
  .hero-container {
    gap: 48px;
  }
  .floating-card {
    display: none;
  }
}

/* --- 1100px and below --- */
@media (max-width: 1100px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .step-arrow {
    display: none;
  }

  .artisan-grid {
    grid-template-columns: 1fr 1fr;
  }

  .artisan-card.big {
    grid-row: auto;
    grid-column: 1 / 3;
    aspect-ratio: 16/7;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / 4;
  }

  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* --- 900px (tablets) --- */
@media (max-width: 900px) {
  .hero {
    padding-top: calc(var(--nav-height) + 32px);
    padding-bottom: 60px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    min-height: unset;
  }

  .hero-visual {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .phone-mockup {
    width: 220px;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-desc {
    margin: 0 auto 32px;
  }

  .floating-card {
    display: none;
  }

  .hero-badge {
    justify-content: center;
  }

  /* Nav mobile */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: white;
    padding: 16px 24px 24px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
    z-index: 999;
    border-top: 1px solid var(--border);
  }

  .nav-links.open li a {
    display: block;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
  }

  .hamburger {
    display: flex;
  }

  /* Features */
  .features-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-phone {
    max-height: 360px;
    overflow: hidden;
  }

  .feature-phone-img {
    height: 360px;
  }

  .badge-escrow {
    top: 16px;
    left: 16px;
    min-width: unset;
  }

  .badge-complete {
    bottom: 16px;
    right: 16px;
    min-width: unset;
  }

  /* For Artisans */
  .artisan-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Download */
  .download-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .download-stores {
    justify-content: center;
  }

  .download-rating {
    justify-content: center;
  }

  .phones-group {
    height: 280px;
  }

  /* Contact */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Testimonials */
  .testi-card {
    flex: 0 0 calc(100% - 12px);
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Trust strip */
  .trust-container {
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Artisan grid */
  .artisan-grid {
    grid-template-columns: 1fr 1fr;
  }

  .artisan-card.big {
    grid-row: auto;
    grid-column: 1 / 3;
    aspect-ratio: 16/7;
  }

  /* Countries */
  .countries-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- 640px (mobile) --- */
@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-desc {
    font-size: 15px;
  }

  /* HERO */
  .hero {
    padding-top: calc(var(--nav-height) + 24px);
    padding-bottom: 48px;
  }

  .hero-container {
    gap: 32px;
    padding: 0 16px;
  }

  .hero-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-stats {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-number {
    font-size: 20px;
  }

  .stat-label {
    font-size: 11px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-cta .btn-lg {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Phone mockup — smaller on mobile */
  .phone-mockup {
    width: 200px;
  }

  .phone-frame {
    border-radius: 36px;
    padding: 10px;
  }

  .phone-notch {
    width: 80px;
    height: 22px;
  }

  .phone-screen {
    border-radius: 28px;
    min-height: 440px;
  }

  .app-ui {
    padding: 14px 12px;
    gap: 10px;
  }

  .app-greeting .greeting-text {
    font-size: 11px;
  }

  .artisan-info strong {
    max-width: 60px;
    font-size: 11px;
  }

  .artisan-info span {
    font-size: 9px;
    max-width: 60px;
  }

  .artisan-price {
    font-size: 10px;
  }

  .quote-badge {
    font-size: 9px;
  }

  .accept-btn {
    font-size: 9px;
    padding: 4px 10px;
  }

  /* Trust strip */
  .trust-container {
    gap: 14px;
    justify-content: center;
  }

  .trust-item {
    font-size: 12px;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-card {
    padding: 24px 20px;
  }

  .step-number {
    font-size: 36px;
  }

  .step-arrow {
    display: none;
  }

  /* Artisan grid */
  .artisan-grid {
    grid-template-columns: 1fr;
  }

  .artisan-card.big {
    grid-column: auto;
    aspect-ratio: 4/3;
  }

  .artisan-overlay h3 {
    font-size: 16px;
  }

  .artisan-card.big .artisan-overlay h3 {
    font-size: 18px;
  }

  /* Features */
  .feature-phone-img {
    height: 280px;
  }

  .feature-badge {
    display: none;
  }

  .feature-item {
    gap: 12px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .feature-text h4 {
    font-size: 15px;
  }

  /* For Artisans */
  .earnings-card {
    padding: 24px 20px;
  }

  .earnings-big {
    font-size: 32px;
  }

  /* Countries */
  .countries-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .country-card {
    padding: 20px 14px;
  }

  .country-flag {
    font-size: 36px;
  }

  .expansion-cta {
    padding: 28px 16px;
  }

  .notify-form {
    flex-direction: column;
    gap: 10px;
  }

  .notify-select,
  .notify-input,
  .notify-btn {
    width: 100%;
  }

  /* Testimonials */
  .testi-card {
    padding: 24px 20px;
  }

  /* Download section */
  .download-stores {
    flex-direction: column;
    align-items: center;
  }

  .store-btn {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }

  .phones-group {
    height: 220px;
  }

  .dl-phone.back {
    width: 160px;
    height: 220px;
  }

  .dl-phone.front {
    width: 180px;
    height: 250px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .stat-big {
    font-size: 36px;
  }

  .stat-icon {
    font-size: 28px;
  }

  /* Contact */
  .contact-form-wrap {
    padding: 24px 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .footer-top {
    padding: 48px 0 32px;
  }

  /* Misc */
  .hero-scroll {
    display: none;
  }

  .back-to-top {
    bottom: 20px;
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}

/* --- 400px (very small phones) --- */
@media (max-width: 400px) {
  .hero-title {
    font-size: 23px;
  }

  .phone-mockup {
    width: 180px;
  }

  .phone-screen {
    min-height: 400px;
  }

  .countries-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
