/* =============================================
   SWIFTHAUL LOGISTICS — PAGE-SPECIFIC STYLES
   ============================================= */

/* ---- HERO SECTION (shared) ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 140px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero p {
  font-size: 1.2rem;
  max-width: 650px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 2rem;
  margin-top: 4.5rem;
  padding: 2.5rem 5rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 2;
  transition: all var(--transition-slow);
}

.hero-stats:hover {
  box-shadow: 0 25px 50px rgba(255, 107, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.hero-stat {
  text-align: center;
  position: relative;
  transition: transform var(--transition-base);
  cursor: default;
}

.hero-stat:hover {
  transform: translateY(-5px);
}

.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -2rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.08), transparent);
}

.hero-stat .stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-stat .stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

/* Animated Grid Background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg canvas {
  width: 100%;
  height: 100%;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 107, 0, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 107, 0, 0.06) 0%, transparent 50%);
  z-index: 1;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 8rem 0 4rem;
  }

  .hero-stats {
    gap: 2rem;
    flex-direction: column;
  }
  .hero-stat:not(:last-child)::after {
    display: none;
  }
}

/* ---- PAGE HERO (Interior pages) ---- */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center top, rgba(255, 107, 0, 0.1) 0%, transparent 60%);
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  color: var(--text-muted);
}

.breadcrumb .current {
  color: var(--accent);
}

/* ---- SERVICES SECTION ---- */
.services-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 2.5rem 2rem;
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 0, 0.25);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .service-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  background: var(--accent);
  box-shadow: 0 0 25px var(--accent-glow);
  transform: scale(1.1);
  color: #fff !important;
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-card:hover .learn-more {
  gap: 0.85rem;
}

/* ---- SERVICE DETAIL PAGE ---- */
.service-detail-hero {
  position: relative;
  padding: 10rem 0 5rem;
  overflow: hidden;
}

.service-detail-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Center all the elements within the service detail hero */
.service-detail-hero h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.service-detail-hero p {
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.service-detail-hero .hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.service-detail-hero .hero-stats {
  justify-content: center;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  padding: 1.5rem 3rem;
  margin: 2.5rem auto 0;
  max-width: fit-content;
}

/* Hide the large text square graphic completely from all pages */
.service-detail-hero .hero-image {
  display: none !important;
}

/* Override the inline 2-column grid in the HTML */
.service-detail-hero .grid-2 {
  display: block;
}


@media (max-width: 768px) {
  .service-detail-hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* How it works timeline */
.timeline {
  display: flex;
  gap: 2rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 35px;
  right: 35px;
  height: 2px;
  background: var(--glass-border);
}

.timeline-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.timeline-step-number {
  width: 70px;
  height: 70px;
  background: var(--bg-secondary);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
  transition: all var(--transition-base);
}

.timeline-step:hover .timeline-step-number {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 25px var(--accent-glow);
}

.timeline-step h4 {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    gap: 1.5rem;
  }
  .timeline::before {
    top: 0;
    bottom: 0;
    left: 35px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .timeline-step {
    text-align: left;
    padding-left: 5rem;
  }
  .timeline-step-number {
    position: absolute;
    left: 0;
    margin: 0;
  }
}

/* ---- TRACKING PAGE ---- */
.tracking-search {
  max-width: 700px;
  margin: 0 auto;
}

.tracking-input-group {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.tracking-input-group .form-select {
  max-width: 200px;
}

.tracking-input-group .form-input {
  flex: 1;
}

@media (max-width: 640px) {
  .tracking-input-group {
    flex-direction: column;
  }
  .tracking-input-group .form-select {
    max-width: 100%;
  }
}

.tracking-result {
  max-width: 800px;
  margin: 3rem auto 0;
  display: none;
}

.tracking-result.visible {
  display: block;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.tracking-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 3rem 0;
  padding: 0 1rem;
}

.tracking-status-bar::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: var(--glass-border);
}

.tracking-status-bar .progress-fill {
  position: absolute;
  top: 20px;
  left: 40px;
  height: 3px;
  background: var(--accent-gradient);
  transition: width 1s ease;
}

.tracking-point {
  position: relative;
  z-index: 2;
  text-align: center;
}

.tracking-point-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 3px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 0.9rem;
  transition: all var(--transition-base);
}

.tracking-point.completed .tracking-point-dot {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 15px var(--accent-glow);
}

.tracking-point.active .tracking-point-dot {
  border-color: var(--accent);
  color: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(255, 107, 0, 0); }
}

.tracking-point-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.tracking-point.completed .tracking-point-label,
.tracking-point.active .tracking-point-label {
  color: var(--text-primary);
}

.tracking-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.tracking-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem;
}

