/* ============================================
   HOMEPAGE - Premium Redesign
   Scoped to homepage only (loaded conditionally)
   ============================================ */

/* Homepage color overrides */
body.home,
body.page-template-front-page {
  --hp-orange: #FF6B35;
  --hp-orange-hover: #E85A28;
  --hp-orange-light: rgba(255,107,53,0.08);
  --hp-green: #00B67A;
  --hp-green-light: rgba(0,182,122,0.08);
  --hp-purple: #7C3AED;
  --hp-purple-light: rgba(124,58,237,0.06);
  --hp-dark: #0D0D0D;
  --hp-charcoal: #1A1A2E;
  --hp-surface: #FAFAF9;
  --hp-text: #1F2937;
  --hp-text-muted: #6B7280;
  --hp-border: #E5E7EB;
  --hp-gradient: linear-gradient(135deg, #FF6B35, #E8432A);
  --hp-gradient-subtle: linear-gradient(135deg, rgba(255,107,53,0.05), rgba(124,58,237,0.03));
}

/* ========== HERO ========== */
.hp-hero {
  position: relative;
  background: linear-gradient(160deg, #0D0D0D 0%, #1A1A2E 40%, #16213E 100%);
  padding: 11rem 0 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 70% 20%, rgba(255,107,53,0.12), transparent),
    radial-gradient(ellipse 500px 500px at 20% 80%, rgba(124,58,237,0.08), transparent),
    radial-gradient(ellipse 400px 300px at 80% 70%, rgba(0,182,122,0.06), transparent);
  pointer-events: none;
}

.hp-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.06), transparent 70%);
  animation: hp-float 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hp-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 30px); }
}

.hp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--hp-orange);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hp-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hp-orange);
  animation: hp-pulse 2s ease-in-out infinite;
}

@keyframes hp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hp-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hp-hero h1 span {
  background: linear-gradient(135deg, #FF6B35, #FFB347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hp-hero-text p {
  font-size: 1.175rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hp-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* ========== SERVICES V2 — Unique Card Design ========== */
.hp-sv2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.hp-sv2-card {
  position: relative;
  background: var(--sv2-bg, #fff);
  border: 1.5px solid transparent;
  border-radius: 20px;
  padding: 2rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.hp-sv2-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--sv2-color, #f97316);
  border-radius: 20px 20px 0 0;
}

.hp-sv2-card:hover {
  transform: translateY(-6px);
  border-color: var(--sv2-color, #f97316);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1), 0 0 0 1px var(--sv2-color, #f97316);
}

.hp-sv2-num {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0,0,0,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hp-sv2-top {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.hp-sv2-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: var(--sv2-color, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: #fff;
}

.hp-sv2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  align-items: center;
  padding-top: 0.25rem;
}

.hp-sv2-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--sv2-color, #f97316);
  background: rgba(0,0,0,0.04);
  border: 1px solid currentColor;
  border-radius: 20px;
  padding: 0.2rem 0.6rem;
  opacity: 0.85;
}

.hp-sv2-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  margin: 0;
}

.hp-sv2-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

.hp-sv2-footer {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.hp-sv2-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--sv2-color, #f97316);
  transition: gap 0.2s;
}

.hp-sv2-card:hover .hp-sv2-cta {
  gap: 0.65rem;
}

@media (max-width: 1024px) {
  .hp-sv2-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hp-sv2-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== ADVANTAGE CARDS ========== */
.hp-adv-card {
  background: var(--adv-bg, #fff8f3);
  border: 1.5px solid var(--adv-border, #fde8d0);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hp-adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.hp-adv-icon {
  font-size: 2rem;
  line-height: 1;
}

.hp-adv-stat {
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--adv-color, #f97316);
  background: rgba(0,0,0,0.04);
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  align-self: flex-start;
}

.hp-adv-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  margin: 0;
}

.hp-adv-desc {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.75;
  margin: 0;
}

.hp-adv-desc a {
  color: var(--adv-color, #f97316);
  text-decoration: none;
  font-weight: 600;
}

.hp-adv-desc a:hover {
  text-decoration: underline;
}

/* ========== HERO TRUST BADGES ========== */
.hp-hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hp-hero-trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 0.3rem 0.75rem;
}

.hp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--hp-gradient);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255,107,53,0.3);
  border: none;
  cursor: pointer;
}

.hp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,53,0.4);
}

.hp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.hp-btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.hp-hero-stats {
  display: flex;
  gap: 3rem;
}

.hp-hero-stat {
  display: flex;
  flex-direction: column;
}

.hp-hero-stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hp-hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

/* Hero Visual - Premium Dashboard */
.hp-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hp-dashboard {
  width: 100%;
  max-width: 580px;
  background: #0F1117;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 20px 60px rgba(0,0,0,0.5),
    0 0 100px rgba(255,107,53,0.05);
}

.hp-dash-header {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 12px;
}

