:root {
  --bg: #f6f5f1;
  --paper: #fffdfa;
  --ink: #191714;
  --muted: #7b746b;
  --line: #ddd7ce;
  --line-strong: #191714;
  --accent: #2f6b4f;
  --danger: #a83232;
  --shadow: 0 10px 30px rgba(25, 23, 20, .06);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0;
  -webkit-text-size-adjust: 100%;
}
button, input {
  font: inherit;
  letter-spacing: 0;
}

.wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 18px 16px 164px;
}
.sitebar {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}
.sitebrand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
}
.sitebrand .logo {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
}
.sitenav {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
}
.sitenav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.hero {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.hero-copy {
  max-width: 1120px;
  margin: 0 auto;
  padding: 54px 16px 46px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
h1, h2, h3, p {
  letter-spacing: 0;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 42px;
  line-height: 1.12;
}
.lead {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 19px;
}
.hero-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 8px;
  margin-top: 24px;
}
.hero-actions .btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 14px;
}
.trust-line {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}
.keyword-line {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.content-band {
  border-bottom: 1px solid var(--line);
}
.band-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 16px;
}
.band-inner h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.18;
}
.band-inner p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}
.feature-grid,
.case-grid,
.example-grid,
.pricing-grid,
.process-grid {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}
.feature-grid { grid-template-columns: repeat(5, 1fr); }
.case-grid, .example-grid { grid-template-columns: repeat(4, 1fr); }
.pricing-grid, .process-grid { grid-template-columns: repeat(3, 1fr); }
.feature-grid article,
.case-grid article,
.example-grid article,
.pricing-grid article,
.process-grid article {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  padding: 14px;
}
.pricing-grid article.featured {
  border-color: var(--ink);
  box-shadow: 0 8px 24px rgba(24, 22, 19, 0.08);
}
.feature-grid h3,
.case-grid h3,
.example-grid h3,
.pricing-grid h3,
.process-grid h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.25;
}
.feature-grid p,
.case-grid p,
.example-grid p,
.pricing-grid p,
.process-grid p {
  font-size: 13px;
}
.case-grid a {
  color: var(--ink);
  text-decoration: none;
}
.process-grid span {
  display: inline-flex;
  width: 30px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}
