:root {
  /* ---------------- COLORS ---------------- */
  --color-primary-light: #98ff99;
  --color-primary: #50c38c;
  --color-primary-dark: #2a9f63;
  --color-secondary: #62d28f;

  --color-text-main: #0f172a;
  --color-text-muted: #475569;

  --color-white: #ffffff;
  --color-background: #f8fafc;
  --color-border: #e2e8f0;

  /* ---------------- TYPOGRAPHY ---------------- */
  --font-family-main: "Montserrat", sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 22px;
  --font-size-2xl: 32px;
  --font-size-3xl: 48px;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* ---------------- SPACING ---------------- */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 80px;

  /* ---------------- BORDER RADIUS ---------------- */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* ---------------- SHADOWS ---------------- */
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);

  /* ---------------- MISC ---------------- */
  --container-width: 1200px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --z-navbar: 1000;
  --z-dropdown: 1100;
  --z-modal: 2000;
  --z-loader: 9999;
}

/* --- RESET --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-family-main);
  color: var(--color-text-main);
  background: var(--color-white);
  overflow-x: hidden;
}
html,
body {
  overflow-x: hidden;
}
.container {
  max-width: var(--container-width);
  margin: auto;
  padding: 0 var(--space-lg);
}
.section {
  padding: var(--space-2xl) 0;
}
h1 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
}
h2 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
}
p {
  color: var(--color-text-muted);
  font-size: var(--font-size-md);
}

/* --- PAGE LOADER --- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: var(--z-loader);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column; 
  align-items: center;
  gap: 20px;
}
.loader-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.loader-gear {
  width: 52px;
  height: 52px;
  animation: gear-spin 1.4s linear infinite;
}
@keyframes gear-spin {
  to {
    transform: rotate(360deg);
  }
}
.loader-logo-text {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-primary-dark);
  letter-spacing: -0.5px;
}
.loader-bar-wrap {
  width: 200px;
  height: 4px;
  background: rgba(42, 159, 99, 0.15);
  border-radius: 4px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(
    90deg,
    var(--color-primary-dark),
    var(--color-secondary)
  );
  border-radius: 4px;
  animation: loader-fill 1.8s ease-out forwards;
}
@keyframes loader-fill {
  0% { width: 0; }
  60% { width: 75%; }
  100% { width: 100%; }
}
.loader-tagline {
  font-size: 13px;
  color: var(--color-text-muted);
  animation: pulse-text 1.2s ease-in-out infinite;
}
@keyframes pulse-text {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  font-family: var(--font-family-main);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  border: none;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}
.btn-primary {
  background: var(--color-primary-dark);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(62, 180, 137, 0.35);
}
.btn-primary:hover {
  background: #34a87e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(62, 180, 137, 0.45);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-white {
  background: var(--color-white);
  color: var(--color-primary-dark);
  box-shadow: 0 4px 14px rgba(62, 180, 137, 0.35);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(206, 208, 207, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--color-primary-dark);
  border: 2px solid var(--color-primary-dark);
  padding: 10px 26px;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
}
.btn-outline:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}
.btn-outline:active {
  transform: translateY(0);
}

/* --- NAVBAR --- */
.navbar {
  width: 100%;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: var(--z-navbar);
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo img {
  height: 98px;
  width: auto;
  object-fit: contain;
}


@media (max-width: 768px) {
  .logo-mobile { font-size: 18px; }
  .logo-garage { font-size: 18px; }
  .logo img { height: 60px; }
}

.nav-menu {
  display: flex;
  gap: 32px;
}
.nav-menu a {
  text-decoration: none;
  color: var(--color-text-main);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-fast);
  position: relative;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--color-primary-dark);
  border-radius: 2px;
  transition: width var(--transition-normal);
}
.nav-menu a:hover { color: var(--color-primary); }
.nav-menu a:hover::after { width: 100%; }
.nav-menu a.active { color: var(--color-primary-dark); }
.nav-menu a.active::after { width: 100%; }
.nav-menu-cta { display: none; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: white;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column; 
  gap: 4px;
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast);
}
.nav-toggle:hover {
  border-color: var(--color-primary-dark);
  transform: translateY(-1px);
}
.nav-toggle-bar {
  width: 18px;
  height: 2px;
  background: var(--color-text-main);
  border-radius: 2px;
  transition:
    transform var(--transition-normal),
    opacity var(--transition-normal);
}
.navbar.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.navbar.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.navbar.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.nav-btn {
  display: flex;
  align-items: center;
}

