/* ===== ROZIC MOVE — Main Stylesheet ===== */

/* --- Google Font (Heebo – full Hebrew support) --- */

:root {
  --green:       #00A651;
  --green-dark:  #007A3D;
  --green-light: #E6F7EF;
  --green-mid:   #00C662;
  --navy:        #1D3557;
  --navy-light:  #2A4A73;
  --orange:      #F56A00;
  --bg:          #EDF7F2;
  --white:       #FFFFFF;
  --card-bg:     #FFFFFF;
  --text:        #111B11;
  --text-mid:    #3A4A3A;
  --text-muted:  #6B7B6B;
  --border:      #D0EAD9;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:   0 6px 28px rgba(0,0,0,0.1);
  --shadow-green:0 8px 32px rgba(0,166,81,0.18);
  --radius:      16px;
  --radius-sm:   10px;
  --nav-h:       68px;
  --transition:  0.25s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; }

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

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}
.reveal.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(237,247,242,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,166,81,0.12);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

.nav-logo:hover .logo-arrow path { stroke: var(--green-mid); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-right: auto;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

.nav-links a:hover {
  background: var(--green-light);
  color: var(--green-dark);
}

.nav-cta {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  background: var(--green);
  text-decoration: none;
  padding: 9px 22px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-green);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-right: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  z-index: 99;
  padding: 20px 24px 32px;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }

.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.mobile-menu a:hover { background: var(--green-light); color: var(--green-dark); }

.mobile-menu .mobile-cta {
  margin-top: 10px;
  background: var(--green);
  color: white;
  text-align: center;
  border-radius: 50px;
}
.mobile-menu .mobile-cta:hover { background: var(--green-dark); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(160deg, #C8EDD8 0%, #E0F5E9 40%, #EDF7F2 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob-1 {
  position: absolute;
  top: -120px;
  right: -180px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,166,81,0.13) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-blob-2 {
  position: absolute;
  bottom: -100px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(29,53,87,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  width: 100%;
}

/* Hero Text */
.hero-text { flex: 1; max-width: 520px; }

.hero-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1.5px solid rgba(0,166,81,0.25);
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 20px;
  transition-delay: 0.1s;
}

.title-accent {
  color: var(--green);
  position: relative;
  display: inline-block;
}

.title-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 0; left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-mid));
  border-radius: 2px;
  opacity: 0.35;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 32px;
  max-width: 440px;
  line-height: 1.75;
  transition-delay: 0.18s;
}

/* App Store Buttons */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  transition-delay: 0.26s;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-store div { text-align: start; line-height: 1.2; }
.btn-store small { font-size: 0.7rem; opacity: 0.75; display: block; }
.btn-store strong { font-size: 1rem; font-weight: 800; }

.btn-apple {
  background: var(--text);
  color: white;
}
.btn-apple:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.22); }

.btn-google {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-google:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: #b0d4be; }

.btn-store.large { padding: 14px 24px; }
.btn-store.large strong { font-size: 1.1rem; }

/* Trust strip */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  transition-delay: 0.34s;
}

.trust-item {
  display: flex;
  flex-direction: column;
}
.trust-item strong {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text);
}
.trust-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.trust-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ===== PHONE MOCKUP ===== */
.hero-phone {
  position: relative;
  flex-shrink: 0;
  transition-delay: 0.2s;
}

.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0,166,81,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.phone-outer {
  position: relative;
  animation: phoneFloat 4s ease-in-out infinite;
}

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

.phone-frame {
  width: 240px;
  height: 480px;
  background: var(--text);
  border-radius: 36px;
  padding: 14px 10px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08) inset;
  position: relative;
}

.phone-notch {
  width: 60px;
  height: 6px;
  background: #2a2a2a;
  border-radius: 3px;
  margin: 0 auto 10px;
}

.phone-screen {
  background: var(--bg);
  border-radius: 26px;
  height: calc(100% - 22px);
  overflow: hidden;
}

/* App UI inside phone */
.app-ui {
  padding: 14px 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  direction: rtl;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-greeting {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text);
}

.app-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.app-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--navy));
}