.hp-dash-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.hp-dash-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hp-dash-dots span:first-child { background: #FF5F57; }
.hp-dash-dots span:nth-child(2) { background: #FFBD2E; }
.hp-dash-dots span:last-child { background: #28C840; }

.hp-dash-url-bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}

.hp-dash-header-actions {
  flex-shrink: 0;
}

.hp-dash-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--hp-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
}

/* Dashboard body layout */
.hp-dash-body {
  display: flex;
  min-height: 340px;
}

.hp-dash-sidebar {
  width: 42px;
  background: rgba(255,255,255,0.02);
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  gap: 4px;
  flex-shrink: 0;
}

.hp-dash-sidebar-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  transition: all 0.2s;
  cursor: default;
}

.hp-dash-sidebar-icon.active {
  background: rgba(255,107,53,0.15);
  color: var(--hp-orange);
}

.hp-dash-sidebar-divider {
  width: 20px;
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 6px 0;
}

/* Main content */
.hp-dash-main {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

/* KPI row */
.hp-dash-kpi-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.hp-dash-kpi {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px;
}

.hp-dash-kpi-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.hp-dash-kpi-label {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hp-dash-kpi-badge {
  font-size: 0.5625rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.hp-dash-kpi-badge.up {
  background: rgba(0,182,122,0.15);
  color: var(--hp-green);
}

.hp-dash-kpi-badge.orange {
  background: rgba(255,107,53,0.15);
  color: var(--hp-orange);
  position: relative;
}

.hp-dash-kpi-value {
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.hp-dash-sparkline {
  height: 24px;
}

.hp-dash-sparkline svg {
  width: 100%;
  height: 100%;
}

.hp-dash-progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.hp-dash-progress-fill {
  height: 100%;
  background: var(--hp-green);
  border-radius: 2px;
  animation: hp-progress-grow 2s ease-out;
}

@keyframes hp-progress-grow {
  from { width: 0; }
}

/* Chart area */
.hp-dash-chart-area {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px;
  flex: 1;
}

.hp-dash-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.hp-dash-chart-title {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

.hp-dash-chart-tabs {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  padding: 2px;
}

.hp-dash-chart-tabs span {
  font-size: 0.5625rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  color: rgba(255,255,255,0.3);
  cursor: default;
}

.hp-dash-chart-tabs span.active {
  background: var(--hp-orange);
  color: #fff;
}

.hp-dash-chart {
  display: flex;
  gap: 4px;
  height: 80px;
  align-items: stretch;
}

.hp-dash-chart-y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 6px 14px 0;
}

.hp-dash-chart-y-axis span {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.2);
  font-weight: 500;
}

.hp-dash-chart-bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 14px;
  position: relative;
}

.hp-dash-bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  position: relative;
}

.hp-dash-bar {
  width: 100%;
  max-width: 24px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--hp-orange), rgba(255,107,53,0.4));
  transition: height 1s ease;
  min-height: 4px;
}

.hp-dash-bar.highlight {
  background: linear-gradient(180deg, var(--hp-green), rgba(0,182,122,0.4));
  box-shadow: 0 -4px 12px rgba(0,182,122,0.2);
}

.hp-dash-bar-label {
  position: absolute;
  bottom: -14px;
  font-size: 0.5rem;
  color: rgba(255,255,255,0.25);
  font-weight: 500;
}

/* Orders table */
.hp-dash-orders {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 10px 12px;
}

