/* =============================================
   Homepage Redesign — Ecostify 2026
   Loaded AFTER styles.css to override homepage-only styles
   All new variables prefixed with "eco-" to avoid conflicts
   ============================================= */

:root {
  --eco-blue: #0F52BA;
  --eco-blue-deep: #0A1E3D;
  --eco-blue-light: #E8F0FE;
  --eco-green: #00C853;
  --eco-green-dark: #00A844;
  --eco-orange: #FF8C00;
  --eco-surface: #FAFBFD;
  --eco-white: #FFFFFF;
  --eco-gray-50: #F8F9FB;
  --eco-gray-100: #F1F3F7;
  --eco-gray-200: #E2E6ED;
  --eco-gray-300: #C8CED9;
  --eco-gray-400: #9BA3B2;
  --eco-gray-500: #6B7280;
  --eco-gray-700: #374151;
  --eco-gray-900: #111827;
  --eco-radius: 14px;
  --eco-radius-lg: 20px;
  --eco-radius-xl: 28px;
}

/* ── Body override for homepage ── */
body.homepage {
  background: var(--eco-white);
  color: var(--eco-gray-900);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* =============================================
   NAVIGATION
   ============================================= */

.hp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.hp-nav.scrolled {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

.hp-nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo-e { color: #0F52BA; }
.logo-cost { color: #00C853; }
.logo-ify { color: #0F52BA; }

.hp-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hp-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--eco-gray-500);
  text-decoration: none;
  transition: color 0.2s;
}

.hp-nav-links a:hover {
  color: var(--eco-gray-900);
}

.hp-nav-cta {
  background: var(--eco-green) !important;
  color: var(--eco-white) !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 13px !important;
  box-shadow: 0 2px 8px rgba(0, 200, 83, 0.25);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
}

.hp-nav-cta:hover {
  background: var(--eco-green-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 200, 83, 0.35) !important;
}

/* Hamburger */
.hp-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hp-nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--eco-gray-700);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hp-nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hp-nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hp-nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.hp-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--eco-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 999;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-mobile-menu.open {
  right: 0;
}

.hp-mobile-menu a {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--eco-gray-700);
  text-decoration: none;
  transition: color 0.2s;
}

.hp-mobile-menu a:hover {
  color: var(--eco-blue);
}

.hp-mobile-cta {
  background: var(--eco-green);
  color: var(--eco-white) !important;
  padding: 14px 36px;
  border-radius: 100px;
  font-size: 18px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(0, 200, 83, 0.3);
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .hp-nav-links {
    display: none;
  }
  .hp-nav-hamburger {
    display: flex;
  }
}

/* =============================================
   HERO SECTION
   ============================================= */

.hp-hero {
  padding: 120px 0 60px;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(15, 82, 186, 0.06), transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0, 200, 83, 0.04), transparent 60%),
    linear-gradient(180deg, var(--eco-white) 0%, var(--eco-blue-light) 50%, var(--eco-white) 100%);
  position: relative;
  overflow: hidden;
}

.hp-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

/* Hero badge */
.hp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--eco-white);
  border: 1px solid var(--eco-gray-200);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--eco-gray-700);
  margin-bottom: 28px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

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

@keyframes hp-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(0, 200, 83, 0); }
}

/* Headline */
.hp-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -2px;
  color: #1a1a2e;
  margin: 0 0 20px;
}

.hp-typed-wrapper {
  display: block;
  min-height: 1.2em;
}

.hp-typed-text {
  color: #00C853;
  font-weight: 800;
}

.hp-typed-cursor {
  color: #00C853;
  font-weight: 300;
  animation: blink 0.7s infinite;
  margin-left: 1px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hp-subheadline {
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.6;
  color: var(--eco-gray-500);
  margin: 0 auto 36px;
  max-width: 560px;
}

/* Stats row */
.hp-stats {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 56px);
  margin-bottom: 40px;
}

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

.hp-stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  color: var(--eco-gray-900);
  letter-spacing: -1px;
}

.hp-stat-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--eco-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* =============================================
   AUTO / HOME TOGGLE
   ============================================= */

.hp-toggle-wrap {
  display: flex;
  justify-content: center;
  margin: 8px 0 32px;
}

.hp-toggle {
  display: flex;
  background: var(--eco-white);
  border-radius: 50px;
  padding: 5px;
  gap: 4px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  min-width: 280px;
}

.hp-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  background: transparent;
  color: #6B7280;
  flex: 1;
}

