/* Ecomartkit Vitrine — Design System (restored) */
:root {
  --green-950: #0a1f1a;
  --green-900: #0f2e26;
  --green-800: #164a3c;
  --green-700: #1a5c4a;
  --green-600: #1e6b56;
  --green-500: #228b6b;
  --green-400: #2da87e;
  --green-300: #4ec49a;
  --green-200: #8dddbd;
  --green-100: #c5f0dc;
  --green-50: #e8faf2;
  --cream: #faf8f5;
  --cream-dark: #f3efe9;
  --white: #ffffff;
  --ink: #0f1a17;
  --ink-soft: #3d4f48;
  --ink-muted: #6b7c75;
  --border: #e2e8e5;
  --border-strong: #c5d0cb;
  --urgent: #e07a3d;
  --approach: #d4a017;
  --normal: #2da87e;
  --critical: #c44536;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font-sans);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(15, 26, 23, 0.06);
  --shadow: 0 4px 20px rgba(15, 26, 23, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 26, 23, 0.12);
  --shadow-xl: 0 24px 60px rgba(15, 26, 23, 0.16);
  --container: 1120px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { width: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; }
.text-accent { color: var(--green-600); }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}
.btn-primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--green-800);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: var(--white);
  color: var(--green-800);
  border: 1.5px solid var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--green-600);
  color: var(--green-700);
}
.btn-ghost {
  color: var(--ink-soft);
  padding: 10px 16px;
}
.btn-ghost:hover { color: var(--green-700); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img { display: block; height: auto; max-width: 100%; }
.logo-img-header { width: 210px; height: auto; flex-shrink: 0; }
.logo-img-footer { width: 150px; height: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 12px;
}
.nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.15s;
}
.nav a:hover { color: var(--green-700); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.lang-switch {
  display: flex;
  background: var(--cream-dark);
  border-radius: 999px;
  padding: 3px;
}
.lang-btn {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-muted);
}
.lang-btn.active {
  background: var(--white);
  color: var(--green-800);
  box-shadow: var(--shadow-sm);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  margin-right: -4px;
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--cream);
  z-index: 99;
  padding: 32px 24px;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}
.mobile-nav-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Hero */
.hero {
  padding: 48px 0 80px;
  overflow: visible;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 0 rgba(34, 139, 107, 0.4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 139, 107, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(34, 139, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 139, 107, 0); }
}
.hero-lead {
  font-size: 1.125rem;
  color: var(--ink-soft);
  margin: 20px 0 28px;
  max-width: 36em;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.trust-item strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
}
.trust-item span {
  font-size: 0.8125rem;
  color: var(--ink-muted);
}
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.phone-mockup {
  width: 300px;
  background: var(--green-900);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-xl);
}
.phone-screen {
  background: var(--cream);
  border-radius: 28px;
  padding: 16px;
  min-height: 520px;
}
.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.8125rem;
  font-weight: 600;
}
.phone-header .location { color: var(--ink-muted); font-weight: 500; }
.search-bar {
  background: var(--cream-dark);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-bottom: 14px;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chip {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink-soft);
}
.chip.active {
  background: var(--green-700);
  color: var(--white);
  border-color: var(--green-700);
}
.product-card {
  display: flex;
  gap: 12px;
  background: var(--white);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.product-emoji {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.product-title { font-weight: 600; font-size: 0.875rem; }
.product-meta { font-size: 0.75rem; color: var(--ink-muted); }
.product-price { font-weight: 700; color: var(--green-700); font-size: 0.9375rem; }
.product-price s { color: var(--ink-muted); font-weight: 500; margin-left: 4px; font-size: 0.8125rem; }
.product-days {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--urgent);
  background: #fff5ee;
  padding: 3px 8px;
  border-radius: 6px;
  height: fit-content;
}
.impact-tag {
  margin-top: 12px;
  text-align: center;
  padding: 8px;
  background: var(--green-50);
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-800);
}
.floating-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: var(--white);
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  font-size: 0.8125rem;
  font-weight: 600;
}

/* Sections */
.section { padding: 88px 0; }
.section-header { margin-bottom: 48px; max-width: 640px; }
.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-600);
  margin-bottom: 12px;
}
.answer-block {
  font-size: 1.125rem;
  color: var(--ink-soft);
  margin-top: 16px;
  line-height: 1.7;
}
.section-alt { background: var(--white); }

/* Availability */
.availability { background: var(--green-50); }
.availability-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.city-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.city-card.live { border-color: var(--green-200); }
.city-status {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-600);
  margin-bottom: 6px;
}
.city-card:not(.live) .city-status { color: var(--ink-muted); }
.city-card strong { display: block; font-size: 1rem; }
.city-card span:last-child { font-size: 0.8125rem; color: var(--ink-muted); }

/* Mission */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.mission-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.mission-card p { color: var(--ink-soft); margin-top: 10px; font-size: 0.9375rem; }
.quote-block {
  margin-top: 48px;
  padding: 32px;
  background: var(--green-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
}
.quote-block footer { margin-top: 16px; opacity: 0.7; font-size: 0.875rem; }

/* How */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
}
.step p { color: var(--ink-soft); margin-top: 10px; font-size: 0.9375rem; }

