/* ═══════════════════════════════════════════
   Hubswire Landing — Premium Style
   ═══════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #1e1e2e; background: #fff; line-height: 1.6; overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 10px; font-size: 14px; font-weight: 500;
  border: none; transition: all 0.2s ease; text-decoration: none; white-space: nowrap;
}
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 12px; }
.btn-primary { background: #4f46e5; color: #fff; }
.btn-primary:hover:not(:disabled) { background: #4338ca; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(79,70,229,0.3); }
.btn-primary:disabled { opacity: 0.6; cursor: default; }
.btn-nav { padding: 8px 18px; font-size: 13px; border-radius: 8px; }
.btn-white { background: #fff; color: #4f46e5; font-weight: 600; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.btn-white:hover { background: #f0f0ff; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.btn-white:disabled { opacity: 0.7; cursor: default; transform: none; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.btn-glass {
  background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.4); }

/* ═══════════════════ NAV ═══════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 12px 0; background: rgba(255,255,255,0.0);
  backdrop-filter: blur(0px); transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06); box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.nav.scrolled .nav-brand span { color: #1e1e2e; }
.nav.scrolled .nav-links a { color: #6b7280; }
.nav.scrolled .nav-links a:hover { color: #4f46e5; }

.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 12px; font-size: 22px; font-weight: 700; }
.nav-brand span { color: #fff; transition: color 0.3s; }
.nav-brand img { border-radius: 7px; width: 38px; height: 38px; }

.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 15.5px; color: rgba(255,255,255,0.75); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }

.nav-actions { display: flex; align-items: center; gap: 8px; }

.nav-toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.2s; }
.nav.scrolled .nav-toggle span { background: #374151; }

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

#heroCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
}

.hero-content {
  position: relative; z-index: 2; text-align: center; padding: 100px 24px 80px;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px 6px 12px; border-radius: 20px;
  background: rgba(255,255,255,0.88); backdrop-filter: blur(8px);
  color: #4f46e5; font-size: 13px; font-weight: 600;
  margin-bottom: 28px; border: 1px solid rgba(99,102,241,0.15);
  box-shadow: 0 2px 12px rgba(99,102,241,0.1);
}
.badge-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #4f46e5;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(79,70,229,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(79,70,229,0); }
}

.hero h1 {
  font-size: 58px; font-weight: 750; line-height: 1.08;
  color: #fff; margin-bottom: 20px; letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.gradient-text {
  background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 30%, #818cf8 60%, #93c5fd 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.8); max-width: 580px;
  margin: 0 auto 40px; line-height: 1.7;
}

.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-btn { animation: fadeUp 0.6s ease both; }
.hero-btn:nth-child(2) { animation-delay: 0.1s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 160px;
  background: linear-gradient(to bottom, transparent, #fff);
  z-index: 1;
}

/* ═══════════════════ TRUSTED ═══════════════════ */
.trusted { padding: 40px 0 48px; }
.trusted-inner { display: flex; align-items: center; gap: 20px; justify-content: center; flex-wrap: wrap; }
.trusted-label { font-size: 12px; font-weight: 600; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.08em; }
.trusted-tags { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.trust-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 10px;
  background: #f9fafb; border: 1px solid #e5e7eb;
  font-size: 13px; font-weight: 500; color: #374151;
  transition: all 0.2s;
}
.trust-tag:hover { border-color: #c7d2fe; background: #eef2ff; color: #4f46e5; }
.trust-tag svg { color: #6366f1; }

/* ═══════════════════ FEATURES ═══════════════════ */
.features { padding: 80px 0 40px; }

.section-center { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block; padding: 4px 14px; border-radius: 6px;
  background: rgba(99,102,241,0.08); color: #4f46e5;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.section-title { font-size: 36px; font-weight: 700; color: #111827; letter-spacing: -0.025em; margin-bottom: 12px; }
.section-sub { font-size: 16px; color: #6b7280; max-width: 520px; margin: 0 auto; }

/* Pillar */
.pillar { margin-bottom: 32px; }
.pillar-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.pillar-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: color-mix(in srgb, var(--c) 10%, transparent);
  color: var(--c); display: flex; align-items: center; justify-content: center;
}
.pillar-header h3 { font-size: 18px; font-weight: 600; color: #111827; }

.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.feat-card {
  padding: 22px; background: #fff; border: 1px solid #e5e7eb;
  border-radius: 14px; transition: all 0.25s ease;
  position: relative;
}
.feat-card:hover {
  border-color: #c7d2fe; transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(99,102,241,0.1);
}
.feat-card:hover .feat-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--c) 25%, transparent);
}
.feat-icon {
  width: 42px; height: 42px; border-radius: 11px;
  background: color-mix(in srgb, var(--c) 10%, transparent);
  color: var(--c); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; transition: all 0.3s ease;
}
.feat-card h4 { font-size: 15px; font-weight: 600; color: #111827; margin-bottom: 6px; }
.feat-card p { font-size: 13.5px; color: #6b7280; line-height: 1.55; }

/* ═══════════════════ TRACKING — Immersive ═══════════════════ */
.tracking { padding: 0; }

.tracking-dark {
  position: relative; overflow: hidden;
  background: #050412; min-height: 600px;
  display: flex; align-items: center;
}

#globeMap { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Left-aligned content */
.tracking-center {
  position: relative; z-index: 2; text-align: left;
  padding: 48px 24px 48px 64px; max-width: 480px;
}

.tracking-label-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px 5px 10px; border-radius: 20px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  color: #a5b4fc; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 24px;
}
.tlb-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
  animation: ctaPulse 2s ease-in-out infinite;
}

.tracking-hero-title {
  font-size: 42px; font-weight: 750; color: #fff; line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 16px;
}
.tracking-hero-title span {
  background: linear-gradient(135deg, #818cf8 0%, #06b6d4 50%, #22d3ee 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.tracking-hero-sub {
  font-size: 15px; color: rgba(255,255,255,0.4); line-height: 1.7;
  max-width: 400px; margin: 0 0 28px;
}

/* Mock tracking card */
.mock-track-card {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 0; text-align: left;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.03) inset;
  overflow: hidden; max-width: 360px; margin: 0;
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.mtc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mtc-status {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; color: #22c55e;
}
.mtc-status-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.5);
  animation: ctaPulse 2s ease-in-out infinite;
}
.mtc-container-wrap {
  display: flex; align-items: center; gap: 6px; color: #818cf8;
}
.mtc-container {
  font-size: 13px; font-weight: 600; color: #c7d2fe;
  font-family: 'SF Mono', 'Cascadia Code', 'Fira Code', monospace;
  letter-spacing: 0.03em;
}