.hp-toggle-btn.active {
  background: #00C853;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 200, 83, 0.3);
}

.hp-toggle-btn.active svg {
  stroke: #FFFFFF;
}

.hp-toggle-btn svg {
  width: 22px;
  height: 22px;
  stroke: #6B7280;
  transition: stroke 0.2s ease;
}

/* =============================================
   UPLOAD CARD
   ============================================= */

.hp-upload-card {
  background: var(--eco-white);
  border-radius: var(--eco-radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 4px 24px rgba(15, 82, 186, 0.08),
    0 1px 4px rgba(0, 0, 0, 0.04);
  padding: clamp(24px, 4vw, 40px);
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-upload-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 32px rgba(15, 82, 186, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Micro-journey */
.hp-micro-journey {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--eco-gray-600);
  margin-bottom: 24px;
  text-align: center;
}

.hp-micro-journey span {
  white-space: nowrap;
}

.hp-micro-journey span:not(.hp-mj-arrow) {
  background: var(--eco-gray-100);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.hp-mj-arrow {
  color: var(--eco-gray-300);
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% { opacity: 0.4; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(3px); }
}

/* Upload zone override for homepage */
.hp-upload-card .upload-zone {
  background: rgba(0, 200, 83, 0.03);
  border: none;
  border-radius: var(--eco-radius-lg);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: box-shadow 0.3s ease, background 0.3s ease;
  margin-bottom: 0;
  position: relative;
}

.hp-upload-card .upload-zone::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--eco-radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, #00C853, #0F52BA);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.hp-upload-card .upload-zone:hover::before {
  opacity: 0.8;
}

.hp-upload-card .upload-zone:hover {
  background: rgba(0, 200, 83, 0.05);
  box-shadow: 0 0 20px rgba(0, 200, 83, 0.1);
}

.hp-upload-card .upload-zone.drag-over {
  background: rgba(0, 200, 83, 0.08);
}

.hp-upload-card .upload-zone.drag-over::before {
  opacity: 1;
}

.hp-upload-card .upload-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00C853, #00E676);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  animation: iconFloat 3s ease-in-out infinite;
}

.hp-upload-card .upload-icon svg {
  stroke: #FFFFFF;
  width: 36px;
  height: 36px;
}

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

.hp-upload-card .upload-main {
  color: var(--eco-gray-800);
  font-weight: 700;
  font-size: 1.1rem;
}

.hp-upload-card .upload-sub {
  color: var(--eco-gray-400);
  font-size: 13px;
}

.hp-upload-card .upload-buttons {
  margin-top: 16px;
}

.hp-upload-card .btn-upload-camera {
  background: var(--eco-green) !important;
  color: var(--eco-white) !important;
  border-radius: 10px;
  font-size: 13px;
  padding: 10px 18px;
}

.hp-upload-card .btn-upload-camera:hover {
  background: var(--eco-green-dark) !important;
}

.hp-upload-card .btn-upload-gallery {
  color: #0F52BA !important;
  border: 1px solid rgba(15, 82, 186, 0.15) !important;
  border-radius: 10px;
  font-size: 13px;
  padding: 10px 18px;
  background: #E8F0FE !important;
}

.hp-upload-card .btn-upload-gallery:hover {
  border-color: rgba(15, 82, 186, 0.3) !important;
  background: #D6E4FC !important;
  color: #0F52BA !important;
}

/* Ensure hidden attribute works on upload preview grid */
.hp-upload-card .upload-preview-grid[hidden] {
  display: none !important;
}

.hp-upload-card .btn-add-photo {
  background: var(--eco-surface);
  border: 2px dashed var(--eco-gray-200);
  border-radius: var(--eco-radius);
  color: var(--eco-gray-400);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.hp-upload-card .btn-add-photo:hover {
  border-color: var(--eco-green);
  color: var(--eco-green);
}

/* Divider */
.hp-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--eco-gray-400);
  font-size: 13px;
  font-weight: 500;
}

.hp-divider::before,
.hp-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--eco-gray-200);
}

/* =============================================
   SERVICE PILLS
   ============================================= */

.hp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.hp-pills[hidden] {
  display: none;
}

.hp-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border: 1px solid var(--eco-gray-200);
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--eco-gray-700);
  background: var(--eco-white);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.hp-pill:hover {
  border-color: var(--eco-blue);
  color: var(--eco-blue);
  background: var(--eco-blue-light);
}

.hp-pill.selected {
  border-color: var(--eco-blue);
  background: var(--eco-blue);
  color: var(--eco-white);
}

