/* ── Design tokens ─────────────────────────────────────────────────── */
:root {
  --accent: #4f46e5;
  --accent-dark: #4338ca;
  --accent-2: #7c3aed;
  --grad-from: #6366f1;
  --grad-to: #8b5cf6;
  --grad: linear-gradient(135deg, var(--grad-from) 0%, var(--grad-to) 100%);
  --ink: #1f2330;
  --muted: #5b6172;
  --line: #e7e8ee;
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --accent-tint: #eef0ff;
  --accent-tint-2: #f3eefe;
  --hero-bg: radial-gradient(120% 90% at 50% 0%, var(--accent-tint) 0%, var(--accent-tint-2) 38%, var(--bg) 78%);
  --ph-bg: #eceef4;
  --ph-bg-2: #e2e5ee;
  --ph-line: #d3d7e2;
  --ph-ink: #9aa1b4;
  --shadow-sm: 0 2px 8px rgba(31, 35, 48, .06);
  --shadow-md: 0 12px 32px rgba(31, 35, 48, .10);
  --shadow-lg: 0 24px 60px rgba(79, 70, 229, .16);
  --ring-accent: 0 0 0 1px rgba(99, 102, 241, .18);
  --radius: 16px;
  --maxw: 1080px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* ── Typography scale ──────────────────────────────────────────────
     Single source of truth for text sizing. Change a role here and it
     applies everywhere that role is used. 1rem = 16px (html default). */
  --fs-caption:  0.8rem;     /* ~13px — chips, legend, lang, captions     */
  --fs-small:    0.9rem;     /* ~14px — eyebrow, small meta               */
  --fs-nav:      0.9375rem;  /* 15px  — header navigation                 */
  --fs-body:     1.0625rem;  /* 17px  — body text (base)                  */
  --fs-body-lg:  1.125rem;   /* 18px  — card names, FAQ Q, USP headings   */
  --fs-intro:    1.1875rem;  /* 19px  — section intros, CTA text          */
  --fs-lead:     1.25rem;    /* 20px  — hero / page lead                  */
  --fs-h3:       1.1875rem;  /* 19px  — h3                                */
  --fs-h2:       clamp(1.5rem, 2.6vw, 1.875rem);  /* 24–30px             */
  --fs-h1:       clamp(2rem, 5vw, 3rem);          /* 32–48px             */
  --fs-hero:     clamp(2rem, 5vw, 3.25rem);       /* 32–52px — hero title */

  /* Font weights — keep headings at semibold/bold; no extrabold. */
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;

  /* Line heights */
  --lh-body:     1.6;
  --lh-snug:     1.3;
  --lh-heading:  1.15;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: var(--lh-body);
  font-size: var(--fs-body);
}

h1, h2, h3 { line-height: var(--lh-heading); letter-spacing: -0.01em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); margin-top: 0; }
h3 { font-size: var(--fs-h3); }

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

img { max-width: 100%; height: auto; }

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

/* ── Header ────────────────────────────────────────────────────────── */
.site-header { border-bottom: 1px solid var(--line); background: var(--bg); }
.site-header__inner { display: flex; align-items: center; gap: 20px; padding-top: 16px; padding-bottom: 16px; }
.brand { font-weight: var(--fw-bold); font-size: var(--fs-body-lg); color: var(--ink); }
.brand:hover { text-decoration: none; }
.nav { display: flex; gap: 22px; margin-left: 8px; }
.nav a { color: var(--ink); font-weight: var(--fw-medium); font-size: var(--fs-nav); }
.nav a:hover { color: var(--accent); text-decoration: underline; }
/* ── Language switcher (flyout menu, endonym labels) ──────────────── */
.lang-switch { position: relative; margin-left: auto; font-size: var(--fs-small); }
.lang-switch__btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer; user-select: none;
  list-style: none; padding: 7px 12px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--bg); color: var(--ink);
  font-weight: var(--fw-semibold); white-space: nowrap;
  transition: border-color .15s, background .15s;
}
.lang-switch__btn::-webkit-details-marker { display: none; }
.lang-switch__btn:hover { border-color: #d9dbf0; background: var(--bg-soft); }
.lang-switch[open] .lang-switch__btn { border-color: var(--accent); }
.lang-switch__chev { color: var(--muted); transition: transform .18s ease; }
.lang-switch[open] .lang-switch__chev { transform: rotate(180deg); }

.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px); z-index: 50;
  min-width: 220px; margin: 0; padding: 6px; list-style: none;
  background: var(--bg); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-md);
  /* Cap the height so the full language list stays on-screen and scrolls. */
  max-height: min(70vh, 420px); overflow-y: auto; overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.lang-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 10px;
  color: var(--ink); font-weight: var(--fw-medium); white-space: nowrap;
}
.lang-item:hover { background: var(--bg-soft); text-decoration: none; }
.lang-item__label { flex: 1; }
.lang-item--current { font-weight: var(--fw-semibold); background: var(--accent-tint); }
.lang-item--current:hover { background: var(--accent-tint); }
.lang-item__check { color: var(--accent); flex: none; }

