:root {
  --site-bg: #F6F8F7;
  --site-surface: #FFFFFF;
  --brand: #0B6B5A;
  --text: #14211F;
  --text-muted: #5D6B68;
  --brand-soft: #E7F3F0;
  --bg: var(--site-bg);
  --surface: var(--site-surface);
  --muted: var(--text-muted);
  --border: #e3e8f2;
  --accent: var(--brand);
  --accent-dark: #0f5148;
  --soft: var(--brand-soft);
  --shadow: 0 20px 50px rgba(23, 32, 51, 0.08);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}
.logo { display: flex; align-items: center; color: var(--text); font-weight: 800; }
.logo:hover { text-decoration: none; }
.logo-image { display: block; width: auto; height: 84px; }
.nav { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; font-size: 15px; }
.nav a { color: var(--text); }
.nav-cta { padding: 10px 14px; border-radius: 12px; background: var(--accent); color: white !important; }
.nav-cta:hover { background: var(--accent-dark); text-decoration: none; }
.hero, .section { padding: clamp(46px, 7vw, 96px) clamp(20px, 5vw, 72px); }
.hero { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr); gap: 52px; align-items: center; }
.eyebrow { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 16px; }
h1 { font-size: clamp(36px, 6vw, 64px); letter-spacing: -0.04em; }
h2 { font-size: clamp(28px, 4vw, 42px); letter-spacing: -0.03em; }
h3 { font-size: 22px; }
p { margin: 0 0 18px; }
.lead { font-size: clamp(18px, 2vw, 22px); color: var(--muted); max-width: 760px; }
.hero-card { background: var(--surface); border: 1px solid var(--border); border-radius: 28px; padding: 22px; box-shadow: var(--shadow); }
.label-preview { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 18px; aspect-ratio: 3 / 2; display: grid; grid-template-columns: 120px 1fr; gap: 18px; align-items: center; }
.datamatrix { width: 110px; height: 110px; background-image: linear-gradient(90deg, #111 50%, transparent 50%), linear-gradient(#111 50%, transparent 50%); background-size: 14px 14px; border: 8px solid #111; }
.label-lines span { display: block; height: 12px; margin: 12px 0; border-radius: 999px; background: #dce4ee; }
.label-lines span:nth-child(1) { width: 92%; }
.label-lines span:nth-child(2) { width: 74%; }
.label-lines span:nth-child(3) { width: 85%; }
.barcode { height: 58px; margin-top: 18px; background: repeating-linear-gradient(90deg, #111 0 2px, transparent 2px 5px, #111 5px 7px, transparent 7px 11px); }
.actions, .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 13px 18px; border-radius: 14px; font-weight: 700; border: 1px solid var(--border); }
.button:hover { text-decoration: none; }
.button.primary { background: var(--accent); color: white; border-color: var(--accent); }
.button.primary:hover { background: var(--accent-dark); }
.button.secondary { background: white; color: var(--text); }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 24px; box-shadow: 0 8px 28px rgba(23,32,51,.04); }
.muted { color: var(--muted); }
.steps { counter-reset: step; display: grid; gap: 16px; }
.step { counter-increment: step; display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 18px; }
.step:before { content: counter(step); display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--soft); color: var(--accent); font-weight: 800; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 18px 20px; margin-bottom: 12px; }
.faq summary { font-weight: 700; cursor: pointer; }
.cta-block { margin: clamp(42px, 6vw, 76px) clamp(20px, 5vw, 72px); padding: clamp(30px, 6vw, 54px); border-radius: 30px; background: var(--accent); color: white; }
.cta-block p { color: rgba(255,255,255,.86); }
.cta-block .button.primary { background: white; color: var(--accent); border-color: white; }
.cta-block .button.secondary { background: transparent; color: white; border-color: rgba(255,255,255,.4); }
.content { max-width: 900px; padding: clamp(42px, 7vw, 84px) clamp(20px, 5vw, 72px); }
.content h1 { font-size: clamp(34px, 5vw, 52px); }
.content h2 { margin-top: 34px; }
.content ul { padding-left: 22px; }
.legal-content { max-width: 980px; }
.legal-content section { margin-top: 34px; }
.legal-content p { color: var(--text); }
.legal-content li { margin-bottom: 8px; color: var(--text); }
.price-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 28px; }
.price { background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 26px; }
.price strong { font-size: 32px; display: block; margin: 12px 0; }
.site-footer { padding: 36px clamp(20px, 5vw, 72px); background: #101827; color: #d9e0ee; display: grid; grid-template-columns: 1fr auto; gap: 20px; }
.footer-version { display: block; margin-top: 8px; color: #aeb8cc; font-size: 13px; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { color: #d9e0ee; }
.disclaimer { grid-column: 1 / -1; color: #aeb8cc; font-size: 14px; margin: 0; }
.cookie-banner { position: fixed; left: clamp(16px, 4vw, 40px); right: clamp(16px, 4vw, 40px); bottom: 18px; z-index: 30; display: flex; align-items: center; justify-content: space-between; gap: 18px; max-width: 1080px; margin: 0 auto; padding: 18px; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; color: var(--muted); }
.cookie-banner .button { flex: 0 0 auto; cursor: pointer; }
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .grid, .price-grid { grid-template-columns: 1fr; }
  .site-header, .site-footer { grid-template-columns: 1fr; }
  .site-header { align-items: flex-start; }
  .logo-image { height: 72px; }
  .nav { gap: 12px; }
  .cookie-banner { align-items: stretch; flex-direction: column; }
}