.hp-dash-orders-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.hp-dash-orders-title {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

.hp-dash-orders-link {
  font-size: 0.5625rem;
  color: var(--hp-orange);
  font-weight: 600;
  cursor: default;
}

.hp-dash-order-row {
  display: flex;
  align-items: center;
  padding: 6px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  gap: 8px;
}

.hp-dash-order-id {
  font-size: 0.625rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  min-width: 65px;
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.hp-dash-order-route {
  flex: 1;
  font-size: 0.625rem;
  color: rgba(255,255,255,0.35);
}

.hp-dash-order-status {
  font-size: 0.5625rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hp-dash-order-status.delivered {
  background: rgba(0,182,122,0.12);
  color: var(--hp-green);
}

.hp-dash-order-status.transit {
  background: rgba(255,107,53,0.12);
  color: var(--hp-orange);
}

.hp-dash-order-status.pending {
  background: rgba(255,189,46,0.12);
  color: #FFBD2E;
}

/* Floating badges */
.hp-float-badge {
  position: absolute;
  background: rgba(15,17,23,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: #fff;
  font-weight: 600;
  animation: hp-bob 4s ease-in-out infinite;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hp-float-badge.top-right {
  top: -15px;
  right: -25px;
  animation-delay: 0s;
}

.hp-float-badge.bottom-left {
  bottom: 25px;
  left: -35px;
  animation-delay: 2s;
}

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

.hp-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.hp-float-icon.orange { background: rgba(255,107,53,0.2); }
.hp-float-icon.green { background: rgba(0,182,122,0.2); }

.hp-float-label {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

.hp-float-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hp-float-trend {
  font-size: 0.625rem;
  font-weight: 700;
}

.hp-float-trend.up { color: var(--hp-green); }

.hp-float-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hp-green);
  display: inline-block;
  animation: hp-pulse 1.5s ease-in-out infinite;
}

/* ========== TRUST MARQUEE ========== */
.hp-trust {
  background: var(--hp-surface);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--hp-border);
  overflow: hidden;
}

.hp-trust-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--hp-text-muted);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hp-marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.hp-marquee-track {
  display: flex;
  gap: 4rem;
  animation: hp-scroll 30s linear infinite;
  flex-shrink: 0;
  padding-right: 4rem;
}

@keyframes hp-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.hp-marquee:hover .hp-marquee-track {
  animation-play-state: paused;
}

.hp-trust-logo {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--hp-text-muted);
  opacity: 0.35;
  white-space: nowrap;
  transition: opacity 0.3s;
  flex-shrink: 0;
}

.hp-trust-logo:hover {
  opacity: 0.6;
}

/* ========== STATS ========== */
.hp-stats {
  background: var(--hp-gradient);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hp-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.hp-stat-item {
  text-align: center;
}

.hp-stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hp-stat-label {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ========== SERVICES ========== */
.hp-services {
  padding: 6rem 0;
  background: #fff;
}

.hp-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hp-orange);
  margin-bottom: 1rem;
}

.hp-section-label-line {
  width: 24px;
  height: 2px;
  background: var(--hp-orange);
  border-radius: 1px;
}

.hp-section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--hp-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hp-section-desc {
  font-size: 1.0625rem;
  color: var(--hp-text-muted);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 3rem;
}

.hp-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.hp-service-card {
  background: #fff;
  border: 1px solid var(--hp-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.hp-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--hp-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hp-service-card:hover {
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.hp-service-card:hover::before {
  opacity: 1;
}

.hp-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.hp-service-icon.orange { background: var(--hp-orange-light); }
.hp-service-icon.green { background: var(--hp-green-light); }
.hp-service-icon.purple { background: var(--hp-purple-light); }

.hp-service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--hp-dark);
  margin-bottom: 0.5rem;
}

.hp-service-card p {
  font-size: 0.9375rem;
  color: var(--hp-text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.hp-service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hp-orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 0.2s ease;
}

.hp-service-card:hover .hp-service-link {
  gap: 0.625rem;
}

/* ========== WHY CHOOSE US ========== */
.hp-why {
  padding: 6rem 0;
  background: var(--hp-surface);
}

.hp-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.hp-why-visual {
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.hp-why-img {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(160deg, #1A1A2E, #16213E);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hp-why-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 300px 200px at 30% 30%, rgba(255,107,53,0.15), transparent),
    radial-gradient(ellipse 250px 250px at 70% 70%, rgba(0,182,122,0.1), transparent);
}

.hp-why-phone {
  width: 200px;
  height: 400px;
  background: #0F1117;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 32px;
  padding: 4px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hp-why-phone-notch {
  width: 80px;
  height: 20px;
  background: #0F1117;
  border-radius: 0 0 14px 14px;
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.hp-why-phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #FF6B35 0%, #E8432A 100%);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Why Us - App screen content */
.hp-why-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 14px 10px;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
}

.hp-why-app-back { font-size: 1rem; }
.hp-why-app-title { font-weight: 700; }
.hp-why-app-dots { letter-spacing: 2px; }

.hp-why-app-map {
  flex: 1;
  background: rgba(0,0,0,0.2);
  margin: 0 8px;
  border-radius: 12px;
  position: relative;
  min-height: 140px;
  overflow: hidden;
}

.hp-why-map-route {
  position: absolute;
  top: 30%;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, var(--hp-orange), var(--hp-green));
  border-radius: 1px;
}

.hp-why-map-route::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 30%;
  width: 40%;
  height: 18px;
  border: 2px solid transparent;
  border-bottom: 2px dashed rgba(255,255,255,0.2);
  border-radius: 0 0 50% 50%;
}

.hp-why-map-pin {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5625rem;
  font-weight: 800;
  color: #fff;
}

.hp-why-map-pin.from {
  top: 22%;
  left: 15%;
  background: var(--hp-orange);
  box-shadow: 0 0 0 4px rgba(255,107,53,0.3);
}

.hp-why-map-pin.to {
  top: 22%;
  right: 15%;
  background: var(--hp-green);
  box-shadow: 0 0 0 4px rgba(0,182,122,0.3);
}

.hp-why-map-driver {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--hp-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(124,58,237,0.2);
  animation: hp-pulse 2s ease-in-out infinite;
}

.hp-why-app-card {
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  margin: 8px;
  border-radius: 14px;
  padding: 12px;
}

.hp-why-app-eta {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hp-why-app-eta-time {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.hp-why-app-eta-label {
  font-size: 0.5625rem;
  color: rgba(255,255,255,0.5);
}

.hp-why-app-driver-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hp-why-app-driver-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--hp-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 700;
}

.hp-why-app-driver-name {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
}

.hp-why-app-driver-stars {
  font-size: 0.5625rem;
  color: #F59E0B;
}

/* Background phone */
.hp-why-phone-bg {
  width: 180px;
  height: 360px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 4px;
  position: absolute;
  right: -20px;
  top: 30px;
  z-index: 1;
  opacity: 0.5;
}

.hp-why-phone-bg .hp-why-phone-screen {
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hp-why-phone-bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.25);
}

.hp-why-phone-bar.short { width: 60%; }
.hp-why-phone-bar.medium { width: 80%; }

.hp-why-phone-card {
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 14px;
  margin-top: auto;
}

/* Floating stats around why-us visual */
.hp-why-float-stat {
  position: absolute;
  background: rgba(15,17,23,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 8px 14px;
  z-index: 3;
  text-align: center;
}

.hp-why-float-stat.top {
  top: -10px;
  right: -10px;
  animation: hp-bob 4s ease-in-out infinite;
}

.hp-why-float-stat.bottom {
  bottom: 40px;
  left: -10px;
  animation: hp-bob 4s ease-in-out infinite 2s;
}

.hp-why-float-stat-value {
  display: block;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #fff;
}

.hp-why-float-stat-label {
  display: block;
  font-size: 0.5625rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

.hp-why-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hp-why-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.hp-why-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 8px;
  background: var(--hp-green-light);
  color: var(--hp-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  margin-top: 2px;
}

.hp-why-point h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--hp-dark);
  margin-bottom: 0.25rem;
}

.hp-why-point p {
  font-size: 0.9375rem;
  color: var(--hp-text-muted);
  line-height: 1.6;
}

/* ========== PLATFORM ========== */
.hp-platform {
  padding: 6rem 0;
  background: #fff;
}

.hp-platform-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hp-platform-tab {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--hp-text-muted);
  background: var(--hp-surface);
  border-radius: 100px;
  border: 1px solid var(--hp-border);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.hp-platform-tab:hover {
  color: var(--hp-dark);
  border-color: var(--hp-border);
}

.hp-platform-tab.active {
  background: var(--hp-orange);
  color: #fff;
  border-color: var(--hp-orange);
}

.hp-platform-content {
  display: none;
}

.hp-platform-content.active {
  display: grid;
  grid-template-columns: minmax(0, 480px) 440px;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}

/* ── Feature list container ───────────────────────────────── */
.hp-platform-features {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  justify-content: center;
  min-width: 0;
}

/* ── Single feature block ─────────────────────────────────── */
.hp-platform-feature {
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}

/* ── Icon bubble ──────────────────────────────────────────── */
.hp-platform-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--hp-orange-light);
  color: var(--hp-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── Heading ──────────────────────────────────────────────── */
.hp-platform-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hp-dark);
  margin: 0 0 0.375rem 0;
  line-height: 1.3;
}

/* ── Description ──────────────────────────────────────────── */
.hp-platform-feature p {
  font-size: 0.875rem;
  color: var(--hp-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Visual: graphic column (grid right cell) ────────────── */
.hp-platform-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ========== PLATFORM SCREEN MOCKUPS ========== */
.hp-platform-screen {
  width: 240px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 2px solid rgba(255,255,255,0.1);
  background: #0F1117;
  margin: 0 auto;
}

.hp-pscreen-header {
  padding: 8px 14px 12px;
}

.hp-pscreen-header.orange { background: var(--hp-orange); }
.hp-pscreen-header.green { background: var(--hp-green); }

.hp-pscreen-status-bar {
  display: flex;
  justify-content: space-between;
  font-size: 0.5625rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  margin-bottom: 10px;
  padding-top: 4px;
}

.hp-pscreen-greeting {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.hp-pscreen-search {
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.625rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hp-pscreen-body {
  background: #0F1117;
  padding: 12px;
}

.hp-pscreen-categories {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.hp-pscreen-cat {
  flex: 1;
  text-align: center;
  padding: 8px 4px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.5rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
}

.hp-pscreen-cat span { font-size: 0.875rem; }

.hp-pscreen-cat.active {
  background: rgba(255,107,53,0.12);
  border-color: rgba(255,107,53,0.3);
  color: var(--hp-orange);
}

.hp-pscreen-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
}

.hp-pscreen-card-img {
  height: 50px;
  border-radius: 10px 10px 0 0;
}

.hp-pscreen-card-img.orange {
  background: linear-gradient(135deg, rgba(255,107,53,0.3), rgba(232,67,42,0.2));
}

.hp-pscreen-card-img.green {
  background: linear-gradient(135deg, rgba(0,182,122,0.3), rgba(0,120,80,0.2));
}

.hp-pscreen-card-info { padding: 8px 10px; }

.hp-pscreen-card-name {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.hp-pscreen-card-meta {
  font-size: 0.5625rem;
  color: rgba(255,255,255,0.4);
}

.hp-pscreen-navbar {
  display: flex;
  justify-content: space-around;
  padding: 10px;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.875rem;
}

.hp-pscreen-navbar span {
  color: rgba(255,255,255,0.2);
  cursor: default;
}

.hp-pscreen-navbar span.active {
  color: var(--hp-orange);
}

/* Driver screen specific */
.hp-pscreen-driver-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hp-pscreen-online-badge {
  font-size: 0.625rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: 20px;
}

.hp-pscreen-earnings {
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
}

.hp-pscreen-new-order {
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.hp-pscreen-order-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hp-orange);
  animation: hp-pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.hp-pscreen-order-info { flex: 1; }

.hp-pscreen-order-title {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
}

.hp-pscreen-order-dist {
  font-size: 0.5625rem;
  color: rgba(255,255,255,0.5);
}

.hp-pscreen-order-accept {
  background: var(--hp-orange);
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
}

.hp-pscreen-map-preview {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  height: 60px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.hp-pscreen-map-line {
  position: absolute;
  top: 50%;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, var(--hp-green), var(--hp-orange));
  border-radius: 1px;
}

.hp-pscreen-map-dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hp-pscreen-map-dot.start {
  left: 18%;
  background: var(--hp-green);
  box-shadow: 0 0 0 3px rgba(0,182,122,0.2);
}

.hp-pscreen-map-dot.end {
  right: 18%;
  background: var(--hp-orange);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.2);
}

.hp-pscreen-delivery-list { display: flex; flex-direction: column; gap: 6px; }

.hp-pscreen-del-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: 8px;
}

.hp-pscreen-del-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5625rem;
  font-weight: 700;
  color: var(--hp-orange);
  flex-shrink: 0;
}

.hp-pscreen-del-addr {
  font-size: 0.625rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.hp-pscreen-del-time {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.35);
}

/* Admin screen specific */
.hp-platform-screen.admin {
  display: flex;
  width: 420px;            /* was 320px — 31% larger */
  border-radius: 16px;
  height: 320px;           /* was 260px — 23% taller */
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.hp-pscreen-admin-sidebar {
  width: 38px;
  background: rgba(255,255,255,0.03);
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  gap: 8px;
}

.hp-pscreen-admin-logo {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--hp-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.5rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.hp-pscreen-admin-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.hp-pscreen-admin-nav span {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.2);
  cursor: default;
  padding: 4px;
  border-radius: 6px;
}

.hp-pscreen-admin-nav span.active {
  color: var(--hp-orange);
  background: rgba(255,107,53,0.1);
}

.hp-pscreen-admin-main {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.hp-pscreen-admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hp-pscreen-admin-page-title {
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

.hp-pscreen-admin-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--hp-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.5rem;
  font-weight: 700;
}

.hp-pscreen-admin-kpis {
  display: flex;
  gap: 6px;
}

.hp-pscreen-admin-kpi {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 8px;
  text-align: center;
}

.hp-pscreen-admin-kpi-val {
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
}

.hp-pscreen-admin-kpi-label {
  font-size: 0.4375rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

.hp-pscreen-admin-chart {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 8px;
  flex: 1;
}

.hp-pscreen-admin-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 100%;
}

.hp-pscreen-admin-bars > div {
  flex: 1;
  background: linear-gradient(180deg, var(--hp-purple), rgba(124,58,237,0.3));
  border-radius: 3px 3px 0 0;
  min-height: 4px;
}

.hp-pscreen-admin-table {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
}

.hp-pscreen-admin-table-row {
  display: flex;
  padding: 5px 8px;
  font-size: 0.5rem;
  color: rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.hp-pscreen-admin-table-row.header {
  background: rgba(255,255,255,0.03);
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hp-pscreen-admin-table-row span {
  flex: 1;
}

.hp-pscreen-admin-table-row span.delivered { color: var(--hp-green); font-weight: 700; }
.hp-pscreen-admin-table-row span.transit { color: var(--hp-orange); font-weight: 700; }

/* ========== INDUSTRIES ========== */
.hp-industries {
  padding: 6rem 0;
  background: linear-gradient(160deg, #0D0D0D, #1A1A2E);
  position: relative;
  overflow: hidden;
}

.hp-industries::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 80% 20%, rgba(255,107,53,0.06), transparent);
}

.hp-industries .hp-section-title {
  color: #fff;
}

.hp-industries .hp-section-desc {
  color: rgba(255,255,255,0.5);
}

.hp-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hp-industry-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hp-industry-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ic-color, #f97316);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.hp-industry-card:hover {
  border-color: var(--ic-color, #f97316);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.hp-industry-card:hover::after {
  transform: scaleX(1);
}

.hp-industry-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--ic-bg, #fff8f3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
  color: var(--ic-color, #f97316);
  flex-shrink: 0;
}

.hp-industry-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.hp-industry-card p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

.hp-industry-card-arrow {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ic-color, #f97316);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}

.hp-industry-card:hover .hp-industry-card-arrow {
  gap: 0.55rem;
}

/* ========== PROCESS ========== */
.hp-process {
  padding: 6rem 0;
  background: #fff;
}

.hp-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.hp-process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--hp-orange), var(--hp-green));
  z-index: 0;
}

.hp-process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hp-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--hp-gradient);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 20px rgba(255,107,53,0.25);
}

.hp-process-step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--hp-dark);
  margin-bottom: 0.5rem;
}

.hp-process-step p {
  font-size: 0.875rem;
  color: var(--hp-text-muted);
  line-height: 1.6;
}

/* ========== RESULTS ========== */
.hp-results {
  padding: 6rem 0;
  background: var(--hp-surface);
}

.hp-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.hp-result-card {
  background: #fff;
  border: 1px solid var(--hp-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.hp-result-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.hp-result-stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.hp-result-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--hp-text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hp-result-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hp-result-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--hp-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
}

.hp-result-name {
  font-weight: 700;
  color: var(--hp-dark);
  font-size: 0.9375rem;
}

.hp-result-role {
  font-size: 0.8125rem;
  color: var(--hp-text-muted);
}

/* ========== FAQ ========== */
.hp-faq {
  padding: 6rem 0;
  background: #fff;
}

.hp-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.hp-faq-item {
  border: 1px solid var(--hp-border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all 0.2s ease;
  background: #fff;
}

.hp-faq-item:hover {
  border-color: var(--hp-orange);
}

.hp-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--hp-dark);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  -webkit-appearance: none;
  appearance: none;
}
.hp-faq-question * {
  pointer-events: none;
}

.hp-faq-question:hover {
  color: var(--hp-orange);
}

.hp-faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--hp-orange);
  transition: transform 0.2s ease;
}