/* ── Layout sections ───────────────────────────────────────────────── */
main.container { padding-top: 48px; padding-bottom: 64px; }
.section { margin-top: 56px; }
.hero {
  text-align: center;
  padding: clamp(40px, 6vw, 72px) 24px;
  background: var(--hero-bg);
  border-radius: 28px;
}
.hero h1 {
  margin-bottom: 12px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead { font-size: var(--fs-lead); color: var(--muted); margin: 0 auto; max-width: 640px; }

.prose { max-width: 680px; }
.prose p { margin: 0 0 1em; }

/* ── Cards (apps) ──────────────────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; margin-top: 24px; }
.card { display: block; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); box-shadow: var(--shadow-sm); transition: box-shadow .15s, transform .15s; }
.card:hover { text-decoration: none; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card h3 { margin: 12px 0 6px; color: var(--ink); }
.card p { margin: 0; color: var(--muted); }
.card__icon { width: 64px; height: 64px; border-radius: 14px; box-shadow: var(--ring-accent); }

.link-list { list-style: none; padding: 0; margin: 24px 0 0; }
.link-list li { padding: 12px 0; border-bottom: 1px solid var(--line); }
.link-list a:hover { color: var(--accent); }

/* ── Buttons ───────────────────────────────────────────────────────── */
.btn { display: inline-block; padding: 12px 22px; border-radius: 999px; font-weight: var(--fw-semibold); }
.btn--appstore { background: var(--grad); color: #fff; }
.btn--appstore:hover { filter: brightness(1.06); text-decoration: none; }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  box-sizing: border-box; height: 50px; padding: 0 24px; border-radius: 12px;
  font-weight: var(--fw-semibold); color: var(--accent); background: var(--bg);
  border: 1.5px solid #d9dbf0;
  transition: border-color .15s, background .15s, transform .15s;
}
.btn-ghost:hover { border-color: var(--accent); background: var(--accent-tint); transform: translateY(-1px); text-decoration: none; }
.btn-ghost::after { content: "↓"; font-weight: var(--fw-bold); }

/* ── Media placeholders (gray boxes until real graphics are added) ──── */
.media-ph {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 100%; border-radius: 18px; color: var(--ph-ink);
  background: linear-gradient(135deg, var(--ph-bg) 0%, var(--ph-bg-2) 100%);
  border: 1.5px dashed var(--ph-line);
}
.media-ph__label { font-size: var(--fs-caption); font-weight: var(--fw-semibold); display: inline-flex; align-items: center; gap: 8px; }
.media-ph svg { width: 22px; height: 22px; opacity: .8; }
.media-ph--phone { aspect-ratio: 9 / 19.5; max-width: 240px; border-radius: 26px; }
.media-ph--device { aspect-ratio: 1200 / 619; max-width: 1000px; border-radius: 24px; box-shadow: var(--shadow-lg); }
.media-ph--icon { aspect-ratio: 1 / 1; width: 64px; border-radius: 14px; }

/* ── FAQ ───────────────────────────────────────────────────────────── */
.faq { margin-top: 48px; max-width: 760px; }
.faq__item { padding: 18px 0; border-bottom: 1px solid var(--line); }
.faq dt { font-weight: var(--fw-semibold); margin-bottom: 6px; }
.faq dd { margin: 0; color: var(--muted); }

/* ── Related app aside ─────────────────────────────────────────────── */
.related-app { display: flex; align-items: center; gap: 18px; margin-top: 40px; padding: 22px; background: var(--bg-soft); border-radius: var(--radius); }
.related-app img { width: 72px; height: 72px; border-radius: 16px; }
.related-app__body h3 { margin: 0 0 10px; }

/* ── CTA + footer ──────────────────────────────────────────────────── */
.cta { text-align: center; margin-top: 56px; }
.description { margin-top: 40px; }

.site-footer { border-top: 1px solid var(--line); margin-top: 64px; color: var(--muted); }
.site-footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 28px 20px; flex-wrap: wrap; }
.site-footer nav { display: flex; gap: 16px; }
.site-footer a { color: var(--muted); }