/* Hidden textarea for description */
.hp-desc-row {
  margin-bottom: 16px;
}

.hp-desc-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--eco-gray-200);
  border-radius: var(--eco-radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--eco-gray-900);
  background: var(--eco-surface);
  resize: none;
  outline: none;
  transition: border-color 0.2s;
}

.hp-desc-row textarea::placeholder {
  color: var(--eco-gray-400);
}

.hp-desc-row textarea:focus {
  border-color: var(--eco-blue);
  box-shadow: 0 0 0 3px rgba(15, 82, 186, 0.08);
}

/* CTA Button */
.hp-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: var(--eco-radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--eco-white);
  background: linear-gradient(135deg, var(--eco-green) 0%, var(--eco-green-dark) 100%);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0, 200, 83, 0.3);
}

.hp-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 200, 83, 0.4);
}

.hp-cta-btn:active {
  transform: translateY(0);
}

/* Shimmer animation */
.hp-cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: hp-shimmer 3s ease-in-out infinite;
}

@keyframes hp-shimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* Privacy badge */
.hp-privacy-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--eco-gray-400);
}

.hp-privacy-badge svg {
  width: 14px;
  height: 14px;
  color: var(--eco-gray-300);
}

/* =============================================
   EXAMPLE TICKER
   ============================================= */

.hp-ticker {
  margin-top: 40px;
  text-align: center;
  min-height: 24px;
}

.hp-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--eco-gray-500);
  animation: hp-ticker-fade 0.4s ease;
}

@keyframes hp-ticker-fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.hp-ticker-label {
  font-weight: 600;
  color: var(--eco-blue);
}

.hp-ticker-price {
  font-weight: 700;
  color: var(--eco-gray-900);
}

/* =============================================
   HIDE OLD SECTIONS ON HOMEPAGE
   ============================================= */

body.homepage .nav,
body.homepage .hero,
body.homepage .activity-ticker-strip,
body.homepage #auto.category-section,
body.homepage #home.category-section,
body.homepage .how-section,
body.homepage .testimonials-section,
body.homepage .demo-section,
body.homepage .faq-section,
body.homepage .footer {
  display: none !important;
}

body.homepage {
  background: var(--eco-white) !important;
}

/* =============================================
   SHARED SECTION STYLES
   ============================================= */

.hp-section-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.hp-section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--eco-green);
  margin-bottom: 12px;
}

.hp-section-tag--dark {
  color: var(--eco-green);
}

.hp-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--eco-gray-900);
  letter-spacing: -1px;
  margin: 0 0 12px;
  line-height: 1.15;
}

.hp-section-title--white {
  color: var(--eco-white);
}

.hp-section-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--eco-gray-500);
  line-height: 1.6;
  margin: 0 auto 40px;
  max-width: 580px;
  text-align: center;
}

.hp-section-sub--white {
  color: rgba(255, 255, 255, 0.5);
}

/* =============================================
   SECTION 1: PROOF BAR
   ============================================= */

.hp-proof-bar {
  background: var(--eco-gray-50);
  border-top: 1px solid var(--eco-gray-200);
  border-bottom: 1px solid var(--eco-gray-200);
  padding: 28px 0;
}

.hp-proof-bar-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  flex-wrap: wrap;
}

.hp-proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hp-proof-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hp-proof-icon--green {
  background: rgba(0, 200, 83, 0.1);
  color: var(--eco-green);
}

.hp-proof-icon--green svg { stroke: var(--eco-green); }

.hp-proof-icon--blue {
  background: rgba(15, 82, 186, 0.1);
  color: var(--eco-blue);
}

.hp-proof-icon--blue svg { stroke: var(--eco-blue); }

.hp-proof-icon--orange {
  background: rgba(255, 140, 0, 0.1);
  color: var(--eco-orange);
}

.hp-proof-icon--orange svg { stroke: var(--eco-orange); }

.hp-proof-text {
  display: flex;
  flex-direction: column;
}

.hp-proof-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--eco-gray-900);
}

.hp-proof-text span {
  font-size: 13px;
  color: var(--eco-gray-500);
}

/* =============================================
   SECTION 2: HOW IT WORKS
   ============================================= */

.hp-how {
  padding: 80px 0;
  background: var(--eco-white);
  text-align: center;
}

.hp-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.hp-how-card {
  background: var(--eco-gray-50);
  border: 1px solid var(--eco-gray-200);
  border-radius: var(--eco-radius-lg);
  padding: 32px 24px;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hp-how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.hp-how-num {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--eco-gray-200);
  line-height: 1;
  margin-bottom: 16px;
}