.hp-faq-item.open .hp-faq-icon {
  transform: rotate(180deg);
}

.hp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.hp-faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--hp-text-muted);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ========== CTA ========== */
.hp-cta {
  padding: 6rem 0;
  background: var(--hp-gradient);
  position: relative;
  overflow: hidden;
}

.hp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hp-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hp-cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hp-cta-content p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hp-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  background: #fff;
  color: var(--hp-orange);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.hp-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ========== MODULES (6 cards) ========== */
.hp-modules {
  padding: 6rem 0;
  background: var(--hp-surface);
}

.hp-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hp-module-card {
  background: #fff;
  border: 1px solid var(--hp-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.35s ease;
}

.hp-module-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--hp-orange);
  transform: translateY(-4px);
}

.hp-module-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--hp-orange-light);
  color: var(--hp-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
}

.hp-module-icon.green {
  background: var(--hp-green-light);
  color: var(--hp-green);
}

.hp-module-icon.purple {
  background: var(--hp-purple-light);
  color: var(--hp-purple);
}

.hp-module-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--hp-dark);
  margin-bottom: 0.625rem;
}

.hp-module-card > p {
  font-size: 0.875rem;
  color: var(--hp-text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.hp-module-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hp-module-features li {
  font-size: 0.8125rem;
  color: var(--hp-text);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}

.hp-module-features li i {
  color: var(--hp-green);
  font-size: 0.6875rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ========== REVENUE MODEL ========== */
.hp-revenue {
  padding: 6rem 0;
  background: linear-gradient(160deg, #0D0D0D, #1A1A2E);
  position: relative;
  overflow: hidden;
}

.hp-revenue::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 20% 80%, rgba(0,182,122,0.06), transparent);
}

.hp-revenue .hp-section-title { color: #fff; }
.hp-revenue .hp-section-desc { color: rgba(255,255,255,0.5); }

.hp-revenue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.hp-revenue-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.35s ease;
}

.hp-revenue-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(0,182,122,0.3);
  transform: translateY(-4px);
}

.hp-revenue-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0,182,122,0.12);
  color: var(--hp-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.hp-revenue-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.hp-revenue-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ========== TECHNOLOGY STACK ========== */
/* ========== TECH STACK - ANIMATED ========== */
.hp-tech {
  padding: 6rem 0;
  background: #fff;
  overflow: hidden;
}

.hp-tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hp-tech-categories {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hp-tech-category {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background: var(--hp-surface);
}
.hp-tech-category.visible {
  opacity: 1;
  transform: translateX(0);
}
.hp-tech-category:nth-child(1) { transition-delay: 0.1s; }
.hp-tech-category:nth-child(2) { transition-delay: 0.25s; }
.hp-tech-category:nth-child(3) { transition-delay: 0.4s; }
.hp-tech-category:nth-child(4) { transition-delay: 0.55s; }

.hp-tech-category:hover {
  border-color: var(--hp-orange);
  background: var(--hp-orange-light);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
  transform: translateX(8px);
}

.hp-tech-category h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--hp-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hp-tech-category h4 i {
  color: var(--hp-orange);
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}
.hp-tech-category:hover h4 i {
  transform: scale(1.3) rotate(-5deg);
}

.hp-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hp-tech-tag {
  padding: 0.4rem 1rem;
  background: #fff;
  border: 1px solid var(--hp-border);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--hp-text);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.hp-tech-tag::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,107,53,0.08), transparent);
  transition: left 0.5s ease;
}
.hp-tech-tag:hover::before {
  left: 100%;
}

