/* ==============================
   OZOMINS — LANDING PAGE STYLES
   ============================== */

/* ─── NAVBAR ─────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 13, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--eco-border);
  padding: 12px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav__logo {
  width: 38px;
  height: 38px;
  background: var(--grad-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow-sm);
}

.nav__logo-icon { font-size: 1.2rem; }

.nav__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  text-decoration: none;
}

.nav__link:hover { color: var(--text-primary); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

/* ─── HERO ───────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,83,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,83,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  padding: var(--space-8) var(--space-5);
  position: relative;
  z-index: 1;
}

.hero__left {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.hero__headline {
  line-height: 1.02;
}

.hero__desc {
  max-width: 480px;
}

.hero__desc strong { color: var(--eco-green); font-weight: 500; }

.hero__cta {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  margin-top: var(--space-3);
}

.hero__stat { display: flex; flex-direction: column; gap: 2px; }

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--eco-green);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--eco-border);
}

/* ─── PHONE MOCKUP ────────────── */
.hero__right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__phone {
  width: 290px;
  background: #0D1A0D;
  border-radius: 44px;
  border: 2px solid rgba(0,200,83,0.25);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  overflow: hidden;
  position: relative;
  animation: float-phone 4s ease-in-out infinite;
}

@keyframes float-phone {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.phone__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px 8px;
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.phone__notch {
  width: 80px;
  height: 8px;
  background: #000;
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
}

.phone__status {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-secondary);
}

.phone__screen {
  padding: 8px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* App elements inside phone */
.app__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app__location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.app__avatar {
  width: 28px;
  height: 28px;
  background: var(--grad-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #000;
}

.app__search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--eco-border);
  border-radius: var(--radius-full);
  padding: 8px 12px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.app__banner {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,200,83,0.1);
  border: 1px solid rgba(0,200,83,0.2);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: 0.68rem;
  color: var(--eco-green);
  font-weight: 600;
}

.app__banner-dot {
  width: 6px;
  height: 6px;
  background: var(--eco-green);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.app__section-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.app__service {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.app__service--active {
  background: rgba(0,200,83,0.15);
  border-color: rgba(0,200,83,0.3);
}

.app__service:hover {
  background: rgba(0,200,83,0.1);
  border-color: rgba(0,200,83,0.2);
}

.app__service-icon { font-size: 1.2rem; }

.app__service span {
  font-size: 0.58rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.app__worker-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--eco-border);
  border-radius: var(--radius-md);
  padding: 8px 10px;
}

.app__worker-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #00C853, #00E676);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #000;
  position: relative;
  flex-shrink: 0;
}

.app__worker-avatar--b {
  background: linear-gradient(135deg, #7C4DFF, #b388ff);
}

.app__worker-online {
  position: absolute;
  bottom: 0; right: 0;
  width: 8px; height: 8px;
  background: var(--eco-green);
  border-radius: 50%;
  border: 1.5px solid var(--eco-surface);
}

.app__worker-info { flex: 1; min-width: 0; }

.app__worker-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app__worker-meta {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-top: 1px;
}

.app__book-btn {
  padding: 5px 10px;
  background: var(--grad-green);
  color: #000;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.app__book-btn:hover { transform: scale(1.05); }

.phone__navbar {
  display: flex;
  border-top: 1px solid var(--eco-border);
  padding: 8px 0;
  background: var(--eco-surface);
}

.phone__nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 0.55rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.phone__nav-item--active {
  color: var(--eco-green);
}

/* Floating cards */
.hero__float {
  position: absolute;
  background: rgba(22, 28, 22, 0.95);
  border: 1px solid var(--eco-border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  font-weight: 600;
  animation: float-card 5s ease-in-out infinite;
  z-index: 10;
}

.hero__float--1 {
  top: 60px; right: -30px;
  animation-delay: 0.5s;
}

.hero__float--2 {
  bottom: 140px; left: -40px;
  animation-delay: 1.5s;
}

.hero__float--3 {
  bottom: 60px; right: -40px;
  animation-delay: 2.5s;
}

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

.hero__float-icon { font-size: 1.2rem; }

.hero__float-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
}

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

.hero__float-track {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--eco-green);
}

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

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: bounce-down 2s ease-in-out infinite;
  cursor: pointer;
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

@media (max-width: 900px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-7) var(--space-4);
  }
  .hero__desc, .hero__cta, .hero__stats { margin: 0 auto; }
  .hero__cta, .hero__stats { justify-content: center; }
  .hero__right { order: -1; }
  .hero__phone { width: 240px; }
  .hero__float { display: none; }
}

/* ─── TRUST SECTION ──────────── */
.trust {
  background: var(--eco-surface);
  border-top: 1px solid var(--eco-border);
  border-bottom: 1px solid var(--eco-border);
}

