/* ═══════════════════════════════════════════════════════════════
   SPOTTD — Landing Page Styles
   Brand: Black #0D0D0D · White #FFFFFF · Gray #8A8A8A
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --black:      #0D0D0D;
  --dark:       #1A1A1A;
  --dark2:      #222222;
  --gray:       #8A8A8A;
  --light-gray: #C8C8C8;
  --off-white:  #F5F5F5;
  --white:      #FFFFFF;
  --border:     rgba(255,255,255,0.1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:     16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

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

/* ── ANIMATIONS ───────────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="fade-left"]  { transform: translateX(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate].in-view {
  opacity: 1;
  transform: translate(0, 0);
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary  { background: var(--black); color: var(--white); }
.btn-primary:hover { background: var(--dark2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-outline  { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }
.btn-white    { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.2); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* ── NAVBAR ───────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 3px;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--white) !important;
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
}
.nav-cta:hover { opacity: 0.9; }
.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(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: rgba(13,13,13,0.98);
}
.mobile-menu a {
  color: var(--white);
  padding: 14px 0;
  font-size: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg-text {
  position: absolute;
  font-family: var(--font-serif);
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 8px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  color: var(--light-gray);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--light-gray);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-note {
  color: var(--gray);
  font-size: 13px;
}

/* PHONE MOCKUP */
.hero-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-phone { position: relative; }
.phone-frame {
  width: 300px;
  background: var(--dark);
  border-radius: 44px;
  border: 8px solid #2a2a2a;
  box-shadow: 0 0 0 1px #333, 0 32px 80px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: var(--dark);
  border-radius: 0 0 16px 16px;
  z-index: 10;
}
.phone-screen {
  background: var(--white);
  min-height: 580px;
  padding-top: 28px;
  overflow: hidden;
  font-size: 11px;
}
.ps-statusbar {
  display: flex;
  justify-content: space-between;
  padding: 0 14px 4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--black);
}
.ps-greeting {
  padding: 6px 14px 2px;
  font-size: 11px;
  color: var(--gray);
}
.ps-search {
  margin: 6px 12px;
  background: var(--off-white);
  border-radius: 12px;
  padding: 8px 12px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
}
.ps-section-title {
  padding: 10px 14px 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--black);
}
.ps-product-row {
  display: flex;
  gap: 8px;
  padding: 0 12px 6px;
}
.ps-card {
  flex: 1;
  background: var(--c, #1a1a1a);
  border-radius: 12px;
  padding: 10px;
  color: var(--white);
  min-height: 75px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ps-card span { font-size: 18px; }
.ps-card div { font-size: 10px; font-weight: 600; }
.ps-price { font-size: 10px; opacity: 0.8; }
.ps-flash {
  display: flex;
  gap: 8px;
  padding: 0 12px 6px;
}
.ps-flash-card {
  flex: 1;
  background: var(--black);
  border-radius: 10px;
  padding: 8px 10px;
  color: var(--white);
  font-size: 9px;
}
.ps-flash-card s { color: var(--gray); display: block; }
.ps-flash-card b { font-size: 11px; display: block; }
.ps-flash-card div { color: var(--light-gray); margin-top: 2px; }
.ps-tabbar {
  display: flex;
  justify-content: space-around;
  padding: 8px 0 4px;
  border-top: 1px solid #eee;
  margin-top: 8px;
  background: var(--white);
}
.ps-tab {
  text-align: center;
  font-size: 9px;
  color: var(--gray);
  line-height: 1.4;
}
.ps-tab.active { color: var(--black); font-weight: 700; }
.ps-tab span { font-size: 8px; display: block; }
.phone-glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* FLOATING BADGES */
.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  min-width: 140px;
}
.badge-1 { right: -20px; top: 80px; }
.badge-2 { left: -20px; bottom: 120px; }
.badge-icon { font-size: 24px; }
.badge-num { font-size: 20px; font-weight: 800; color: var(--black); }
.badge-label { font-size: 11px; color: var(--gray); }

/* SCROLL HINT */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 11px;
  letter-spacing: 2px;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ── TICKER ───────────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--off-white);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  overflow: hidden;
  padding: 14px 0;
}
.ticker {
  display: inline-flex;
  gap: 32px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.5px;
}
.ticker span:nth-child(even) { color: var(--light-gray); }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION COMMON ───────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.section-tag.light { color: rgba(255,255,255,0.4); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 56px;
}
.section-title em { font-style: italic; color: var(--gray); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--light-gray); }