.hp-tech-tag:hover {
  border-color: var(--hp-orange);
  color: var(--hp-orange);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.hp-tech-visual {
  display: flex;
  justify-content: center;
}

.hp-tech-stack-diagram {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hp-tech-layer {
  width: 100%;
  border: 1px solid var(--hp-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,107,53,0.06), rgba(124,58,237,0.04));
}
.hp-tech-layer::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,107,53,0.06) 0%, transparent 70%);
  animation: techPulse 4s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hp-tech-layer:hover::before { opacity: 1; }
.hp-tech-layer.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.hp-tech-layer:nth-child(1) { transition-delay: 0.15s; }
.hp-tech-layer:nth-child(3) { transition-delay: 0.3s; }
.hp-tech-layer:nth-child(5) { transition-delay: 0.45s; }
.hp-tech-layer:nth-child(7) { transition-delay: 0.6s; }

.hp-tech-layer:hover {
  border-color: var(--hp-orange);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.12);
  transform: scale(1.02);
}

.hp-tech-layer.api {
  background: linear-gradient(135deg, rgba(0,182,122,0.06), rgba(47,128,255,0.04));
}
.hp-tech-layer.api:hover { border-color: var(--hp-green); box-shadow: 0 8px 30px rgba(0, 182, 122, 0.12); }