.trust__label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.trust__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.trust__logo {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}

.trust__logo:hover { color: var(--eco-green); }

/* ─── SECTION HEADER ─────────── */
.section__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

/* ─── SERVICES ───────────────── */
.services { background: var(--eco-dark); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.service-card {
  background: var(--grad-card);
  border: 1px solid var(--eco-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  animation-delay: var(--delay, 0s);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-green);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: rgba(0,200,83,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), var(--shadow-glow-sm);
}

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

.service-card--emergency { border-color: rgba(255,23,68,0.2); }
.service-card--emergency::before { background: linear-gradient(90deg, #FF1744, #FF5252); }
.service-card--emergency:hover { border-color: rgba(255,23,68,0.4); box-shadow: var(--shadow-md), 0 0 20px rgba(255,23,68,0.15); }

.service-card--subscription { border-color: rgba(0,200,83,0.2); }

.service-card__top-badge {
  position: absolute;
  top: 14px; right: 14px;
  padding: 3px 10px;
  background: var(--grad-green);
  color: #000;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
}

.service-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(0,200,83,0.12);
  border: 1px solid rgba(0,200,83,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.service-card:hover .service-card__icon-wrap {
  background: rgba(0,200,83,0.2);
  transform: scale(1.05);
}

.service-card__icon-wrap--b { background: rgba(255,213,0,0.1); border-color: rgba(255,213,0,0.2); }
.service-card__icon-wrap--c { background: rgba(105,240,174,0.1); border-color: rgba(105,240,174,0.2); }
.service-card__icon-wrap--d { background: rgba(0,176,255,0.1); border-color: rgba(0,176,255,0.2); }
.service-card__icon-wrap--e { background: rgba(255,23,68,0.1); border-color: rgba(255,23,68,0.2); }
.service-card__icon-wrap--f { background: rgba(124,77,255,0.1); border-color: rgba(124,77,255,0.2); }

.service-card__icon { font-size: 1.75rem; }

.service-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.service-card__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
}

.service-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.service-card__eta {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.service-card__cta {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--eco-green);
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-card__cta:hover { gap: 8px; }
.service-card__cta--emergency { color: #FF5252; }

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

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

/* ─── HOW IT WORKS ───────────── */
.hiw { background: var(--eco-surface); }

.hiw__steps {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.hiw__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
}

.hiw__step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.hiw__connector {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: var(--space-2);
  padding-top: 30px;
  flex-shrink: 0;
}

.hiw__connector-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--eco-green), transparent);
}

.hiw__connector-arrow {
  font-size: 1.2rem;
  color: var(--eco-green);
}

@media (max-width: 768px) {
  .hiw__steps { flex-direction: column; }
  .hiw__connector { flex-direction: row; padding-top: 0; }
  .hiw__connector-line { width: 30px; }
}

/* Tracking card */
.hiw__tracking {
  max-width: 560px;
  margin: 0 auto;
}

.tracking-card {
  background: var(--grad-card);
  border: 1px solid var(--eco-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}

.tracking-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--eco-border);
}

.tracking-card__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--text-primary);
}

.tracking-card__dot {
  width: 10px;
  height: 10px;
  background: var(--eco-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--eco-green);
  animation: pulse-dot 1.2s ease-in-out infinite;
}

.tracking-card__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tracking-event {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: 10px 0;
  position: relative;
}

.tracking-event:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 10px;
  top: 30px;
  width: 1px;
  height: calc(100% - 10px);
  background: var(--eco-border);
}

.tracking-event--done::after { background: var(--eco-green) !important; opacity: 0.4; }

.tracking-event__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--eco-border);
  background: var(--eco-surface);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}

.tracking-event__dot--done {
  background: var(--eco-green);
  border-color: var(--eco-green);
}

.tracking-event__dot--active {
  border-color: var(--eco-green);
  box-shadow: 0 0 12px rgba(0,200,83,0.5);
  animation: pulse-ring 1.5s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,200,83,0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(0,200,83,0); }
}

.tracking-event__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

.tracking-event__label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.tracking-event--active .tracking-event__label,
.tracking-event--done .tracking-event__label {
  color: var(--text-primary);
}

.tracking-event--active .tracking-event__label { color: var(--eco-green); font-weight: 600; }

.tracking-event__time {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─── IMPACT ─────────────────── */
.impact { background: var(--eco-dark); }

.impact__stat { text-align: center; }

.impact__stat-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: var(--space-2);
}

.impact__stat-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* Compare table */
.compare {
  margin-top: var(--space-9);
}

.compare__table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--eco-border);
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare__table th,
.compare__table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--eco-border);
}

.compare__table th:first-child,
.compare__table td:first-child {
  text-align: left;
  color: var(--text-secondary);
  font-weight: 500;
}