.hp-how-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.hp-how-icon--blue {
  background: rgba(15, 82, 186, 0.1);
}

.hp-how-icon--blue svg { stroke: var(--eco-blue); }

.hp-how-icon--green {
  background: rgba(0, 200, 83, 0.1);
}

.hp-how-icon--green svg { stroke: var(--eco-green); }

.hp-how-icon--orange {
  background: rgba(255, 140, 0, 0.1);
}

.hp-how-icon--orange svg { stroke: var(--eco-orange); }

.hp-how-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--eco-gray-900);
  margin: 0 0 8px;
}

.hp-how-card p {
  font-size: 14px;
  color: var(--eco-gray-500);
  line-height: 1.6;
  margin: 0 0 16px;
}

.hp-how-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--eco-green-dark);
  background: rgba(0, 200, 83, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
}

/* =============================================
   SECTION 3: ESTIMATE PREVIEW
   ============================================= */

.hp-preview {
  padding: 80px 0;
  background: var(--eco-gray-50);
  text-align: center;
}

.hp-preview-card {
  background: var(--eco-white);
  border: 1px solid var(--eco-gray-200);
  border-radius: var(--eco-radius-xl);
  padding: clamp(24px, 4vw, 40px);
  text-align: left;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.hp-preview-header {
  margin-bottom: 24px;
}

.hp-preview-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--eco-blue);
  background: var(--eco-blue-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.hp-preview-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--eco-gray-900);
  margin: 0 0 4px;
}

.hp-preview-header p {
  font-size: 14px;
  color: var(--eco-gray-500);
  margin: 0;
}

.hp-preview-price {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--eco-gray-200);
}

.hp-preview-price-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--eco-gray-400);
  margin-bottom: 6px;
}

.hp-preview-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.hp-preview-range {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--eco-gray-900);
  letter-spacing: -1px;
}

.hp-preview-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.hp-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid;
}

.hp-tag--orange {
  color: #C2410C;
  background: #FFF7ED;
  border-color: #FDBA74;
}

.hp-tag--green {
  color: #166534;
  background: #F0FDF4;
  border-color: #86EFAC;
}

.hp-tag--blue {
  color: #1E40AF;
  background: #EFF6FF;
  border-color: #93C5FD;
}

/* Tiers */
.hp-preview-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.hp-tier {
  background: var(--eco-gray-50);
  border: 1px solid var(--eco-gray-200);
  border-radius: var(--eco-radius);
  padding: 16px;
  text-align: center;
}

.hp-tier--highlight {
  border-color: var(--eco-blue);
  background: var(--eco-blue-light);
}

.hp-tier-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--eco-gray-500);
  margin-bottom: 4px;
}

.hp-tier-range {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--eco-gray-900);
}

.hp-tier-desc {
  font-size: 12px;
  color: var(--eco-gray-400);
  margin-top: 4px;
}

/* Breakdown */
.hp-preview-breakdown {
  margin-bottom: 24px;
}

.hp-breakdown-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--eco-gray-700);
  margin-bottom: 10px;
}

.hp-breakdown-bar {
  display: flex;
  height: 10px;
  border-radius: 100px;
  overflow: hidden;
  gap: 2px;
}

.hp-breakdown-seg {
  border-radius: 100px;
}

.hp-breakdown-legend {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.hp-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--eco-gray-500);
}

.hp-legend-item span {
  font-weight: 600;
  color: var(--eco-gray-700);
}

.hp-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Tips */
.hp-preview-tips {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hp-tip {
  font-size: 14px;
  color: var(--eco-gray-700);
  line-height: 1.5;
  padding: 10px 14px;
  background: var(--eco-gray-50);
  border-radius: var(--eco-radius);
}

.hp-preview-cta {
  margin-top: 32px;
  text-align: center;
}

.hp-cta-btn--link {
  display: inline-flex;
  text-decoration: none;
}

/* =============================================
   SECTION 4: POPULAR CATEGORIES
   ============================================= */

.hp-categories {
  padding: 80px 0;
  background: var(--eco-white);
  text-align: center;
}

.hp-cat-tabs {
  display: inline-flex;
  background: var(--eco-gray-100);
  border-radius: 100px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 32px;
}

.hp-cat-tab {
  padding: 8px 20px;
  border: none;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: var(--eco-gray-500);
  transition: all 0.25s ease;
}

.hp-cat-tab.active {
  background: var(--eco-white);
  color: var(--eco-gray-900);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.hp-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hp-cat-grid[hidden] {
  display: none;
}

.hp-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 16px;
  background: var(--eco-gray-50);
  border: 1px solid var(--eco-gray-200);
  border-radius: var(--eco-radius);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.hp-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--eco-green);
}