.hp-tech-layer.services {
  background: linear-gradient(135deg, rgba(124,58,237,0.06), rgba(255,107,53,0.04));
}
.hp-tech-layer.services:hover { border-color: #7c3aed; box-shadow: 0 8px 30px rgba(124, 58, 237, 0.12); }

.hp-tech-layer.data {
  background: linear-gradient(135deg, rgba(47,128,255,0.06), rgba(0,182,122,0.04));
}
.hp-tech-layer.data:hover { border-color: #2f80ff; box-shadow: 0 8px 30px rgba(47, 128, 255, 0.12); }

.hp-tech-layer-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hp-text-muted);
  margin-bottom: 0.5rem;
}

.hp-tech-layer-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  justify-content: center;
}

.hp-tech-layer-items span {
  padding: 0.3rem 0.85rem;
  background: #fff;
  border: 1px solid var(--hp-border);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--hp-dark);
  transition: all 0.3s ease;
}
.hp-tech-layer-items span:hover {
  background: var(--hp-dark);
  color: #fff;
  border-color: var(--hp-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hp-tech-connector {
  width: 2px;
  height: 24px;
  background: linear-gradient(180deg, var(--hp-orange), var(--hp-green));
  border-radius: 1px;
  position: relative;
  opacity: 0;
  transition: opacity 0.5s ease 0.3s;
}
.hp-tech-connector.visible { opacity: 1; }
.hp-tech-connector::after {
  content: '';
  position: absolute;
  top: 0; left: -1px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--hp-orange);
  animation: connectorFlow 2s ease-in-out infinite;
}

@keyframes connectorFlow {
  0%, 100% { top: 0; opacity: 1; }
  50% { top: 100%; opacity: 0.4; }
}

@keyframes techPulse {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

/* ========== INTEGRATIONS ========== */
.hp-integrations {
  padding: 6rem 0;
  background: var(--hp-surface);
}

.hp-integrations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.hp-integration-group {
  background: #fff;
  border: 1px solid var(--hp-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.hp-integration-group:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.hp-integration-group h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hp-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hp-integration-group h3 i {
  color: var(--hp-orange);
  font-size: 0.9375rem;
}

.hp-integration-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hp-integration-items span {
  padding: 0.4rem 0.875rem;
  background: var(--hp-surface);
  border: 1px solid var(--hp-border);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--hp-text);
}

/* ========== GLOBAL REACH ========== */
.hp-global {
  padding: 6rem 0;
  background: #fff;
}

.hp-global-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
}

.hp-global-regions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hp-global-region h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--hp-dark);
  margin-bottom: 0.375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hp-global-region h4 i {
  color: var(--hp-orange);
  font-size: 0.875rem;
}

.hp-global-region p {
  font-size: 0.8125rem;
  color: var(--hp-text-muted);
  line-height: 1.6;
}

.hp-global-region a {
  color: var(--hp-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.hp-global-region a:hover {
  color: var(--hp-orange);
}

.hp-global-visual {
  display: flex;
  justify-content: center;
}

.hp-global-map {
  width: 100%;
  max-width: 680px;
  aspect-ratio: 2/1;
  background: linear-gradient(160deg, #EBF0F8 0%, #DDE6F0 100%);
  border-radius: 16px;
  position: relative;
  border: 1px solid var(--hp-border);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.hp-global-map-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
  user-select: none;
  display: block;
}

.hp-global-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--hp-orange);
  box-shadow: 0 0 0 4px rgba(255,107,53,0.15);
  animation: hp-pulse 2s ease-in-out infinite;
  cursor: default;
}

.hp-global-dot span {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hp-dark);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  margin-bottom: 4px;
}

.hp-global-dot:hover span {
  opacity: 1;
}

/* ========== CLONE SOLUTIONS ========== */
.hp-clones {
  padding: 6rem 0;
  background: var(--hp-surface);
}

.hp-clones-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.hp-clone-card {
  background: #fff;
  border: 1px solid var(--hp-border);
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: block;
  text-align: center;
}

.hp-clone-card:hover {
  border-color: var(--hp-orange);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.hp-clone-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--hp-dark);
  margin-bottom: 0.375rem;
}

