/* ── Barmio landing page ─────────────────────────────────────────────────────
   Standalone stylesheet (the app's style.css is NOT loaded here).

   Palette, typography and shapes are taken from the printed Barmio flyer, so
   the page and the leaflet a bar owner is handed read as one product: cream
   paper, navy ink, a single green accent and amber reserved for "zdarma".
   The dark app screenshots sit on the cream as objects — same as on the flyer.
   Slovak-first, EN via the small toggle in the nav. */

:root {
  --paper:     #fbf9f5;   /* sampled from the flyer */
  --paper-2:   #f4f2ea;   /* alternating band */
  --card:      #fff;
  --ink:       #131a31;   /* headlines, navy bands */
  --body:      #4d5670;   /* 6.9:1 on paper */
  --muted:     #646c86;   /* 4.8:1 on paper */
  --line:      #e5e3da;   /* hairlines on paper */
  --line-card: #e7e8ec;
  --green:     #167a48;   /* 5.1:1 as text, 5.4:1 behind white */
  --green-dk:  #0f5c36;
  --green-lt:  #4fc98d;   /* green that survives the navy band */
  --mint:      #e9f3ed;
  --amber:     #f5a524;
  --on-dark:   #dfe3ee;
  --on-dark-2: #97a0bc;
  --radius:    16px;
  --radius-sm: 10px;
  --focus:     #1a5490;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--body);
  font-family: Mulish, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

h1, h2, h3, h4, h5, .ld-logo, .ld-price-num {
  font-family: Figtree, Mulish, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  letter-spacing: -.028em;
  line-height: 1.08;
}

/* Focus ring — light everywhere, pale blue on the navy bands. */
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 4px; }
.ld-price :focus-visible,
.ld-footer :focus-visible { outline-color: #93c9f7; }

.ld-skip {
  position: absolute; left: -9999px; top: 8px;
  background: var(--ink); color: #fff; padding: 10px 18px;
  border-radius: var(--radius-sm); font-weight: 700; z-index: 200;
}
.ld-skip:focus { left: 12px; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.ld-btn-primary {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 18px rgba(22, 122, 72, .22);
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.ld-btn-primary:hover {
  background: var(--green-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(22, 122, 72, .28);
}
.ld-btn-sm    { padding: 10px 18px; font-size: .92rem; border-radius: 8px; box-shadow: none; white-space: nowrap; }
.ld-btn-block { display: block; text-align: center; }
.ld-btn-outline {
  display: inline-block;
  border: 1.5px solid rgba(19, 26, 49, .24);
  color: var(--ink);
  font-weight: 700;
  font-size: 1rem;
  padding: 13.5px 28px;
  border-radius: var(--radius-sm);
  transition: background .15s ease, border-color .15s ease;
}
.ld-btn-outline:hover { background: #fff; border-color: rgba(19, 26, 49, .45); }
.ld-btn-ghost { color: var(--muted); font-weight: 700; font-size: .92rem; padding: 8px 10px; }
.ld-btn-ghost:hover { color: var(--ink); }

/* ── Icons ──────────────────────────────────────────────────────────────── */
.icon { width: 1em; height: 1em; display: block; flex: none; }
.icon-inline { display: inline-block; vertical-align: -.14em; }

/* ── Nav ────────────────────────────────────────────────────────────────── */
.ld-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 249, 245, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.ld-nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 13px 24px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.ld-logo { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; font-size: 1.2rem; }
.ld-nav-links { display: flex; gap: 24px; margin-left: 10px; }
.ld-nav-links a { color: var(--muted); font-weight: 700; font-size: .93rem; }
.ld-nav-links a:hover { color: var(--ink); }
.ld-nav-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.ld-lang {
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--muted);
  font-weight: 800;
  font-size: .78rem;
  padding: 6px 11px;
  border-radius: 8px;
  cursor: pointer;
}
.ld-lang:hover { color: var(--ink); border-color: rgba(19, 26, 49, .3); }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.ld-hero { padding: 76px 24px 0; text-align: center; }
.ld-hero-inner { max-width: 860px; margin: 0 auto; }
.ld-eyebrow {
  color: var(--green);
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .17em;
}
.ld-hero h1 {
  margin-top: 18px;
  font-size: clamp(2.7rem, 8.2vw, 5rem);
  font-weight: 900;
  line-height: .99;
  letter-spacing: -.038em;
}
.ld-hero h1 em { font-style: normal; color: var(--green); }
.ld-hero-sub {
  margin: 26px auto 0;
  max-width: 620px;
  font-size: 1.16rem;
  color: var(--body);
}
.ld-hero-ctas { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ld-hero-note { margin-top: 20px; color: var(--muted); font-size: .89rem; }
.ld-hero-shot { max-width: 1080px; margin: 34px auto 0; padding: 0 4px; }

/* ── Trust strip ────────────────────────────────────────────────────────── */
.ld-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); margin-top: 26px; }
.ld-strip-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ld-strip-item {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  color: var(--ink); font-weight: 700; font-size: .93rem;
}
.ld-strip-item .icon { font-size: 1.25rem; color: var(--green); }

/* ── Section heads ──────────────────────────────────────────────────────── */
.ld-section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; padding: 0 24px; }
.ld-section-head .ld-eyebrow { display: block; margin-bottom: 14px; }
.ld-section-head h2 { font-size: clamp(1.9rem, 4.4vw, 2.7rem); font-weight: 900; }
.ld-section-head p { margin-top: 16px; color: var(--body); font-size: 1.06rem; }

/* ── Module grid (the flyer's 3×3) ──────────────────────────────────────── */
.ld-modules { padding: 96px 0 0; }
.ld-mod-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 44px;
}
.ld-mod { display: grid; grid-template-columns: auto 1fr; gap: 14px; }
.ld-mod .icon { font-size: 1.5rem; color: var(--green); margin-top: 2px; }
.ld-mod h3 { font-size: 1.12rem; font-weight: 800; }
.ld-mod p { color: var(--muted); font-size: .94rem; line-height: 1.5; margin-top: 2px; }

/* ── Feature blocks ─────────────────────────────────────────────────────── */
.ld-features { padding: 92px 0 30px; }
.ld-feature {
  max-width: 1040px;
  margin: 0 auto;
  padding: 44px 24px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.ld-feature-rev .ld-feature-text { order: 2; }
.ld-feature-rev .ld-feature-shot { order: 1; }
.ld-feature-icon {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--mint);
  color: var(--green);
  margin-bottom: 18px;
}
.ld-feature-icon .icon { font-size: 1.55rem; }
.ld-feature-text h3 { font-size: clamp(1.5rem, 3vw, 1.85rem); font-weight: 900; }
.ld-feature-text > p { margin-top: 14px; font-size: 1.04rem; }
.ld-feature-text ul { margin-top: 20px; list-style: none; }
.ld-feature-text li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 11px;
  color: var(--ink);
  font-weight: 600;
  font-size: .98rem;
}
.ld-feature-text li .icon {
  position: absolute; left: 0; top: .18em;
  font-size: 1.25rem;
  color: var(--green);
}
.ld-feature-shot { display: flex; justify-content: center; }
.ld-phone {
  width: min(288px, 76vw);
  border: 9px solid var(--ink);
  border-radius: 40px;
  background: var(--ink);
  box-shadow: 0 26px 56px rgba(19, 26, 49, .20);
}
.ld-phone img { border-radius: 31px; }