.hp-cat-emoji {
  font-size: 28px;
  margin-bottom: 4px;
}

.hp-cat-card strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--eco-gray-900);
}

.hp-cat-price {
  font-size: 13px;
  color: var(--eco-gray-400);
  font-weight: 500;
}

/* =============================================
   SECTION 5: SCENARIOS
   ============================================= */

.hp-scenarios {
  padding: 80px 0;
  background: var(--eco-blue-deep);
  text-align: center;
}

.hp-scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.hp-scenario-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--eco-radius-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hp-scenario-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.hp-scenario-text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 16px;
}

.hp-scenario-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--eco-green);
  background: rgba(0, 200, 83, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.hp-scenario-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hp-scenario-meta strong {
  font-size: 13px;
  color: var(--eco-white);
}

.hp-scenario-meta span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* =============================================
   SECTION 6: TRUST
   ============================================= */

.hp-trust {
  padding: 80px 0;
  background: var(--eco-gray-50);
  text-align: center;
}

.hp-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hp-trust-icon {
  width: 64px;
  height: 64px;
  border: 2px solid var(--eco-gray-200);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 8px;
  background: var(--eco-white);
}

.hp-trust-item strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--eco-gray-900);
}

.hp-trust-item span {
  font-size: 13px;
  color: var(--eco-gray-500);
}

/* =============================================
   SECTION 7: FAQ
   ============================================= */

.hp-faq {
  padding: 80px 0;
  background: var(--eco-white);
  text-align: center;
}

.hp-faq-list {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.hp-faq-item {
  border: 1px solid var(--eco-gray-200);
  border-radius: var(--eco-radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--eco-gray-50);
}

.hp-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--eco-gray-900);
  text-align: left;
  gap: 12px;
}

.hp-faq-q:hover {
  color: var(--eco-blue);
}

.hp-faq-chevron {
  flex-shrink: 0;
  color: var(--eco-gray-400);
  transition: transform 0.3s ease;
}

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

.hp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
}

.hp-faq-item.open .hp-faq-a {
  max-height: 300px;
  padding: 0 20px 18px;
}

.hp-faq-a p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--eco-gray-500);
  margin: 0;
}

/* =============================================
   SECTION 8: FOOTER
   ============================================= */

.hp-footer {
  background: var(--eco-blue-deep);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 0;
}

.hp-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.hp-footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hp-footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.5);
}

.hp-footer-brand .hp-nav-logo {
  font-size: 22px;
}

.hp-footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--eco-white);
  margin: 0 0 16px;
}

.hp-footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}

.hp-footer-col a:hover {
  color: var(--eco-white);
}

.hp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

/* =============================================
   SECTION 9: STICKY BOTTOM CTA
   ============================================= */

.hp-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--eco-gray-200);
  padding: 12px clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-sticky-cta.visible {
  transform: translateY(0);
}

.hp-sticky-text {
  font-size: 14px;
  color: var(--eco-gray-500);
  display: none;
}

.hp-sticky-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: var(--eco-green);
  color: var(--eco-white);
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 200, 83, 0.3);
  transition: background 0.2s, transform 0.2s;
}

.hp-sticky-btn:hover {
  background: var(--eco-green-dark);
  transform: translateY(-1px);
}

/* =============================================
   SECTION 10: SCROLL REVEAL
   ============================================= */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
  .hp-hero {
    padding: 100px 0 40px;
  }

  .hp-headline {
    letter-spacing: -1px;
  }

  .hp-stats {
    gap: 20px;
  }

  .hp-upload-card {
    margin: 0 8px;
    padding: 20px;
  }

  .hp-pills {
    gap: 6px;
  }

  .hp-pill {
    padding: 6px 12px;
    font-size: 12px;
  }

  .hp-toggle {
    min-width: 240px;
  }

  .hp-toggle-btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  .hp-micro-journey {
    font-size: 12px;
    flex-wrap: wrap;
    gap: 4px;
  }

  /* How It Works */
  .hp-how-grid {
    grid-template-columns: 1fr;
  }

  /* Preview tiers */
  .hp-preview-tiers {
    grid-template-columns: 1fr;
  }

  /* Categories */
  .hp-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Scenarios */
  .hp-scenarios-grid {
    grid-template-columns: 1fr;
  }

  /* Trust */
  .hp-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .hp-footer-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hp-footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Sticky CTA — show text on mobile */
  .hp-sticky-text {
    display: block;
  }

  .hp-sticky-cta {
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
  }

  .hp-sticky-btn {
    width: 100%;
    justify-content: center;
  }

  /* Sections padding */
  .hp-how,
  .hp-preview,
  .hp-categories,
  .hp-scenarios,
  .hp-trust,
  .hp-faq {
    padding: 56px 0;
  }
}