.app-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.app-service {
  background: white;
  border-radius: 10px;
  padding: 8px 4px;
  text-align: center;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.app-service.active {
  border-color: var(--green);
  background: var(--green-light);
}

.svc-emoji { font-size: 1rem; }
.svc-name { font-size: 0.55rem; font-weight: 600; color: var(--text-mid); margin-top: 3px; }

.app-movers-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mover-card {
  background: white;
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
}

.mover-ava {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mover-ava.blue { background: linear-gradient(135deg, #4A90E2, #2D6FBF); }
.mover-ava.orange { background: linear-gradient(135deg, #F5A623, #E8811A); }

.mover-info { flex: 1; }
.mover-name { font-size: 0.65rem; font-weight: 700; color: var(--text); }
.mover-meta { font-size: 0.58rem; color: var(--text-muted); }
.mover-meta strong { color: var(--green-dark); }

.mover-pick {
  font-size: 0.58rem;
  font-weight: 800;
  color: white;
  background: var(--green);
  padding: 4px 8px;
  border-radius: 6px;
}

.app-track-bar {
  margin-top: auto;
  background: white;
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
}

.track-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.track-dot.dest { background: var(--navy); }
.track-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--navy));
  border-radius: 1px;
}
.track-label {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* Floating notification badge */
.phone-float-badge {
  position: absolute;
  bottom: 30px;
  left: -70px;
  background: white;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
  animation: badgePop 0.5s ease 1s both, badgeFloat 3.5s ease-in-out 1.5s infinite;
  border: 1px solid rgba(0,166,81,0.15);
}

@keyframes badgePop {
  from { opacity: 0; transform: scale(0.8) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

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

.badge-icon {
  width: 28px;
  height: 28px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
}

.badge-title { font-size: 0.72rem; font-weight: 800; color: var(--text); }
.badge-sub { font-size: 0.62rem; color: var(--text-muted); }

/* Scroll indicator */
.hero-scroll {
  display: flex;
  justify-content: center;
  padding: 24px;
}
.scroll-arrow {
  font-size: 1.2rem;
  color: var(--text-muted);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===== SECTION COMMON ===== */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}

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

.section-label.light { color: rgba(255,255,255,0.7); }

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.8px;
  color: var(--text);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== FEATURES ===== */
.features-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--white) 0%, #E8F5EE 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 16px;
}

.feature-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
  border-color: rgba(0,166,81,0.3);
}

.feature-large {
  grid-row: span 2;
  background: linear-gradient(145deg, var(--green-light) 0%, rgba(255,255,255,0.6) 100%);
  border-color: rgba(0,166,81,0.2);
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
  color: var(--green);
}

.feature-large .feature-icon-wrap { width: 64px; height: 64px; }

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.feature-large h3 { font-size: 1.35rem; }

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-tag {
  display: inline-block;
  background: rgba(0,166,81,0.12);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #A8D8BC 0%, #C8EBDA 50%, #D8F2E6 100%);
}

.steps-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}

.step {
  flex: 1;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(145deg, #FFFFFF 0%, #D4F0E2 100%);
  border-radius: var(--radius);
  border: 2px solid rgba(0,166,81,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(0,166,81,0.12);
}

.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--green);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.step-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.step-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.step-connector {
  width: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.step-connector::before {
  content: '';
  position: absolute;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), rgba(0,166,81,0.3));
  border-radius: 1px;
}

.step-connector::after {
  content: '←';
  font-size: 1rem;
  color: var(--green);
  position: absolute;
  left: 2px;
}

/* ===== FOR MOVERS ===== */
.movers-section {
  padding: 90px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.movers-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,166,81,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.movers-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.movers-text { flex: 1; }

.movers-text .section-label { color: rgba(255,255,255,0.5); }

.movers-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.8px;
  color: white;
  margin-bottom: 16px;
}

.movers-desc {
  color: rgba(255,255,255,0.65);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 420px;
}

.movers-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.movers-benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.93rem;
  font-weight: 500;
}

.benefit-check {
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-light {
  display: inline-block;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 13px 32px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-light:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

/* Driver card */
.movers-visual { flex-shrink: 0; }

.driver-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 24px;
  width: 320px;
  backdrop-filter: blur(8px);
}

.driver-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.driver-ava {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED, #4F46E5);
  flex-shrink: 0;
}

.driver-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: white;
}

.driver-level {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
}

.stars-inline { color: #FBBF24; }

.driver-badge-online {
  margin-right: auto;
  background: rgba(0,198,98,0.2);
  color: #00C662;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid rgba(0,198,98,0.3);
}

.driver-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 14px 10px;
}

.d-stat { text-align: center; }
.d-val {
  font-size: 1.1rem;
  font-weight: 900;
  color: white;
}
.d-lbl {
  font-size: 0.67rem;
  color: rgba(255,255,255,0.45);
}

.driver-orders-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.driver-orders { display: flex; flex-direction: column; gap: 8px; }

.order-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 9px 12px;
}

