/* =============================================
   SPONDAN — Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --bg:       #07090f;
  --bg-2:     #0d1017;
  --bg-3:     #111620;
  --surface:  #161c2a;
  --border:   #1e2740;
  --accent:   #4f7cff;
  --accent-2: #7c5bff;
  --glow:     #4f7cff33;
  --text:     #e8eaf2;
  --muted:    #7a82a0;
  --white:    #ffffff;

  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius:   12px;
  --radius-lg:20px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* ── Selection ── */
::selection { background: var(--accent); color: #fff; }

/* =============================================
   LAYOUT UTILS
   ============================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.section--sm{ padding: 60px 0; }
.flex       { display: flex; }
.flex-center{ display: flex; align-items: center; justify-content: center; }
.grid-2     { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; }
.grid-3     { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4     { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.text-center{ text-align: center; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}
.display {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 700; }
.h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 600; }
.lead { font-size: clamp(16px, 1.5vw, 19px); color: var(--muted); line-height: 1.8; }
.caption { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); font-weight: 600; }

.gradient-text {
  background: linear-gradient(135deg, #fff 30%, var(--accent) 70%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 30px var(--glow);
}
.btn-primary:hover {
  background: #6b91ff;
  transform: translateY(-2px);
  box-shadow: 0 0 48px var(--glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--glow);
}

/* =============================================
   BADGE / PILL
   ============================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-accent {
  background: rgba(79,124,255,.15);
  color: var(--accent);
  border: 1px solid rgba(79,124,255,.3);
}
.badge-green {
  background: rgba(52,211,153,.1);
  color: #34d399;
  border: 1px solid rgba(52,211,153,.25);
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-head { margin-bottom: 64px; }
.section-head .caption { margin-bottom: 14px; }
.section-head .h2 { margin-bottom: 20px; }
.section-head .lead { max-width: 560px; }
.section-head.center { text-align: center; }
.section-head.center .lead { margin: 0 auto; }

/* =============================================
   NAV
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(7,9,15,.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}
.nav-logo .logo-text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   HERO
   ============================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.hero-bg .orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  top: -200px; right: -100px;
}
.hero-bg .orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent-2), transparent 70%);
  bottom: 0; left: -200px;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,124,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,124,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-content .badge { margin-bottom: 28px; }
.hero-content .display { margin-bottom: 24px; }
.hero-content .lead { margin-bottom: 40px; max-width: 480px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat .stat-val {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat .stat-label { font-size: 13px; color: var(--muted); }
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
}
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
}
.hero-card-main {
  z-index: 3;
}
.hero-card-float {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  animation: float 3s ease-in-out infinite;
}
.hero-card-float-1 { top: -20px; right: -30px; animation-delay: 0s; }
.hero-card-float-2 { bottom: -20px; left: -30px; animation-delay: 1.5s; }
.hero-card-float .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34d399;
  flex-shrink: 0;
}
.card-browser {
  background: var(--bg-3);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}
.card-browser-bar {
  background: var(--bg-2);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.card-browser-bar .dot { width: 8px; height: 8px; border-radius: 50%; }
.card-browser-bar .dot-r { background: #ff5f57; }
.card-browser-bar .dot-y { background: #febc2e; }
.card-browser-bar .dot-g { background: #28c840; }
.card-browser-body { padding: 20px; }
.card-browser-line {
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  margin-bottom: 10px;
}
.card-browser-line.w-full { width: 100%; }
.card-browser-line.w-3-4  { width: 75%; }
.card-browser-line.w-1-2  { width: 50%; }
.card-browser-line.accent { background: rgba(79,124,255,.4); }
.card-meta { display: flex; justify-content: space-between; align-items: center; }
.card-meta span { font-size: 13px; color: var(--muted); }
.card-rating { color: #fbbf24; font-size: 13px; }

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

/* =============================================
   MARKETPLACE LOGOS
   ============================================= */
#logos { padding: 40px 0 60px; }
.logos-label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 28px;
}
.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.45;
  transition: var(--transition);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}
.logo-item:hover { opacity: 0.85; }
.logo-item .li-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* =============================================
   ABOUT
   ============================================= */