.mtc-body { padding: 6px 20px; }
.mtc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mtc-row:last-child { border-bottom: none; }
.mtc-label {
  display: flex; align-items: center; gap: 7px;
  font-size: 11.5px; color: rgba(255,255,255,0.55);
}
.mtc-label svg { color: #818cf8; }
.mtc-value { font-size: 12.5px; color: #fff; font-weight: 500; }
.mtc-highlight { color: #22d3ee; }

.mtc-progress { padding: 16px 20px; border-top: 1px solid rgba(255,255,255,0.06); }
.mtc-bar {
  height: 4px; background: rgba(255,255,255,0.06); border-radius: 4px;
  margin-bottom: 12px; overflow: hidden;
}
.mtc-bar-fill {
  width: 62%; height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, #6366f1, #06b6d4, #22d3ee);
  position: relative;
}
.mtc-bar-fill::after {
  content: ''; position: absolute; right: 0; top: -2px;
  width: 8px; height: 8px; border-radius: 50%;
  background: #22d3ee; box-shadow: 0 0 10px rgba(34,211,238,0.6);
}
.mtc-legs { display: flex; justify-content: space-between; }
.mtc-leg {
  display: flex; align-items: center; gap: 4px;
  font-size: 10px; color: rgba(255,255,255,0.3); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.mtc-leg.done { color: #818cf8; }
.mtc-leg.done svg { color: #818cf8; }
.mtc-leg.active { color: #22c55e; }
.mtc-leg.active svg { color: #22c55e; }

/* Bottom provider strip */
.tracking-bottom-strip {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 16px 0;
  background: linear-gradient(to top, rgba(5,4,18,0.9), transparent);
}
.tbs-inner {
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.tbs-label {
  font-size: 11px; color: rgba(165,180,252,0.35); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.tbs-providers {
  display: flex; align-items: center; gap: 10px;
}
.tbs-prov { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }
.tbs-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(165,180,252,0.2); }

/* ═══════════════════ HOW IT WORKS ═══════════════════ */
.how { padding: 80px 0 100px; }

.steps-row { display: flex; align-items: flex-start; gap: 0; justify-content: center; }

.step-card {
  flex: 1; max-width: 220px; text-align: center;
  padding: 24px 16px; position: relative;
}
.step-num {
  position: absolute; top: 12px; right: 16px;
  font-size: 48px; font-weight: 800; color: rgba(99,102,241,0.25);
  line-height: 1; pointer-events: none;
}
.step-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(99,102,241,0.08); color: #4f46e5;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-card h4 { font-size: 15px; font-weight: 600; color: #111827; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: #6b7280; line-height: 1.55; }

.step-arrow {
  color: #d1d5db; flex-shrink: 0; padding-top: 40px;
}

/* ═══════════════════ CTA — Immersive ═══════════════════ */
.cta-section {
  position: relative; min-height: 520px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
#ctaCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.cta-fade-top {
  position: absolute; top: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom, #fff, transparent); z-index: 1;
}
.cta-fade-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to top, #0a0e27, transparent); z-index: 1;
}

.cta-inner {
  position: relative; z-index: 2; text-align: center;
  padding: 80px 24px; max-width: 640px;
}

.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px 6px 12px; border-radius: 20px;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  color: #a5b4fc; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 28px;
}
.cta-badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
  animation: ctaPulse 2s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 4px rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 12px rgba(34,197,94,0.8), 0 0 24px rgba(34,197,94,0.3); }
}

.cta-inner h2 {
  font-size: 44px; font-weight: 750; color: #fff; line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 16px;
  text-shadow: 0 2px 30px rgba(99,102,241,0.3);
}

.cta-inner p {
  font-size: 17px; color: rgba(255,255,255,0.55); max-width: 480px;
  margin: 0 auto 36px; line-height: 1.7;
}

.cta-buttons { display: flex; gap: 14px; justify-content: center; margin-bottom: 36px; flex-wrap: wrap; }

.cta-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: 14px; border: none;
  background: #fff; color: #1e1b4b; font-size: 15px; font-weight: 600;
  font-family: inherit; cursor: pointer; text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(255,255,255,0.15), 0 0 0 1px rgba(255,255,255,0.1);
}
.cta-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255,255,255,0.25), 0 0 60px rgba(99,102,241,0.2);
}

.cta-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px; border-radius: 14px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7); font-size: 15px; font-weight: 500;
  font-family: inherit; cursor: pointer; text-decoration: none;
  backdrop-filter: blur(8px); transition: all 0.25s;
}
.cta-btn-ghost:hover {
  background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25);
  color: #fff; transform: translateY(-2px);
}