.pricing-grid strong {
  display: block;
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 10px;
}
.pricing-grid .btn {
  margin-top: 14px;
}
.pay-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.plan-alt-note,
.paypal-inline-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}
.paypal-plan {
  min-height: 44px;
  margin-top: 10px;
}
.paypal-plan[hidden],
.paypal-inline-note[hidden] {
  display: none !important;
}
.pricing-grid a[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
}
.pricing-note {
  margin-top: 14px;
  font-size: 13px;
}
.section-cta {
  width: min(340px, 100%);
  margin-top: 20px;
}
.use-list,
.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.use-list {
  margin-top: 18px;
}
.use-list a,
.use-list span,
.internal-links a {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 800;
}
.upload-wrap {
  padding-top: 32px;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 900;
}
.faq details p {
  margin-top: 8px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0 18px;
  border-bottom: 1px solid var(--line-strong);
  margin-bottom: 20px;
}
.brand > div:nth-child(2) {
  flex: 1;
  min-width: 0;
}
.brand .logo {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  border-radius: 6px;
}
.langpick {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px;
  background: var(--paper);
}
.langpick button {
  appearance: none;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  min-width: 34px;
  height: 30px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.langpick button.active {
  background: var(--ink);
  color: var(--paper);
}
.brand .title {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
}
.brand .sub {
  margin-top: 3px;
  font-size: 13px;
  color: var(--muted);
}

.section {
  margin: 0 0 22px;
}
.label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
}
.label span {
  width: 28px;
  height: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.hint {
  color: var(--muted);
  font-size: 13px;
  margin: -4px 0 10px 36px;
}
.license-section .hint {
  margin-bottom: 0;
}
.paybox {
  display: block;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--paper);
}
.paybox.show {
  display: block;
}
.paytitle {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
}
.paydesc {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}
.pay-actions .btn {
  flex: 1 1 220px;
}
.legal-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.legal-note a {
  color: var(--ink);
  font-weight: 800;
}
.steps-list {
  margin: 12px 0 0 18px;
  color: var(--muted);
}
.steps-list li {
  margin: 7px 0;
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.pick,
.tpl,
.mode,
.btn {
  appearance: none;
  -webkit-appearance: none;
}
.pick {
  min-height: 50px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 6px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.moodpick {
  min-height: 92px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}
.mood-title {
  display: block;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.15;
}
.mood-desc {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}
.pick.active {
  border-color: var(--line-strong);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}

.tpls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.tpl {
  width: 100%;
  min-height: 68px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.tpl:after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--muted);
  border-right: 1px solid var(--muted);
  transform: rotate(45deg);
  flex: 0 0 auto;
}
.tpl.active {
  border-color: var(--line-strong);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}
.tpl.active:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 0 3px 3px 0;
  background: var(--accent);
}
.tname {
  font-size: 17px;
  font-weight: 800;
}
.tdesc {
  font-size: 13px;
  color: var(--muted);
}
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 20px;
  margin-left: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.modepick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border: 1px solid var(--line);
  background: #ebe6dc;
  border-radius: 6px;
  padding: 4px;
}
.mode {
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  min-height: 44px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}
.mode.active {
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

input[type=text] {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  font-size: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
}
input[type=text]:focus {
  border-color: var(--line-strong);
  outline: none;
  box-shadow: inset 0 0 0 1px var(--line-strong);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.chips button {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.chips button.active {
  border-color: var(--line-strong);
  background: var(--ink);
  color: var(--paper);
}

.shot {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 8px;
}
.shot.ok {
  border-color: var(--accent);
}
.shot.bad {
  border-color: var(--danger);
}
.shot .head {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 8px;
}
.shot .num {
  color: var(--paper);
  background: var(--ink);
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}
.shot .desc {
  min-width: 0;
  font-size: 14px;
  color: var(--ink);
}
.shot .tip {
  font-size: 12px;
  color: var(--muted);
  background: #f0ece4;
  padding: 8px 10px;
  border-radius: 5px;
  margin: 8px 0 0 36px;
}
.shot .status {
  margin-top: 8px;
  font-size: 13px;
  word-break: break-word;
}
.shot .status.good {
  color: var(--accent);
}
.shot .status.err {
  color: var(--danger);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  min-height: 50px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  padding: 0 14px;
  text-align: center;
  text-decoration: none;
}
.btn-file {
  margin-top: 10px;
  background: transparent;
  color: var(--ink);
  border: 1px dashed var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
}
.file-control {
  position: relative;
  overflow: hidden;
}
.file-control input[type=file] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.01;
  cursor: pointer;
  font-size: 100px;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:disabled {
  background: #c9c2b8;
  color: #fffaf2;
  cursor: not-allowed;
}
.btn-ghost {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
}

.submit-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px max(12px, env(safe-area-inset-bottom));
  background: rgba(246, 245, 241, .94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.submit-bar .inner {
  max-width: 560px;
  margin: 0 auto;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(246, 245, 241, .96);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 24px;
}
.overlay.show {
  display: flex;
}
.spinner {
  width: 44px;
  height: 44px;
  border: 2px solid var(--line);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.overlay .msg {
  margin-top: 18px;
  font-size: 17px;
  font-weight: 800;
}
.overlay .pct {
  margin-top: 6px;
  font-size: 24px;
  font-weight: 800;
}

.ring-wrap {
  text-align: center;
  margin: 34px 0 24px;
}
.ring {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  position: relative;
}
.ring svg {
  transform: rotate(-90deg);
}
.ring .num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 800;
}
.statusmsg {
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  margin: 14px 0;
}
video {
  width: 100%;
  border-radius: 6px;
  background: #000;
}
.cover-preview {
  display: none;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 6px;
  margin-top: 10px;
  background: #000;
}
.copybox {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  margin: 10px 0;
}
.copybox .ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  margin-bottom: 8px;
}
.copybox .body {
  white-space: pre-wrap;
  font-size: 14px;
  color: var(--ink);
}
.copybtn {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.errbox {
  background: #fff8f6;
  color: var(--danger);
  border: 1px solid #e5b8b0;
  padding: 16px;
  border-radius: 6px;
  text-align: center;
}
.stack > * {
  margin-bottom: 10px;
}
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(25, 23, 20, .42);
  z-index: 80;
}
.modal.show {
  display: flex;
}
.modal-card {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 18px 60px rgba(25, 23, 20, .22);
}
.modal-card h2 {
  margin: 0 0 10px;
}
.modal-card p {
  margin: 0 0 10px;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.qrbox {
  min-height: 240px;
  border: 1px dashed var(--line-strong);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 14px 0;
  background: #fff;
  text-align: center;
  padding: 12px;
}
.qrbox img {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.qr-placeholder {
  display: none;
  color: var(--muted);
  font-size: 14px;
}
.contact-lines {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 12px;
}
.contact-lines p {
  font-size: 14px;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 16px 92px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
.site-footer strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 4px;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}
.site-footer a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}
.footlink {
  max-width: 560px;
  margin: -106px auto 86px;
  padding: 0 16px;
  text-align: center;
}
.footlink a {
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
}

.cn-page {
  background: #f2ede6;
  color: #1b1713;
}
.cn-page .sitebar {
  position: sticky;
  top: 0;
  z-index: 30;
  max-width: none;
  padding: 16px 20px;
  background: rgba(242, 237, 230, 0.9);
  border-bottom: 1px solid rgba(27, 23, 19, 0.08);
  backdrop-filter: blur(18px);
}
.cn-page .sitebrand {
  gap: 12px;
}
.cn-page .sitebrand .logo,
.cn-page .brand .logo {
  border-radius: 10px;
  border: none;
  background: #161311;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.cn-page .sitenav a {
  font-size: 14px;
}
.cn-page .nav-cta {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 18px;
}
.cn-page .hero {
  border: 0;
  background: #171411;
  color: #f7f1e8;
}
.cn-page .hero-copy {
  padding: 56px 16px 48px;
}
.cn-page .eyebrow {
  color: #b7a186;
  font-size: 13px;
}
.cn-page .hero h1 {
  max-width: 880px;
  font-size: 56px;
  line-height: 1.04;
  color: #fff8f1;
}
.cn-page .lead,
.cn-page .trust-line {
  max-width: 780px;
  color: rgba(247, 241, 232, 0.84);
}
.cn-page .hero-actions {
  grid-template-columns: repeat(2, minmax(0, 220px));
  gap: 12px;
}
.cn-page .hero-actions .btn-primary {
  background: #f7f1e8;
  color: #161311;
}
.cn-page .hero-actions .btn-ghost {
  background: transparent;
  color: #f7f1e8;
  border-color: rgba(247, 241, 232, 0.22);
}
.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(247, 241, 232, 0.14);
  color: rgba(247, 241, 232, 0.88);
  font-size: 13px;
  font-weight: 800;
}
.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
  gap: 18px;
  margin-top: 26px;
  align-items: stretch;
}
.hero-phone {
  max-width: 420px;
}
.hero-phone-screen {
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0,0,0,0.28)),
    radial-gradient(circle at top left, rgba(255,255,255,.14), transparent 45%),
    #4a3327;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-phone-top {
  display: flex;
  gap: 8px;
}
.hero-top-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(247, 241, 232, 0.16);
  color: #fff7ee;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}
