/* ============================================================
   Convertessa — marketing site
   Apple.com-inspired light design system
   ============================================================ */

:root {
  /* Color */
  --blue: #007aff;
  --blue-hover: #006fe6;
  --blue-press: #0062cc;
  --blue-tint: #e8f1ff;

  --ink: #1d1d1f;          /* primary text */
  --ink-2: #494951;        /* secondary */
  --ink-3: #6e6e73;        /* tertiary */
  --ink-4: #86868b;        /* quaternary / captions */

  --bg: #ffffff;
  --bg-gray: #f5f5f7;      /* apple light gray panel */
  --bg-gray-2: #fafafc;
  --line: #e3e3e6;
  --line-strong: #d2d2d7;

  --green: #34c759;

  /* Radius */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 980px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04), 0 1px 3px rgba(0,0,0,.05);
  --shadow-md: 0 6px 24px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
  --shadow-lg: 0 30px 70px -20px rgba(20,30,55,.30), 0 12px 30px -12px rgba(20,30,55,.18);

  /* Type */
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "JetBrains Mono", "Menlo", "Consolas", monospace;

  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.025em; line-height: 1.07; color: var(--ink); }
p { margin: 0; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; }
.section--tight { padding: 84px 0; }
.gray { background: var(--bg-gray); }

.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(32px, 4vw, 46px); }
.section-head p { margin-top: 18px; font-size: 21px; color: var(--ink-3); line-height: 1.45; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: 17px; font-weight: 500; letter-spacing: -0.01em;
  border: none; cursor: pointer; border-radius: var(--r-pill);
  padding: 13px 26px; transition: background-color .15s ease, color .15s ease, border-color .15s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-hover); }
