/* ===== FastPass Public Theme ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --fp-purple-50: #f5f3ff;
  --fp-purple-100: #ede9fe;
  --fp-purple-200: #ddd6fe;
  --fp-purple-300: #c4b5fd;
  --fp-purple-400: #a78bfa;
  --fp-purple-500: #8b5cf6;
  --fp-purple-600: #7c3aed;
  --fp-purple-700: #6d28d9;
  --fp-purple-800: #5b21b6;
  --fp-purple-900: #4c1d95;
  
  --fp-dark-900: #0f0f12;
  --fp-dark-800: #1a1a23;
  --fp-dark-700: #23232f;
  --fp-dark-600: #2d2d3a;
  --fp-dark-500: #3d3d4e;
  
  --fp-bg: #f8f9fc;
  --fp-card: #ffffff;
  --fp-border: #e5e7eb;
  --fp-text: #1f2937;
  --fp-text-muted: #6b7280;
  --fp-text-light: #9ca3af;
  
  --fp-success: #10b981;
  --fp-success-light: #d1fae5;
  --fp-warning: #f59e0b;
  --fp-warning-light: #fef3c7;
  --fp-danger: #ef4444;
  --fp-danger-light: #fee2e2;
  --fp-info: #3b82f6;
  --fp-info-light: #dbeafe;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--fp-bg);
  color: var(--fp-text);
  font-size: 16px;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  height: auto;
}

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

/* ===== Header/Navbar ===== */
.navbar {
  background: var(--fp-card);
  border-bottom: 1px solid var(--fp-border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--fp-purple-500) 0%, var(--fp-purple-700) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.logo-icon svg {
  width: 26px;
  height: 26px;
  color: white;
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--fp-purple-600) 0%, var(--fp-purple-800) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.navbar-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--fp-text-muted);
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: var(--fp-purple-600);
}

.navbar-cta {
  display: flex;
  gap: 12px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--fp-purple-500) 0%, var(--fp-purple-700) 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.45);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--fp-border);
  color: var(--fp-text);
}

.btn-outline:hover {
  border-color: var(--fp-purple-500);
  color: var(--fp-purple-600);
}

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

.btn-white {
  background: white;
  color: var(--fp-purple-700);
}

.btn-white:hover {
  background: var(--fp-purple-50);
}

/* ===== Hero Section ===== */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(180deg, var(--fp-purple-50) 0%, var(--fp-bg) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--fp-purple-100);
  color: var(--fp-purple-700);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--fp-dark-900);
  margin-bottom: 24px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--fp-purple-500) 0%, var(--fp-purple-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  color: var(--fp-text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--fp-purple-600);
}

.hero-stat-label {
  font-size: 14px;
  color: var(--fp-text-muted);
}

/* Hero Illustration */
.hero-illustration {
  position: relative;
}

.hero-card {
  background: var(--fp-card);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--fp-border);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--fp-purple-100) 0%, var(--fp-purple-200) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--fp-purple-600);
}

.hero-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--fp-dark-900);
}

.hero-card-subtitle {
  font-size: 13px;
  color: var(--fp-text-muted);
}

/* Timeline Visual */
.timeline-visual {
  position: relative;
  padding-left: 24px;
}

.timeline-line {
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--fp-purple-500) 0%, var(--fp-purple-300) 60%, var(--fp-border) 100%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  position: relative;
}

.timeline-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--fp-purple-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-dot svg {
  width: 12px;
  height: 12px;
  color: white;
}

.timeline-dot.completed {
  background: var(--fp-success);
}

.timeline-dot.pending {
  background: var(--fp-border);
  border: 2px solid var(--fp-text-light);
}

.timeline-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--fp-dark-900);
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 13px;
  color: var(--fp-text-muted);
}

/* ===== Tracking Box ===== */
.tracking-box {
  background: var(--fp-card);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--fp-border);
  max-width: 600px;
  margin: -50px auto 0;
  position: relative;
  z-index: 10;
}

.tracking-box-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--fp-dark-900);
  margin-bottom: 8px;
  text-align: center;
}

.tracking-box-subtitle {
  font-size: 14px;
  color: var(--fp-text-muted);
  margin-bottom: 24px;
  text-align: center;
}

.tracking-form {
  display: flex;
  gap: 12px;
}

.tracking-input-wrapper {
  flex: 1;
  position: relative;
}

.tracking-input-wrapper svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--fp-text-muted);
}

.tracking-input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  font-size: 16px;
  border: 2px solid var(--fp-border);
  border-radius: 12px;
  outline: none;
  transition: all 0.2s;
  font-family: inherit;
}