.hero-top-tag.ghost {
  background: rgba(22, 19, 17, 0.34);
}
.hero-cover-card {
  margin-top: auto;
  padding: 18px;
  border-radius: 18px;
  background: rgba(18, 15, 13, 0.46);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.hero-cover-card .cover-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(247, 241, 232, 0.74);
  font-size: 12px;
  font-weight: 800;
}
.hero-cover-card h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.04;
  color: #fffaf4;
}
.hero-cover-card p {
  margin: 10px 0 0;
  color: rgba(247, 241, 232, 0.86);
  font-size: 16px;
  font-weight: 700;
}
.hero-reel-bars {
  display: grid;
  grid-template-columns: 1.2fr .9fr .8fr .6fr;
  gap: 8px;
  margin-top: 16px;
}
.hero-reel-bars span {
  height: 10px;
  border-radius: 999px;
  background: rgba(247, 241, 232, 0.24);
}
.hero-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.hero-side article {
  min-height: 0;
  padding: 18px 18px 20px;
  border-radius: 18px;
  background: rgba(247, 241, 232, 0.06);
  border: 1px solid rgba(247, 241, 232, 0.08);
}
.hero-side strong {
  display: block;
  margin-bottom: 8px;
  color: #fff8f1;
  font-size: 18px;
  line-height: 1.2;
}
.hero-side p {
  margin: 0;
  color: rgba(247, 241, 232, 0.76);
  font-size: 14px;
  line-height: 1.55;
}
.cn-page .keyword-line {
  margin-top: 20px;
  color: rgba(247, 241, 232, 0.58);
}
.cn-page .content-band {
  border-bottom-color: rgba(27, 23, 19, 0.08);
}
.cn-page .band-inner {
  padding-top: 42px;
  padding-bottom: 42px;
}
.cn-page .band-inner h2 {
  max-width: 780px;
  font-size: 34px;
}
.cn-page .process-grid,
.cn-page .case-grid {
  gap: 12px;
}
.cn-page .process-grid article,
.cn-page .case-grid article {
  border: 1px solid rgba(27, 23, 19, 0.08);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.82);
  padding: 18px;
}
.tool-shell {
  max-width: 1120px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 20px;
  padding-top: 38px;
}
.tool-main {
  min-width: 0;
}
.tool-brand {
  padding: 0 0 16px;
  margin-bottom: 18px;
  border-bottom-color: rgba(27, 23, 19, 0.12);
}
.tool-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  margin-bottom: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(27, 23, 19, 0.08);
  border-radius: 22px;
  background: #fffdfa;
  box-shadow: 0 24px 50px rgba(26, 22, 18, 0.06);
}
.tool-kicker {
  margin: 0 0 10px;
  color: #8f674d;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.tool-intro h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.08;
}
.tool-intro-copy p:last-child {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
}
.tool-intro-metrics {
  display: grid;
  gap: 10px;
}
.tool-intro-metrics div {
  padding: 14px 16px;
  border-radius: 16px;
  background: #f6f1ea;
  border: 1px solid rgba(27, 23, 19, 0.06);
}
.tool-intro-metrics strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
}
.tool-intro-metrics span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.cn-page .section {
  margin: 0 0 14px;
  padding: 20px 22px 22px;
  border: 1px solid rgba(27, 23, 19, 0.08);
  border-radius: 18px;
  background: #fffdfa;
  box-shadow: 0 14px 34px rgba(24, 20, 17, 0.04);
}
.cn-page .label {
  gap: 10px;
  margin-bottom: 12px;
  font-size: 18px;
}
.cn-page .label span {
  width: 32px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: #171411;
  color: #fff8f1;
  font-size: 12px;
}
.cn-page .hint {
  margin: 0 0 12px 42px;
  font-size: 13px;
  line-height: 1.55;
}
.cn-page .license-section .hint {
  margin-bottom: 10px;
}
.cn-page .row2 {
  gap: 12px;
}
.cn-page .pick {
  border-color: rgba(27, 23, 19, 0.08);
  border-radius: 18px;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.cn-page .pick.active {
  border-color: #171411;
  box-shadow: 0 0 0 1px #171411, 0 16px 30px rgba(23, 20, 17, 0.08);
  transform: translateY(-1px);
}
.cn-page .moodpick {
  min-height: 128px;
  padding: 16px 14px;
  align-items: flex-start;
  text-align: left;
}
.cn-page .mood-title {
  font-size: 19px;
}
.cn-page .mood-desc {
  font-size: 13px;
  line-height: 1.45;
}
.cn-page input[type=text] {
  height: 56px;
  border-radius: 16px;
  border-color: rgba(27, 23, 19, 0.1);
  padding: 0 16px;
  background: #fffefb;
}
.cn-page select {
  height: 56px;
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(27, 23, 19, 0.1);
  padding: 0 16px;
  background: #fffefb;
  color: #171411;
  font-size: 15px;
}
.cn-page .form-grid {
  display: grid;
  gap: 12px;
  margin-left: 42px;
}
.cn-page .form-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cn-lite {
  background: #f6f5f2;
  font-family: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}
.cn-lite .sitebar,
.cn-lite .hero,
.cn-lite .content-band,
.cn-lite .tool-side,
.cn-lite .site-footer {
  display: none;
}
.lite-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 10px;
}
.lite-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #171411;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
}
.lite-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: #6c655d;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(23, 20, 17, 0.08);
}
.lite-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px 110px;
}
.lite-intro {
  padding: 12px 2px 18px;
}
.lite-kicker {
  margin: 0 0 8px;
  color: #8f674d;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.lite-intro h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.02;
  letter-spacing: 0;
}
.lite-intro p:last-child {
  margin: 14px 0 0;
  color: #6f685f;
  font-size: 16px;
  line-height: 1.6;
}
.lite-composer {
  padding-bottom: 24px;
}
.lite-card {
  padding: 20px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(23, 20, 17, 0.06);
  box-shadow: 0 20px 50px rgba(23, 20, 17, 0.06);
}
.lite-label {
  display: block;
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 800;
  color: #171411;
}
.lite-brief {
  width: 100%;
  min-height: 144px;
  resize: vertical;
  border: 1px solid rgba(23, 20, 17, 0.08);
  border-radius: 22px;
  padding: 18px 16px;
  background: #fcfbf8;
  font-size: 17px;
  line-height: 1.5;
  color: #171411;
}
.lite-ai-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.lite-ai-btn {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
}
.lite-ai-tip {
  color: #6f685f;
  font-size: 12px;
  line-height: 1.5;
}
.lite-plan {
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  background: #fcfbf8;
  border: 1px solid rgba(23, 20, 17, 0.08);
}
.lite-plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.lite-plan-head strong {
  font-size: 15px;
}
.lite-plan-head span {
  color: #6f685f;
  font-size: 12px;
}
.lite-plan-block + .lite-plan-block {
  margin-top: 14px;
}
.lite-plan-label {
  display: block;
  margin-bottom: 8px;
  color: #6f685f;
  font-size: 12px;
  font-weight: 700;
}
.lite-plan-block p {
  margin: 0;
  color: #171411;
  font-size: 14px;
  line-height: 1.6;
}
.lite-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.lite-plan-pill {
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(23, 20, 17, 0.06);
}
.lite-plan-pill span {
  display: block;
  color: #857c72;
  font-size: 11px;
  margin-bottom: 6px;
}
.lite-plan-pill strong {
  display: block;
  color: #171411;
  font-size: 14px;
  line-height: 1.4;
}
.lite-point-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lite-point {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(23, 20, 17, 0.08);
  color: #171411;
  font-size: 12px;
  font-weight: 700;
}
.lite-shot-plan {
  margin: 0;
  padding-left: 20px;
  color: #171411;
  font-size: 13px;
  line-height: 1.65;
}
.lite-shot-plan li + li {
  margin-top: 6px;
}
.lite-core-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.lite-core-grid-3 {
  grid-template-columns: 1.2fr .9fr 1fr;
}
.lite-core-grid-2 {
  grid-template-columns: minmax(0, 1fr);
}
.lite-section {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(23, 20, 17, 0.06);
}
.lite-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.lite-row-title {
  font-size: 15px;
  font-weight: 800;
  color: #171411;
}
.lite-row-note {
  color: #857c72;
  font-size: 12px;
}
.lite-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.lite-chip {
  min-height: 98px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(23, 20, 17, 0.08);
  background: #fcfbf8;
  text-align: left;
}
.lite-chip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}
.lite-chip span {
  display: block;
  color: #6f685f;
  font-size: 12px;
  line-height: 1.45;
}
.chips-compact {
  margin-top: 8px;
}
.lite-segment {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.lite-segment .mode {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(23, 20, 17, 0.08);
  background: #f7f2eb;
}
.lite-segment .mode.active {
  background: #171411;
  color: #fff8f1;
}
.uploader-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.lite-upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  background: #171411;
  color: #fff8f1;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}
.uploader-tip {
  color: #6f685f;
  font-size: 12px;
  line-height: 1.5;
}
.lite-shots {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.cn-lite .shot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 12px;
  padding: 14px;
  border-radius: 18px;
  background: #fcfbf8;
  border: 1px solid rgba(23, 20, 17, 0.08);
}
.cn-lite .shot .head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cn-lite .shot .num {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #171411;
  color: #fff8f1;
}
.cn-lite .shot .desc {
  font-size: 14px;
  font-weight: 800;
}
.cn-lite .shot .tip,
.cn-lite .shot .status {
  grid-column: 1 / -1;
}
.cn-lite .btn-file {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 12px;
}
.lite-advanced {
  margin-top: 16px;
  border-top: 1px solid rgba(23, 20, 17, 0.06);
  padding-top: 16px;
}
.lite-advanced summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  color: #171411;
  list-style: none;
}
.lite-advanced summary::-webkit-details-marker {
  display: none;
}
.advanced-grid {
  margin: 14px 0 0;
}
.lite-inline-hint {
  margin: 8px 0 0;
  font-size: 12px;
}
.lite-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 16px 92px;
  color: #8d847a;
  font-size: 12px;
}