#about { background: var(--bg-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-code-block {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 13px;
  font-family: 'Courier New', monospace;
}
.code-header {
  background: var(--surface);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.code-header .dots { display: flex; gap: 6px; }
.code-header .dots span { width: 10px; height: 10px; border-radius: 50%; }
.code-body { padding: 24px; line-height: 2; }
.code-body .cl   { color: var(--muted); }
.code-body .key  { color: #7dd3fc; }
.code-body .str  { color: #86efac; }
.code-body .num  { color: #fbbf24; }
.code-body .sym  { color: var(--muted); }
.about-pill {
  position: absolute;
  top: -16px; right: -20px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 30px var(--glow);
}
.about-content .lead { margin: 20px 0 36px; }
.value-list { display: flex; flex-direction: column; gap: 16px; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.value-item:hover { border-color: rgba(79,124,255,.4); background: var(--bg-3); }
.value-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(79,124,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-text strong { display: block; font-size: 15px; color: var(--white); margin-bottom: 2px; font-family: var(--font-head); }
.value-text span   { font-size: 13px; color: var(--muted); }

/* =============================================
   PRODUCTS
   ============================================= */
#products { background: var(--bg); }
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: rgba(79,124,255,.5);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(79,124,255,.15);
}
.product-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-thumb-bg {
  position: absolute;
  inset: 0;
}
.product-thumb-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
}
.product-icon-lg {
  font-size: 48px;
  margin-bottom: 8px;
}
.product-title-mini {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.product-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-tags { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.product-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(79,124,255,.1);
  color: var(--accent);
  border: 1px solid rgba(79,124,255,.2);
}
.product-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.product-desc { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; }
.product-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-meta { display: flex; gap: 16px; }
.product-meta-item { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.product-meta-item span { color: var(--text); font-weight: 500; }
.product-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.product-link:hover { gap: 8px; }
.product-featured-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: #fbbf24;
  color: #1a1000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =============================================
   FEATURES
   ============================================= */
#features { background: var(--bg-2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 28px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover { border-color: rgba(79,124,255,.35); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(79,124,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  border: 1px solid rgba(79,124,255,.2);
}
.feature-card h4 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* =============================================
   STATS STRIP
   ============================================= */
#stats {
  padding: 72px 0;
  background: linear-gradient(135deg, #0d1523 0%, #0a0f1e 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-block {
  text-align: center;
  padding: 24px;
  border-right: 1px solid var(--border);
}
.stat-block:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 40%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-desc { font-size: 15px; color: var(--muted); }

/* =============================================
   BRANDS SECTION (codethemes / uxseven)
   ============================================= */
#brands { background: var(--bg); }
.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.brand-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.brand-card:hover {
  border-color: rgba(79,124,255,.4);
  transform: translateY(-4px);
}
.brand-card-top {
  padding: 48px 40px 36px;
  position: relative;
  overflow: hidden;
}
.brand-card-top .bg-shape {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
  top: -80px; right: -60px;
  pointer-events: none;
}
.brand-logo-box {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
}
.brand-name {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.brand-tagline { font-size: 14px; color: var(--muted); }
.brand-card-body { padding: 28px 40px; background: var(--surface); }
.brand-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.brand-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.brand-feature-item::before {
  content: '✓';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(52,211,153,.15);
  color: #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.brand-stat-row { display: flex; gap: 32px; margin-bottom: 28px; }
.brand-stat .bs-val { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--white); }
.brand-stat .bs-key { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* =============================================
   PROCESS
   ============================================= */
#process { background: var(--bg-2); }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}
.process-step { padding: 0 20px; text-align: center; }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.process-step:hover .step-num {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--glow);
}
.process-step h4 { font-family: var(--font-head); font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.process-step p  { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* =============================================
   TESTIMONIALS
   ============================================= */
#testimonials { background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.testi-card:hover { border-color: rgba(79,124,255,.3); }
.testi-stars { color: #fbbf24; font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-size: 14px; color: var(--muted); line-height: 1.8; 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-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 600; color: var(--white); font-family: var(--font-head); }
.testi-role { font-size: 12px; color: var(--muted); }

/* =============================================
   CTA
   ============================================= */
#cta {
  padding: 100px 0;
  background: var(--bg-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta .orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,124,255,.15), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
#cta .h2 { margin-bottom: 16px; }
#cta .lead { margin: 0 auto 40px; max-width: 520px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p { font-size: 14px; color: var(--muted); margin: 16px 0 24px; max-width: 280px; line-height: 1.8; }
.footer-socials { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.social-icon:hover { border-color: var(--accent); color: var(--accent); background: var(--glow); }
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--muted);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: var(--muted); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--text); }

/* =============================================
   MOBILE NAV DRAWER
   ============================================= */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 100vw);
  height: 100vh;
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  z-index: 2000;
  transition: right 0.35s cubic-bezier(.4,0,.2,1);
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--accent); padding-left: 8px; }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  display: none;
}
.nav-overlay.open { display: block; }

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 72px 0; }
  .grid-3, .testi-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-block:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .process-steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-block { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-block:last-child { border-bottom: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
