/* ==========================================================================
   HomieEase — style.css
   Design tokens: Primary Blue #2563EB · Light Blue #3B82F6 · Soft Gray #F8FAFC
   Dark Text #0F172A · Accent Cyan #06B6D4 (gradient depth)
   Display type: 'Space Grotesk'  ·  Body type: 'Inter'
   ========================================================================== */

:root {
  --primary: #2563EB;
  --primary-light: #3B82F6;
  --accent-cyan: #06B6D4;
  --soft-gray: #F8FAFC;
  --dark: #0F172A;
  --dark-70: rgba(15, 23, 42, 0.7);
  --dark-50: rgba(15, 23, 42, 0.5);
  --white: #FFFFFF;
  --border-soft: rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(37, 99, 235, 0.10);
  --shadow-lg: 0 20px 50px rgba(37, 99, 235, 0.16);
  --radius: 20px;
  --radius-sm: 14px;
  --gradient-primary: linear-gradient(135deg, #2563EB 0%, #3B82F6 55%, #06B6D4 100%);
  --gradient-soft: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .display-font {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--primary);
  display: inline-block;
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--dark-70);
  font-size: 1.05rem;
  max-width: 640px;
}

section { position: relative; }

.bg-soft { background: var(--soft-gray); }

.text-primary-custom { color: var(--primary); }

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 12px;
  padding: 12px 26px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease, color 0.3s ease;
  border: none;
}

.btn-primary-custom {
  background: var(--gradient-primary);
  background-size: 160% 160%;
  background-position: 0% 50%;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background-position: 100% 50%;
  color: var(--white);
}

.btn-outline-custom {
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--border-soft);
}

.btn-outline-custom:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  color: var(--primary);
}

.btn-white-custom {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn-white-custom:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: var(--primary); }

.btn-ghost-white {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.22); transform: translateY(-3px); color: var(--white); }

a:focus-visible, button:focus-visible, .btn:focus-visible, input:focus-visible {
  outline: 2.5px solid var(--accent-cyan);
  outline-offset: 3px;
}

/* ---------- Navbar ---------- */
.navbar-custom {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}

.navbar-custom.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  padding: 10px 0;
}

.navbar-brand-custom {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand-custom .logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
}

.nav-link-custom {
  font-weight: 500;
  color: var(--dark) !important;
  padding: 8px 16px !important;
  border-radius: 8px;
  position: relative;
  transition: color 0.25s ease;
}

.nav-link-custom::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 3px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after { transform: scaleX(1); }

.nav-link-custom:hover { color: var(--primary) !important; }

.btn-login {
  font-weight: 600;
  color: var(--dark);
  padding: 9px 18px;
  border-radius: 10px;
  transition: background 0.25s ease;
}
.btn-login:hover { background: var(--soft-gray); color: var(--primary); }

.btn-register {
  font-weight: 600;
  color: var(--white);
  background: var(--gradient-primary);
  padding: 9px 22px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-register:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  padding: 168px 0 100px;
  background: var(--gradient-soft);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -220px; right: -220px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.14) 0%, rgba(37,99,235,0) 70%);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -260px; left: -180px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.10) 0%, rgba(6,182,212,0) 70%);
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--dark-70);
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-trust {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--dark-50);
  font-size: 0.9rem;
}

.hero-trust .avatars { display: flex; }
.hero-trust .avatars span {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2.5px solid var(--white);
  background: var(--gradient-primary);
  margin-left: -10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.65rem; font-weight: 700;
}
.hero-trust .avatars span:first-child { margin-left: 0; }

/* ----- Hero visual: Hub & Orbit signature ----- */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub-card {
  position: relative;
  z-index: 3;
  width: 260px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 26px 24px;
  animation: floatHub 6s ease-in-out infinite;
}

.hub-card .hub-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.35rem;
  margin-bottom: 16px;
}

.hub-card .hub-label { font-size: 0.78rem; color: var(--dark-50); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.hub-card .hub-value { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; margin: 2px 0 14px; }

.hub-progress {
  height: 6px;
  background: var(--soft-gray);
  border-radius: 4px;
  overflow: hidden;
}
.hub-progress span {
  display: block; height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
  width: 72%;
  animation: growBar 2.4s var(--ease) infinite alternate;
}

.orbit-chip {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  z-index: 2;
}

.orbit-chip i { font-size: 1.1rem; color: var(--primary); }

.orbit-chip.c1 { top: 6%; left: 2%; animation: floatChip 5s ease-in-out infinite; }
.orbit-chip.c2 { top: 12%; right: 0%; animation: floatChip 6.5s ease-in-out infinite 0.4s; }
.orbit-chip.c3 { bottom: 14%; left: -4%; animation: floatChip 5.8s ease-in-out infinite 0.8s; }
.orbit-chip.c4 { bottom: 4%; right: 6%; animation: floatChip 6.2s ease-in-out infinite 1.2s; }

.orbit-ring {
  position: absolute;
  border: 1.5px dashed rgba(37, 99, 235, 0.25);
  border-radius: 50%;
  width: 400px; height: 400px;
  z-index: 1;
}

@keyframes floatHub {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}
@keyframes floatChip {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes growBar {
  0% { width: 40%; }
  100% { width: 82%; }
}

/* ---------- About ---------- */
.about-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -24px; right: -18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-badge .num { font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--primary); }

.check-list { list-style: none; padding: 0; margin: 26px 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; color: var(--dark-70);
}
.check-list li i {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  width: 24px; height: 24px;
  min-width: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  margin-top: 2px;
}

/* ---------- Service Cards ---------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px 26px;
  height: 100%;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { opacity: 1; }

.service-card > * { position: relative; z-index: 1; }

.service-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s var(--ease);
}

.service-card:hover .service-icon {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  transform: scale(1.08) rotate(-4deg);
}

.service-card h5 { font-size: 1.1rem; margin-bottom: 8px; transition: color 0.4s ease; }
.service-card p { font-size: 0.92rem; color: var(--dark-70); margin-bottom: 0; transition: color 0.4s ease; }

.service-card:hover h5, .service-card:hover p { color: var(--white); }

.service-tag {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 1;
  transition: background 0.4s ease, color 0.4s ease;
}
.service-card:hover .service-tag { background: rgba(255,255,255,0.2); color: var(--white); }

/* ---------- Feature (Why Choose) ---------- */
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.feature-icon {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: var(--shadow-md);
}

/* ---------- Stats ---------- */
.stats-section {
  background: var(--dark);
  background-image:
    radial-gradient(circle at 15% 30%, rgba(37,99,235,0.35) 0%, transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(6,182,212,0.28) 0%, transparent 45%);
  padding: 90px 0;
}

.stat-item { text-align: center; color: var(--white); }
.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-top: 6px; }

