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

:root {
  --green-dark: #163d1e;
  --green: #2a7a38;
  --green-light: #4caf5a;
  --green-pale: #e8f5eb;
  --amber: #f5a623;
  --amber-dark: #c47d0e;
  --amber-pale: #fff8e8;
  --text: #0f2014;
  --text-mid: #3d5942;
  --text-muted: #7a9680;
  --border: #d4e6d8;
  --white: #ffffff;
  --bg: #f4faf5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.hero {
  background: var(--green-dark);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    radial-gradient(circle at 20% 50%, #4caf5a 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, #f5a623 0%, transparent 40%);
}

.hero-content { position: relative; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #a8ddb5;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 7px; height: 7px;
  background: #4caf5a;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.hero h1 .accent { color: #7ed87e; }

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  margin-bottom: 2rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
}

.stores {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
}

.section-header { text-align: center; margin-bottom: 2rem; }

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 6px;
}

.section-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 580px) {
  .cards { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
}

.card {
  background: var(--white);
  border-radius: 20px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
  color: inherit;
}

.card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(22,61,30,0.12); }
.card.metro:hover { border-color: var(--green-light); }
.card.bonus:hover { border-color: var(--amber); }

.card-top { padding: 1.5rem 1.5rem 0; }

.card-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.card-icon img {
  display: block;
  width: 90%;
}

.card.metro .card-icon { background: var(--green-pale); }
.card.bonus .card-icon { background: var(--amber-pale); }

.card-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.card-type {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.card-cities {
  display: flex;
  gap: 6px;
  margin-bottom: 1rem;
}

.city-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
}

.card.metro .city-tag { background: var(--green-pale); color: var(--green); }
.card.bonus .city-tag { background: var(--amber-pale); color: var(--amber-dark); }

.card-body { padding: 0 1.5rem 1rem; flex: 1; }

.card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.tags { display: flex; flex-wrap: wrap; gap: 6px; }

.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}

.tag-green { background: var(--green-pale); color: var(--green); }
.tag-amber { background: var(--amber-pale); color: var(--amber-dark); }

.card-footer {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid #f0f5f1;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: -0.2px;
  transition: opacity 0.15s, transform 0.12s;
}

.btn:hover { opacity: 0.92; transform: scale(0.99); }
.btn-green { background: var(--green-dark); color: #fff; }
.btn-amber { background: var(--amber); color: var(--green-dark); }
.btn svg { width: 16px; height: 16px; fill: currentColor; }

.stats { max-width: 820px; margin: 0 auto; padding: 0 1.5rem 3rem; }

.stats-grid {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.stat {
  text-align: center;
  padding: 1.25rem 1rem;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat-n {
  font-size: 24px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.stat-l { font-size: 12px; color: var(--text-muted); margin-top: 3px; font-weight: 500; }

.why { max-width: 820px; margin: 0 auto; padding: 0 1.5rem 3rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.why-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.why-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.why-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.why-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

footer {
  background: var(--green-dark);
  padding: 1.5rem 2rem;
  text-align: center;
}

footer p { font-size: 13px; color: rgba(255,255,255,0.4); }
footer a { color: #7ed87e; text-decoration: none; font-weight: 600; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 20px;
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  font-weight: 400;
  font-size: 15px;
  transition: opacity 0.15s;
}

.footer-links a:hover { opacity: 0.6; }

/* ABOUT */
.about {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.about-box {
  background: var(--green-dark);
  border-radius: 16px;
  padding: 2rem 2rem 2rem;
  color: rgba(255,255,255,0.85);
}

.about-box h2 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.3px;
}

.about-box p {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 0.6rem;
}

.about-box a {
  color: #7ed87e;
  text-decoration: none;
  font-weight: 600;
}

.about-box a:hover { text-decoration: underline; }

/* FAQ */
.faq {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-q:hover { background: var(--bg); }

.faq-chevron {
  width: 18px;
  height: 18px;
  fill: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 0 1.25rem 1rem;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}

.faq-item.open .faq-a { display: block; }

.lang-switch {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 3px;
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s, background 0.15s;
}

.lang-switch a:hover { color: #fff; }
.lang-switch a[aria-current="page"] {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

@media (max-width: 580px) {
  .lang-switch { top: 1rem; right: 1rem; }
}