@media (max-width: 900px) {
  .nav-wrapper { position: relative; }
  .nav-toggle { display: inline-flex; }
  .nav-btn { display: none; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column; 
    gap: 0;
    background: white;
    border: 1px solid var(--color-border);
    border-left: none;
    border-right: none;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    padding: 10px var(--space-lg) 18px;
    z-index: var(--z-dropdown);
  }
  .navbar.nav-open .nav-menu { display: flex; }
  .nav-menu a { padding: 12px 6px; }
  .nav-menu a::after { display: none; }
  .nav-menu-cta {
    display: inline-flex;
    margin-top: 8px;
    width: fit-content;
  }
}

/* --- Utilities --- */
.bg-light { background: var(--color-background); }
.bg-white { background: var(--color-white); }

/* --- Page hero + breadcrumb --- */
.page-hero {
  background: linear-gradient(
    135deg,
    rgba(42, 159, 99, 0.08) 0%,
    rgba(98, 210, 143, 0.04) 100%
  );
  border-bottom: 1px solid var(--color-border);
  padding: 56px 0;
}
.page-hero-content h1 {
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.1;
}
.page-hero-content p {
  max-width: 62ch;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 14px;
  color: var(--color-text-muted);
}
.breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.breadcrumb a:hover { color: var(--color-primary-dark); }
.breadcrumb-sep { opacity: 0.65; }
.breadcrumb span:last-child {
  color: var(--color-text-main);
  font-weight: 600;
}

/* --- SECTION REVEAL --- */
.js-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background-image: url("/images/bg.png");
  background-size: cover;
  background-position: center -80px;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    1200px 520px at 12% 40%,
    rgba(248, 250, 252, 0.92) 0%,
    rgba(248, 250, 252, 0.68) 38%,
    rgba(248, 250, 252, 0) 72%
  );
}
.hero-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}
.hero-text h1 {
  font-size: 56px;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #0b2f1c;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}
.hero-text p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: rgba(15, 23, 42, 0.76);
  max-width: 500px;
  line-height: 1.45;
}
.hero-buttons { display: flex; gap: 16px; }
.hero-clouds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-images {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 520px;
  bottom: -120px;
}
.hero-figure {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column; 
  align-items: center;
  cursor: pointer;
  transition: z-index 0s;
}
.hero-figure--mechanic {
  left: -20px;
  z-index: 3;
  animation: float-a 4.2s ease-in-out infinite;
}
.hero-figure--plumber {
  left: 200px;
  z-index: 2;
  animation: float-b 5.1s ease-in-out infinite;
  animation-delay: -1.5s;
}
.hero-figure--electrician {
  left: 100px;
  z-index: 1;
  animation: float-c 4.7s ease-in-out infinite;
  animation-delay: -3s;
}
@keyframes float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(-8px); }
  50% { transform: translateY(14px); }
}
@keyframes float-c {
  0%, 100% { transform: translateY(6px); }
  50% { transform: translateY(-18px); }
}
.home-image {
  width: 420px;
  height: 420px;
  object-fit: contain;
  transition: filter var(--transition-normal);
  will-change: filter;
  -webkit-user-drag: none;
  user-select: none;
}
.hero-images:hover .hero-figure {
  filter: brightness(0.55) saturate(0.6);
}
.hero-images:hover .hero-figure:hover {
  filter: none;
  z-index: 10;
  animation-play-state: paused;
}
.hero-images:hover .hero-figure:hover .home-image {
  filter: drop-shadow(0 30px 40px rgba(42, 159, 99, 0.45)) brightness(1.06);
}
.hero-label {
  background: white;
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(42, 159, 99, 0.25);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  margin-top: 8px;
  white-space: nowrap;
  pointer-events: none;
}
.hero-figure:hover .hero-label {
  opacity: 1;
  transform: translateY(0);
}
.cloud {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.5;
  filter: drop-shadow(0 12px 22px rgba(15, 23, 42, 0.08));
  will-change: transform;
  user-select: none;
}
@media (max-width: 900px) {
  .hero-wrapper { grid-template-columns: 1fr; }
  .hero-images { margin-top: 40px; height: 440px; max-width: 440px; }
  .home-image { width: 340px; height: 340px; }
}
@media (max-width: 700px) {
  .hero {
    min-height: auto;
    padding: 92px 0 56px;
    background-position: center top;
  }
  .hero-wrapper { gap: 26px; }
  .hero-text h1 { font-size: 40px; }
  .hero-text p { font-size: 16px; max-width: 42ch; line-height: 1.5; }
  .hero-images { display: none; }
}