@media (max-width: 480px) {
  .hp-toggle {
    min-width: 220px;
  }

  .hp-toggle-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .hp-stats {
    gap: 16px;
  }

  .hp-stat-num {
    font-size: 22px;
  }

  .hp-stat-label {
    font-size: 10px;
  }

  .hp-upload-card {
    border-radius: var(--eco-radius-lg);
    padding: 16px;
  }

  .hp-cat-card {
    padding: 16px 12px;
  }

  .hp-cat-emoji {
    font-size: 24px;
  }

  .hp-scenario-card {
    padding: 20px;
  }
}

/* =============================================
   NEW: LOCATION BAR
   ============================================= */

.hp-location-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--eco-gray-500);
  letter-spacing: 0.01em;
}

.hp-location-bar svg {
  color: var(--eco-green);
  flex-shrink: 0;
}

/* =============================================
   NEW: CATEGORY BUTTONS
   ============================================= */

.hp-category-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.hp-cat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 200px;
  height: 56px;
  padding: 0 28px;
  border-radius: var(--eco-radius);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  background: var(--eco-white);
}

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

.hp-cat-btn:active {
  transform: translateY(0);
}

.hp-cat-btn--home {
  color: var(--eco-green-dark);
  border-color: var(--eco-green);
  background: rgba(0, 200, 83, 0.06);
}

.hp-cat-btn--home:hover {
  background: rgba(0, 200, 83, 0.12);
}

.hp-cat-btn--auto {
  color: var(--eco-blue);
  border-color: var(--eco-blue);
  background: rgba(15, 82, 186, 0.05);
}

.hp-cat-btn--auto:hover {
  background: rgba(15, 82, 186, 0.1);
}

.hp-cat-btn-emoji {
  font-size: 22px;
  line-height: 1;
}

/* =============================================
   NEW: EARLY ACCESS TEXT
   ============================================= */

.hp-early-access {
  text-align: center;
  font-size: 14px;
  color: var(--eco-gray-400);
  margin-top: 16px;
  font-style: italic;
  letter-spacing: 0.01em;
}

/* =============================================
   NEW: TRUST STATS BAR (replaces proof bar inner)
   ============================================= */

.hp-trust-stats-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 16px;
  color: var(--eco-gray-700);
}

.hp-trust-stat strong {
  color: var(--eco-green);
  font-weight: 700;
}

.hp-trust-stat-dot {
  color: var(--eco-gray-300);
  font-size: 18px;
}

/* =============================================
   NEW: WHY WE BUILT THIS SECTION
   ============================================= */

.hp-why {
  padding: 80px 0;
  background: var(--eco-gray-50);
}

.hp-why-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
  color: var(--eco-gray-500);
}

.hp-why-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}

.hp-why-badge {
  font-weight: 600;
  font-size: 15px;
  color: var(--eco-green-dark);
  white-space: nowrap;
}

/* =============================================
   RESPONSIVE: NEW ELEMENTS
   ============================================= */

@media (max-width: 768px) {
  .hp-category-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hp-cat-btn {
    width: 100%;
    max-width: 280px;
    min-width: unset;
  }

  .hp-trust-stats-inner {
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 14px;
    justify-content: center;
  }

  .hp-trust-stat-dot {
    display: none;
  }

  .hp-trust-stat {
    white-space: nowrap;
  }

  .hp-why {
    padding: 60px 0;
  }

  .hp-why-text {
    font-size: 15px;
    padding: 0 8px;
  }

  .hp-why-badges {
    gap: 12px 20px;
  }

  .hp-why-badge {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hp-category-buttons {
    gap: 10px;
  }

  .hp-cat-btn {
    height: 50px;
    font-size: 15px;
    padding: 0 20px;
  }

  .hp-trust-stats-inner {
    font-size: 13px;
    gap: 6px 12px;
  }

  .hp-why-badges {
    gap: 10px 16px;
  }
}