/* ---------- How it works ---------- */
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(37, 99, 235, 0.12);
  line-height: 1;
  margin-bottom: 10px;
}

.step-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(37,99,235,0.08);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -34px;
  transform: translateY(-50%);
  color: var(--primary-light);
  font-size: 1.5rem;
  z-index: 2;
}

@media (max-width: 991px) {
  .step-arrow { display: none; }
}

/* ---------- Testimonials ---------- */
.testimonial-wrap { max-width: 780px; margin: 0 auto; }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 46px 40px;
  text-align: center;
  border: 1px solid var(--border-soft);
}

.testimonial-card img {
  width: 68px; height: 68px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--soft-gray);
}

.testimonial-stars { color: #FBBF24; margin-bottom: 14px; font-size: 0.95rem; }

.testimonial-text {
  font-size: 1.1rem;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.7;
}

.testimonial-name { font-weight: 700; font-family: 'Space Grotesk', sans-serif; }
.testimonial-role { font-size: 0.85rem; color: var(--dark-50); }

.carousel-indicators-custom {
  position: static;
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.carousel-indicators-custom [data-bs-target] {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--border-soft);
  border: none;
  opacity: 1;
  transition: background 0.3s ease, transform 0.3s ease;
}
.carousel-indicators-custom [data-bs-target].active {
  background: var(--primary);
  transform: scale(1.25);
}

/* ---------- App Promo ---------- */
.app-promo {
  background: var(--soft-gray);
  border-radius: 32px;
  padding: 70px 50px;
  overflow: hidden;
  position: relative;
}

.phone-mockup {
  position: relative;
  width: 240px;
  height: 480px;
  margin: 0 auto;
  background: var(--dark);
  border-radius: 40px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
}

.phone-mockup .screen {
  width: 100%; height: 100%;
  background: var(--gradient-primary);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 26px 18px;
}

.phone-mockup .notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 18px;
  background: var(--dark);
  border-radius: 10px;
  z-index: 5;
}

.phone-mini-card {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 12px 14px;
  margin-top: 14px;
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.store-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 12px;
  transition: transform 0.3s var(--ease);
}
.store-badge:hover { transform: translateY(-3px); color: var(--white); }
.store-badge i { font-size: 1.5rem; }
.store-badge .store-text { display: flex; flex-direction: column; line-height: 1.1; }
.store-badge .store-text small { font-size: 0.65rem; opacity: 0.75; }
.store-badge .store-text span { font-size: 0.95rem; font-weight: 700; }

/* ---------- CTA ---------- */
.cta-section {
  background: var(--gradient-primary);
  border-radius: var(--radius);
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18) 0%, transparent 40%),
                     radial-gradient(circle at 80% 80%, rgba(255,255,255,0.14) 0%, transparent 40%);
}

.cta-section > * { position: relative; z-index: 1; }

.cta-section h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 34px; }

/* ---------- Footer ---------- */
.footer-custom {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 0;
}

.footer-custom h6 {
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  margin-bottom: 22px;
  font-size: 1rem;
}

.footer-custom a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
  display: inline-block;
}
.footer-custom a:hover { color: var(--white); padding-left: 4px; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.social-icons { display: flex; gap: 10px; margin-top: 22px; }
.social-icons a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, transform 0.3s var(--ease);
}
.social-icons a:hover { background: var(--primary); transform: translateY(-3px); color: white; }

.newsletter-form { display: flex; gap: 8px; margin-top: 6px; }
.newsletter-form input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  border-radius: 10px;
  padding: 11px 16px;
  flex: 1;
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; border-color: var(--primary-light); background: rgba(255,255,255,0.1); }

.newsletter-form button {
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0 18px;
  font-weight: 600;
  transition: transform 0.3s var(--ease);
}
.newsletter-form button:hover { transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 60px;
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom a { color: rgba(255,255,255,0.6); }

/* ---------- Scroll to top ---------- */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  border: none;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { transform: translateY(-4px); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Misc ---------- */
.section-pad { padding: 100px 0; }

@media (max-width: 767px) {
  .section-pad { padding: 70px 0; }
  .hero { padding: 140px 0 70px; }
  .hero-visual { height: 380px; margin-top: 40px; }
  .hub-card { width: 220px; padding: 20px; }
  .orbit-ring { width: 300px; height: 300px; }
  .app-promo { padding: 50px 24px; border-radius: 24px; }
  .cta-section { padding: 60px 24px; border-radius: 24px; }
}

@media (max-width: 575px) {
  .orbit-chip { font-size: 0.72rem; padding: 9px 12px; }
  .hero-trust { flex-wrap: wrap; }
}