@media (max-width: 640px) {
  .site-header__inner { flex-wrap: wrap; gap: 12px; }
  .nav { order: 3; width: 100%; }
  .lang-switch { margin-left: auto; }
}

/* App Store badge (shared by app pages). Localized SVG via partial. */
.appstore-badge { display: inline-block; line-height: 0; }
.appstore-badge img { height: 50px; width: auto; }
.appstore-badge:hover { opacity: .85; }

/* ════════════════════════════════════════════════════════════════════
   PDF Combiner landing page  (body.lp — layouts/apps/single.html)
   Light theme, Plus Jakarta Sans, full-bleed sections. Scoped to .lp so
   the rest of the site keeps its own styles.
   ════════════════════════════════════════════════════════════════════ */
body.lp {
  /* Per-app accent. Defaults = PDF Combiner blue; an app page overrides these
     via an inline style on <body> (see baseof.html + data/apps/<app>.yaml). */
  --lp-accent: #2563EB;
  --lp-accent-tint: #EFF6FF;
  font-family: "Plus Jakarta Sans", var(--font);
  color: #0A0A0A;
  background: #fff;
}
.lp-page { display: block; }

.lp-wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.lp-wrap--narrow { max-width: 760px; }

.lp-section { padding: 80px 0; }
.lp-section--white  { background: #fff;     border-top: 1px solid #EBEBEB; }
.lp-section--gray   { background: #F5F5F5;  border-top: 1px solid #EBEBEB; }
.lp-section--soft   { background: #FAFAFA;  border-top: 1px solid #EBEBEB; }
.lp-section--dark   { background: #0A0A0A;  padding: 78px 0; }
.lp-section--hero   { background: linear-gradient(180deg, #FAFAFA 0%, #fff 100%); padding: 78px 0 64px; }
.lp-section--devices{ overflow: hidden; padding: 78px 0 64px; }

.lp a { text-decoration: none; }
.lp-accent { color: var(--lp-accent); }
.lp-sep { color: #D6D6D6; }
.lp-star { width: 14px; height: 14px; color: #e0a92e; flex: none; }

/* Section heads */
.lp-eyebrow { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--lp-accent); margin: 0 0 14px; }
.lp-h2 { font-size: clamp(28px, 3.6vw, 38px); line-height: 1.1; letter-spacing: -.03em; font-weight: 800; color: #0A0A0A; margin: 0; }
.lp-head { max-width: 820px; margin: 0 0 32px; }
.lp-head--center { text-align: center; max-width: 600px; margin: 0 auto 44px; }
.lp-lead-c { margin: 16px 0 0; font-size: 17px; line-height: 1.55; color: #636363; }

/* Badge sizing on the landing */
.lp .appstore-badge { transition: transform .15s, opacity .15s; }
.lp .appstore-badge img { height: 48px; }
.lp .appstore-badge:hover { opacity: 1; transform: translateY(-1px); }

/* ── Header ─────────────────────────────────────────────────────────── */
.lp-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid #EBEBEB; }
.lp-header__inner { height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.lp-header__brand { font-weight: 700; font-size: 16px; letter-spacing: -.01em; color: #0A0A0A; }
.lp-header__nav { display: flex; gap: 30px; font-size: 14px; }
.lp-header__nav a { color: #636363; transition: color .15s; }
.lp-header a:hover { color: #0A0A0A; text-decoration: none; }
.lp-header__right { display: flex; align-items: center; gap: 14px; }
.lp-header__badge .appstore-badge img { height: 30px; }
.lang-switch--lp { margin-left: 0; }

/* ── Hero ───────────────────────────────────────────────────────────── */
.lp-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.lp-hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 22px; font-size: 13px; font-weight: 600; color: #636363; }
.lp-hero__eyebrow img { width: 30px; height: 30px; border-radius: 7px; box-shadow: 0 4px 12px -4px color-mix(in srgb, var(--lp-accent) 50%, transparent); }
.lp-hero__title { font-size: clamp(36px, 5.2vw, 54px); line-height: 1.04; letter-spacing: -.04em; font-weight: 800; color: #0A0A0A; margin: 0; }
.lp-hero__lead { margin: 20px 0 0; font-size: 18px; line-height: 1.55; color: #636363; max-width: 520px; }
.lp-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 30px; }
.lp-hero__trust { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; margin-top: 24px; font-size: 13.5px; color: #858585; }
.lp-hero__rating { display: inline-flex; align-items: center; gap: 5px; }
.lp-hero__rating strong { color: #262626; }
.lp-hero__media { position: relative; justify-self: end; width: 280px; max-width: 100%; }
.lp-hero__glow { position: absolute; inset: -10px -20px 40px 10px; background: radial-gradient(58% 50% at 55% 32%, color-mix(in srgb, var(--lp-accent) 16%, transparent), transparent 72%); filter: blur(10px); }
.lp-hero__plate { position: absolute; left: -26px; right: -26px; top: 92px; bottom: -26px; background: var(--lp-accent); border-radius: 48px; }
.lp-hero__phone { position: relative; display: block; width: 100%; height: auto; filter: drop-shadow(0 18px 24px rgba(20,18,40,.20)) drop-shadow(0 50px 70px rgba(20,18,40,.34)); }

/* Marketing-poster hero variant (App Store screenshot in a rounded card). */
.lp-hero__shot { position: relative; display: block; width: 100%; height: auto; border-radius: 28px; box-shadow: 0 18px 24px rgba(20,18,40,.18), 0 50px 70px rgba(20,18,40,.30); }

.lp-btn-ghost { display: inline-flex; align-items: center; justify-content: center; gap: 7px; height: 48px; padding: 0 22px; border: 1px solid #EBEBEB; border-radius: 8px; font-size: 15px; font-weight: 600; color: #262626; background: #fff; transition: background .15s, border-color .15s; }
.lp-btn-ghost:hover { background: #F5F5F5; border-color: #D6D6D6; text-decoration: none; }
.lp-btn-ghost svg { width: 16px; height: 16px; }

/* ── Screenshot showcase ────────────────────────────────────────────── */
.lp-shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-shot { margin: 0; display: flex; flex-direction: column; gap: 14px; }
.lp-shot__frame { aspect-ratio: 9 / 16; border-radius: 22px; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 12px; }
.lp-shot__frame img { width: 100%; height: 100%; object-fit: contain; display: block; }
.lp-shot__cap { text-align: center; }
.lp-shot__cap h3 { font-size: 16px; font-weight: 600; color: #0A0A0A; margin: 0 0 4px; }
.lp-shot__cap p { font-size: 14px; line-height: 1.5; color: #636363; margin: 0; }

/* ── Tools (Free / Pro toggle) ──────────────────────────────────────── */
/* Position the (visually hidden) radios inside .lp-tools so focusing one
   never scrolls the page to its top-left corner. */
.lp-tools { position: relative; }
.lp-tools__radio { position: absolute; top: 0; left: 0; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.lp-tools__chips { display: flex; gap: 8px; margin-top: 32px; }
.lp-chip { cursor: pointer; border-radius: 100px; padding: 9px 22px; font-size: 14px; font-weight: 500; line-height: 1.2; white-space: nowrap; background: #fff; color: #636363; border: 1px solid #D6D6D6; transition: background .15s, color .15s, border-color .15s; user-select: none; }
.lp-chip:hover { border-color: #B5B5B5; }
#lp-tier-free:checked ~ .lp-tools__chips label[for="lp-tier-free"] { background: #0A0A0A; color: #fff; border-color: #0A0A0A; font-weight: 600; }
#lp-tier-pro:checked  ~ .lp-tools__chips label[for="lp-tier-pro"]  { background: var(--lp-accent); color: #fff; border-color: var(--lp-accent); font-weight: 600; }
#lp-tier-free:focus-visible ~ .lp-tools__chips label[for="lp-tier-free"],
#lp-tier-pro:focus-visible  ~ .lp-tools__chips label[for="lp-tier-pro"] { box-shadow: 0 0 0 3px color-mix(in srgb, var(--lp-accent) 35%, transparent); }
.lp-tools__panel { margin-top: 24px; }
.lp-tools__panel--pro { display: none; }
#lp-tier-pro:checked ~ .lp-tools__panel--free { display: none; }
#lp-tier-pro:checked ~ .lp-tools__panel--pro  { display: block; }
.lp-tools__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); gap: 12px; }

.lp-tcard { border: 1px solid rgba(0,0,0,.05); border-radius: 16px; padding: 18px; background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04); transition: border-color .15s, box-shadow .15s, transform .15s; }
.lp-tcard:hover { border-color: rgba(0,0,0,.1); box-shadow: 0 8px 28px -4px rgba(0,0,0,.13), 0 2px 8px rgba(0,0,0,.06); transform: translateY(-2px); }
.lp-tcard__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 11px; }
.lp-tcard__icon { display: inline-flex; width: 36px; height: 36px; border-radius: 10px; background: var(--lp-accent-tint); align-items: center; justify-content: center; color: var(--lp-accent); flex: none; }
.lp-tcard__icon svg { width: 19px; height: 19px; }
.lp-tcard__meta { display: flex; align-items: center; gap: 7px; }
.lp-tcard__dev { display: inline-flex; gap: 3px; color: #ADADAD; }
.lp-tcard__dev svg { width: 13px; height: 13px; display: block; }
.lp-tag { font-size: 10px; color: #ADADAD; border: 1px solid #EBEBEB; border-radius: 5px; padding: 1px 5px; white-space: nowrap; }
.lp-tcard__name { font-size: 15px; font-weight: 600; color: #0A0A0A; margin-bottom: 4px; }
.lp-tcard__desc { font-size: 13.5px; line-height: 1.5; color: #636363; }
.lp-tools__note { margin-top: 24px; font-size: 13px; line-height: 1.55; color: #858585; max-width: 760px; }

/* ── Use cases (keyword-bearing prose blocks) ───────────────────────── */
.lp-usecases { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lp-usecase { border: 1px solid #EBEBEB; border-radius: 16px; padding: 24px 26px; background: #fff; }
.lp-usecase h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; letter-spacing: -.01em; color: #0A0A0A; }
.lp-usecase p { margin: 0; font-size: 14.5px; line-height: 1.6; color: #636363; }

/* ── How it works (numbered steps) ──────────────────────────────────── */
.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.lp-step { border: 1px solid #EBEBEB; border-radius: 16px; padding: 24px 26px; background: #fff; }
.lp-step__num { display: inline-flex; width: 32px; height: 32px; border-radius: 50%; background: var(--lp-accent-tint); color: var(--lp-accent); align-items: center; justify-content: center; font-weight: 700; font-size: 15px; margin-bottom: 14px; }
.lp-step h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; letter-spacing: -.01em; color: #0A0A0A; }
.lp-step p { margin: 0; font-size: 14.5px; line-height: 1.6; color: #636363; }

/* ── Guides (SEO article cards) ─────────────────────────────────────── */
.lp-guides { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lp-guide-card { display: flex; flex-direction: column; border: 1px solid #EBEBEB; border-radius: 16px; padding: 24px 26px; background: #fff; transition: border-color .15s, box-shadow .15s, transform .15s; }
.lp-guide-card:hover { border-color: rgba(0,0,0,.1); box-shadow: 0 8px 28px -4px rgba(0,0,0,.13), 0 2px 8px rgba(0,0,0,.06); transform: translateY(-2px); text-decoration: none; }
.lp-guide-card h3 { margin: 0 0 8px; font-size: 17px; font-weight: 700; letter-spacing: -.01em; color: #0A0A0A; }
.lp-guide-card p { margin: 0; font-size: 14.5px; line-height: 1.6; color: #636363; flex: 1; }
.lp-guide-card__more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--lp-accent); font-size: 14px; font-weight: 600; }
.lp-guide-card__more svg { transition: transform .15s; }
.lp-guide-card:hover .lp-guide-card__more svg { transform: translateX(3px); }

/* ── Reviews ────────────────────────────────────────────────────────── */
.lp-reviews { display: grid; grid-template-columns: .8fr 2.2fr; gap: 32px; align-items: start; }
.lp-reviews__score { font-size: 56px; font-weight: 800; line-height: 1; color: #0A0A0A; letter-spacing: -.02em; }
.lp-reviews__stars { display: inline-flex; gap: 2px; margin: 10px 0 8px; }
.lp-reviews__stars .lp-star { width: 18px; height: 18px; }
.lp-reviews__basis { font-size: 14px; color: #636363; margin: 0; }
.lp-reviews__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lp-review { margin: 0; border: 1px solid #EBEBEB; border-radius: 16px; padding: 20px; background: #FAFAFA; }
.lp-review__stars { display: inline-flex; gap: 1px; margin-bottom: 10px; }
.lp-review blockquote { margin: 0 0 12px; font-size: 14.5px; line-height: 1.55; color: #262626; }
.lp-review figcaption { font-size: 13px; color: #858585; }

/* ── Devices band ───────────────────────────────────────────────────── */
.lp-devices { text-align: center; }
.lp-devices .lp-h2 { max-width: 640px; margin: 0 auto; }
.lp-devices__lead { margin: 16px auto 0; font-size: 17px; line-height: 1.55; color: #636363; max-width: 560px; }
.lp-devices__img { display: block; width: 100%; max-width: 980px; height: auto; margin: 36px auto 0; }

/* ── Pricing ────────────────────────────────────────────────────────── */
.lp-pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 820px; margin: 0 auto; }
.lp-plan { position: relative; border: 1px solid #EBEBEB; border-radius: 20px; padding: 28px; background: #fff; }
.lp-plan--pro { border: 1.5px solid var(--lp-accent); box-shadow: 0 20px 50px -28px color-mix(in srgb, var(--lp-accent) 50%, transparent); }
.lp-plan__name { font-size: 20px; font-weight: 700; color: #0A0A0A; margin: 0; }
.lp-plan__desc { font-size: 14.5px; color: #636363; margin: 6px 0 18px; }
.lp-plan__features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.lp-plan__features li { display: flex; gap: 9px; font-size: 14.5px; color: #262626; }
.lp-check { flex: none; margin-top: 1px; display: inline-flex; }
.lp-check svg { width: 18px; height: 18px; stroke-width: 2.2; }
.lp-check--free { color: #16A34A; }
.lp-check--pro { color: var(--lp-accent); }
.lp-plan__badge { position: absolute; top: -12px; left: 28px; display: inline-flex; align-items: center; gap: 4px; background: var(--lp-accent); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; border-radius: 7px; padding: 4px 10px; }
.lp-plan__badge .lp-star { width: 12px; height: 12px; color: #fff; }
.lp-pricing__note { text-align: center; font-size: 14px; color: #ADADAD; margin: 22px 0 0; }
.lp-pricing__cta { display: flex; justify-content: center; margin-top: 18px; }

/* ── FAQ accordion ──────────────────────────────────────────────────── */
.lp-section--faq .lp-h2 { margin-bottom: 28px; }
.lp-faq { display: flex; flex-direction: column; gap: 10px; }
.lp-faq__item { border: 1px solid #EBEBEB; border-radius: 14px; background: #FAFAFA; padding: 4px; }
.lp-faq__q { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px; font-size: 16px; font-weight: 600; color: #0A0A0A; cursor: pointer; list-style: none; }
.lp-faq__q::-webkit-details-marker { display: none; }
.lp-faq__chev { flex: none; color: #ADADAD; transition: transform .2s ease; }
.lp-faq__item[open] .lp-faq__chev { transform: rotate(180deg); }
.lp-faq__a { padding: 0 16px 16px; font-size: 14.5px; line-height: 1.6; color: #636363; }
.lp-faq__a p { margin: 0; }

/* ── Final CTA ──────────────────────────────────────────────────────── */
.lp-cta { text-align: center; }
.lp-cta__title { font-size: clamp(28px, 4vw, 42px); line-height: 1.08; letter-spacing: -.03em; font-weight: 800; color: #fff; max-width: 640px; margin: 0 auto; }
.lp-cta__text { margin: 18px auto 0; font-size: 17px; line-height: 1.55; color: #A3A3A3; max-width: 520px; }
.lp-cta__badge { display: flex; justify-content: center; margin-top: 30px; }

/* ── Footer ─────────────────────────────────────────────────────────── */
.lp-footer { background: #0A0A0A; border-top: 1px solid rgba(255,255,255,.08); }
.lp-footer__inner { padding: 26px 24px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
.lp-footer__copy { font-size: 13px; color: #858585; margin: 0; }
.lp-footer__nav { display: flex; gap: 24px; }
.lp-footer__nav a { font-size: 13px; color: #ADADAD; transition: color .15s; }
.lp-footer__nav a:hover { color: #fff; text-decoration: none; }
.lp-footer__contact { margin: 0; font-size: 13px; color: #858585; }
.lp-footer__contact a {
  color: #ADADAD; text-decoration: underline;
  text-underline-offset: 2px; transition: color .15s;
}
.lp-footer__contact a:hover { color: #fff; }

/* ── Homepage (My apps) ─────────────────────────────────────────────── */
.lp-home-hero { text-align: center; }
.lp-home-hero .lp-eyebrow { margin: 0 0 18px; }
.lp-home-hero__title { font-size: clamp(38px, 5.6vw, 64px); line-height: 1.02; letter-spacing: -.045em; font-weight: 800; color: #0A0A0A; max-width: 920px; margin: 0 auto; }
.lp-home-hero__lead { margin: 24px auto 0; font-size: 19px; line-height: 1.55; color: #636363; max-width: 600px; }

.lp-apps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 18px; }

.lp-app-card { display: flex; flex-direction: column; border: 1px solid #EBEBEB; border-radius: 20px; padding: 26px; background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,.05); transition: border-color .15s, box-shadow .15s, transform .15s; }
.lp-app-card:hover { border-color: rgba(0,0,0,.1); box-shadow: 0 14px 36px -10px rgba(0,0,0,.16), 0 2px 8px rgba(0,0,0,.05); transform: translateY(-2px); text-decoration: none; }
.lp-app-card__head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.lp-app-card__icon { display: block; width: 58px; height: 58px; border-radius: 14px; box-shadow: 0 6px 18px -6px color-mix(in srgb, var(--lp-accent) 50%, transparent); flex: none; }
.lp-app-card__name { font-size: 19px; font-weight: 700; color: #0A0A0A; letter-spacing: -.01em; margin: 0; }
.lp-app-card__platforms { font-size: 13px; color: #858585; margin: 3px 0 0; }
.lp-app-card__desc { font-size: 15px; line-height: 1.55; color: #636363; margin: 0; flex: 1; }
.lp-app-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.lp-app-tag { font-size: 12.5px; font-weight: 600; color: var(--lp-accent); background: var(--lp-accent-tint); border-radius: 7px; padding: 5px 10px; }
.lp-app-card__foot { display: flex; align-items: center; gap: 7px; margin-top: 22px; padding-top: 18px; border-top: 1px solid #F0F0F0; }
.lp-app-card__rating { display: inline-flex; align-items: center; gap: 5px; color: #858585; font-weight: 500; font-size: 13.5px; }
.lp-app-card__rating strong { color: #262626; font-weight: 600; }
.lp-app-card__view { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; color: var(--lp-accent); font-size: 14.5px; font-weight: 600; }
.lp-app-card__arrow { transition: transform .15s; }
.lp-app-card:hover .lp-app-card__arrow { transform: translateX(3px); }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 880px) {
  .lp-apps-grid { grid-template-columns: 1fr; }
  .lp-hero { grid-template-columns: 1fr; gap: 40px; }
  .lp-hero__media { justify-self: center; }
  .lp-header__nav { display: none; }
  .lp-reviews { grid-template-columns: 1fr; gap: 28px; }
  .lp-reviews__grid { grid-template-columns: 1fr; }
  .lp-pricing { grid-template-columns: 1fr; }
  .lp-usecases { grid-template-columns: 1fr; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-guides { grid-template-columns: 1fr; }
  .lp-shots { display: flex; overflow-x: auto; gap: 14px; padding: 4px 24px; margin: 0 -24px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .lp-shots::-webkit-scrollbar { display: none; }
  .lp-shot { flex: 0 0 auto; width: min(78%, 250px); scroll-snap-align: start; }
}
@media (max-width: 480px) {
  .lp-section { padding: 56px 0; }
  .lp-header__badge { display: none; }
}