.hp-clone-card p {
  font-size: 0.75rem;
  color: var(--hp-text-muted);
  line-height: 1.5;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hp-services-grid,
  .hp-modules-grid,
  .hp-revenue-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .hp-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-process-steps::before {
    display: none;
  }

  .hp-tech-grid,
  .hp-global-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hp-clones-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hp-integrations-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  /* ── Feature blocks: tablet / mobile ─────────────────────── */
  .hp-platform-features {
    gap: 1.5rem;          /* 24px on mobile */
  }

  .hp-platform-feature {
    gap: 0.875rem;        /* 14px icon → text on mobile */
  }

  .hp-platform-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .hp-platform-feature h4 {
    font-size: 0.9375rem;
  }

  .hp-platform-feature p {
    font-size: 0.8125rem;
  }

  .hp-hero {
    padding: 9rem 0 4rem;
    min-height: auto;
  }

  .hp-hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hp-hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hp-hero-buttons {
    justify-content: center;
  }

  .hp-hero-stats {
    justify-content: center;
  }

  .hp-hero-visual {
    order: -1;
  }

  .hp-dashboard {
    max-width: 420px;
  }

  .hp-dash-kpi-row {
    grid-template-columns: 1fr;
  }

  .hp-dash-body {
    min-height: 280px;
  }

  .hp-float-badge { display: none; }

  .hp-services-grid,
  .hp-modules-grid,
  .hp-revenue-grid {
    grid-template-columns: 1fr;
  }

  .hp-why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hp-platform-content.active {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hp-platform-screen.admin {
    width: 100%;
    max-width: 340px;
    height: 260px;
    margin: 0 auto;
  }

  .hp-industries-grid {
    grid-template-columns: 1fr;
  }

  .hp-process-steps {
    grid-template-columns: 1fr;
  }

  .hp-results-grid {
    grid-template-columns: 1fr;
  }

  .hp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-stat-number {
    font-size: 2.25rem;
  }

  .hp-clones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hp-hero h1 {
    font-size: 2rem;
  }

  .hp-hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .hp-dash-sidebar {
    display: none;
  }

  .hp-dash-kpi-row {
    grid-template-columns: 1fr;
  }
}

/* ========== NEW SECTIONS: Responsive ========== */
@media (max-width: 768px) {
  /* Industry Hub rows: stack on mobile */
  .hp-industry-row {
    grid-template-columns: 1fr !important;
  }
  /* Flip stat block order on mobile — always show text first */
  .hp-industry-stat-block {
    order: 2 !important;
  }
  .hp-industry-row > div:not(.hp-industry-stat-block) {
    order: 1 !important;
  }
  /* Stats authority bar: 3 columns on mobile */
  .hp-why-points + div[style*="grid-template-columns:repeat(6"] {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  /* Hero trust badges: wrap */
  .hp-hero-trust-badges {
    gap: 0.5rem;
  }
  .hp-hero-trust-badges span {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
  }
  /* Comparison table: allow scroll */
  #comparison .container > div {
    overflow-x: auto;
  }
}

/* ==================== PROBLEM SECTION ==================== */
.hp-problems {
  padding: 5rem 0;
  background: #0f172a;
}

.hp-problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 0;
}

.hp-problem-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.75rem;
  transition: background 0.2s, border-color 0.2s;
}

.hp-problem-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(249,115,22,0.3);
}

.hp-problem-icon {
  width: 44px;
  height: 44px;
  background: rgba(249,115,22,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: #f97316;
}

.hp-problem-title {
  font-size: 1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.625rem;
  line-height: 1.4;
}

.hp-problem-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.hp-problem-impact {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #f97316;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 6px;
  padding: 0.375rem 0.75rem;
  display: inline-block;
}

/* section label on dark background */
.hp-problems .hp-section-label {
  color: rgba(255,255,255,0.6);
}

.hp-problems .hp-section-label .hp-section-label-line {
  background: #f97316;
}

.hp-problems .hp-section-title {
  color: #f1f5f9;
}

.hp-problems .hp-section-desc {
  color: rgba(255,255,255,0.6);
}

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