@media (max-width: 760px) {
  .lite-topbar {
    padding: 16px 14px 8px;
  }
  .lite-shell {
    padding: 0 12px 110px;
  }
  .lite-intro h1 {
    font-size: 34px;
    line-height: 1.06;
  }
  .lite-card {
    padding: 16px;
    border-radius: 20px;
  }
  .lite-core-grid,
  .lite-core-grid-3,
  .lite-chip-grid,
  .lite-segment,
  .lite-plan-grid {
    grid-template-columns: 1fr;
  }
  .uploader-toolbar {
    align-items: flex-start;
  }
  .lite-footer {
    padding-bottom: 92px;
  }
}
.cn-page .field-label {
  display: block;
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.cn-page .span-2 {
  grid-column: 1 / -1;
}
.cn-page .chips {
  gap: 8px;
  margin-top: 12px;
}
.cn-page .chips button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
}
.cn-page .tpls {
  gap: 10px;
}
.cn-page .tpl {
  min-height: 84px;
  padding: 16px 18px;
  border-radius: 18px;
  border-color: rgba(27, 23, 19, 0.08);
}
.cn-page .tpl.active {
  box-shadow: 0 0 0 1px #171411, 0 16px 30px rgba(23, 20, 17, 0.08);
}
.cn-page .tag {
  min-width: 42px;
  height: 24px;
}
.cn-page .modepick {
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cn-page .mode {
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(27, 23, 19, 0.08);
  background: #f7f2eb;
  color: var(--ink);
}
.cn-page .mode.active {
  background: #171411;
  color: #fff8f1;
  box-shadow: none;
}
.cn-page #shots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.cn-page .shot {
  margin: 0;
  padding: 14px;
  border-radius: 18px;
  border-color: rgba(27, 23, 19, 0.08);
  background: #fffefb;
}
.cn-page .shot .head {
  grid-template-columns: 32px 1fr;
}
.cn-page .shot .num {
  width: 32px;
  height: 32px;
  border-radius: 10px;
}
.cn-page .shot .desc {
  font-size: 15px;
  font-weight: 800;
}
.cn-page .shot .tip {
  margin-left: 0;
  margin-top: 10px;
  border-radius: 14px;
  background: #f6f1ea;
  padding: 10px 12px;
}
.cn-page .btn-file {
  min-height: 48px;
  border-radius: 14px;
  border-style: solid;
  border-color: rgba(27, 23, 19, 0.18);
  background: #f9f5ef;
}
.cn-page .paybox {
  margin-top: 12px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(143, 103, 77, 0.14);
  background: #f8f1e7;
}
.cn-page .paytitle {
  font-size: 15px;
}
.cn-page .paydesc {
  font-size: 13px;
  line-height: 1.55;
}
.tool-side {
  display: grid;
  align-content: start;
  gap: 12px;
  position: sticky;
  top: 88px;
  height: fit-content;
}
.side-card {
  padding: 18px;
  border-radius: 18px;
  background: #171411;
  color: #f7f1e8;
  box-shadow: 0 20px 40px rgba(23, 20, 17, 0.16);
}
.side-eyebrow {
  margin: 0 0 10px;
  color: #bca38d;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.side-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.16;
}
.side-card p {
  margin: 0;
  color: rgba(247, 241, 232, 0.78);
  font-size: 14px;
  line-height: 1.6;
}
.side-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.side-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(247, 241, 232, 0.12);
  font-size: 14px;
}
.side-list li:first-child {
  border-top: 0;
  padding-top: 0;
}
.side-list span {
  color: rgba(247, 241, 232, 0.64);
}
.side-list strong {
  color: #fff8f1;
  text-align: right;
}
.cn-page .legal-note {
  margin: 10px 6px 0;
}
.cn-page .submit-bar {
  background: rgba(242, 237, 230, 0.92);
}
.cn-page .submit-bar .btn-primary {
  min-height: 56px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(23, 20, 17, 0.18);
}
@media (max-width: 760px) {
  .sitebar {
    grid-template-columns: 1fr auto;
  }
  .nav-cta {
    grid-column: 2;
    grid-row: 1;
  }
  .sitenav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .hero-copy {
    padding-top: 38px;
  }
  .hero h1 {
    font-size: 34px;
  }
  .lead {
    font-size: 17px;
  }
  .hero-actions {
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .case-grid,
  .example-grid,
  .pricing-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .row2 {
    grid-template-columns: 1fr;
  }
  .band-inner h2 {
    font-size: 24px;
  }
  .cn-page .sitebar {
    padding: 14px 16px;
  }
  .cn-page .nav-cta {
    display: none;
  }
  .cn-page .hero-copy {
    padding-top: 34px;
    padding-bottom: 36px;
  }
  .cn-page .hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }
  .cn-page .hero-actions {
    grid-template-columns: 1fr;
  }
  .hero-stage,
  .tool-shell,
  .tool-intro {
    grid-template-columns: 1fr;
  }
  .hero-phone {
    max-width: none;
  }
  .hero-cover-card h3 {
    font-size: 30px;
  }
  .cn-page .band-inner h2,
  .tool-intro h2 {
    font-size: 28px;
  }
  .cn-page #shots {
    grid-template-columns: 1fr;
  }
  .tool-side {
    position: static;
  }
  .cn-page .section {
    padding: 18px 16px;
  }
  .cn-page .hint {
    margin-left: 0;
  }
  .cn-page .form-grid {
    margin-left: 0;
  }
  .cn-page .form-grid.two-col {
    grid-template-columns: 1fr;
  }
  .cn-page .moodpick {
    min-height: 120px;
  }
}