.btn--primary:active { background: var(--blue-press); }
.btn--lg { font-size: 19px; padding: 16px 34px; }
.btn--ghost { background: transparent; color: var(--blue); padding: 13px 20px; }
.btn--ghost:hover { background: var(--blue-tint); }
.arrow-link { color: var(--blue); font-size: 18px; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.arrow-link:hover { text-decoration: none; }
.arrow-link:hover .chev { transform: translateX(3px); }
.chev { transition: transform .15s ease; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: 19px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-mark { width: 30px; height: 30px; border-radius: 8px; box-shadow: 0 1px 2px rgba(0,0,0,.12); }
.brand-wordmark { height: 44px; width: auto; display: block; }
.footer .brand-wordmark { height: 44px; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a:not(.btn) { color: var(--ink-2); font-size: 15px; font-weight: 450; }
.nav__links a:not(.btn):hover { color: var(--ink); text-decoration: none; }
.nav .btn { padding: 8px 18px; font-size: 15px; }
@media (max-width: 720px) { .nav__links .nav-hide { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; text-align: center; overflow: hidden;
  padding: 92px 0 0;
  background:
    radial-gradient(120% 90% at 50% -10%, #eaf2ff 0%, #f3f7ff 38%, #ffffff 72%);
}
.hero h1 {
  font-size: clamp(44px, 6.6vw, 88px); line-height: 1.04; letter-spacing: -0.035em;
  max-width: 14ch; margin: 0 auto;
}
.hero-accent { color: var(--blue); }
.hero .tagline {
  margin: 26px auto 0; max-width: 22ch; font-size: clamp(22px, 2.6vw, 30px);
  color: var(--ink-3); font-weight: 500; letter-spacing: -0.02em; line-height: 1.2;
}
.hero__cta { margin-top: 38px; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.hero__badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 4px; }
.hero__badges .pill { font-size: 15px; padding: 9px 18px; }
.hero__badges .pill strong { font-weight: 700; color: var(--ink); }
.pill--link { transition: border-color .15s ease, background .15s ease; }
.pill--link:hover { text-decoration: none; border-color: var(--line-strong); background: #fff; }
.pill-cli { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--blue); letter-spacing: -0.02em; }
.hero__shot {
  margin: 64px auto 0; max-width: 1120px; padding: 0 20px;
}
.hero__shot img {
  width: 100%; border-radius: var(--r-xl);
}
.hero__shot-wrap { position: relative; padding-bottom: 110px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust {
  background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.trust__row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; padding: 30px 0; }
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--bg-gray); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 11px 22px;
  font-size: 16px; font-weight: 500; color: var(--ink);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.pill .dot--green { background: var(--green); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 38px 32px; box-shadow: var(--shadow-sm);
}
.gray .step { background: #fff; }
.step__num {
  width: 42px; height: 42px; border-radius: 50%; background: var(--blue-tint);
  color: var(--blue); font-weight: 600; font-size: 19px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.step h3 { font-size: 24px; margin-bottom: 10px; }
.step p { color: var(--ink-3); font-size: 17px; line-height: 1.5; }
.steps--flow { position: relative; }
.steps .step__icon { color: var(--blue); margin-bottom: 18px; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.cat-card:hover { box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.cat-card__top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.cat-icon {
  width: 50px; height: 50px; border-radius: 13px; flex: none;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.cat-card h3 { font-size: 22px; }
.cat-card .count { font-size: 14px; color: var(--ink-4); font-weight: 450; margin-top: 2px; }
.cat-formats { display: flex; flex-wrap: wrap; gap: 7px; }
.chip {
  font-family: var(--mono); font-size: 12.5px; font-weight: 500;
  background: var(--bg-gray); color: var(--ink-2); border: 1px solid var(--line);
  border-radius: 7px; padding: 4px 9px; letter-spacing: 0;
}
.chip--more { background: transparent; border-style: dashed; color: var(--ink-4); }
@media (max-width: 860px) { .cat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .cat-grid { grid-template-columns: 1fr; } }

/* category accent colors */
.acc-images   { background: linear-gradient(160deg, #34c759, #28a745); }
.acc-audio    { background: linear-gradient(160deg, #ff9f0a, #ff7a00); }
.acc-video    { background: linear-gradient(160deg, #ff375f, #e11d48); }
.acc-docs     { background: linear-gradient(160deg, #007aff, #0058cc); }
.acc-archives { background: linear-gradient(160deg, #af52de, #8e44ad); }
.acc-ebooks   { background: linear-gradient(160deg, #5ac8fa, #34aadc); }

/* ============================================================
   CONVERSION EXPLORER (interactive)
   ============================================================ */
.conv { max-width: 720px; margin: 0 auto; }
.conv-count {
  margin-top: 20px; font-size: 16px; color: var(--ink-4); font-weight: 450;
  letter-spacing: -0.01em;
}
.conv-count strong { color: var(--ink); font-weight: 600; }
.conv__row { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.conv__lead { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }

/* combobox */
.combo { position: relative; }
.combo__field {
  display: inline-flex; align-items: center; gap: 12px; min-width: 196px;
  background: #fff; border: 1px solid var(--line-strong); border-radius: 15px;
  padding: 12px 16px; cursor: pointer; box-shadow: var(--shadow-sm); font-family: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.combo__field:hover { border-color: #b9b9c0; }
.combo.open .combo__field { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,122,255,.12); }
.combo__value { font-size: 28px; font-weight: 650; letter-spacing: -0.02em; color: var(--ink); }
.combo__ext { font-family: var(--mono); font-size: 14px; color: var(--ink-4); }
.combo__chev { margin-left: auto; color: var(--ink-4); transition: transform .18s ease; }
.combo.open .combo__chev { transform: rotate(180deg); }

.combo__pop {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 300px; max-width: calc(100vw - 48px);
  background: #fff; border: 1px solid var(--line); border-radius: 15px;
  box-shadow: var(--shadow-lg); z-index: 30; overflow: hidden;
}
.combo__search { position: relative; padding: 10px; border-bottom: 1px solid var(--line); }
.combo__search svg { position: absolute; left: 22px; top: 50%; transform: translateY(-50%); color: var(--ink-4); pointer-events: none; }
.combo__search input {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  border: none; outline: none; padding: 9px 10px 9px 36px; background: var(--bg-gray); border-radius: 10px;
}
.combo__search input::placeholder { color: var(--ink-4); }
.combo__list { list-style: none; margin: 0; padding: 6px; max-height: 304px; overflow-y: auto; }
.combo__group { font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-4); padding: 11px 10px 4px; }
.combo__opt { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 10px; cursor: pointer; }
.combo__opt:hover, .combo__opt.is-active { background: var(--bg-gray); }
.combo__opt .bdot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.combo__opt .nm { font-size: 15px; font-weight: 550; color: var(--ink); }
.combo__opt .ex { font-family: var(--mono); font-size: 12.5px; color: var(--ink-4); margin-left: auto; }
.combo__empty { padding: 20px; text-align: center; color: var(--ink-4); font-size: 14px; list-style: none; }

/* arrow */
.conv__to { text-align: center; margin: 28px 0 22px; }
.conv__to-line { display: inline-flex; align-items: center; gap: 10px; font-size: 18px; color: var(--ink-3); font-weight: 500; }
.conv__to-line svg { color: var(--blue); }

/* output panel */
.conv__out { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: 24px; }
.out-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.out-from { font-size: 15px; color: var(--ink-3); font-weight: 500; }
.out-filterbox { position: relative; margin-left: auto; min-width: 180px; flex: 1; max-width: 260px; }
.out-filterbox svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--ink-4); pointer-events: none; }
.out-filterbox input {
  width: 100%; font-family: inherit; font-size: 14.5px; color: var(--ink);
  background: var(--bg-gray); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 9px 14px 9px 36px; outline: none; transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.out-filterbox input:focus { background: #fff; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,122,255,.12); }
.out-filterbox input::placeholder { color: var(--ink-4); }

.out-grid { display: flex; flex-wrap: wrap; gap: 9px; }
.out-chip {
  display: inline-flex; align-items: center; gap: 8px; font-family: inherit;
  background: var(--bg-gray); border: 1px solid var(--line); border-radius: 11px;
  padding: 9px 13px; cursor: pointer; transition: border-color .14s ease, background .14s ease, transform .14s ease;
}
.out-chip:hover { border-color: var(--blue); background: var(--blue-tint); transform: translateY(-1px); }
.out-chip .bdot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.out-chip .nm { font-size: 14.5px; font-weight: 550; color: var(--ink); }
.out-chip .ex { font-family: var(--mono); font-size: 12px; color: var(--ink-4); }
.out-empty { padding: 30px 0; text-align: center; color: var(--ink-3); font-size: 16px; width: 100%; }
.out-meta { margin-top: 18px; font-size: 14px; color: var(--ink-4); text-align: center; }
.out-hint { margin-top: 6px; font-size: 13px; color: var(--ink-4); text-align: center; }

/* shared badge */
.badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600;
  padding: 5px 12px; border-radius: var(--r-pill); white-space: nowrap;
}
.badge .bdot { width: 7px; height: 7px; border-radius: 50%; }
.b-images   { background: #e7f8ec; color: #1c7a3a; }
.b-audio    { background: #fff3e0; color: #b56600; }
.b-video    { background: #ffe9ee; color: #c2173f; }
.b-docs     { background: #e8f1ff; color: #0058cc; }
.b-archives { background: #f5eafc; color: #7d33b0; }
.b-ebooks   { background: #e6f6ff; color: #1184c4; }

@media (max-width: 560px) {
  .conv__lead { font-size: 24px; }
  .combo__value { font-size: 24px; }
  .out-filterbox { margin-left: 0; max-width: none; }
  .section, .section--tight { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .price-card { padding: 36px 24px; }
  .conv__out { padding: 18px; }
  .faq-q { font-size: 18px; }
}

/* ============================================================
   FEATURES
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
}
.gray .feat { background: #fff; }
.feat__icon {
  width: 44px; height: 44px; border-radius: 11px; background: var(--blue-tint); color: var(--blue);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feat h3 { font-size: 20px; margin-bottom: 9px; }
.feat p { color: var(--ink-3); font-size: 16px; line-height: 1.5; }
@media (max-width: 860px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feat-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRIVACY CALLOUT
   ============================================================ */
.privacy {
  background: linear-gradient(165deg, #0a1b3d 0%, #0d2a5e 55%, #0a47a0 120%);
  color: #fff; text-align: center;
}
.privacy .wrap { max-width: 840px; }
.privacy__badge {
  width: 76px; height: 76px; border-radius: 20px; margin: 0 auto 30px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.privacy h2 { color: #fff; font-size: clamp(34px, 4.4vw, 52px); }
.privacy p { margin-top: 22px; font-size: 21px; line-height: 1.5; color: rgba(255,255,255,.78); }
.privacy__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 36px; }
.privacy__row .pill { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: #fff; }
.privacy__row .pill .dot { background: #5ac8fa; }

/* ============================================================
   CLI
   ============================================================ */
.cli-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }
.cli-copy h2 { font-size: clamp(30px, 3.6vw, 42px); }
.cli-copy p { margin-top: 18px; font-size: 19px; color: var(--ink-3); line-height: 1.5; }
.cli-copy .arrow-link { margin-top: 26px; }
.terminal {
  background: #1c1c1e; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.terminal__bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; background: #2c2c2e; border-bottom: 1px solid rgba(255,255,255,.06); }
.tdot { width: 12px; height: 12px; border-radius: 50%; }
.tdot.r { background: #ff5f57; } .tdot.y { background: #febc2e; } .tdot.g { background: #28c840; }
.terminal__title { margin-left: 8px; font-size: 13px; color: #8e8e93; font-family: var(--mono); }
.terminal__body { padding: 22px 24px; font-family: var(--mono); font-size: 14.5px; line-height: 1.85; color: #e5e5ea; }
.terminal__body .cmt { color: #6e6e73; }
.terminal__body .prompt { color: #34c759; }
.terminal__body .flag { color: #5ac8fa; }
.terminal__body .str { color: #ffd479; }
.terminal__body .ok { color: #34c759; }
.terminal__body .dim { color: #8e8e93; }
.terminal__body .line { white-space: pre-wrap; word-break: break-word; }
@media (max-width: 820px) { .cli-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================
   CHANGELOG TIMELINE
   ============================================================ */
.timeline { overflow-x: auto; overflow-y: hidden; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
.timeline::-webkit-scrollbar { height: 8px; }
.timeline::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 4px; }
.timeline::-webkit-scrollbar-track { background: transparent; }
.timeline__track {
  display: inline-flex; align-items: stretch; gap: 0;
  padding: 8px max(96px, calc((100vw - var(--maxw)) / 2 + 96px)) 28px max(28px, calc((100vw - var(--maxw)) / 2 + 28px));
  min-width: 100%;
}
.tl-item { flex: 0 0 300px; max-width: 300px; padding-right: 24px; scroll-snap-align: start; position: relative; }
.tl-item:last-child { padding-right: 0; }

/* connector line + node */
.tl-node { position: relative; height: 30px; display: flex; align-items: center; }
.tl-node::before {
  content: ""; position: absolute; left: 0; right: -24px; top: 50%; height: 3px;
  background: var(--line-strong); transform: translateY(-50%);
}
.tl-item:last-child .tl-node::before { right: -96px; }
.tl-item:first-child .tl-node::before { left: 7px; }
.tl-dot {
  position: relative; z-index: 1; width: 15px; height: 15px; border-radius: 50%;
  background: #fff; border: 2px solid var(--line-strong); flex: none;
}
.is-shipped .tl-dot { background: var(--green); border-color: var(--green); }
.is-latest .tl-dot { background: var(--blue); border-color: var(--blue); box-shadow: 0 0 0 5px rgba(0,122,255,.18); }
.is-shipped .tl-node::before { background: var(--green); }
.is-latest .tl-node::before { background: linear-gradient(90deg, var(--green), var(--blue)); }

.tl-card {
  margin-top: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); padding: 22px 22px 24px; height: calc(100% - 48px);
}
.is-latest .tl-card { border-color: rgba(0,122,255,.35); box-shadow: 0 8px 30px -12px rgba(0,122,255,.28); }
.tl-meta { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; }
.tl-ver { font-size: 20px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.tl-date { font-size: 13px; color: var(--ink-4); font-weight: 500; }
.tl-status {
  display: inline-flex; align-items: center; font-size: 12px; font-weight: 600;
  padding: 4px 11px; border-radius: var(--r-pill); letter-spacing: .01em;
}
.s-shipped { background: #e7f8ec; color: #1c7a3a; }
.s-latest { background: var(--blue-tint); color: var(--blue-press); }
.s-planned { background: var(--bg-gray); color: var(--ink-3); border: 1px solid var(--line); }
.tl-card h3 { font-size: 19px; margin: 14px 0 12px; letter-spacing: -0.02em; }
.tl-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.tl-card li { position: relative; padding-left: 18px; font-size: 14.5px; color: var(--ink-3); line-height: 1.45; }
.tl-card li::before { content: ""; position: absolute; left: 2px; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--line-strong); }
.is-shipped .tl-card li::before { background: var(--green); }
.is-latest .tl-card li::before { background: var(--blue); }

/* ============================================================
   PRICING
   ============================================================ */
.price-card {
  max-width: 460px; margin: 0 auto; background: #fff; border: 1px solid var(--line-strong);
  border-radius: var(--r-xl); box-shadow: var(--shadow-md); padding: 48px 44px; text-align: center;
}
.price-card .badge-top { display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--blue); margin-bottom: 18px; }
.price-amount { display: flex; align-items: flex-start; justify-content: center; gap: 4px; }
.price-amount .cur { font-size: 34px; font-weight: 600; margin-top: 10px; color: var(--ink); }
.price-amount .num { font-size: 84px; font-weight: 650; line-height: 1; letter-spacing: -0.04em; color: var(--ink); }
.price-card .lifetime { font-size: 20px; font-weight: 500; color: var(--ink); margin-top: 8px; }
.price-card .once { font-size: 15px; color: var(--ink-4); margin-top: 4px; }
.price-card .btn { width: 100%; margin: 30px 0 0; }
.price-feats { list-style: none; padding: 0; margin: 30px 0 0; text-align: left; display: grid; gap: 13px; border-top: 1px solid var(--line); padding-top: 28px; }
.price-feats li { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--ink-2); }
.price-feats .tick { width: 22px; height: 22px; border-radius: 50%; background: var(--green); color: #fff; flex: none; display: flex; align-items: center; justify-content: center; }
.price-note { margin-top: 22px; font-size: 14px; color: var(--ink-4); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; font-family: inherit;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px; text-align: left; font-size: 21px; font-weight: 600; color: var(--ink); letter-spacing: -0.02em;
}
.faq-q .pm { flex: none; width: 26px; height: 26px; color: var(--blue); display: flex; align-items: center; justify-content: center; transition: transform .2s ease; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .26s ease; }
.faq-a__inner { padding: 0 4px 26px; font-size: 18px; color: var(--ink-3); line-height: 1.6; max-width: 92%; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-gray); border-top: 1px solid var(--line); padding: 46px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer .brand { font-size: 17px; }
.footer .brand-mark { width: 26px; height: 26px; }
.footer__desc { font-size: 14px; color: var(--ink-3); line-height: 1.5; max-width: 320px; margin-top: 12px; }
.footer__copy { font-size: 14px; color: var(--ink-4); }
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer__links a { color: var(--ink-3); font-size: 14px; font-weight: 450; }
.footer__links a:hover { color: var(--ink); text-decoration: none; }
@media (max-width: 600px) { .footer__inner { flex-direction: column; text-align: center; align-items: center; } }