.tracking-detail-card .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.tracking-detail-card .value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ---- QUOTE PAGE ---- */
.quote-form-container {
  max-width: 700px;
  margin: 0 auto;
}

.quote-step {
  display: none;
}

.quote-step.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

.quote-step h3 {
  margin-bottom: 0.5rem;
}

.quote-step > p {
  margin-bottom: 2rem;
}

.service-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 480px) {
  .service-type-grid {
    grid-template-columns: 1fr;
  }
}

.service-type-option {
  background: var(--bg-card);
  border: 2px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
}

.service-type-option:hover {
  border-color: rgba(255, 107, 0, 0.3);
  background: rgba(255, 107, 0, 0.05);
}

.service-type-option.selected {
  border-color: var(--accent);
  background: rgba(255, 107, 0, 0.08);
  box-shadow: 0 0 20px var(--accent-glow);
}

.service-type-option .option-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.service-type-option h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.service-type-option p {
  font-size: 0.82rem;
}

.quote-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
}

/* ---- AUTH PAGES ---- */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.auth-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 107, 0, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(255, 107, 0, 0.05) 0%, transparent 50%);
}

.auth-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
}

.auth-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header .auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
}

.auth-header h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.auth-header p {
  font-size: 0.92rem;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--glass-border);
}

.auth-divider span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.social-login {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.social-btn {
  flex: 1;
  padding: 0.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--btn-radius);
  color: var(--text-primary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.social-btn:hover {
  background: var(--glass-hover);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.auth-footer a {
  color: var(--accent);
  font-weight: 600;
}

/* Account type selector */
.account-type-selector {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.account-type-btn {
  flex: 1;
  padding: 1rem;
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
}

.account-type-btn .type-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.account-type-btn:hover {
  border-color: rgba(255, 107, 0, 0.3);
}

.account-type-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 107, 0, 0.08);
}

/* ---- ABOUT PAGE ---- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story-image {
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  aspect-ratio: 4/3;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

@media (max-width: 768px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.milestones {
  position: relative;
  padding-left: 3rem;
}

.milestones::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.milestone {
  position: relative;
  padding-bottom: 2.5rem;
}

.milestone::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  transform: translateX(-6px);
}

.milestone .year {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.milestone h4 {
  margin-bottom: 0.35rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-base);
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.2);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.team-card h4 {
  margin-bottom: 0.25rem;
}

.team-card .role {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---- CAREERS PAGE ---- */
.job-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.job-category {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-base);
  cursor: pointer;
}

.job-category:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.2);
  box-shadow: var(--shadow-md);
}

.job-category .cat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.job-category h4 {
  margin-bottom: 0.35rem;
}

.job-category .job-count {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

.job-listing {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.75rem;
  transition: all var(--transition-base);
}

.job-listing:hover {
  border-color: rgba(255, 107, 0, 0.2);
  background: rgba(255, 107, 0, 0.03);
}

.job-listing-info h4 {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.job-listing-meta {
  display: flex;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.job-listing-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all var(--transition-base);
}

.contact-info-card:hover {
  border-color: rgba(255, 107, 0, 0.2);
}

.contact-info-card .info-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 2.5rem;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0.05) 100%);
  border-top: 1px solid rgba(255, 107, 0, 0.15);
  border-bottom: 1px solid rgba(255, 107, 0, 0.15);
}

.cta-banner .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: 1rem;
}

.cta-banner p {
  max-width: 550px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

/* ---- BENEFITS GRID (Careers) ---- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-base);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.2);
}

.benefit-card .benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card h4 {
  margin-bottom: 0.5rem;
}

/* ---- TRACKING INLINE WIDGET (Homepage) ---- */
.track-widget {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.track-widget h3 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.track-widget > p {
  text-align: center;
  margin-bottom: 1.5rem;
}

.track-widget-form {
  display: flex;
  gap: 0.75rem;
}

.track-widget-form .form-select {
  max-width: 180px;
}

.track-widget-form .form-input {
  flex: 1;
}

@media (max-width: 640px) {
  .track-widget-form {
    flex-direction: column;
  }
  .track-widget-form .form-select {
    max-width: 100%;
  }
}

/* ---- TESTIMONIALS ---- */
.testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.testimonial-card.active {
  display: block;
}

.testimonial-quote {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.testimonial-info .name {
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-info .company {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--glass-border);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonial-dot.active {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  transform: scale(1.2);
}

/* ---- SUCCESS MESSAGE ---- */
.success-message {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  animation: fadeInUp 0.5s ease;
}

.success-message.visible {
  display: block;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 214, 143, 0.1);
  border: 2px solid var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.success-message h3 {
  margin-bottom: 0.75rem;
  color: var(--success);
}
