/* ============================================================
   Matt — Transcriber per WhatsApp · shared stylesheet
   ============================================================ */
:root {
  --green: #20C163;
  --green-dark: #158343;
  --green-soft: #E9F9F0;
  --orange: #F97316;
  --blue: #38BDF8;
  --ink: #111827;
  --ink-soft: #4B5563;
  --ink-faint: #9CA3AF;
  --bg: #FFFFFF;
  --bg-alt: #F7FAF8;
  --border: #E5E7EB;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(17, 24, 39, .08);
  --maxw: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex; align-items: center; gap: 16px;
  min-height: 64px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.05rem; color: var(--ink);
  text-decoration: none; margin-right: auto;
}
.brand img { width: 36px; height: 36px; border-radius: 9px; }
.site-nav { display: flex; align-items: center; gap: 18px; }
.site-nav a {
  color: var(--ink-soft); text-decoration: none; font-weight: 600; font-size: .92rem;
}
.site-nav a:hover { color: var(--green-dark); }
.lang-switch {
  display: inline-flex; align-items: center; gap: 2px;
  padding: 3px; border-radius: 999px;
  background: var(--bg-alt); border: 1px solid var(--border);
  font-size: .82rem;
  box-shadow: inset 0 1px 3px rgba(17, 24, 39, .06);
}
.lang-switch a, .lang-switch .active {
  padding: 4px 12px; border-radius: 999px;
  text-decoration: none; font-weight: 700; line-height: 1.5; white-space: nowrap;
  transition: background .18s ease, color .18s ease;
}
.lang-switch a { color: var(--ink-faint); }
.lang-switch a:hover { color: var(--green-dark); background: rgba(32, 193, 99, .12); }
.lang-switch .active {
  background: #fff; color: var(--ink); cursor: default;
  box-shadow: 0 1px 4px rgba(17, 24, 39, .16), 0 0 0 1.5px var(--green);
}
.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  border-radius: 999px; padding: 12px 26px; font-size: 1rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary {
  background: var(--green); color: #fff !important;
  box-shadow: 0 6px 18px rgba(32, 193, 99, .35);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--green-dark); }
.btn-small { padding: 8px 18px; font-size: .9rem; }
@media (max-width: 720px) {
  .site-nav > a:not(.btn) { display: none; }
}

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, var(--green-soft) 0%, #fff 85%); overflow: hidden; }
.hero .container {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px;
  align-items: center; padding-top: 64px; padding-bottom: 64px;
}
.hero-copy .app-icon { width: 84px; height: 84px; border-radius: 20px; box-shadow: var(--shadow); margin-bottom: 22px; }
.hero h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); line-height: 1.12; margin: 0 0 16px; letter-spacing: -.02em; }
.hero h1 em { color: var(--green); font-style: normal; }
.hero .sub { font-size: 1.15rem; color: var(--ink-soft); margin: 0 0 26px; max-width: 34em; }
.hero .sub strong { color: var(--green-dark); font-weight: 800; }
.store-badge img { width: 180px; height: auto; }
.hero-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.rating { font-size: .95rem; color: var(--ink-soft); font-weight: 600; }
.rating strong { color: var(--ink); }
.hero-shot img {
  width: min(320px, 80%); margin: 0 auto; border-radius: 28px;
  box-shadow: 0 24px 60px rgba(17, 24, 39, .18);
}
.trust-row { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 26px; padding: 0; list-style: none; }
.trust-row li { font-size: .9rem; font-weight: 600; color: var(--ink-soft); display: flex; gap: 7px; align-items: center; }
.trust-row li::before { content: "✓"; color: var(--green); font-weight: 800; }
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; padding-top: 44px; padding-bottom: 44px; }
  .hero-copy .app-icon, .hero-shot img { margin-inline: auto; }
  .hero .sub { margin-inline: auto; }
  .hero-cta, .trust-row { justify-content: center; }
}

/* ---------- Sections ---------- */
section { padding: 72px 0; }
section.alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 0 0 12px; letter-spacing: -.01em; }
.section-head p { color: var(--ink-soft); margin: 0; font-size: 1.05rem; }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--green-dark); margin-bottom: 10px;
}