/* --- APP SHOWCASE --- */
.app-showcase {
  background: linear-gradient(
    135deg,
    rgba(152, 255, 153, 0.16),
    rgba(98, 210, 143, 0.08) 45%,
    #f8fafc 100%
  );
  text-align: center;
}
.section-header { max-width: 760px; margin: 0 auto 50px; }
.section-header h2 { font-size: 32px; margin-bottom: 10px; line-height: 1.2; }
.section-header p { color: var(--color-text-muted); margin-bottom: 0; line-height: 1.6; }
.app-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}
.app-features {
  text-align: left;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 26px 24px;
  transition:
    box-shadow var(--transition-normal),
    transform var(--transition-normal);
}
.app-features:hover {
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  transform: translateY(-3px);
}
.app-features h3 { margin-bottom: 20px; font-size: 20px; color: var(--color-text-main); }
.provider-title { color: var(--color-primary-dark); }
.app-features ul { list-style: none; }
.app-features li {
  margin-bottom: 12px;
  padding-left: 22px;
  position: relative;
  color: var(--color-text-main);
  line-height: 1.55;
}
.app-features li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  color: var(--color-primary-dark);
  font-size: 14px;
}
.app-images {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 18px;
}
.phone {
  width: 220px;
  border-radius: 30px;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
  will-change: transform;
}
.app-images .phone--left { transform: rotate(-6deg) translateY(6px); }
.app-images .phone--right { transform: rotate(6deg) translateY(-6px); }
.app-images .phone:hover {
  transform: translateY(-14px) rotate(0deg) scale(1.04);
  box-shadow: 0 24px 50px rgba(42, 159, 99, 0.22);
}
@keyframes phone-breathe {
  0%, 100% { box-shadow: 0 12px 30px rgba(42, 159, 99, 0.12); }
  50% { box-shadow: 0 20px 40px rgba(42, 159, 99, 0.22); }
}
.app-images .phone--left { animation: phone-breathe 3s ease-in-out infinite; }
.app-images .phone--right { animation: phone-breathe 3s ease-in-out infinite; animation-delay: -1.5s; }
.app-images .phone:hover { animation: none; }
.app-bottom { display: flex; justify-content: center; gap: 200px; margin-top: 40px; }
.app-bottom h4 { font-size: 18px; margin-bottom: 5px; }
.app-bottom p { color: var(--color-text-muted); font-size: 14px; line-height: 1.5; }
@media (max-width: 1000px) {
  .app-content { grid-template-columns: 1fr; gap: 28px; }
  .app-images { order: 2; }
  .app-bottom { flex-direction: column; gap: 18px; align-items: center; } /* FIXED: was row */
}
@media (max-width: 700px) {
  .app-content { display: block; }
  .app-features { display: none; }
  .app-bottom { display: none; }
  .app-images {
    padding: 10px 6px 6px;
    overflow-x: auto;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
  }
  .phone {
    flex: 0 0 82%;
    width: auto;
    max-width: 280px;
    scroll-snap-align: center;
    transform: none !important;
    animation: none !important;
  }
}