/* ── English page redesign ── */
.en-page {
  background: #f4f2ee;
}
.en-page .sitebar {
  position: sticky;
  top: 0;
  z-index: 30;
  max-width: none;
  padding: 14px 20px;
  background: rgba(244, 242, 238, 0.92);
  border-bottom: 1px solid rgba(25, 23, 20, 0.06);
  backdrop-filter: blur(18px);
}
.en-page .sitebrand .logo {
  border-radius: 10px;
  border: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.en-page .sitenav a {
  font-size: 14px;
  color: var(--ink);
  transition: opacity .15s;
}
.en-page .sitenav a:hover {
  opacity: .7;
}
.en-nav-cta {
  border-radius: 999px !important;
  padding: 0 20px !important;
  min-height: 40px !important;
  font-size: 14px !important;
}
.en-hero {
  border: 0 !important;
  background: #161311 !important;
  color: #f7f1e8;
}
.en-hero .hero-copy {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 20px 0;
}
.en-hero .eyebrow {
  color: #bca38d;
  font-size: 13px;
}
.en-hero h1 {
  max-width: 720px;
  font-size: 52px;
  line-height: 1.06;
  color: #fff8f1;
  letter-spacing: -0.02em;
}
.en-hero .lead {
  max-width: 640px;
  color: rgba(247, 241, 232, 0.82);
  font-size: 18px;
  line-height: 1.55;
}
.en-hero .hero-actions {
  grid-template-columns: repeat(2, minmax(0, 200px));
  gap: 10px;
}
.en-hero .hero-actions .btn-primary {
  background: #f7f1e8;
  color: #161311;
  border-radius: 999px;
  font-size: 15px;
  min-height: 50px;
}
.en-hero .hero-actions .btn-ghost {
  background: transparent;
  color: #f7f1e8;
  border: 1px solid rgba(247, 241, 232, 0.2);
  border-radius: 999px;
  font-size: 15px;
  min-height: 50px;
}
.en-hero .hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.en-hero .hero-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(247, 241, 232, 0.12);
  color: rgba(247, 241, 232, 0.85);
  font-size: 13px;
  font-weight: 700;
}
.en-hero-visual {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 20px 48px;
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}
.en-hero .hero-phone-screen {
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0,0,0,0.26)),
    radial-gradient(circle at top left, rgba(255,255,255,.12), transparent 45%),
    #4a3327;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.en-hero .hero-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-content: center;
}
.en-hero .hero-side article {
  padding: 20px;
  border-radius: 18px;
  background: rgba(247, 241, 232, 0.06);
  border: 1px solid rgba(247, 241, 232, 0.07);
  transition: background .2s;
}
.en-hero .hero-side article:hover {
  background: rgba(247, 241, 232, 0.09);
}
.en-hero .hero-side strong {
  display: block;
  margin-bottom: 6px;
  color: #fff8f1;
  font-size: 17px;
}
.en-hero .hero-side p {
  margin: 0;
  color: rgba(247, 241, 232, 0.72);
  font-size: 14px;
  line-height: 1.55;
}
.en-page .content-band {
  border-bottom-color: rgba(25, 23, 20, 0.06);
}
.en-page .band-inner {
  padding-top: 42px;
  padding-bottom: 42px;
}
.en-page .band-inner h2 {
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.en-page .feature-grid article,
.en-page .case-grid article,
.en-page .example-grid article,
.en-page .pricing-grid article,
.en-page .process-grid article {
  border-color: rgba(25, 23, 20, 0.06);
  border-radius: 16px;
  background: rgba(255, 253, 250, 0.9);
  box-shadow: 0 6px 20px rgba(25, 23, 20, 0.04);
  padding: 18px;
  transition: transform .15s, box-shadow .15s;
}
.en-page .feature-grid article:hover,
.en-page .case-grid article:hover,
.en-page .example-grid article:hover,
.en-page .process-grid article:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(25, 23, 20, 0.08);
}
.en-page .pricing-grid article.featured {
  border-color: #161311;
  box-shadow: 0 16px 40px rgba(25, 23, 20, 0.12);
  background: #fff;
}
.en-page .process-grid span {
  border: 0;
  border-radius: 999px;
  background: #161311;
  color: #fff8f1;
  width: 32px;
  height: 26px;
}
.en-page .pricing-grid .btn-primary {
  border-radius: 999px;
  min-height: 48px;
}
.en-page .pricing-grid .btn-ghost {
  border-radius: 999px;
  min-height: 48px;
}
.en-page .section {
  margin: 0 0 16px;
  padding: 18px 20px;
  border: 1px solid rgba(25, 23, 20, 0.06);
  border-radius: 18px;
  background: #fffdfa;
  box-shadow: 0 10px 28px rgba(25, 23, 20, 0.04);
}
.en-page .label span {
  border: 0;
  border-radius: 999px;
  background: #161311;
  color: #fff8f1;
}
.en-page .pick {
  border-color: rgba(25, 23, 20, 0.08);
  border-radius: 14px;
  transition: border-color .15s, box-shadow .15s;
}
.en-page .pick.active {
  border-color: #161311;
  box-shadow: 0 0 0 1px #161311;
}
.en-page .tpl {
  border-radius: 14px;
  border-color: rgba(25, 23, 20, 0.08);
}
.en-page .tpl.active {
  box-shadow: 0 0 0 1px #161311;
}
.en-page .modepick {
  border: 0;
  background: transparent;
  gap: 6px;
}
.en-page .mode {
  border: 1px solid rgba(25, 23, 20, 0.08);
  border-radius: 12px;
  background: #f0ece4;
}
.en-page .mode.active {
  background: #161311;
  color: #fff8f1;
  box-shadow: none;
}
.en-page input[type=text] {
  border-radius: 14px;
  border-color: rgba(25, 23, 20, 0.08);
}
.en-page .chips button {
  border-radius: 999px;
}
.en-page .btn-file {
  border-radius: 14px;
  border-style: solid;
  border-color: rgba(25, 23, 20, 0.14);
  background: #f6f3ed;
}
.en-page .shot {
  border-radius: 16px;
  border-color: rgba(25, 23, 20, 0.06);
}
.en-page .shot .tip {
  border-radius: 12px;
  background: #f0ece4;
}
.en-page .submit-bar {
  background: rgba(244, 242, 238, 0.94);
}
.en-page .submit-bar .btn-primary {
  min-height: 52px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(25, 23, 20, 0.14);
}
.en-page .brand {
  border-bottom-color: rgba(25, 23, 20, 0.08);
}
.en-page .brand .logo {
  border: none;
  border-radius: 10px;
}
.en-page .faq details {
  border-top-color: rgba(25, 23, 20, 0.06);
}
.en-page .site-footer {
  border-top-color: rgba(25, 23, 20, 0.06);
}
.en-page .paybox {
  border-radius: 14px;
  border-color: rgba(25, 23, 20, 0.08);
}
.en-page .internal-links a {
  border-radius: 12px;
  border-color: rgba(25, 23, 20, 0.06);
}
@media (max-width: 760px) {
  .en-hero h1 {
    font-size: 36px;
    line-height: 1.08;
  }
  .en-hero .lead {
    font-size: 16px;
  }
  .en-hero .hero-actions {
    grid-template-columns: 1fr;
  }
  .en-hero-visual {
    grid-template-columns: 1fr;
    padding-top: 24px;
    padding-bottom: 36px;
  }
  .en-hero .hero-phone {
    max-width: 320px;
    margin: 0 auto;
  }
  .en-page .nav-cta {
    display: none;
  }
}