/* ---------- Screenshots ---------- */
.shots {
  display: flex; gap: 20px; overflow-x: auto; padding: 10px 4px 22px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.shots figure { flex: 0 0 240px; margin: 0; scroll-snap-align: center; }
.shots img { border-radius: 22px; box-shadow: var(--shadow); }
.shots figcaption { font-size: .85rem; color: var(--ink-soft); text-align: center; margin-top: 10px; font-weight: 600; }

/* ---------- Videos ---------- */
.video-row { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; margin-top: 48px; }
.video-row figure { margin: 0; text-align: center; }
.video-frame {
  width: min(280px, 78vw); height: auto; display: block;
  border-radius: 24px; box-shadow: 0 18px 44px rgba(17, 24, 39, .16);
  background: #000;
}
.video-row figcaption { font-size: .92rem; color: var(--ink-soft); font-weight: 700; margin-top: 12px; }
.article .video-frame { margin: 26px auto; }
.ob-demo { text-align: center; margin-bottom: 52px; }
.ob-demo .video-frame { margin: 0 auto; }
.ob-chips {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 10px; margin-top: 22px;
}
.ob-chip {
  font: inherit; font-size: .95rem; font-weight: 700; line-height: 1.4;
  color: var(--ink-soft); background: #fff;
  border: 1.5px solid var(--border); border-radius: 999px;
  padding: 9px 18px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px;
  transition: all .2s ease;
}
.ob-chip .e { font-size: 1.15rem; line-height: 1; }
.ob-chip:hover { border-color: var(--green); color: var(--green-dark); transform: translateY(-1px); }
.ob-chip.active {
  background: linear-gradient(135deg, var(--green) 0%, #17A855 100%);
  border-color: transparent; color: #fff;
  box-shadow: 0 6px 16px rgba(32, 193, 99, .38);
  transform: translateY(-1px) scale(1.04);
}
.ob-chip .bar {
  position: relative; width: 0; height: 3px; border-radius: 2px;
  background: rgba(255, 255, 255, .35); overflow: hidden;
  transition: width .25s ease;
}
.ob-chip.active .bar { width: 26px; }
.ob-chip .bar i {
  position: absolute; inset: 0; width: var(--p, 0%);
  background: #fff; border-radius: 2px; display: block;
}
@media (max-width: 560px) {
  .ob-chip { font-size: .85rem; padding: 8px 13px; }
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: 0 4px 14px rgba(17, 24, 39, .04);
}
.step::before {
  counter-increment: step; content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green); color: #fff; font-weight: 800; font-size: 1.1rem;
  margin-bottom: 14px;
}
.step h3 { margin: 0 0 8px; font-size: 1.1rem; }
.step p { margin: 0; color: var(--ink-soft); font-size: .97rem; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Feature grid ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 22px;
}
.feature .ico { font-size: 1.7rem; line-height: 1; margin-bottom: 12px; }
.feature h3 { margin: 0 0 8px; font-size: 1.05rem; }
.feature p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
@media (max-width: 820px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* ---------- Guides grid ---------- */
.guides { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.guide-card {
  display: block; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 22px; text-decoration: none;
  color: var(--ink); transition: transform .15s ease, box-shadow .15s ease;
}
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green); }
.guide-card h3 { margin: 0 0 8px; font-size: 1.02rem; color: var(--ink); }
.guide-card p { margin: 0 0 12px; color: var(--ink-soft); font-size: .92rem; }
.guide-card .more { color: var(--green-dark); font-weight: 700; font-size: .9rem; }
@media (max-width: 820px) { .guides { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .guides { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 4px 20px; margin-bottom: 12px; background: #fff;
}
.faq summary {
  cursor: pointer; font-weight: 700; padding: 14px 0; font-size: 1rem;
  list-style: none; position: relative; padding-right: 30px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  color: var(--green); font-size: 1.4rem; font-weight: 400;
}
.faq details[open] summary::after { content: "–"; }
.faq .answer { padding: 0 0 16px; color: var(--ink-soft); font-size: .97rem; }
.faq .answer a { font-weight: 700; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--green) 0%, #17A855 100%); text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 0 0 10px; }
.cta-band p { color: rgba(255, 255, 255, .92); margin: 0 0 28px; font-size: 1.08rem; }
.cta-band .store-badge img { margin: 0 auto; }
.cta-band .rating { color: rgba(255, 255, 255, .95); margin-top: 16px; }
.cta-band .rating strong { color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #D1D5DB; padding: 48px 0 32px; font-size: .92rem; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-grid h4 { color: #fff; font-size: .95rem; margin: 0 0 12px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-brand img { width: 34px; height: 34px; border-radius: 8px; }
.disclaimer { font-size: .8rem; color: var(--ink-faint); border-top: 1px solid #374151; padding-top: 22px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Article / guide pages ---------- */
.article-hero { background: linear-gradient(180deg, var(--green-soft) 0%, #fff 100%); padding: 44px 0 28px; }
.breadcrumbs { font-size: .85rem; color: var(--ink-soft); margin-bottom: 14px; }
.breadcrumbs a { color: var(--ink-soft); text-decoration: none; }
.breadcrumbs a:hover { color: var(--green-dark); }
.article-hero h1 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); line-height: 1.18; margin: 0 0 10px; letter-spacing: -.015em; }
.article-hero .meta { color: var(--ink-soft); font-size: .92rem; }
.article { max-width: 720px; margin: 0 auto; padding: 36px 20px 72px; }
.article h2 { font-size: 1.45rem; margin: 44px 0 12px; letter-spacing: -.01em; }
.article h3 { font-size: 1.15rem; margin: 30px 0 8px; }
.article p, .article li { color: #1F2937; font-size: 1.02rem; }
.article img { border-radius: 18px; box-shadow: var(--shadow); margin: 26px auto; width: min(300px, 100%); }
.article .step-list li { margin-bottom: 10px; }
.tip {
  background: var(--green-soft); border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 14px 18px; margin: 24px 0;
  font-size: .98rem;
}
.article-cta {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; text-align: center; margin: 44px 0;
}
.article-cta img.icon { width: 64px; height: 64px; border-radius: 15px; margin: 0 auto 14px; box-shadow: var(--shadow); }
.article-cta h3 { margin: 0 0 6px; }
.article-cta p { margin: 0 0 18px; color: var(--ink-soft); }
.related { border-top: 1px solid var(--border); padding-top: 28px; margin-top: 44px; }
.related h2 { margin-top: 0; }
.related ul { padding-left: 20px; }
.related li { margin-bottom: 8px; }

/* ---------- Legal pages ---------- */
.legal { max-width: 820px; margin: 0 auto; padding: 40px 20px 80px; }
.legal h1 { font-size: 2rem; }
.legal h2 { color: var(--green-dark); font-size: 1.2rem; margin-top: 36px; }