/* ── Card grid ──────────────────────────────────────────────────────────── */
.ld-more { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 92px 0; }
.ld-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ld-card {
  background: var(--card);
  border: 1px solid var(--line-card);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: 0 1px 2px rgba(19, 26, 49, .04), 0 10px 24px rgba(19, 26, 49, .05);
  transition: transform .15s ease, box-shadow .15s ease;
}
.ld-card:hover { transform: translateY(-3px); box-shadow: 0 2px 4px rgba(19, 26, 49, .05), 0 16px 34px rgba(19, 26, 49, .09); }
.ld-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.ld-card-chip {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--mint);
  color: var(--green);
}
.ld-card-chip .icon { font-size: 1.3rem; }
.ld-card h3 { font-size: 1.2rem; font-weight: 800; }
.ld-card p { color: var(--body); font-size: .96rem; }

/* ── How it works ───────────────────────────────────────────────────────── */
.ld-how { padding: 92px 0; }
.ld-steps {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ld-step {
  background: var(--card);
  border: 1px solid var(--line-card);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 1px 2px rgba(19, 26, 49, .04), 0 10px 24px rgba(19, 26, 49, .05);
}
.ld-step span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--ink);
  color: #fff;
  font-family: Figtree, sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.ld-step h3 { font-size: 1.14rem; font-weight: 800; margin-bottom: 9px; }