.tracking-input:focus {
  border-color: var(--fp-purple-500);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.tracking-input::placeholder {
  color: var(--fp-text-light);
}

/* ===== Features Section ===== */
.features {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--fp-purple-100);
  color: var(--fp-purple-700);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--fp-dark-900);
  margin-bottom: 16px;
}

.section-description {
  font-size: 17px;
  color: var(--fp-text-muted);
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--fp-card);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--fp-border);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--fp-purple-200);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--fp-purple-100) 0%, var(--fp-purple-200) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--fp-purple-600);
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--fp-dark-900);
  margin-bottom: 12px;
}

.feature-description {
  font-size: 15px;
  color: var(--fp-text-muted);
  line-height: 1.6;
}

/* ===== How It Works ===== */
.how-it-works {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--fp-bg) 0%, var(--fp-purple-50) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-card::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--fp-purple-300) 0%, transparent 100%);
}

.step-card:last-child::after {
  display: none;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--fp-purple-500) 0%, var(--fp-purple-700) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  font-weight: 800;
  color: white;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--fp-dark-900);
  margin-bottom: 12px;
}

.step-description {
  font-size: 14px;
  color: var(--fp-text-muted);
  line-height: 1.6;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 100px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--fp-purple-600) 0%, var(--fp-purple-800) 100%);
  border-radius: 24px;
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-title {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-description {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ===== Footer ===== */
.footer {
  background: var(--fp-dark-900);
  padding: 60px 0 30px;
  color: white;
}

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

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo .logo-icon {
  width: 40px;
  height: 40px;
}

.footer-logo .logo-text {
  font-size: 22px;
  font-weight: 800;
  color: white;
  -webkit-text-fill-color: white;
}

.footer-description {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--fp-dark-700);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--fp-purple-600);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  color: white;
}

.footer-column h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--fp-purple-400);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--fp-dark-700);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

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

.footer-legal a:hover {
  color: white;
}

/* ===== Tracking Page ===== */
.tracking-page {
  min-height: 100vh;
  padding-top: 80px;
}

.tracking-hero {
  background: linear-gradient(135deg, var(--fp-purple-600) 0%, var(--fp-purple-800) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tracking-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.tracking-hero-title {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.tracking-hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  position: relative;
  z-index: 1;
}

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

.tracking-search-box {
  background: var(--fp-card);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-xl);
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.tracking-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  background: var(--fp-bg);
  padding: 6px;
  border-radius: 12px;
}

.tracking-tab {
  flex: 1;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  color: var(--fp-text-muted);
  transition: all 0.2s;
}

.tracking-tab.active {
  background: var(--fp-card);
  color: var(--fp-purple-600);
  box-shadow: var(--shadow-sm);
}

.search-input-group {
  display: flex;
  gap: 12px;
}

.search-input-wrapper {
  flex: 1;
  position: relative;
}

.search-input-wrapper svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  color: var(--fp-text-muted);
}

.search-input {
  width: 100%;
  padding: 18px 18px 18px 52px;
  font-size: 16px;
  border: 2px solid var(--fp-border);
  border-radius: 14px;
  outline: none;
  transition: all 0.2s;
  font-family: inherit;
}

.search-input:focus {
  border-color: var(--fp-purple-500);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.search-input::placeholder {
  color: var(--fp-text-light);
}

/* ===== Tracking Results ===== */
.tracking-results {
  padding: 40px 0 80px;
}

.result-card {
  background: var(--fp-card);
  border-radius: 20px;
  border: 1px solid var(--fp-border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.result-header {
  padding: 24px 32px;
  background: linear-gradient(135deg, var(--fp-purple-50) 0%, white 100%);
  border-bottom: 1px solid var(--fp-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.result-code {
  display: flex;
  align-items: center;
  gap: 12px;
}

.result-code-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--fp-purple-500) 0%, var(--fp-purple-700) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-code-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.result-code-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--fp-dark-900);
}

.result-code-text span {
  font-size: 14px;
  color: var(--fp-text-muted);
}

.result-status {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.result-status.em_transito {
  background: var(--fp-info-light);
  color: var(--fp-info);
}

.result-status.entregue {
  background: var(--fp-success-light);
  color: var(--fp-success);
}

.result-status.pendente {
  background: var(--fp-warning-light);
  color: var(--fp-warning);
}

.result-status.cancelado {
  background: var(--fp-danger-light);
  color: var(--fp-danger);
}

.result-body {
  padding: 32px;
}

/* Progress Bar */
.progress-container {
  margin-bottom: 40px;
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 8px;
}

.progress-bar::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  height: 4px;
  background: var(--fp-border);
  border-radius: 2px;
}

.progress-fill {
  position: absolute;
  top: 20px;
  left: 40px;
  height: 4px;
  background: linear-gradient(90deg, var(--fp-purple-500) 0%, var(--fp-success) 100%);
  border-radius: 2px;
  transition: width 0.5s ease;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  flex: 1;
}

.progress-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--fp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all 0.3s;
}

.progress-step-icon svg {
  width: 20px;
  height: 20px;
  color: var(--fp-text-muted);
}

.progress-step.completed .progress-step-icon {
  background: var(--fp-success);
}

.progress-step.completed .progress-step-icon svg {
  color: white;
}

.progress-step.active .progress-step-icon {
  background: var(--fp-purple-500);
  box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.2);
}