/* --- SERVICES --- */
.services { text-align: center; background: #f8fafc; }
.services-header h2 { font-size: 32px; margin-bottom: 40px; }
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.service-card {
  position: relative;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
  will-change: transform;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(62, 180, 137, 0.15);
  z-index: 2;
}
.service-card:focus-visible {
  outline: 3px solid rgba(62, 180, 137, 0.35);
  outline-offset: 4px;
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .service-card, .service-card::after { transition: none; }
}
.service-card img { width: 100%; max-width: 120px; margin-bottom: 15px; }
.service-card h3 { font-size: 18px; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: #64748b; }
@media (max-width: 700px) {
  .services-header h2 { margin-bottom: 22px; }
  .services-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 6px 6px 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .service-card { flex: 0 0 78%; max-width: 300px; scroll-snap-align: center; }
}

/* --- COVERAGE --- */
.coverage { background: #f8fafc; text-align: center; }
.coverage-header h2 { font-size: 32px; margin-bottom: 10px; }
.coverage-header p { color: #64748b; margin-bottom: 50px; }
.coverage-content { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; }
.coverage-map img { width: 100%; max-width: 500px; }
.coverage-team img { width: 100%; max-width: 420px; }

/* --- HOW IT WORKS --- */
.how-it-works { text-align: center; background: #f8fafc; }
.how-it-works .section-header h2 { font-size: 32px; margin-bottom: 10px; }
.how-it-works .section-header p { color: var(--color-text-muted); margin-bottom: 40px; }
.steps-line {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 30px;
  position: relative;
}
.steps-line::before {
  content: "";
  position: absolute;
  top: 20px;
  width: 80%;
  height: 2px;
  background: #d1d5db;
  z-index: 0;
}
.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(62, 180, 137, 0.15);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
  cursor: pointer;
}
.step-circle:hover, .step-circle.active {
  transform: scale(1.18);
  box-shadow: 0 0 0 7px rgba(62, 180, 137, 0.22);
  background: var(--color-secondary);
}
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.step-card {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
  will-change: transform;
  cursor: pointer;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(62, 180, 137, 0.12);
}
.step-img-wrap {
  display: inline-block;
  border-radius: 12px;
  padding: 6px;
  margin-bottom: 14px;
  outline: 2.5px dashed transparent;
  outline-offset: 4px;
  transition: outline-color 0.3s ease;
}
.step-card:hover .step-img-wrap, .step-card.active .step-img-wrap {
  outline-color: var(--color-primary-dark);
  animation: dash-pulse 2s ease-in-out infinite;
}
@keyframes dash-pulse {
  0%, 100% { outline-color: var(--color-primary-dark); transform: scale(1); }
  50% { outline-color: var(--color-secondary); transform: scale(1.07); }
}
.step-card img { width: 100%; max-width: 120px; display: block; }
.step-card h3 { font-size: 18px; margin-bottom: 6px; }
.step-card p { font-size: 14px; color: #64748b; }
@media (max-width: 700px) {
  .steps-line { display: none; }
  .steps-grid {
    display: flex;
    flex-direction: column; 
    gap: 14px;
    max-width: 520px;
    margin: 0 auto;
  }
  .step-card { position: relative; text-align: left; padding-left: 62px; }
  .step-card::before {
    content: attr(data-step);
    position: absolute;
    left: 18px;
    top: 18px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-dark);
    color: white;
    font-weight: 700;
    box-shadow: 0 0 0 4px rgba(62, 180, 137, 0.15);
  }
  .step-img-wrap { margin: 0 0 10px; }
}

/* --- DOWNLOAD APP --- */
.ssd-image { height: 360px; transition: transform 0.3s ease; width: 50%; }
.ssd-image:hover { transform: scale(1.05); }
.download-app { background: #f8fafc; }
.download-wrapper { display: flex; align-items: center; }
.download-images { position: relative; height: 500px; display: flex; justify-content: center; }
.dl-phone {
  position: absolute;
  width: 200px;
  border-radius: 28px;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}
.dl-phone--left { left: 40px; bottom: 0; transform: rotate(-7deg); z-index: 2; box-shadow: 0 24px 50px rgba(0, 0, 0, 0.15); }
.dl-phone--right { right: 40px; bottom: 60px; transform: rotate(7deg); z-index: 1; box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1); }
.dl-phone--left:hover { transform: rotate(0deg) translateY(-16px) scale(1.04); box-shadow: 0 34px 60px rgba(42, 159, 99, 0.25); z-index: 5; }
.dl-phone--right:hover { transform: rotate(0deg) translateY(-16px) scale(1.04); box-shadow: 0 34px 60px rgba(42, 159, 99, 0.25); z-index: 5; }
.download-badge {
  display: inline-block;
  background: rgba(42, 159, 99, 0.1);
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.download-content h2 { font-size: 34px; margin-bottom: 15px; line-height: 1.2; }
.download-content p { color: #64748b; margin-bottom: 25px; max-width: 420px; line-height: 1.65; }
.qr-box { margin-bottom: 22px; }
.qr-box img {
  width: 140px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  padding: 8px;
  background: white;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}
.qr-box img:hover { transform: scale(1.06); box-shadow: var(--shadow-md); }
.store-buttons { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.store-buttons img { height: 45px; transition: transform var(--transition-fast), opacity var(--transition-fast); }
.store-buttons img:hover { transform: translateY(-2px); opacity: 0.88; }
@media (max-width: 900px) {
  .download-wrapper {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  .download-content p { margin-left: auto; margin-right: auto; }
  .download-images { height: 360px; }
  .dl-phone { width: 160px; }
  .dl-phone--left { left: 20px; }
  .dl-phone--right { right: 20px; }
}
@media (max-width: 700px) {
  .ssd-image { display: none; }
}

/* --- WORK WITH US --- */
.work-with-us {
  position: relative;
  background: var(--color-primary-dark);
  color: white;
  text-align: center;
  padding: 100px 20px;
  overflow: hidden;
}
.work-with-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(98, 210, 143, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.work-particles { position: absolute; inset: 0; pointer-events: none; }
.js-reveal-work .work-content {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-reveal-work.revealed .work-content { opacity: 1; transform: translateY(0); }
.work-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 16px;
}
.work-content { position: relative; z-index: 1; }
.work-content h2 { font-size: 40px; margin-bottom: 16px; line-height: 1.15; }
.work-content p { max-width: 600px; margin: 0 auto 32px; font-size: 18px; color: rgba(255, 255, 255, 0.85); }
.cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.work-with-us .btn-primary {
  background: white;
  color: var(--color-primary-dark);
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-family-main);
  font-size: var(--font-size-md);
  display: inline-block;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.work-with-us .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); }
.work-with-us .btn-outline {
  border: 2px solid white;
  color: white;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--font-family-main);
  font-weight: 600;
  font-size: var(--font-size-md);
  display: inline-block;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.work-with-us .btn-outline:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }
.work-stats { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 48px; }
.wstat {
  display: flex;
  flex-direction: column; /* FIXED: was row */
  align-items: center;
}
.wstat strong { font-size: 26px; font-weight: 700; color: white; }
.wstat span { font-size: 13px; color: rgba(255, 255, 255, 0.7); margin-top: 2px; }
.wstat-divider { width: 1px; height: 36px; background: rgba(255, 255, 255, 0.2); }
@keyframes float-orb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.04); }
}

/* --- DOWNLOAD MODAL --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box {
  background: white;
  border-radius: 24px;
  padding: 44px 40px 36px;
  text-align: center;
  max-width: 400px;
  width: 92%;
  position: relative;
  transform: scale(0.88) translateY(24px);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
}
.modal-overlay.active .modal-box { transform: scale(1) translateY(0); }
.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 26px;
  color: #94a3b8;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast), transform var(--transition-fast);
  padding: 4px 8px;
  border-radius: 6px;
}
.modal-close-btn:hover { color: var(--color-text-main); transform: scale(1.1); }
.modal-icon { width: 48px; height: 48px; margin: 0 auto 18px; }
.modal-icon svg { width: 48px; height: 48px; }
.modal-box h3 { font-size: 22px; font-weight: 700; color: var(--color-text-main); margin-bottom: 8px; }
.modal-box > p { font-size: 14px; color: var(--color-text-muted); margin-bottom: 22px; line-height: 1.55; }
.modal-qr { margin-bottom: 22px; }
.modal-qr img {
  width: 160px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  padding: 10px;
  background: white;
  box-shadow: var(--shadow-md);
}
.modal-store-btns { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.modal-store-btns img { height: 40px; border-radius: 8px; transition: transform var(--transition-fast); }
.modal-store-btns img:hover { transform: translateY(-2px); }

/* --- FOOTER --- */
.footer { background: white; border-top: 1px solid var(--color-border); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 48px;
}
.footer-grid.footer-grid--3 { grid-template-columns: 1.6fr 1fr 1.4fr; }
.footer-logo { font-size: 22px; font-weight: 700; color: var(--color-primary-dark); margin-bottom: 14px; letter-spacing: -0.3px; }
.footer-desc { font-size: 14px; color: var(--color-text-muted); line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  text-decoration: none;
  transition:
    border-color var(--transition-fast),
    color var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast);
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover {
  border-color: var(--color-primary-dark);
  color: var(--color-primary-dark);
  background: rgba(42, 159, 99, 0.06);
  transform: translateY(-2px);
}
.footer-col-title { font-size: 14px; font-weight: 700; color: var(--color-text-main); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 18px; }
.footer-links-col ul { list-style: none; }
.footer-links-col li { margin-bottom: 11px; }
.footer-links-col a {
  text-decoration: none;
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-block;
}
.footer-links-col a:hover { color: var(--color-primary-dark); padding-left: 4px; }
.footer-contact ul { list-style: none; }
.footer-contact li { margin-bottom: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--color-text-muted); line-height: 1.5; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--color-primary-dark); }
.footer-app-links { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.footer-store-img { height: 36px; border-radius: 6px; transition: transform var(--transition-fast); }
.footer-store-img:hover { transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid var(--color-border); background: #f8fafc; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 13px; color: var(--color-text-muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: var(--color-text-muted); text-decoration: none; transition: color var(--transition-fast); }
.footer-bottom-links a:hover { color: var(--color-primary-dark); }
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid.footer-grid--3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid.footer-grid--3 { grid-template-columns: 1fr; }
  .footer-bottom-inner {
    flex-direction: column; 
    text-align: center;
  }
}

/* --- STATS --- */
.stats { background: var(--color-primary-dark); color: white; text-align: center; padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.stat-card h2 { font-size: 40px; font-weight: 700; color: white; }
.stat-card p { margin-top: 8px; font-size: 16px; color: rgba(255, 255, 255, 0.85); }