.ld-step p { color: var(--body); font-size: .96rem; }

/* ── Pricing (the flyer's navy band) ────────────────────────────────────── */
.ld-price { background: var(--ink); color: var(--on-dark); padding: 84px 24px; }
.ld-price-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.ld-price-chip {
  display: inline-block;
  border: 1.5px solid var(--amber);
  color: var(--amber);
  font-weight: 800;
  font-size: .95rem;
  padding: 9px 20px;
  border-radius: 8px;
}
.ld-price-num {
  margin-top: 22px;
  color: #fff;
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 6.4rem);
  line-height: .92;
  letter-spacing: -.045em;
}
.ld-price-num sup { font-size: .42em; font-weight: 800; vertical-align: .75em; margin-right: .04em; }
.ld-price-num sub {
  font-family: Mulish, sans-serif;
  font-size: .22em;
  font-weight: 600;
  color: var(--on-dark-2);
  letter-spacing: 0;
  vertical-align: baseline;
}
.ld-price-desc { margin-top: 14px; color: var(--on-dark); font-size: 1.05rem; max-width: 30ch; }
.ld-price-cta { margin-top: 28px; }
.ld-price-note { margin-top: 14px; color: var(--on-dark-2); font-size: .88rem; }
.ld-price h2 { color: #fff; font-size: 1.35rem; font-weight: 800; margin-bottom: 18px; }
.ld-price-list { list-style: none; }
.ld-price-list li {
  position: relative;
  padding: 11px 0 11px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  font-size: .97rem;
}
.ld-price-list li:last-child { border-bottom: none; }
.ld-price-list li .icon {
  position: absolute; left: 0; top: .82em;
  font-size: 1.25rem;
  color: var(--green-lt);
}

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.ld-faq { padding: 92px 24px; }
.ld-faq-list { max-width: 740px; margin: 0 auto; }
.ld-faq details {
  background: var(--card);
  border: 1px solid var(--line-card);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.ld-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 54px 18px 22px;
  font-family: Figtree, sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  position: relative;
}
.ld-faq summary::-webkit-details-marker { display: none; }
.ld-faq summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 1.4rem;
  font-weight: 600;
  transition: transform .2s ease;
}
.ld-faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.ld-faq details p { padding: 0 22px 20px; font-size: .97rem; }

/* ── Final CTA ──────────────────────────────────────────────────────────── */
.ld-cta {
  text-align: center;
  padding: 88px 24px;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}