.progress-step.active .progress-step-icon svg {
  color: white;
}

.progress-step-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fp-text-muted);
  text-align: center;
}

.progress-step.completed .progress-step-label,
.progress-step.active .progress-step-label {
  color: var(--fp-dark-900);
}

/* Delivery Info */
.delivery-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px;
  background: var(--fp-bg);
  border-radius: 16px;
  margin-bottom: 32px;
}

.delivery-info-item {
  text-align: center;
}

.delivery-info-label {
  font-size: 13px;
  color: var(--fp-text-muted);
  margin-bottom: 4px;
}

.delivery-info-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--fp-dark-900);
}

/* Timeline */
.tracking-timeline {
  position: relative;
  padding-left: 32px;
}

.tracking-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--fp-border);
}

.tracking-event {
  position: relative;
  padding: 16px 0;
  padding-left: 32px;
}

.tracking-event:first-child {
  padding-top: 0;
}

.tracking-event-dot {
  position: absolute;
  left: -32px;
  top: 16px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--fp-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tracking-event:first-child .tracking-event-dot {
  top: 0;
}

.tracking-event-dot svg {
  width: 12px;
  height: 12px;
  color: var(--fp-text-muted);
}

.tracking-event.current .tracking-event-dot {
  background: var(--fp-purple-500);
  box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.15);
}

.tracking-event.current .tracking-event-dot svg {
  color: white;
}

.tracking-event.completed .tracking-event-dot {
  background: var(--fp-success);
}

.tracking-event.completed .tracking-event-dot svg {
  color: white;
}

.tracking-event-content {
  background: var(--fp-card);
  border: 1px solid var(--fp-border);
  border-radius: 12px;
  padding: 16px 20px;
  transition: all 0.2s;
}

.tracking-event.current .tracking-event-content {
  border-color: var(--fp-purple-200);
  background: var(--fp-purple-50);
}

.tracking-event-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--fp-dark-900);
  margin-bottom: 4px;
}

.tracking-event-description {
  font-size: 14px;
  color: var(--fp-text-muted);
  margin-bottom: 8px;
}

.tracking-event-time {
  font-size: 13px;
  color: var(--fp-text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.tracking-event-time svg {
  width: 14px;
  height: 14px;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 40px;
}

.empty-state-icon {
  width: 80px;
  height: 80px;
  background: var(--fp-purple-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.empty-state-icon svg {
  width: 40px;
  height: 40px;
  color: var(--fp-purple-500);
}

.empty-state-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--fp-dark-900);
  margin-bottom: 8px;
}

.empty-state-description {
  font-size: 15px;
  color: var(--fp-text-muted);
  max-width: 400px;
  margin: 0 auto;
}

/* Loading */
.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--fp-purple-100);
  border-top-color: var(--fp-purple-500);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Error State */
.error-state {
  text-align: center;
  padding: 60px 40px;
}

.error-state-icon {
  width: 80px;
  height: 80px;
  background: var(--fp-danger-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.error-state-icon svg {
  width: 40px;
  height: 40px;
  color: var(--fp-danger);
}

.error-state-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--fp-dark-900);
  margin-bottom: 8px;
}

.error-state-description {
  font-size: 15px;
  color: var(--fp-text-muted);
  max-width: 400px;
  margin: 0 auto 24px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-illustration {
    display: none;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .step-card::after {
    display: none;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar-menu {
    display: none;
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .tracking-box {
    padding: 24px;
  }
  
  .tracking-form {
    flex-direction: column;
  }
  
  .features-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .cta-box {
    padding: 48px 24px;
  }
  
  .cta-title {
    font-size: 24px;
  }
  
  .cta-actions {
    flex-direction: column;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  /* Tracking Page */
  .tracking-search-box {
    padding: 24px;
  }
  
  .search-input-group {
    flex-direction: column;
  }
  
  .delivery-info {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .progress-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .progress-bar::before,
  .progress-fill {
    display: none;
  }
  
  .progress-step {
    flex-direction: row;
    gap: 12px;
  }
  
  .result-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