.compare__table thead th {
  background: var(--eco-surface);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.compare__th-eco {
  color: var(--eco-green) !important;
  background: rgba(0,200,83,0.08) !important;
}

.compare__eco {
  background: rgba(0,200,83,0.05);
}

.compare__table tbody tr:last-child td { border-bottom: none; }
.compare__table tbody tr:hover td { background: rgba(255,255,255,0.02); }

/* ─── WORKER SECTION ─────────── */
.worker-section { background: var(--eco-surface); }

.worker-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.worker-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin: var(--space-5) 0;
}

.worker-benefit {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.worker-phone {
  background: var(--eco-card);
  border: 1px solid var(--eco-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: var(--shadow-lg), var(--shadow-glow-sm);
}

.worker-phone__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--eco-border);
}

.worker-job-card {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--eco-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  transition: all 0.3s;
}

.worker-job-card:hover {
  border-color: rgba(0,200,83,0.2);
  background: rgba(0,200,83,0.05);
}

.worker-job__icon { font-size: 1.5rem; }

.worker-job__info { flex: 1; }

.worker-job__title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.worker-job__meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.worker-job__actions {
  display: flex;
  gap: var(--space-2);
}

.worker-phone__earnings {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,200,83,0.08);
  border: 1px solid rgba(0,200,83,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.worker-phone__amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--eco-green);
}

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

/* ─── TESTIMONIALS ───────────── */
.testimonials { background: var(--eco-dark); }

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.testimonial-card__stars { font-size: 1rem; }

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

/* ─── CTA SECTION ────────────── */
.cta-card {
  background: linear-gradient(135deg, #0D1A0D 0%, #0A1205 100%);
  border: 1px solid rgba(0,200,83,0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-9) var(--space-5);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.cta-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-card__btns {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-5);
}

/* ─── FOOTER ─────────────────── */
.footer {
  background: var(--eco-surface);
  border-top: 1px solid var(--eco-border);
  padding: var(--space-8) 0 var(--space-5);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-6);
}

.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.footer__social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--eco-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--text-secondary);
}

.footer__social-link:hover {
  background: rgba(0,200,83,0.1);
  border-color: rgba(0,200,83,0.3);
  color: var(--eco-green);
  transform: translateY(-2px);
}

.footer__links-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__group-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer__link {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
  text-decoration: none;
}

.footer__link:hover { color: var(--eco-green); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer__legal {
  display: flex;
  gap: var(--space-5);
}

@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
}

@media (max-width: 600px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__legal { gap: var(--space-4); }
}

/* ─── APP SHOWCASE (SNABBIT STYLE) ─── */
.app-showcase {
  background: var(--eco-dark);
  overflow: hidden;
}

.app-showcase__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-8);
  align-items: center;
}

.app-showcase__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.app-showcase__trust {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-4) 0;
  border-top: 1px solid var(--eco-border);
  border-bottom: 1px solid var(--eco-border);
}

.app-showcase__rating {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rating-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.rating-stars { font-size: 0.8rem; }
.rating-count { font-size: 0.75rem; color: var(--text-muted); }

.app-showcase__divider {
  width: 1px;
  height: 50px;
  background: var(--eco-border);
}

.app-showcase__badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.badge-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,213,0,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.badge-title { font-weight: 700; font-size: 0.9rem; color: var(--text-primary); }
.badge-sub { font-size: 0.75rem; color: var(--text-muted); }

.app-showcase__downloads {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-4);
}

.download-qr {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.qr-box {
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-box img { width: 100%; height: auto; }
.qr-text { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }

.download-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #000;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 8px 16px;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
}

.store-btn:hover {
  background: #111;
  border-color: var(--eco-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,200,83,0.1);
}

.store-btn span { font-size: 0.65rem; display: block; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.05em; }
.store-btn strong { font-size: 1rem; font-weight: 600; }

.app-showcase__visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.mockup-container {
  position: relative;
}

.mockup-phone {
  width: 320px;
  height: 640px;
  background: #000;
  border: 8px solid #1a1a1a;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0,0,0,0.5);
}

.mockup-screen {
  width: 100%;
  height: 100%;
  position: relative;
}

.mockup-float {
  position: absolute;
  background: rgba(22,28,22,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--eco-border);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--eco-green);
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.mockup-float--1 { top: 15%; right: -20px; animation: float 4s ease-in-out infinite; }
.mockup-float--2 { bottom: 20%; left: -30px; animation: float 4s ease-in-out infinite 1s; }

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

@media (max-width: 900px) {
  .app-showcase__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .app-showcase__content { align-items: center; }
  .app-showcase__trust { justify-content: center; }
  .app-showcase__downloads { flex-direction: column; gap: var(--space-5); }
  .mockup-phone { width: 280px; height: 560px; }
}