.ld-cta h2 { font-size: clamp(1.9rem, 4.4vw, 2.6rem); font-weight: 900; }
.ld-cta p { margin: 16px auto 30px; max-width: 540px; font-size: 1.05rem; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.ld-footer { background: var(--ink); color: var(--on-dark-2); padding: 60px 24px 30px; }
.ld-footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  /* brand + Produkt / Účet / Kontakt / Právne */
  grid-template-columns: 2fr 1fr 1fr 1.1fr 1.2fr;
  gap: 32px;
}
.ld-footer .ld-logo { color: #fff; }
.ld-footer-brand p { font-size: .92rem; margin-top: 12px; max-width: 24ch; }
.ld-footer-col h3 {
  color: #fff;
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 15px;
}
.ld-footer-col a { display: block; color: var(--on-dark-2); font-size: .93rem; margin-bottom: 10px; }
.ld-footer-col a:hover { color: #fff; }
.ld-footer-col .ld-contact { color: var(--amber); font-weight: 700; display: flex; align-items: center; gap: 8px; }
.ld-footer-col .ld-contact:hover { color: #ffc25c; }
.ld-footer-col .ld-contact .icon { font-size: 1.05rem; }
.ld-footer-fine {
  max-width: 1140px;
  margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: .85rem;
}
.ld-footer-fine p { max-width: 74ch; }

/* ── "Čo je Barmio" (/co-je-barmio) ──────────────────────────────────────────
   The explainer page. It reuses the landing's chrome, cards and bands; only
   the shapes that page needs of its own are below. */
.ab-hero { padding-bottom: 8px; }
.ab-hero h1 { font-size: clamp(2.3rem, 6.4vw, 3.9rem); }

.ab-section { padding: 84px 24px; }
.ab-section-top { padding-top: 56px; }

/* Answer-first block: the five questions someone actually arrives with,
   answered before the page starts explaining itself. */
.ab-summary {
  max-width: 780px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line-card);
  border-radius: var(--radius);
  padding: 30px 32px;
  box-shadow: 0 1px 2px rgba(19, 26, 49, .04), 0 10px 24px rgba(19, 26, 49, .05);
}
.ab-summary-title {
  font-size: .78rem;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .17em;
  margin-bottom: 18px;
}
.ab-sum-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 8px 24px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.ab-sum-row:first-of-type { border-top: none; padding-top: 0; }
.ab-sum-row dt { font-family: Figtree, Mulish, sans-serif; font-weight: 800; color: var(--ink); }
.ab-sum-row dd { color: var(--body); }

/* Prose at a measure — this is the one part of the site that is read rather
   than scanned, so it gets a column narrow enough to read. */
.ab-prose { max-width: 68ch; margin: 0 auto; }
.ab-prose p { font-size: 1.07rem; margin-bottom: 18px; }
.ab-prose p:last-child { margin-bottom: 0; }
.ab-prose strong { color: var(--ink); font-weight: 800; }
.ab-note {
  border-left: 3px solid var(--green);
  background: var(--mint);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin-top: 26px;
}

.ab-who-note {
  max-width: 720px;
  margin: 28px auto 0;
  padding: 0 24px;
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
}
.ab-who-note a { color: var(--green); text-decoration: underline; }

/* Day in the life. The rail is a border on the <ol>, so it stops exactly at
   the last item instead of dangling past it. */
.ab-day {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 0 0;
  list-style: none;
}
.ab-day li {
  position: relative;
  padding: 0 0 34px 34px;
  border-left: 2px solid var(--line);
}
.ab-day li:last-child { padding-bottom: 0; border-left-color: transparent; }
.ab-day li::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--paper);
}
.ab-day-when {
  display: block;
  color: var(--green);
  font-weight: 800;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 6px;
}
.ab-day h3 { font-size: 1.22rem; font-weight: 800; margin-bottom: 8px; }
.ab-day p { color: var(--body); font-size: 1rem; }

/* What it is not. Deliberately not red: these are boundaries, not faults. */
.ab-not {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 44px;
}
.ab-not-item { display: grid; grid-template-columns: auto 1fr; gap: 14px; }
.ab-not-item > .icon { font-size: 1.45rem; color: var(--muted); margin-top: 3px; }
.ab-not-item h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.ab-not-item p { color: var(--body); font-size: .96rem; }

