:root {
  --brand: #0b6b4f;
  --brand-dark: #084d3a;
  --brand-light: #e7f4ef;
  --accent: #f59e0b;
  --ink: #16221d;
  --muted: #5c6b64;
  --bg: #ffffff;
  --bg-soft: #f4f7f5;
  --line: #e2e8e4;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 107, 79, 0.08);
  --maxw: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "SF Pro", "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* Top bar */
.topbar {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand { font-weight: 700; font-size: 1.15rem; color: var(--brand); }
.lang-toggle {
  display: inline-flex;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: var(--bg-soft);
}
.lang-toggle a {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}
.lang-toggle a.active { background: var(--brand); color: #fff; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 60%, #0d8a66 100%);
  color: #fff;
  padding: 72px 0 80px;
  text-align: center;
}
.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  max-width: 760px;
  margin: 0 auto 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero p.lede {
  font-size: 1.2rem;
  max-width: 620px;
  margin: 0 auto 30px;
  opacity: 0.95;
}
.hero .route {
  display: inline-block;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 28px;
}
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 15px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.05rem;
  transition: transform 0.08s ease, box-shadow 0.08s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #1c1a12; box-shadow: var(--shadow); }
.btn-ghost { background: rgba(255,255,255,0.14); color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); }

/* Sections */
.section { padding: 64px 0; }
.section-alt { background: var(--bg-soft); }
.section h2 {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--brand-dark);
}
.section .sub { color: var(--muted); max-width: 640px; margin-bottom: 36px; }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.card .icon { font-size: 2rem; margin-bottom: 12px; }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--ink); }
.card p { color: var(--muted); font-size: 0.98rem; }

/* Pricing */
.pricing { text-align: center; }
.price-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 760px; margin: 0 auto; }
.price-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); text-align: left; }
.price-card.featured { border: 2px solid var(--brand); }
.price-card .kind { font-weight: 700; color: var(--brand); margin-bottom: 6px; }
.price-card .amount { font-size: 2.4rem; font-weight: 800; color: var(--brand-dark); }
.price-card .amount span { font-size: 1.1rem; color: var(--muted); font-weight: 600; }
.price-card ul { list-style: none; margin-top: 16px; }
.price-card li { padding: 7px 0 7px 26px; position: relative; color: var(--muted); font-size: 0.98rem; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }

.fx-note {
  max-width: 640px;
  margin: 26px auto 0;
  padding: 18px 22px;
  background: var(--brand-light);
  border-radius: var(--radius);
  color: var(--brand-dark);
  font-size: 0.95rem;
  text-align: left;
}

/* Steps */
.steps { counter-reset: step; }
.step { counter-increment: step; }
.step h3::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 1rem;
  margin-right: 10px;
  vertical-align: middle;
}

/* FAQ */
details { border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); margin-bottom: 12px; overflow: hidden; }
summary { cursor: pointer; padding: 18px 22px; font-weight: 700; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--brand); font-weight: 700; }
details[open] summary::after { content: "–"; }
details p { padding: 0 22px 20px; color: var(--muted); }

/* CTA band */
.cta-band { background: var(--brand-dark); color: #fff; text-align: center; padding: 60px 0; }
.cta-band h2 { color: #fff; font-size: 1.9rem; font-weight: 800; margin-bottom: 10px; }
.cta-band p { opacity: 0.9; margin-bottom: 26px; }

/* Footer */
footer { background: var(--ink); color: #cfdbd5; padding: 40px 0; font-size: 0.9rem; }
footer .cols { display: flex; gap: 40px; justify-content: space-between; flex-wrap: wrap; }
footer h4 { color: #fff; margin-bottom: 10px; font-size: 1rem; }
footer a { color: #cfdbd5; }
footer .small { margin-top: 24px; border-top: 1px solid #2a3a33; padding-top: 16px; color: #8b9a93; font-size: 0.8rem; }

.pill-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 20px; }
.pill { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 7px 14px; border-radius: 999px; font-size: 0.85rem; }

@media (max-width: 820px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2rem; }
  .price-cards { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}