/* Transparency */
.urgency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.urgency-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1px solid var(--border);
  text-align: center;
}
.urgency-label { font-weight: 700; font-size: 1.125rem; margin-bottom: 4px; }
.urgency-range { font-size: 0.8125rem; color: var(--ink-muted); margin-bottom: 12px; }
.urgency-card p { font-size: 0.875rem; color: var(--ink-soft); }
.urgency-card.normal .urgency-label { color: var(--normal); }
.urgency-card.approach .urgency-label { color: var(--approach); }
.urgency-card.urgent .urgency-label { color: var(--urgent); }
.urgency-card.critical .urgency-label { color: var(--critical); }

/* Join / Roles */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.role-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.role-card.featured {
  border-color: var(--green-400);
  box-shadow: var(--shadow);
}
.role-card p { color: var(--ink-soft); margin: 12px 0 20px; flex: 1; }
.role-card .btn { align-self: flex-start; }
.role-note { font-size: 0.8125rem; color: var(--ink-muted); margin-top: 12px; }

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
}
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.feature p { color: var(--ink-soft); margin-top: 8px; font-size: 0.9375rem; }

/* Impact */
.impact-teaser {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.impact-stat { text-align: center; min-width: 140px; }
.stat-value {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--green-700);
  letter-spacing: -0.03em;
}
.stat-label { font-size: 0.9375rem; color: var(--ink-muted); margin-top: 4px; }
.impact-note {
  margin-top: 28px;
  font-size: 0.875rem;
  color: var(--ink-muted);
}

/* Business */
.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.business-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--border);
}
.business-icon {
  font-size: 1.75rem;
  margin-bottom: 14px;
}
.business-card p { color: var(--ink-soft); margin-top: 10px; font-size: 0.9375rem; }
.who-sells {
  margin-top: 40px;
  padding: 40px;
  background: var(--green-50);
  border-radius: var(--radius-lg);
  text-align: center;
}
.who-sells ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin: 20px 0 28px;
}
.who-sells li {
  font-weight: 500;
  color: var(--ink-soft);
}
.who-sells li::before {
  content: "✓ ";
  color: var(--green-600);
  font-weight: 700;
}

/* FAQ */
.faq-list { max-width: 720px; margin-top: 36px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-answer { padding: 0 24px 20px; color: var(--ink-soft); font-size: 0.9375rem; }

/* App */
.app {
  background: var(--green-900);
  color: var(--white);
  padding: 72px 0;
}
.app-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.app .eyebrow { color: var(--green-300); }
.app h2 { color: var(--white); }
.app p { opacity: 0.85; margin: 16px 0 28px; }
.app-badge {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-weight: 600;
}

/* Footer */
.footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p { margin-top: 16px; font-size: 0.9375rem; opacity: 0.7; max-width: 280px; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-links h4 {
  color: var(--white);
  font-size: 0.875rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-links a {
  display: block;
  font-size: 0.9375rem;
  opacity: 0.7;
  margin-bottom: 10px;
  transition: opacity 0.15s;
}
.footer-links a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  font-size: 0.8125rem;
  opacity: 0.5;
  text-align: center;
}

/* Responsive */
@media (max-width: 960px) {
  .container { padding: 0 20px; }
  .nav, .header-actions .btn-ghost { display: none; }
  .header-actions .btn-primary { display: none; }
  .menu-toggle { display: flex; }
  .header-inner { gap: 8px; min-width: 0; width: 100%; }
  .header-actions { gap: 6px; flex-shrink: 0; margin-left: auto; }
  .lang-switch { transform: scale(0.9); flex-shrink: 0; }
  .logo-img-header { width: min(155px, 42vw); }
  .hero { padding: 28px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-content { order: 1; }
  .hero-visual { order: 2; }
  .phone-mockup { width: min(280px, 85vw); margin: 0 auto; }
  .floating-badge { display: none; }
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .availability-inner { grid-template-columns: 1fr; gap: 28px; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-grid, .steps, .roles-grid, .features-grid, .business-grid { grid-template-columns: 1fr; }
  .urgency-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-teaser { gap: 28px; flex-wrap: wrap; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .hero { padding: 24px 0 40px; }
  .hero-lead { font-size: 1.05rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero-trust { flex-direction: column; gap: 14px; }
  .phone-mockup { width: min(260px, 88vw); }
  .section { padding: 48px 0; }
  .section-header h2 { font-size: 1.65rem; }
  .answer-block { font-size: 1rem; }
  .cities-grid, .urgency-grid { grid-template-columns: 1fr; }
  .impact-teaser { flex-direction: column; gap: 20px; }
  .stat-value { font-size: 2.1rem; }
  .role-card, .mission-card, .feature { padding: 24px 20px; }
  .who-sells { padding: 28px 20px; }
  .footer { padding-top: 48px; }
  .footer-links { grid-template-columns: 1fr; }
}
@media (max-width: 380px) {
  .logo-img-header { width: min(130px, 40vw); }
  .badge-live { font-size: 0.75rem; padding: 6px 12px; }
  h1 { font-size: 1.85rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