/* Screenshot strip on the explainer. Reuses .ld-phone but pins the frames to
   the grid track instead of letting each one take its own width — three
   phones of three different sizes read as three mock-ups, not one product. */
.ab-shots-section { padding-top: 0; }
.ab-shots {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.ab-shots figure { margin: 0; }
.ab-shots .ld-phone { width: 100%; max-width: 250px; margin: 0 auto; }
.ab-shots figcaption {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.5;
}

.ab-need { border-top: none; border-bottom: none; padding-top: 0; }
.ab-need .ld-mod p { font-size: .96rem; }

.ab-trust {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
  list-style: none;
}
.ab-trust li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  font-size: 1rem;
}
.ab-trust li:first-child { border-top: none; }
.ab-trust .icon { font-size: 1.3rem; color: var(--green); margin-top: 2px; }

/* Closing band — the flyer's navy footer, one more time. */
.ab-cta { background: var(--ink); color: var(--on-dark); padding: 84px 24px; text-align: center; }
.ab-cta-inner { max-width: 640px; margin: 0 auto; }
.ab-cta h2 { color: #fff; font-size: clamp(1.8rem, 4.2vw, 2.5rem); font-weight: 900; margin-top: 22px; }
.ab-cta p { margin-top: 16px; color: var(--on-dark); font-size: 1.05rem; }
.ab-cta-btns { margin-top: 30px; display: flex; gap: 20px; align-items: center; justify-content: center; flex-wrap: wrap; }
.ab-cta-alt { color: var(--on-dark-2); font-weight: 700; text-decoration: underline; }
.ab-cta-alt:hover { color: #fff; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .ld-mod-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-not { grid-template-columns: 1fr; gap: 22px; }
  .ab-shots { gap: 24px; }
  .ld-grid     { grid-template-columns: repeat(2, 1fr); }
  .ld-steps    { grid-template-columns: 1fr; }
  .ld-feature  { grid-template-columns: 1fr; gap: 36px; padding: 34px 24px; }
  .ld-feature-rev .ld-feature-text { order: 1; }
  .ld-feature-rev .ld-feature-shot { order: 2; }
  .ld-price-inner { grid-template-columns: 1fr; gap: 40px; }
  .ld-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ld-nav-links, .ld-btn-ghost { display: none; }
  .ab-section { padding: 60px 24px; }
  .ab-summary { padding: 24px 20px; }
  .ab-sum-row { grid-template-columns: 1fr; gap: 4px; }
  .ab-shots { grid-template-columns: 1fr; gap: 40px; }
  .ab-cta { padding: 60px 24px; }
  .ab-cta-btns .ld-btn-primary { width: 100%; text-align: center; }
  /* Three items have to share 375px: shrink them rather than let the CTA
     wrap onto a second line and turn the bar into a block. */
  .ld-nav-inner { padding: 11px 16px; gap: 12px; }
  .ld-logo { font-size: 1.08rem; }
  .ld-lang { font-size: .74rem; padding: 6px 9px; }
  .ld-btn-sm { font-size: .85rem; padding: 9px 14px; }
  .ld-hero { padding-top: 48px; }
  .ld-hero-sub { font-size: 1.04rem; }
  .ld-hero-ctas .ld-btn-primary,
  .ld-hero-ctas .ld-btn-outline { width: 100%; text-align: center; }
  .ld-strip-inner { grid-template-columns: 1fr 1fr; gap: 14px; }
  .ld-strip-item { justify-content: flex-start; }
  .ld-mod-grid { grid-template-columns: 1fr; gap: 24px; }
  .ld-grid { grid-template-columns: 1fr; }
  .ld-modules, .ld-features, .ld-more, .ld-how, .ld-faq { padding-top: 64px; padding-bottom: 64px; }
  .ld-price { padding: 64px 24px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .ld-btn-primary:hover, .ld-card:hover { transform: none; }
}
