:root {
  --primary: #13863b;        /* shamrock green */
  --primary-dark: #0b5c29;
  --accent: #e52626;         /* red L plate */
  --bg: #f5f7fb;
  --bg-soft: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.16);
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 0 0, #ecfdf3, #f5f7fb);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(209, 213, 219, 0.6);
  position: sticky;
  top: 0;
  z-index: 20;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-text {
  font-weight: 700;
  font-size: 18px;
}

.lang-links {
  display: inline-flex;
  gap: 6px;
  padding: 3px;
  border-radius: var(--radius-pill);
  background: #e5f4ea;
}

.lang-links a {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  color: #14532d;
  text-decoration: none;
}

.lang-links a.active {
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.16);
}

main {
  padding: 28px 0 40px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 40px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  border: 1px solid rgba(34, 197, 94, 0.25);
  background: rgba(220, 252, 231, 0.85);
  color: #166534;
  margin-bottom: 10px;
}

.hero-badge span.icon {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--accent);
  display: inline-block;
}

.hero h1 {
  font-size: clamp(26px, 3vw, 32px);
  margin-bottom: 10px;
}

.hero-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-list {
  list-style: none;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-list li {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.hero-list li span.icon {
  font-size: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(21, 128, 61, 0.35);
}

.btn-primary:hover {
  opacity: 0.96;
  text-decoration: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}

.hero-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.hero-card {
  background: radial-gradient(circle at 0% 0%, #dcfce7, #ffffff);
  border-radius: var(--radius-lg);
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.hero-card-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.hero-card-title h2 {
  font-size: 16px;
}

.hero-tag {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  background: rgba(220, 252, 231, 0.9);
  color: #166534;
  border: 1px solid rgba(34, 197, 94, 0.4);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  font-size: 12px;
  margin-bottom: 12px;
}

.hero-stat {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 8px 10px;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.hero-stat-label {
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 2px;
}

.hero-stat-value {
  font-weight: 600;
}

.hero-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

section {
  margin-bottom: 32px;
}

section h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.section-muted {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.card {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 14px 14px 16px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.card p,
.card ul {
  font-size: 13px;
  color: var(--muted);
}

.card ul {
  list-style: none;
  margin-top: 6px;
}

.card ul li {
  margin-bottom: 4px;
}

.faq {
  border-top: 1px solid var(--border);
}

.faq-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.faq-question {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.faq-answer {
  font-size: 13px;
  color: var(--muted);
}

.page-narrow {
  max-width: 800px;
  margin: 0 auto;
}

footer {
  border-top: 1px solid var(--border);
  padding: 16px 0 24px;
  font-size: 12px;
  color: var(--muted);
}

footer a {
  color: var(--muted);
  text-decoration: underline;
}

.hero-list .icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url(/assets/checkmark.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

/* optional: smaller icon in other lists if needed */
.card .icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  background-image: url("/assets/icons/checkmark.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}