:root {
  --ink: #1e2a32;
  --muted: #5f6b73;
  --line: #e3e7ea;
  --bg: #f6f7f8;
  --brand: #0f5069;
  --brand-dark: #0b3f53;
  --accent: #2794b6;
  --white: #fff;
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
a { color: var(--brand); }
.container { width: min(1100px, calc(100% - 32px)); margin: 0 auto; }

/* Header – like the shop: white bar, logo left, title centered */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 6px 0;
}
.logo-link { display: inline-flex; }
.logo { height: 72px; width: auto; display: block; }
.site-title { font-size: 24px; font-weight: 700; letter-spacing: -.01em; text-align: center; }
.language-nav { display: flex; justify-content: flex-end; gap: 8px; }
.language-nav a {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 7px 12px;
  min-width: 44px;
  text-align: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  transition: .15s ease;
}
.language-nav a:hover { border-color: var(--brand); }
.language-nav a[aria-current="page"] { background: var(--brand); border-color: var(--brand); color: #fff; }

/* Cards – like "Choose your country" box on the shop */
main { padding: 32px 0 24px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 28px;
  margin-bottom: 24px;
}
.section-title {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 14px;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.01em;
}
.section-title::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 92px; height: 3px;
  background: var(--brand);
}
.eyebrow {
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.lead { margin: 0 0 24px; max-width: 760px; font-size: 17px; color: #3c4750; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px;
  margin-bottom: 26px;
}
.product-item {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 12px 14px;
  font-weight: 600;
  font-size: 15px;
}
.product-item svg { width: 18px; height: 18px; fill: none; stroke: var(--brand); stroke-width: 2; stroke-linecap: round; flex: none; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stat { background: var(--bg); border-radius: 6px; padding: 14px 16px; }
.stat strong { display: block; color: var(--brand); font-size: 16px; margin-bottom: 2px; }
.stat span { font-size: 13.5px; color: var(--muted); }

.cta { text-align: center; padding: 40px 28px; }
.cta .section-title::after { left: 50%; transform: translateX(-50%); }
.cta p { margin: 0 auto 24px; max-width: 620px; color: #3c4750; }
.button {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brand); color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 700;
  transition: .15s ease;
}
.button:hover { background: var(--brand-dark); }
.arrow { font-size: 20px; line-height: 1; }
.hero-action { margin: 0 0 28px; }
.shop-host { margin-top: 12px; font-size: 13px; color: var(--muted); }

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .header-inner { grid-template-columns: auto 1fr; }
  .site-title { display: none; }
  .language-nav { justify-content: flex-end; }
  .card { padding: 22px 18px; }
  .stats { grid-template-columns: 1fr; }
  .button { width: 100%; justify-content: center; }
}