.order-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.green-dot { background: var(--green); }
.orange-dot { background: var(--orange); }
.blue-dot { background: #4A90E2; }

.order-text {
  flex: 1;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
}

.order-price {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--green-mid);
}

.new-badge {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  margin-right: 4px;
}

/* ===== STATS ===== */
.stats-section {
  padding: 72px 0;
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 50%, rgba(0,0,0,0.06) 0%, transparent 50%);
}

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

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

.stat-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  color: white;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-suffix {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 900;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #D8F0E4 100%);
}

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

.testimonial {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: #FBBF24;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-ava {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pink-ava { background: linear-gradient(135deg, #F472B6, #EC4899); }
.teal-ava { background: linear-gradient(135deg, #2DD4BF, #0D9488); }
.navy-ava { background: linear-gradient(135deg, #6366F1, #4338CA); }

.author-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text);
}
.author-city {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-section {
  padding: 90px 0;
  background: var(--bg);
}

.faq-container {
  max-width: 720px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: rgba(0,166,81,0.35); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  text-align: right;
  transition: color var(--transition);
}

.faq-q:hover { color: var(--green-dark); }

.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--green); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.faq-item.open .faq-a { max-height: 300px; }

.faq-a p {
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ===== DOWNLOAD CTA ===== */
.download-section {
  padding: 90px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.download-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dl-shape-1 {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,166,81,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.dl-shape-2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.download-content {
  position: relative;
}

.download-content .section-label { color: rgba(255,255,255,0.5); }

.download-content h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.8px;
  color: white;
  margin-bottom: 12px;
}

.download-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.98rem;
  margin-bottom: 36px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.download-section .btn-apple {
  background: white;
  color: var(--text);
}
.download-section .btn-apple:hover { background: var(--bg); }

.download-section .btn-google {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: white;
}
.download-section .btn-google small { opacity: 0.6; }
.download-section .btn-google:hover { background: rgba(255,255,255,0.16); }

/* ===== FOOTER ===== */
.footer {
  background: #0F1F0F;
  padding-top: 60px;
}

.footer-inner {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  padding-bottom: 48px;
}

.footer-brand { flex-shrink: 0; }

.footer-logo {
  font-size: 1.1rem;
  font-weight: 900;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

.footer-links {
  flex: 1;
  display: flex;
  gap: 48px;
  justify-content: flex-end;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--green-mid); }

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
}

.footer-bottom {
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
}

/* Keep old page styles for privacy / terms */
.card {
  background: #fff;
  border: 1px solid #D4EDE0;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 16px;
}
.card h2 { color: var(--navy); font-size: 1.15rem; margin-top: 0; }
.card p, .card li { color: #444; font-size: 0.95rem; }

a.back {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--green);
  text-decoration: none;
  font-weight: bold;
}

.updated { color: #999; font-size: 0.85rem; }
.bold { font-weight: bold; color: var(--text); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-large { grid-row: span 1; }
  .steps-wrap { flex-direction: column; }
  .step-connector { width: 100%; height: 40px; }
  .step-connector::before { width: 2px; height: 24px; }
  .step-connector::after { content: '↓'; left: auto; top: 2px; }
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px 30px;
    gap: 40px;
  }
  .hero-text { max-width: 100%; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-phone { order: -1; }
  .phone-float-badge { left: -30px; }
  .movers-inner { flex-direction: column; gap: 40px; }
  .driver-card { width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; gap: 32px; }
}

@media (max-width: 680px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-phone { transform: scale(0.85); }
  .phone-float-badge { display: none; }
  .movers-text { text-align: center; }
  .movers-benefits li { text-align: right; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .download-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-title { font-size: 2.2rem; }
  .phone-frame { width: 210px; height: 420px; }
  .faq-q { font-size: 0.88rem; }
}