.cta-features {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
}
.cta-feat {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(165,180,252,0.6); font-weight: 500;
}
.cta-feat svg { color: #22c55e; }

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
  padding: 0; background: #0a0e27; color: #94a3b8;
}

.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 48px;
  padding: 56px 0 40px;
  border-bottom: 1px solid rgba(99,102,241,0.1);
}

.footer-brand-col { max-width: 300px; flex-shrink: 0; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.footer-brand img { border-radius: 7px; }
.footer-tagline { font-size: 13px; color: #94a3b8; line-height: 1.6; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(99,102,241,0.1); color: #818cf8;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.social-link:hover { background: #4f46e5; color: #fff; transform: translateY(-2px); }

.footer-nav { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-size: 11px; font-weight: 600; color: rgba(165,180,252,0.7);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px;
}
.footer-col a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: #cbd5e1; transition: all 0.2s;
}
.footer-col a svg { color: #818cf8; opacity: 0.6; transition: opacity 0.2s; flex-shrink: 0; }
.footer-col a:hover { color: #fff; transform: translateX(3px); }
.footer-col a:hover svg { opacity: 1; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 12px; color: #64748b;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: #94a3b8; transition: color 0.15s; }
.footer-bottom-links a:hover { color: #fff; }

/* ═══════════════════ ANIMATIONS ═══════════════════ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.pillar-icon {
  animation: float 4s ease-in-out infinite;
}
.pillar:nth-child(2) .pillar-icon { animation-delay: 0.5s; }
.pillar:nth-child(3) .pillar-icon { animation-delay: 1s; }

.section-label {
  background: linear-gradient(90deg, rgba(99,102,241,0.08) 0%, rgba(139,92,246,0.12) 50%, rgba(99,102,241,0.08) 100%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.step-icon { animation: float 3.5s ease-in-out infinite; }
.step-card:nth-child(2) .step-icon { animation-delay: 0.3s; }
.step-card:nth-child(3) .step-icon { animation-delay: 0.6s; }
.step-card:nth-child(4) .step-icon { animation-delay: 0.9s; }

.prov { transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); }
.prov:hover { transform: translateY(-4px) scale(1.02); }
.prov:hover .prov-initial { transform: scale(1.15) rotate(-5deg); }
.prov-initial { transition: all 0.3s ease; }

.trust-tag { transition: all 0.25s ease; }
.trust-tag:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(99,102,241,0.12); }


.detect-banner { transition: all 0.25s ease; }
.detect-banner:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 12px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(15,12,46,0.95); backdrop-filter: blur(16px);
    padding: 20px 24px; border-bottom: 1px solid rgba(99,102,241,0.1);
  }
  .nav-links.open a { color: rgba(255,255,255,0.8) !important; font-size: 15px; }
  .nav-brand img { width: 30px !important; height: 30px !important; }
  .nav-brand { font-size: 18px; }

  /* Hero — compact */
  .hero { min-height: 85vh; }
  .hero-content { padding: 80px 20px 60px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-badge { font-size: 11px; padding: 5px 12px; margin-bottom: 20px; }
  .hero-cta { flex-direction: column; align-items: center; gap: 10px; }
  .hero-btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Trusted */
  .trusted { padding: 24px 0 32px; }
  .trusted-inner { flex-direction: column; gap: 12px; }
  .trusted-tags { justify-content: center; }
  .trust-tag { font-size: 12px; padding: 6px 12px; }

  /* Features — single column, less padding */
  .features { padding: 48px 0 24px; }
  .section-center { margin-bottom: 32px; }
  .section-title { font-size: 24px; }
  .section-sub { font-size: 14px; }
  .pillar { margin-bottom: 24px; }
  .pillar-grid { grid-template-columns: 1fr; gap: 10px; }
  .pillar-header h3 { font-size: 16px; }
  .feat-card { padding: 18px; }
  .feat-card p { font-size: 13px; }
  .feat-icon { width: 36px; height: 36px; margin-bottom: 12px; }

  /* Tracking — hidden on mobile */
  .tracking { display: none; }

  /* How it works — vertical, compact */
  .how { padding: 48px 0 60px; }
  .steps-row { flex-direction: column; align-items: center; gap: 0; }
  .step-arrow { transform: rotate(90deg); padding: 4px 0; }
  .step-card { max-width: 280px; padding: 16px 12px; }
  .step-card h4 { font-size: 14px; }
  .step-card p { font-size: 12px; }
  .step-icon { width: 44px; height: 44px; margin-bottom: 12px; }
  .step-num { font-size: 36px; top: 8px; right: 8px; }

  /* CTA — compact */
  .cta-section { min-height: 420px; }
  .cta-inner { padding: 48px 20px; }
  .cta-inner h2 { font-size: 26px; }
  .cta-inner p { font-size: 14px; margin-bottom: 24px; }
  .cta-buttons { flex-direction: column; align-items: center; gap: 10px; }
  .cta-btn-primary, .cta-btn-ghost { width: 100%; max-width: 260px; justify-content: center; padding: 13px 24px; font-size: 14px; }
  .cta-features { flex-direction: row; justify-content: center; gap: 12px; flex-wrap: nowrap; }
  .cta-feat { font-size: 10px; gap: 4px; }
  .cta-feat svg { width: 12px; height: 12px; }
  .cta-badge { font-size: 10px; }

  /* Footer */
  .footer-top { flex-direction: column; gap: 28px; padding: 40px 0 28px; }
  .footer-nav { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; width: 100%; }
  .footer-brand-col { max-width: 100%; }
  .footer-tagline { margin-bottom: 14px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .hero-content { padding: 72px 16px 48px; }
  .section-title { font-size: 22px; }
  .pillar-header { margin-bottom: 12px; }
  .pillar-icon { width: 36px; height: 36px; }
  .tracking-hero-title { font-size: 22px; }
  .tracking-center { padding: 28px 16px 20px; }
  .cta-inner h2 { font-size: 22px; }
  .trust-tag { font-size: 11px; padding: 5px 10px; }
  .footer-nav { gap: 20px; }
  .footer-col a { font-size: 12px; }
}