/* ── FEATURES ─────────────────────────────────────────────────── */
.features {
  padding: 100px 0;
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 36px 32px;
  background: var(--off-white);
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
}
.feature-card:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  border-color: transparent;
}
.feature-card:hover p { color: var(--gray); }
.feat-icon { font-size: 36px; margin-bottom: 20px; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.feature-card p { font-size: 14px; line-height: 1.7; color: var(--gray); }

/* ── CATEGORIES ───────────────────────────────────────────────── */
.categories {
  padding: 100px 0;
  background: var(--off-white);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cat-card {
  border-radius: var(--radius);
  height: 200px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.cat-card:hover { transform: scale(1.02); }
.cat-card:hover .cat-label { background: var(--black); }
.cat-women  { background: linear-gradient(135deg, #1a1a1a 0%, #3d3d3d 100%); }
.cat-men    { background: linear-gradient(135deg, #2a2a2a 0%, #555 100%); }
.cat-shoes  { background: linear-gradient(135deg, #c8a96e 0%, #a0825a 100%); }
.cat-bags   { background: linear-gradient(135deg, #4a4a4a 0%, #222 100%); }
.cat-access { background: linear-gradient(135deg, #8a8a8a 0%, #555 100%); }
.cat-beauty { background: linear-gradient(135deg, #c4a882 0%, #9a7d5a 100%); }
.cat-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

/* ── HOW IT WORKS ─────────────────────────────────────────────── */
.how-it-works {
  padding: 100px 0;
  background: var(--black);
}
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 40px 32px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.step:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.step-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon { font-size: 36px; margin-bottom: 20px; }
.step h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.step p { font-size: 14px; line-height: 1.7; color: var(--gray); }
.step-divider {
  font-size: 28px;
  color: rgba(255,255,255,0.15);
  padding: 80px 16px 0;
  flex-shrink: 0;
}

/* ── STATS ────────────────────────────────────────────────────── */
.stats {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  display: inline;
}
.stat-item > span { font-size: 32px; font-weight: 900; color: var(--gray); display: inline; }
.stat-label { font-size: 13px; color: var(--gray); margin-top: 8px; font-weight: 500; }
.stat-divider { width: 1px; height: 60px; background: #eee; }

/* ── VENDORS ──────────────────────────────────────────────────── */
.vendors {
  padding: 100px 0;
  background: var(--off-white);
}
.vendors-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vendors-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 32px;
}
.vendor-perks { list-style: none; margin-bottom: 40px; }
.vendor-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid #e8e8e8;
}
.vendor-perks li:last-child { border-bottom: none; }
.perk-check {
  width: 24px;
  height: 24px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* DASHBOARD CARD */
.dashboard-card {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.1);
  border: 1px solid #eee;
}
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.dash-logo {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 2px;
}
.dash-role {
  font-size: 12px;
  color: var(--gray);
  background: var(--off-white);
  padding: 4px 12px;
  border-radius: 50px;
}
.dash-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.dash-stat {
  background: var(--off-white);
  border-radius: 12px;
  padding: 14px 16px;
}
.ds-val { font-size: 18px; font-weight: 800; color: var(--black); }
.ds-lbl { font-size: 11px; color: var(--gray); margin-top: 2px; }
.dash-section {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 12px;
}
.dash-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
  gap: 8px;
}
.do-id { color: var(--gray); font-size: 12px; flex-shrink: 0; }
.do-name { flex: 1; font-weight: 500; }
.do-status {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.do-status.shipped    { background: #EBF4FF; color: #1a56db; }
.do-status.processing { background: #FEF9C3; color: #854d0e; }
.do-status.delivered  { background: #F0FDF4; color: #166534; }
.dash-stock {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
}
.stock-low { color: #c62828; font-weight: 700; font-size: 12px; }

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
.testimonials { padding: 100px 0; background: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: var(--transition);
}
.testi-card:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-4px);
}
.testi-card:hover .testi-stars { color: #f5c518; }
.testi-card:hover .testi-author small { color: var(--gray); }
.testi-stars { font-size: 18px; color: #f5c518; margin-bottom: 16px; }
.testi-card p { font-size: 15px; line-height: 1.7; color: var(--dark); margin-bottom: 24px; }
.testi-card:hover p { color: var(--light-gray); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-card:hover .testi-avatar { background: var(--white); color: var(--black); }
.testi-author strong { font-size: 14px; font-weight: 700; }
.testi-author small { font-size: 12px; color: var(--gray); }

/* ── DOWNLOAD ─────────────────────────────────────────────────── */
.download {
  background: var(--black);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.download-bg-text {
  position: absolute;
  font-family: var(--font-serif);
  font-size: clamp(100px, 18vw, 240px);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: 8px;
}
.download-title { margin-bottom: 20px; }
.download-sub {
  color: var(--gray);
  font-size: 18px;
  margin-bottom: 48px;
}
.download-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.qr-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
}
.qr-placeholder {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  border: 1px dashed rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-inner {
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  line-height: 1.5;
}
.qr-note { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.6; }

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--white); color: var(--black); }
.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: var(--gray);
  font-size: 14px;
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom span { font-size: 13px; color: rgba(255,255,255,0.25); }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-cta-group { justify-content: center; }
  .hero-phone-wrap { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .vendors-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 100px 0 60px; }
  .hero-bg-text { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { flex-direction: column; }
  .step-divider { display: none; }
  .stats-inner { flex-wrap: wrap; justify-content: center; }
  .stat-divider { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .download-btns { flex-direction: column; align-items: center; }
}
