:root {
  --ink: #162038;
  --muted: #657087;
  --line: #e5e9f1;
  --paper: #ffffff;
  --soft: #f6f8fc;
  --blue: #3157e5;
  --blue-dark: #1f3eba;
  --blue-soft: #edf1ff;
  --orange: #ff9f38;
  --green: #1d9b72;
  --navy: #121c35;
  --shadow: 0 24px 70px rgba(24, 39, 85, .14);
  --radius: 24px;
  --type-kicker: 14px;
  --type-caption: 14px;
  --type-secondary: 15px;
  --type-ui: 16px;
  --type-body: 17px;
  --type-lead: 18px;
  --type-card-title: 20px;
  --type-section-title: clamp(36px,2.6vw,42px);
  --type-hero-title: clamp(44px,3vw,48px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 82px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button, input { font: inherit; }
button { cursor: default; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section-pad { padding: 112px 0; }
.narrow-center { max-width: 850px; margin: 0 auto; text-align: center; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255,255,255,.90);
  border-bottom: 1px solid rgba(225,230,241,.86);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.header-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; transition: height .22s ease; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { display: block; width: auto; height: 40px; transition: height .22s ease; }
.main-nav { display: flex; align-items: center; gap: 34px; color: #485269; font-size: var(--type-ui); font-weight: 600; }
.main-nav a { transition: color .2s ease; }
.main-nav a:hover { color: var(--blue); }
.site-header .button-small { transition: padding .22s ease, font-size .22s ease, background-color .2s ease; }
.site-header.is-compact { border-bottom-color: rgba(214,221,235,.96); background: rgba(255,255,255,.96); box-shadow: 0 8px 26px rgba(26,40,78,.09); }
.site-header.is-compact .header-inner { height: 62px; }
.site-header.is-compact .brand-logo { height: 33px; }
.site-header.is-compact .button-small { padding: 8px 15px; font-size: 14px; }

.button { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 12px; border: 0; border-radius: 12px; padding: 15px 22px; cursor: pointer; font-weight: 750; letter-spacing: -.15px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button:focus-visible { outline: 3px solid rgba(49,87,229,.24); outline-offset: 3px; }
.button-small { padding: 10px 18px; font-size: var(--type-ui); }
.button-ghost { color: var(--blue); background: var(--blue-soft); }
.button-primary { color: white; background: var(--blue); box-shadow: 0 11px 24px rgba(49,87,229,.22); }
.button-light { display: inline-flex; align-items: center; gap: 28px; color: var(--navy); background: white; }
.button-light span { font-size: 22px; line-height: 1; }
.button-outline-wide { width: 100%; border: 1px solid #ccd3e2; background: white; color: var(--ink); }
.button-wide { width: 100%; }
.price-card .button { min-height: 54px; padding-right: 18px; box-shadow: 0 8px 20px rgba(24,39,85,.09); }
.price-card .button::after { content: "→"; margin-left: auto; font-size: 20px; font-weight: 800; line-height: 1; transition: transform .18s ease; }
.price-card .button:hover::after { transform: translateX(4px); }
.price-card .button-outline-wide:hover { border-color: #9eb0ec; color: var(--blue-dark); background: #f7f9ff; box-shadow: 0 13px 27px rgba(49,87,229,.14); }
.price-card .button-primary:hover { background: var(--blue-dark); box-shadow: 0 15px 30px rgba(49,87,229,.3); }

.hero { position: relative; overflow: hidden; padding: 84px 0 92px; background: linear-gradient(135deg,#fbfcff 0%,#f4f7ff 60%,#fff9f1 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .35; background-image: radial-gradient(#aeb9d7 0.7px, transparent .7px); background-size: 24px 24px; mask-image: linear-gradient(to right,black,transparent 60%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(20px); opacity: .5; }
.hero-glow-one { width: 340px; height: 340px; top: -170px; left: 36%; background: #dbe4ff; }
.hero-glow-two { width: 250px; height: 250px; right: -100px; bottom: -110px; background: #ffe0ba; }
.hero-grid { position: relative; width: min(1280px, calc(100% - 48px)); display: grid; grid-template-columns: .88fr 1.12fr; gap: 56px; align-items: center; }
.eyebrow, .section-kicker { color: var(--blue); font-size: var(--type-kicker); font-weight: 800; letter-spacing: .085em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; }
.eyebrow span { width: 19px; height: 2px; background: var(--orange); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 25px; font-size: clamp(44px,3.6vw,58px); line-height: .99; letter-spacing: -.055em; }
.hero h1 { font-size: var(--type-hero-title); line-height: 1.02; }
h1 em { color: var(--blue); font-style: normal; }
.hero-title-line { white-space: nowrap; }
.hero-lead { max-width: 590px; margin-bottom: 30px; color: #5e687d; font-size: var(--type-lead); line-height: 1.6; }
.hero-actions { display: flex; align-items: center; gap: 17px; margin-bottom: 28px; }
.action-note { color: #6e788e; font-size: 15px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 22px; color: #566176; font-size: 15px; font-weight: 600; }
.hero-points b { color: var(--green); margin-right: 4px; }

.product-stage { position: relative; padding: 30px 0 26px; transform: scale(1.06); transform-origin: left center; }
.stage-label { position: absolute; top: -3px; left: 18px; display: flex; align-items: center; gap: 7px; color: #59647a; font-size: 13px; font-weight: 700; }
.stage-label span { width: 7px; height: 7px; background: #24b181; border-radius: 50%; box-shadow: 0 0 0 4px rgba(36,177,129,.12); }
.browser-card { position: relative; z-index: 2; overflow: hidden; border: 1px solid #dce2ed; border-radius: 19px; background: white; box-shadow: var(--shadow); transform: rotate(.35deg); }
.browser-top { height: 49px; display: grid; grid-template-columns: 76px 1fr auto; align-items: center; border-bottom: 1px solid var(--line); padding: 0 15px; }
.browser-dots { display: flex; gap: 5px; }
.browser-dots i { width: 7px; height: 7px; border-radius: 50%; background: #d8deea; }
.browser-dots i:first-child { background: #ff9b92; }
.browser-title { color: #677188; font-size: 12px; font-weight: 650; }
.browser-status { padding: 5px 9px; border-radius: 20px; color: var(--green); background: #eaf8f3; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.app-layout { min-height: 390px; display: grid; grid-template-columns: 1.42fr .58fr; }
.document-preview { display: grid; place-items: center; padding: 18px; background: #f1f3f8; }
.doc-paper { position: relative; width: 100%; min-height: 350px; padding: 28px 24px; background: white; box-shadow: 0 8px 24px rgba(25,36,63,.09); color: #3f4758; font-family: Georgia, serif; font-size: 13.5px; line-height: 1.65; }
.doc-heading { text-align: center; color: #252b38; font-size: 17px; font-weight: 800; }
.doc-meta { display: flex; justify-content: space-between; margin: 17px 0 19px; }
.doc-paper mark { padding: 1px 3px; border-radius: 2px; background: #fff0cf; color: inherit; }
.doc-lines { margin-top: 22px; }
.doc-lines i { display: block; width: 100%; height: 3px; margin: 8px 0; border-radius: 3px; background: #e4e7ed; }
.doc-lines i:nth-child(2) { width: 88%; }.doc-lines i:nth-child(3) { width: 94%; }.doc-lines i:nth-child(4) { width: 65%; }
.doc-stamp { position: absolute; right: 22px; bottom: 22px; padding: 7px 10px; border: 2px solid rgba(49,87,229,.5); box-shadow: inset 0 0 0 2px white, inset 0 0 0 3px rgba(49,87,229,.42); color: rgba(49,87,229,.72); font-family: Arial,sans-serif; font-size: 10px; font-weight: 900; letter-spacing: .045em; text-shadow: 0 0 .35px currentColor; transform: rotate(-7deg); }
.form-panel { padding: 25px 12px 18px; background: white; }
.form-heading { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 17px; font-size: 12.5px; font-weight: 800; white-space: nowrap; }
.form-heading small { padding: 3px 6px; border-radius: 5px; color: var(--blue); background: var(--blue-soft); font-size: 10px; }
.form-panel label { display: block; margin-bottom: 10px; color: #6e7990; font-size: 11px; font-weight: 700; }
.form-panel input { width: 100%; margin-top: 4px; padding: 9px; border: 1px solid #e1e5ee; border-radius: 6px; background: #fbfcfe; color: #30394b; font-size: 12.5px; font-weight: 650; outline: none; }
.generate-button { width: 100%; display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding: 11px; border: 0; border-radius: 7px; background: var(--blue); color: white; font-size: 11.5px; font-weight: 800; }
.generate-button b { font-size: 14px; }
.format-row { display: flex; align-items: center; gap: 5px; margin-top: 10px; }
.format-row span { padding: 3px 5px; border-radius: 4px; background: #eff2f7; color: #59647a; font-size: 10px; font-weight: 800; }
.format-row small { margin-left: auto; color: #7d879b; font-size: 10px; }
.float-chip { position: absolute; z-index: 4; display: flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid #e2e7f0; border-radius: 10px; background: rgba(255,255,255,.96); box-shadow: 0 12px 28px rgba(24,39,85,.12); color: #566176; font-size: 11px; font-weight: 700; }
.float-chip b { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 6px; }
.chip-formula { left: -22px; bottom: 5px; transform: rotate(3deg); }
.chip-formula b { color: var(--blue); background: var(--blue-soft); }
.chip-ready { right: 0; top: 69px; transform: rotate(2deg); }
.chip-ready b { color: white; background: var(--green); }

.use-strip {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,250,254,.96) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.use-strip-shell {
  padding: 28px 0 30px;
}
.strip-title {
  margin-bottom: 22px;
  text-align: center;
  color: #8a94a8;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.use-strip-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.use-pill {
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid #dfe5f0;
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 28px rgba(24,39,85,.04);
  color: #4c5870;
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}
.use-pill img {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  object-fit: contain;
}
.use-pill-wide {
  padding-left: 22px;
  padding-right: 22px;
}
.use-separator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c6cedd;
  opacity: .95;
}

.section-kicker { margin-bottom: 16px; }
h2 { margin-bottom: 22px; font-size: var(--type-section-title); line-height: 1.08; letter-spacing: -.045em; }
h3 { margin-bottom: 10px; font-size: var(--type-card-title); letter-spacing: -.025em; }
.section-lead { margin: 0 auto 48px; max-width: 680px; color: var(--muted); font-size: var(--type-lead); }
.problem { position: relative; overflow: hidden; background: white; }
.problem::before, .problem::after { content: ""; position: absolute; z-index: 0; pointer-events: none; background-position: center; background-repeat: no-repeat; background-size: contain; filter: grayscale(1); opacity: .055; }
.problem::before { width: 150px; height: 150px; left: max(24px,calc(50% - 710px)); top: 118px; background-image: url("icon/file-signature.svg"); transform: rotate(-11deg); }
.problem::after { width: 132px; height: 132px; right: max(28px,calc(50% - 700px)); top: 270px; background-image: url("icon/cloud-back-up.svg"); transform: rotate(10deg); }
.problem .narrow-center { position: relative; z-index: 1; max-width: 1080px; }
.problem .section-lead { max-width: 760px; margin-bottom: 52px; line-height: 1.55; }

.compare-grid { position: relative; width: 100%; max-width: 1040px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 120px; margin: 0 auto; text-align: left; }
.compare-card { min-height: 0; height: 100%; display: flex; flex-direction: column; padding: 32px 34px; border-radius: 28px; }
.old-way { border: 1px solid #e7e3de; background: linear-gradient(160deg,#fff 0%,#fffaf5 100%); box-shadow: 0 14px 36px rgba(36,42,58,.045); }
.new-way { color: white; border: 1px solid rgba(255,255,255,.045); background: linear-gradient(155deg,#14203c 0%,#101a32 100%); box-shadow: 0 22px 48px rgba(18,28,53,.14); }

.compare-title { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.compare-title-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: #eceff4; color: #8992a3; line-height: 1; }
.compare-title-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.old-way .compare-title-icon { color: #eb741f; background: #fff0e3; }
.new-way .compare-title-icon { color: #7be889; background: #174d47; }

.time-summary { margin-bottom: 16px; }
.time-main { display: flex; align-items: baseline; flex-wrap: nowrap; gap: 8px; white-space: nowrap; line-height: 1; }
.time-main .time-mark { font-size: 43px; font-weight: 800; letter-spacing: -.04em; }
.time-main strong { font-size: clamp(58px,5vw,68px); line-height: .88; letter-spacing: -.055em; }
.time-main .time-unit { font-size: 30px; font-weight: 800; letter-spacing: -.035em; }
.time-summary > small { display: block; margin-top: 5px; font-size: 15px; font-weight: 700; line-height: 1.3; }
.old-time .time-mark, .old-time strong, .old-time .time-unit { color: #ed7927; }
.old-time > small { color: #8c6044; }
.new-time .time-mark, .new-time strong, .new-time .time-unit { color: #70df78; }
.new-time > small { color: #9ab3a1; }

.old-way ol { list-style: none; padding: 0; margin: 0 0 18px; border-top: 1px solid #ece7e2; }
.old-way li { display: flex; align-items: center; gap: 15px; min-height: 58px; padding: 11px 0; border-bottom: 1px solid #ece7e2; color: #4f5b72; font-size: 17px; }
.old-way li b { flex: 0 0 28px; color: #ef721c; font-size: 14px; font-weight: 850; }
.old-way li > span { flex: 1; }
.old-way li small { flex: 0 0 auto; min-width: 82px; padding: 9px 13px; border-radius: 10px; color: #d45f17; background: #fff0e3; font-size: 14px; font-weight: 850; text-align: center; box-shadow: inset 0 0 0 1px rgba(237,121,39,.12); }

.waste-note { display: flex; align-items: center; gap: 12px; margin-top: auto; padding: 14px 16px; border: 1px solid #ffd5b7; border-radius: 13px; color: #c95813; background: #fff4ea; font-size: 16px; font-weight: 800; line-height: 1.3; }
.waste-note .note-icon { flex: 0 0 31px; width: 31px; height: 31px; display: grid; place-items: center; color: #ed7927; line-height: 1; }
.note-icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.new-way-content { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.11); }
.new-way-content strong { font-size: 30px; line-height: 1.13; letter-spacing: -.035em; }
.new-way-content p { margin: 14px 0 0; max-width: 440px; color: #b3bdd0; font-size: var(--type-body); line-height: 1.55; }
.new-way-automation { flex: 1; min-height: 290px; display: flex; flex-direction: column; margin-top: 26px; padding: 22px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.035); }
.automation-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 13px; color: #dbe2f2; font-size: 14px; font-weight: 800; }
.automation-heading small { padding: 6px 8px; border-radius: 7px; color: #70df78; background: rgba(58,189,107,.13); font-size: 11px; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.automation-list { display: flex; flex-direction: column; }
.automation-row { min-height: 66px; display: grid; grid-template-columns: 28px 1fr 24px; align-items: center; gap: 13px; padding: 11px 0; border-top: 1px solid rgba(255,255,255,.09); }
.automation-row:first-child { border-top: 0; }
.automation-row .compare-feature-icon { width: 25px; height: 25px; }
.automation-row > span { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.automation-row strong { color: #f4f6fb; font-size: var(--type-ui); line-height: 1.3; }
.automation-row small { color: #9facbf; font-size: 13px; line-height: 1.35; }
.automation-row > b { display: grid; place-items: center; width: 23px; height: 23px; border-radius: 50%; color: #70df78; background: rgba(58,189,107,.13); font-size: 12px; }
.compare-feature-icon { flex: 0 0 22px; width: 22px; height: 22px; fill: none; stroke: #70df78; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.automation-ready { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: auto; padding: 16px; border-radius: 13px; color: #16322a; background: linear-gradient(135deg,#e8faf2,#dff6eb); }
.automation-ready > div { display: flex; align-items: center; gap: 11px; }
.automation-ready > div > b { display: grid; place-items: center; flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%; color: white; background: #21a875; font-size: 15px; }
.automation-ready > div > span { display: flex; flex-direction: column; gap: 1px; }
.automation-ready strong { color: #15392e; font-size: 15px; }
.automation-ready small { color: #527168; font-size: 12px; }
.automation-formats { display: flex; gap: 6px; }
.automation-formats i { padding: 6px 7px; border: 1px solid rgba(21,125,92,.17); border-radius: 6px; color: #157d5c; background: rgba(255,255,255,.60); font-size: 10px; font-style: normal; font-weight: 900; }
.compare-bridge { position: absolute; z-index: 2; left: 50%; top: 50%; display: grid; place-items: center; width: 58px; height: 58px; color: var(--blue); transform: translate(-50%,-50%); pointer-events: none; }
.compare-arrow { position: relative; display: grid; place-items: center; width: 56px; height: 56px; border: 1px solid #dce5ff; border-radius: 50%; color: var(--blue); background: rgba(255,255,255,.98); box-shadow: 0 10px 26px rgba(49,87,229,.14); }
.compare-arrow svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.how { position: relative; overflow: hidden; background: var(--soft); }
.how::before, .how::after { content: ""; position: absolute; z-index: 0; pointer-events: none; background-position: center; background-repeat: no-repeat; background-size: contain; filter: grayscale(1); opacity: .05; }
.how::before { width: 138px; height: 138px; left: calc(50% + 145px); top: 310px; background-image: url("icon/features-alt.svg"); transform: rotate(-9deg); }
.how::after { width: 144px; height: 144px; right: max(26px,calc(50% - 535px)); bottom: 82px; background-image: url("icon/file-pdf.svg"); transform: rotate(8deg); }
.how > .container { position: relative; z-index: 1; }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 48px; }
.section-heading-row h2 { margin-bottom: 0; }
.section-heading-row > p { max-width: 400px; margin: 0 0 5px; color: var(--muted); font-size: var(--type-lead); line-height: 1.55; }
.how-intro { max-width: 500px; margin-bottom: 5px; }
.how-intro p { margin: 0 0 17px; color: var(--muted); font-size: var(--type-lead); line-height: 1.55; }
.browser-note { display: inline-flex; align-items: center; gap: 10px; color: #33425e; font-size: var(--type-body); font-weight: 700; line-height: 1.4; }
.browser-note b { width: 26px; height: 26px; display: grid; place-items: center; flex: 0 0 26px; border-radius: 50%; color: #16845f; background: #dff5eb; font-size: 13px; }
.steps-grid { position: relative; isolation: isolate; min-height: 990px; }
.steps-route { position: absolute; z-index: 0; inset: 0; width: 100%; height: 990px; overflow: visible; pointer-events: none; }
.steps-route path { fill: none; stroke: #9fb1e6; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 7 6; vector-effect: non-scaling-stroke; }
.steps-route circle { fill: white; stroke: #6f89d6; stroke-width: 2; vector-effect: non-scaling-stroke; }
.step-card { position: absolute; z-index: 1; width: min(510px,44.5%); min-width: 0; min-height: 0; padding: 12px 12px 22px; overflow: visible; border: 1px solid #e1e6ef; border-radius: var(--radius); background: white; box-shadow: 0 12px 32px rgba(26,40,78,.035); }
.step-card-one { left: 24px; top: 0; }
.step-card-two { right: 24px; top: 260px; }
.step-card-three { left: 24px; top: 520px; }
.featured-step { border-color: #cdd6ff; box-shadow: 0 15px 38px rgba(49,87,229,.09); }
.step-number { position: absolute; z-index: 4; top: 22px; left: -52px; color: #7d8aa2; font-size: 20px; font-weight: 800; letter-spacing: .06em; }
.step-visual { position: relative; height: 270px; display: block; margin-bottom: 23px; overflow: hidden; border-radius: 17px; background: linear-gradient(145deg,#f5f7fb,#eef2f8); }
.step-scene-bar { height: 36px; display: flex; align-items: center; gap: 5px; padding: 0 13px; border-bottom: 1px solid #e4e8f0; color: #69758d; background: rgba(255,255,255,.78); font-size: 11px; }
.step-scene-bar i { width: 7px; height: 7px; border-radius: 50%; background: #c8cfdd; }
.step-scene-bar span { margin-left: 5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.step-doc-paper { width: 82%; min-height: 224px; margin: 10px auto 0; padding: 19px 18px; border: 1px solid #e0e5ed; border-radius: 5px 5px 0 0; color: #4a566d; background: white; box-shadow: 0 12px 25px rgba(30,45,79,.10); font-size: 11.5px; line-height: 1.55; }
.step-doc-title { margin-bottom: 13px; color: #1f2940; font-size: 14px; font-weight: 850; text-align: center; }
.step-doc-meta { display: flex; align-items: center; justify-content: space-between; gap: 6px; margin-bottom: 11px; font-size: 11px; }
.step-doc-paper p { margin: 9px 0; color: #566277; font-size: 11.5px; line-height: 1.55; }
.step-doc-paper mark { display: inline-block; padding: 3px 5px; border-radius: 4px; color: var(--blue); background: #e7edff; font-family: Consolas,monospace; font-size: 10.5px; white-space: nowrap; }
.step-doc-lines { display: flex; flex-direction: column; gap: 5px; margin-top: 13px; }
.step-doc-lines i { height: 5px; border-radius: 4px; background: #e7eaf0; }
.step-doc-lines i:nth-child(2) { width: 84%; }
.step-doc-lines i:nth-child(3) { width: 64%; }
.step-scene-note { position: absolute; right: 10px; bottom: 10px; padding: 8px 10px; border: 1px solid #d7e0fb; border-radius: 7px; color: var(--blue); background: white; box-shadow: 0 7px 15px rgba(49,87,229,.10); font-size: 11.5px; font-weight: 800; }

.step-upload-scene { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 12px; padding: 27px 14px; background: linear-gradient(145deg,#eef2ff,#e6ecff); }
.step-upload-file, .step-found-panel { min-width: 0; height: 216px; padding: 16px; border: 1px solid #dce3f5; border-radius: 12px; background: white; box-shadow: 0 10px 22px rgba(49,87,229,.08); }
.step-upload-file { display: flex; flex-direction: column; justify-content: center; }
.step-found-panel { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); align-content: center; gap: 10px 8px; }
.step-word-icon { display: grid; place-items: center; width: 48px; height: 48px; margin: 0 auto 12px; border-radius: 9px; color: white; background: var(--blue); font-size: 18px; font-weight: 900; }
.step-upload-file strong, .step-upload-file small, .step-upload-file > span { display: block; overflow: hidden; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
.step-upload-file strong { color: #28334a; font-size: 12px; }
.step-upload-file small { margin-top: 5px; color: #737f96; font-size: 10.5px; }
.step-upload-file > span { margin-top: 9px; color: var(--blue); font-size: 10.5px; font-weight: 800; }
.step-scan-track { height: 5px; margin-top: 15px; overflow: hidden; border-radius: 4px; background: #e7ebf4; }
.step-scan-track i { display: block; width: 100%; height: 100%; background: var(--blue); }
.step-found-title { grid-column: 1 / -1; display: flex; align-items: center; gap: 7px; margin-bottom: 4px; color: #1f2940; font-size: 12px; font-weight: 800; }
.step-found-title b { display: grid; place-items: center; flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; color: #118263; background: #dff6ed; font-size: 12px; }
.step-found-panel code { display: block; width: 100%; max-width: none; margin: 0; padding: 8px 6px; overflow: hidden; border-radius: 5px; color: var(--blue); background: #edf1ff; font-size: 10.5px; text-align: center; text-overflow: ellipsis; white-space: nowrap; }

.step-result-layout { display: grid; grid-template-columns: 1.08fr .92fr; height: calc(100% - 34px); }
.step-mini-form { padding: 13px 10px; border-right: 1px solid #e1e6ef; background: white; }
.step-mini-form label { display: block; margin-bottom: 7px; }
.step-mini-form label span { display: block; margin-bottom: 3px; color: #737f96; font-size: 9px; }
.step-mini-form label b { display: block; padding: 7px 8px; overflow: hidden; border: 1px solid #dfe4ed; border-radius: 6px; color: #2b354c; background: #f8f9fc; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.step-generate-button { display: flex; align-items: center; justify-content: space-between; margin-top: 9px; padding: 8px; border-radius: 6px; color: white; background: var(--blue); font-size: 10px; font-weight: 800; }
.step-result-preview { position: relative; padding: 16px 9px 9px; background: #eef2f7; }
.step-result-paper { height: 148px; padding: 17px 10px; border: 1px solid #dde3ec; border-radius: 4px; color: #5e697e; background: white; box-shadow: 0 8px 18px rgba(30,45,79,.08); }
.step-result-paper strong { display: block; margin-bottom: 14px; color: #263149; font-size: 10px; text-align: center; }
.step-result-paper i { display: block; height: 4px; margin-top: 7px; border-radius: 4px; background: #e5e9f0; }
.step-result-paper i:nth-child(3) { width: 82%; }
.step-result-paper i:nth-child(5) { width: 67%; }
.step-ready-note { position: absolute; right: 7px; bottom: 12px; display: flex; align-items: center; gap: 5px; padding: 6px 7px; border: 1px solid #caeddf; border-radius: 7px; color: #116f53; background: white; box-shadow: 0 7px 16px rgba(21,120,89,.12); font-size: 10px; font-weight: 800; white-space: nowrap; }
.step-ready-note b { display: grid; place-items: center; width: 17px; height: 17px; border-radius: 50%; color: white; background: #20a875; font-size: 10px; }

.step-copy { padding: 0 20px 2px; }
.step-copy h3 { margin-bottom: 10px; font-size: 24px; line-height: 1.2; letter-spacing: -.025em; }
.step-copy p { margin: 0; color: var(--muted); font-size: var(--type-body); line-height: 1.55; }

.demo-section { padding-top: 0; background: var(--soft); }
.demo-box { position: relative; min-height: 500px; display: grid; grid-template-columns: 1fr .95fr; align-items: center; gap: 70px; padding: 66px 70px; overflow: hidden; border-radius: 34px; color: white; background: linear-gradient(135deg,#223fc0 0%,#3157e5 55%,#627ff0 100%); box-shadow: 0 30px 70px rgba(49,87,229,.22); }
.demo-box::before { content: ""; position: absolute; width: 430px; height: 430px; right: -60px; bottom: -220px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.025),0 0 0 120px rgba(255,255,255,.02); }
.demo-copy { position: relative; z-index: 2; }
.section-kicker-light { color: #bfcaff; }
.demo-copy p { max-width: 550px; margin-bottom: 30px; color: #d6ddff; font-size: var(--type-body); }
.demo-mini-ui { position: relative; z-index: 2; padding: 15px; }
.mini-window { overflow: hidden; border: 1px solid rgba(255,255,255,.25); border-radius: 17px; background: white; box-shadow: 0 25px 55px rgba(18,32,97,.34); transform: rotate(2deg); }
.mini-top { height: 44px; display: flex; align-items: center; gap: 5px; padding: 0 13px; border-bottom: 1px solid var(--line); }
.mini-top i { width: 7px; height: 7px; border-radius: 50%; background: #d7dce7; }
.mini-top span { margin-left: 8px; color: #69758b; font-size: 10px; font-weight: 700; }
.mini-body { padding: 23px; }
.mini-field { margin-bottom: 12px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; }
.mini-field span { display: block; color: #7b8598; font-size: 10px; }
.mini-field b { display: block; margin-top: 2px; color: #364056; font-size: 12px; }
.mini-result { display: flex; align-items: center; gap: 10px; margin: 17px 0; padding: 11px; border-radius: 9px; background: #eaf8f3; }
.mini-result > i { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; background: var(--green); color: white; font-style: normal; }
.mini-result span { display: flex; flex-direction: column; color: #3c4b4a; font-size: 12px; }
.mini-result small { color: #637b76; font-size: 10px; }
.mini-button { display: flex; justify-content: space-between; padding: 10px 12px; border-radius: 8px; background: var(--blue); color: white; font-size: 11px; font-weight: 800; }

.features { position: relative; overflow: hidden; background: white; }
.features::before, .features::after { content: ""; position: absolute; z-index: 0; pointer-events: none; background-position: center; background-repeat: no-repeat; background-size: contain; filter: grayscale(1); opacity: .047; }
.features::before { width: 140px; height: 140px; left: max(22px,calc(50% - 720px)); top: 130px; background-image: url("icon/big-data-analytics.svg"); transform: rotate(-8deg); }
.features::after { width: 132px; height: 132px; right: max(24px,calc(50% - 710px)); bottom: 124px; background-image: url("icon/data-report.svg"); transform: rotate(9deg); }
.features > .container { position: relative; z-index: 1; }
.feature-heading { margin-bottom: 42px; }
.feature-heading p { max-width: 660px; margin: 22px auto 0; color: var(--muted); font-size: var(--type-lead); }
.format-showcase { overflow: hidden; border: 1px solid #dfe5ef; border-radius: 28px; background: #f6f8fc; box-shadow: 0 22px 58px rgba(26,40,78,.08); }
.format-toolbar { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 18px 14px 22px; border-bottom: 1px solid #e0e5ee; background: white; }
.format-tabs { display: flex; align-items: center; gap: 6px; }
.format-tab { min-height: 50px; padding: 12px 21px; border: 1px solid transparent; border-radius: 12px; color: #5f6b82; background: transparent; font: inherit; font-size: 18px; font-weight: 800; cursor: pointer; }
.format-tab:hover { color: var(--blue); background: #f4f6fc; }
.format-tab:focus-visible, .format-nav button:focus-visible { outline: 3px solid rgba(49,87,229,.24); outline-offset: 2px; }
.format-tab.is-active { border-color: #d4ddff; color: var(--blue); background: var(--blue-soft); }
.format-nav { display: flex; align-items: center; gap: 8px; }
.format-nav button { width: 38px; height: 38px; display: grid; place-items: center; padding: 0; border: 1px solid #dce2ed; border-radius: 50%; color: #40506f; background: white; font: inherit; font-size: 17px; font-weight: 800; cursor: pointer; }
.format-nav button:hover { border-color: #bfcaf3; color: var(--blue); background: #f7f9ff; }
.format-nav span { min-width: 46px; color: #737e92; font-size: 12px; font-weight: 800; text-align: center; }
.format-stage { touch-action: pan-y; }
.format-panel { min-height: 445px; display: grid; grid-template-columns: .78fr 1.22fr; gap: 0; padding: 18px; animation: format-panel-in .28s ease both; }
.format-panel[hidden] { display: none; }
.format-panel-copy { position: relative; z-index: 1; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 42px 38px; overflow: hidden; border-radius: 20px; color: white; background: linear-gradient(145deg,#111b34,#1b2a4b); }
.format-panel-copy::after { content: ""; position: absolute; z-index: -1; width: 240px; height: 240px; right: -120px; bottom: -145px; border: 1px solid rgba(255,255,255,.10); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255,255,255,.025),0 0 0 84px rgba(255,255,255,.018); }
.format-panel-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; padding: 5px 12px 5px 5px; border: 1px solid rgba(157,176,255,.16); border-radius: 12px; background: rgba(93,122,235,.08); }
.format-panel-icon { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 34px; border-radius: 9px; color: #a8b8ff; background: rgba(93,122,235,.18); font-size: 13px; font-weight: 900; }
.format-panel-icon img { display: block; width: 19px; height: 19px; object-fit: contain; filter: brightness(1.75) saturate(.8); }
.format-panel-kicker { color: #b4c1ff; font-size: 12px; font-weight: 800; letter-spacing: .075em; text-transform: uppercase; }
.format-panel-copy h3 { margin: 0 0 14px; color: white; font-size: 28px; line-height: 1.12; letter-spacing: -.035em; }
.format-panel-copy p { margin: 0; color: #c4ccdc; font-size: var(--type-body); line-height: 1.58; }
.format-panel-copy code { margin-top: 27px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.13); border-radius: 9px; color: #e3e8f5; background: rgba(255,255,255,.055); font-size: var(--type-secondary); line-height: 1.4; }
.format-flow { min-width: 0; display: grid; grid-template-columns: minmax(150px,.68fr) 42px minmax(280px,1.32fr); align-items: center; gap: 14px; padding: 27px 28px; }
.format-source { min-height: 170px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 22px; border: 1px solid #d9e1f0; border-radius: 19px; background: white; box-shadow: 0 15px 34px rgba(39,57,99,.08); text-align: center; }
.format-source small { margin-bottom: 14px; color: #717c91; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.format-source strong { color: #101a32; font-size: clamp(31px,4vw,46px); line-height: 1; letter-spacing: -.045em; }
#format-panel-money .format-source > strong { white-space: nowrap; }
.format-source-text strong { font-size: clamp(23px,2.5vw,32px); line-height: 1.16; }
.format-source-date strong { font-size: clamp(29px,3.2vw,38px); letter-spacing: -.035em; white-space: nowrap; }
.format-flow-arrow { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid #d4defa; border-radius: 50%; color: var(--blue); background: white; box-shadow: 0 8px 18px rgba(49,87,229,.10); font-size: 19px; font-weight: 900; }
.format-results { min-width: 0; display: flex; flex-direction: column; gap: 0; overflow: hidden; border: 1px solid #dfe5ef; border-radius: 19px; background: white; box-shadow: 0 15px 34px rgba(39,57,99,.07); }
.format-results > div { min-width: 0; min-height: 68px; display: grid; grid-template-columns: 44px 1fr; align-items: center; gap: 14px; padding: 11px 16px; border-bottom: 1px solid #e6eaf1; background: white; }
.format-results > div:last-child { border-bottom: 0; }
.format-results span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 11px; color: var(--blue); background: var(--blue-soft); font-size: 11px; font-weight: 900; }
.format-results > div:nth-child(2) span, .format-results > div:nth-child(4) span { color: #15946a; background: #e4f7ef; }
.format-results strong { min-width: 0; color: #263149; font-size: var(--type-ui); line-height: 1.4; overflow-wrap: anywhere; }
.formula-source { align-items: stretch; gap: 8px; text-align: left; }
.formula-source > small { align-self: center; margin-bottom: 6px; }
.formula-source > div { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 10px; border-radius: 9px; background: #f5f7fc; }
.formula-source span { color: #69758a; font-size: 12px; font-weight: 650; }
.formula-source strong { color: #1d2942; font-size: 15px; line-height: 1; letter-spacing: -.02em; white-space: nowrap; }
.formula-results > div > div { min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.formula-results small { display: block; margin: 0; color: #66738a; font-size: 14px; font-weight: 700; white-space: nowrap; }
.formula-results strong { display: block; font-size: 17px; white-space: nowrap; }
.formula-results > div:last-child { background: #f5fcf9; }
.formula-results > div:last-child strong { color: #148563; }
.feature-essentials { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 17px; }
.feature-essentials article { min-height: 160px; display: flex; align-items: flex-start; gap: 17px; padding: 26px; border: 1px solid #e0e5ed; border-radius: 18px; background: #fafbfe; }
.feature-essentials article > div { min-width: 0; flex: 1; }
.essential-icon { flex: 0 0 44px; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; color: var(--blue); background: var(--blue-soft); }
.essential-icon img { display: block; width: 24px; height: 24px; object-fit: contain; }
.feature-essentials h3 { min-height: 50px; margin: 2px 0 10px; font-size: var(--type-card-title); line-height: 1.25; }
.feature-essentials p { margin: 0; color: #59657b; font-size: var(--type-body); line-height: 1.55; }

@keyframes format-panel-in {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.audience { padding-bottom: 60px; background: var(--soft); }
.audience-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 15px; }
.audience-card { min-width: 0; min-height: 285px; display: flex; flex-direction: column; padding: 27px; border: 1px solid #dfe5ef; border-radius: 21px; background: white; box-shadow: 0 10px 28px rgba(26,40,78,.035); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.audience-card:hover { border-color: #cdd7f6; box-shadow: 0 17px 38px rgba(49,87,229,.08); transform: translateY(-3px); }
.audience-card-heading { display: flex; align-items: center; gap: 12px; margin-bottom: 21px; }
.audience-mark { flex: 0 0 43px; width: 43px; height: 43px; display: grid; place-items: center; border-radius: 11px; color: var(--blue); background: var(--blue-soft); font-size: 12px; font-weight: 900; letter-spacing: .03em; }
.audience-card:nth-child(2) .audience-mark { color: #7659cc; background: #f0ecff; }
.audience-card:nth-child(3) .audience-mark { color: #118563; background: #e3f6ef; }
.audience-card:nth-child(4) .audience-mark { color: #d26a24; background: #fff0e5; }
.audience-card h3 { margin: 0; font-size: var(--type-card-title); line-height: 1.15; letter-spacing: -.025em; }
.audience-card > p { min-height: 81px; margin: 0 0 20px; color: #59657b; font-size: var(--type-body); line-height: 1.52; }
.audience-documents { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.audience-documents span { padding: 8px 10px; border: 1px solid #dce2ec; border-radius: 8px; color: #4f5c73; background: #f8f9fc; font-size: 14px; font-weight: 650; line-height: 1.25; }
.trust { padding: 0 0 78px; background: var(--soft); }
.trust-panel { display: grid; grid-template-columns: minmax(250px,.78fr) minmax(0,1.55fr); align-items: center; gap: 42px; padding: 34px; border: 1px solid #dce4ef; border-radius: 27px; background: white; box-shadow: 0 16px 38px rgba(26,40,78,.055); }
.trust-intro h2 { margin: 0 0 14px; font-size: var(--type-section-title); line-height: 1.08; }
.trust-intro p { margin: 0 0 20px; color: #59667d; font-size: var(--type-body); line-height: 1.55; }
.trust-intro a { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: 16px; font-weight: 750; }
.trust-intro a span { font-size: 18px; }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.trust-item { display: flex; align-items: flex-start; gap: 12px; min-width: 0; padding: 17px; border: 1px solid #e2e7f0; border-radius: 15px; background: #f8faff; }
.trust-item > div { min-width: 0; }
.trust-icon { width: 40px; height: 40px; display: grid; place-items: center; flex: 0 0 40px; border-radius: 11px; color: var(--blue); background: #e9eeff; }
.trust-item:nth-child(2) .trust-icon { color: #9a691e; background: #fff4df; }
.trust-item:nth-child(3) .trust-icon { color: #b05252; background: #fff0f0; }
.trust-item:nth-child(4) .trust-icon { color: #148563; background: #e2f6ee; }
.trust-icon i, .trust-icon i::before, .trust-icon i::after { box-sizing: border-box; }
.trust-icon i { position: relative; display: block; color: currentColor; }
.trust-icon-lock i { width: 18px; height: 14px; margin-top: 5px; border: 2px solid currentColor; border-radius: 4px; }
.trust-icon-lock i::before { content: ""; position: absolute; left: 3px; top: -10px; width: 8px; height: 9px; border: 2px solid currentColor; border-bottom: 0; border-radius: 6px 6px 0 0; }
.trust-icon-lock i::after { content: ""; position: absolute; left: 6px; top: 4px; width: 2px; height: 4px; border-radius: 2px; background: currentColor; }
.trust-icon-clock i { width: 20px; height: 20px; border: 2px solid currentColor; border-radius: 50%; }
.trust-icon-clock i::before { content: ""; position: absolute; left: 8px; top: 3px; width: 2px; height: 7px; border-radius: 2px; background: currentColor; transform-origin: 1px 7px; transform: rotate(-2deg); }
.trust-icon-clock i::after { content: ""; position: absolute; left: 9px; top: 9px; width: 6px; height: 2px; border-radius: 2px; background: currentColor; transform-origin: 0 1px; transform: rotate(28deg); }
.trust-icon-trash i { width: 16px; height: 17px; margin-top: 4px; border: 2px solid currentColor; border-top: 0; border-radius: 0 0 3px 3px; }
.trust-icon-trash i::before { content: ""; position: absolute; left: -3px; top: -5px; width: 18px; height: 2px; border-radius: 2px; background: currentColor; }
.trust-icon-trash i::after { content: ""; position: absolute; left: 4px; top: 4px; width: 2px; height: 8px; border-radius: 2px; background: currentColor; box-shadow: 4px 0 0 currentColor; }
.trust-icon-document i { width: 17px; height: 21px; border: 2px solid currentColor; border-radius: 3px; }
.trust-icon-document i::before { content: ""; position: absolute; right: -2px; top: -2px; width: 7px; height: 7px; border-left: 2px solid currentColor; border-bottom: 2px solid currentColor; background: #e2f6ee; }
.trust-icon-document i::after { content: ""; position: absolute; left: 3px; top: 10px; width: 8px; height: 2px; border-radius: 2px; background: currentColor; box-shadow: 0 4px 0 currentColor; }
.trust-item h3 { margin: 1px 0 8px; font-size: var(--type-card-title); line-height: 1.25; }
.trust-item p { margin: 0; color: #59667d; font-size: var(--type-body); line-height: 1.5; }

.pricing { position: relative; overflow: hidden; background: linear-gradient(180deg,#ffffff 0%,#f4f6ff 16%,#f4f6ff 84%,#ffffff 100%); }
.pricing::before { content: ""; position: absolute; z-index: 0; width: 148px; height: 148px; left: max(26px,calc(50% - 730px)); top: 228px; pointer-events: none; background: center/contain no-repeat url("icon/file-invoice-dollar.svg"); filter: grayscale(1); opacity: .05; transform: rotate(-10deg); }
.pricing > .container { position: relative; z-index: 1; }
.pricing-header { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.pricing-header h2 { margin-bottom: 16px; }
.pricing-header p { max-width: 650px; margin: 0 auto; color: var(--muted); font-size: var(--type-lead); line-height: 1.6; }
.pricing-note { display: flex; align-items: center; gap: 9px; width: 100%; margin: 0 0 16px; padding: 10px 12px; border-radius: 10px; color: #59657b; background: #f5f7fc; font-size: 14px; }
.pricing-note span { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: #e5ebff; color: var(--blue); font-size: 12px; font-weight: 850; }
.pricing-cards { width: min(900px,100%); display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; gap: 22px; margin: 0 auto; }
.home-pricing-cards { width: min(1180px,100%); grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.home-pricing-cards .price-card { min-height: 550px; padding: 32px 28px; }
.home-pricing-cards .monthly-card { border-color: #d2dbea; background: rgba(255,255,255,.98); }
.home-pricing-cards .monthly-card .price-card-head small { color: var(--blue); }
.home-pricing-cards .yearly-card .monthly-price { color: #1d5f4c; border-color: #bfe6d9; background: #eaf8f3; }
.price-card { position: relative; display: flex; flex-direction: column; min-height: 500px; padding: 36px; overflow: hidden; border: 1px solid #dce3ee; border-radius: 26px; background: rgba(255,255,255,.96); box-shadow: 0 16px 42px rgba(26,40,78,.07); }
.price-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.price-card-head small { display: block; margin-bottom: 7px; color: var(--blue); font-size: 15px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.price-card-head span { color: #69758a; font-size: 14px; }
.price-value { display: flex; align-items: baseline; gap: 11px; margin-top: 30px; }
.price-value strong { font-size: 48px; line-height: 1; letter-spacing: -.05em; }
.price-value span { color: #68748a; font-size: 14px; }
.monthly-price { align-self: flex-start; margin-top: 14px; padding: 8px 11px; border: 1px solid #d6e0ff; border-radius: 9px; color: var(--blue); background: #edf1ff; font-size: 14px; font-weight: 750; }
.price-summary { min-height: 52px; margin: 22px 0 0; color: #59657b; font-size: var(--type-body); line-height: 1.55; }
.price-card ul { flex: 1; margin: 25px 0 28px; padding: 22px 0 0; border-top: 1px solid #e3e8f0; list-style: none; }
.price-card li { position: relative; padding: 9px 0 9px 27px; color: #425069; font-size: 16px; line-height: 1.4; }
.price-card li::before { content: "✓"; position: absolute; left: 0; top: 9px; display: grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; color: #148563; background: #e0f5ec; font-size: 11px; font-weight: 900; }
.pro-card { border: 2px solid #4968eb; background: linear-gradient(160deg,#ffffff 0%,#f1f5ff 100%); box-shadow: 0 24px 58px rgba(49,87,229,.18); }
.pro-card::before { content: ""; position: absolute; width: 220px; height: 220px; right: -120px; bottom: -140px; border: 1px solid rgba(49,87,229,.10); border-radius: 50%; box-shadow: 0 0 0 40px rgba(49,87,229,.025),0 0 0 80px rgba(49,87,229,.018); }
.pro-card > * { position: relative; z-index: 1; }
.popular-label { position: absolute; z-index: 2; top: 22px; right: 22px; padding: 8px 11px; border-radius: 9px; background: var(--blue); color: white; font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .05em; }

.final-cta { padding: 40px 0 44px; color: white; background: linear-gradient(180deg,#fff 0%,#f6f8fc 100%); }
.final-inner { position: relative; min-height: 330px; display: flex; align-items: center; justify-content: space-between; gap: 60px; padding: 66px 72px; overflow: hidden; border-radius: 32px; background: linear-gradient(135deg,#1f3eba 0%,#3157e5 58%,#657ff0 100%); box-shadow: 0 28px 65px rgba(49,87,229,.22); }
.final-inner::before { content: ""; position: absolute; width: 330px; height: 330px; right: -105px; bottom: -225px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.035),0 0 0 110px rgba(255,255,255,.022); }
.final-inner::after { content: ""; position: absolute; width: 170px; height: 170px; left: 43%; top: -120px; border-radius: 50%; background: rgba(255,255,255,.055); }
.final-inner > div { position: relative; z-index: 1; }
.final-inner h2 { max-width: 660px; margin: 0; font-size: var(--type-section-title); }
.final-inner .section-kicker-light { margin-bottom: 19px; color: #e1e7ff; font-size: var(--type-secondary); letter-spacing: .07em; }
.final-actions { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 13px; }
.final-actions .button-light { min-width: 250px; justify-content: space-between; box-shadow: 0 14px 30px rgba(21,38,105,.20); }
.final-actions small { color: #dce3ff; font-size: var(--type-secondary); }

.site-footer { padding: 62px 0 28px; border-top: 1px solid #182441; color: #d9dfec; background: #0d1529; }
.footer-top { display: grid; grid-template-columns: .75fr 1.25fr 1fr; gap: 80px; padding-bottom: 50px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; font-size: var(--type-ui); line-height: 1.5; }
.footer-links strong, .footer-contact strong { margin-bottom: 8px; color: #ffffff; font-size: var(--type-lead); }
.footer-links a { color: #a3aec3; transition: color .2s ease; }
.footer-links a:hover { color: #ffffff; }
.footer-contact a { color: #9db0ff; font-size: var(--type-card-title); font-weight: 800; }
.footer-contact span { color: #8e9ab2; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.10); color: #8f9ab0; font-size: var(--type-caption); line-height: 1.5; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px 18px; }

/* Inner pages: pricing and help */
.inner-page { background: var(--soft); }
.inner-hero { position: relative; overflow: hidden; padding: 66px 0 76px; background: linear-gradient(135deg,#fbfcff 0%,#f2f5ff 65%,#fff9f1 100%); }
.inner-hero::before { content: ""; position: absolute; inset: 0; opacity: .3; background-image: radial-gradient(#aeb9d7 .7px,transparent .7px); background-size: 24px 24px; mask-image: linear-gradient(to right,black,transparent 70%); }
.inner-page-glow { position: absolute; width: 330px; height: 330px; top: -210px; left: 45%; border-radius: 50%; background: #dce4ff; filter: blur(22px); opacity: .7; }
.inner-hero-copy { position: relative; text-align: center; }
.inner-hero .section-kicker { margin-bottom: 17px; }
.inner-hero h1 { max-width: 850px; margin: 0 auto 22px; font-size: var(--type-hero-title); line-height: 1.05; }
.inner-hero p { max-width: 660px; margin: 0 auto; color: var(--muted); font-size: var(--type-lead); line-height: 1.6; }
.pricing-page-hero { padding-top: 48px; padding-bottom: 56px; }
.pricing-page-plans { padding-top: 68px; padding-bottom: 96px; }
.pricing-page-plans .pricing-cards { width: min(1180px,100%); grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.pricing-page-plans .price-card { min-height: 550px; padding: 32px 28px; }
.pricing-page-plans .price-card .button { display: block; text-align: center; }
.pricing-page-plans .monthly-card { border-color: #d2dbea; background: rgba(255,255,255,.98); }
.pricing-page-plans .monthly-card .price-card-head small { color: var(--blue); }
.pricing-page-plans .yearly-card .monthly-price { color: #1d5f4c; border-color: #bfe6d9; background: #eaf8f3; }
@media (max-width:1100px) { .pricing-page-plans .pricing-cards { width: min(520px,100%); grid-template-columns: 1fr; } }
@media (max-width:1100px) { .home-pricing-cards { width: min(520px,100%); grid-template-columns: 1fr; } }
.tariff-comparison { padding-top: 94px; background: linear-gradient(180deg,#fff 0%,#f7f9fd 42%,#fff 100%); }
.tariff-table { width: min(1080px,100%); margin: 0 auto; overflow: hidden; border: 1px solid #dbe3ef; border-radius: 20px; background: white; box-shadow: 0 18px 48px rgba(25,40,82,.08); }
.tariff-table-row { display: grid; grid-template-columns: 1.18fr .82fr 1.25fr; min-height: 72px; border-bottom: 1px solid #e7ebf2; transition: background-color .18s ease; }
.tariff-table-row:last-child { border-bottom: 0; }
.tariff-table-row:not(.tariff-table-head):not(.tariff-table-special):hover { background: #fbfcff; }
.tariff-table-row > * { min-width: 0; display: flex; align-items: center; gap: 10px; padding: 17px 24px; border-right: 1px solid #e7ebf2; font-size: 16px; line-height: 1.4; }
.tariff-table-row > *:last-child { border-right: 0; }
.tariff-table-head { min-height: 74px; color: #fff; background: #14294b; }
.tariff-table-head > * { font-size: 16px; font-weight: 800; letter-spacing: .01em; }
.tariff-table-head > *:nth-child(2) { justify-content: center; }
.tariff-table-row > span:first-child { color: #273750; background: #fbfcfe; font-weight: 750; }
.tariff-table-row > span:nth-child(2) { justify-content: center; text-align: center; }
.tariff-limit { color: #3e4c62; font-size: 14px; font-weight: 800; }
.tariff-pro-value, .tariff-yes { color: #334158; font-weight: 700; }
.tariff-pro-value i, .tariff-yes i, .tariff-no i { width: 24px; height: 24px; display: grid; place-items: center; flex: 0 0 24px; border-radius: 50%; font-style: normal; font-size: 13px; font-weight: 900; }
.tariff-pro-value i, .tariff-yes i { color: #14785b; background: #e2f5ee; line-height: 1; }
.tariff-no { justify-content: center; color: #667085; font-weight: 650; }
.tariff-no i { position: relative; color: transparent; background: #f8e9ec; font-size: 0; }
.tariff-no i::before, .tariff-no i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 8px; height: 1.5px; border-radius: 2px; background: #b54a5d; transform: translate(-50%,-50%) rotate(45deg); }
.tariff-no i::after { transform: translate(-50%,-50%) rotate(-45deg); }
.inner-page-cta { padding: 0 0 90px; background: white; }
.inner-page-cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 42px; padding: 54px 60px; border-radius: 28px; color: white; background: linear-gradient(135deg,#284bd1,#496df0); box-shadow: 0 24px 55px rgba(39,70,190,.19); }
.inner-page-cta-panel h2 { margin: 8px 0 0; color: white; font-size: var(--type-section-title); line-height: 1.1; }
.inner-page-cta-panel .button { flex: 0 0 auto; }

.help-faq { background: white; }
.help-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 76px; }
.help-aside { position: sticky; top: 105px; }
.help-aside h2 { max-width: 390px; margin: 15px 0 18px; font-size: var(--type-section-title); line-height: 1.08; }
.help-aside > p { max-width: 390px; color: var(--muted); font-size: var(--type-body); line-height: 1.65; }
.faq-list { display: grid; gap: 10px; }
.faq-item { overflow: hidden; border: 1px solid #e1e6ef; border-radius: 16px; background: #fcfdff; transition: border-color .2s ease,box-shadow .2s ease,background-color .2s ease; }
.faq-item:has(.faq-question[aria-expanded="true"]) { border-color: #c6d2fb; box-shadow: 0 12px 30px rgba(28,43,83,.06); }
.faq-question { width: 100%; min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 16px 20px; border: 0; color: #1d2940; background: transparent; text-align: left; }
.faq-question:hover { background: #f8faff; }
.faq-question:focus { outline: none; }
.faq-question:focus-visible { outline: 3px solid rgba(49,87,229,.16); outline-offset: -3px; }
.faq-question > span { display: flex; align-items: center; gap: 15px; font-size: 18px; font-weight: 600; line-height: 1.4; letter-spacing: -.01em; }
.faq-question b { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 34px; border-radius: 9px; color: var(--blue); background: var(--blue-soft); font-size: 12px; font-weight: 750; }
.faq-question > i { position: relative; width: 30px; height: 30px; flex: 0 0 30px; border: 1px solid #d7deeb; border-radius: 50%; background: white; }
.faq-question > i::before, .faq-question > i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 11px; height: 2px; border-radius: 2px; background: var(--blue); transform: translate(-50%,-50%); }
.faq-question > i::after { transform: translate(-50%,-50%) rotate(90deg); transition: transform .2s ease; }
.faq-question[aria-expanded="true"] > i::after { transform: translate(-50%,-50%) rotate(0); }
.faq-answer { padding: 0 69px 22px; color: #566278; font-size: var(--type-body); line-height: 1.65; }
.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child, .faq-answer ul:last-child { margin-bottom: 0; }
.faq-answer ul { margin: 4px 0 14px; padding-left: 22px; }
.faq-answer li { margin: 4px 0; }
.faq-answer code { padding: 2px 5px; border-radius: 5px; color: var(--blue); background: var(--blue-soft); font-size: 14px; }
.help-contact { background: var(--soft); }
.help-contact-panel { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; padding: 58px; border: 1px solid #dce3ef; border-radius: 28px; background: white; box-shadow: 0 22px 60px rgba(25,40,82,.08); }
.help-contact-copy h2 { margin: 14px 0 19px; font-size: var(--type-section-title); line-height: 1.1; }
.help-contact-copy p { color: var(--muted); font-size: var(--type-body); line-height: 1.65; }
.help-contact-copy > a { color: var(--blue); font-size: 22px; font-weight: 850; }
.help-form { display: flex; flex-direction: column; gap: 18px; }
.help-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.help-form label { display: flex; flex-direction: column; gap: 8px; color: #354258; font-size: var(--type-secondary); font-weight: 750; }
.help-form input, .help-form textarea { width: 100%; border: 1px solid #d7deea; border-radius: 12px; padding: 13px 15px; outline: 0; color: var(--ink); background: #fbfcff; font: inherit; transition: border-color .2s ease,box-shadow .2s ease; }
.help-form textarea { resize: vertical; min-height: 145px; }
.help-form input:focus, .help-form textarea:focus { border-color: #91a8fa; box-shadow: 0 0 0 4px rgba(49,87,229,.09); }
.help-form-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.help-form-bottom p { flex: 1; margin: 0; color: #9a4055; font-size: 14px; line-height: 1.4; }
.help-form-bottom button { flex: 0 0 auto; }
.help-form-bottom button span { margin-left: 18px; }
.help-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

.legal-hero { padding-bottom: 70px; }
.legal-hero h1 { max-width: 940px; }
.legal-document { background: var(--soft); }
.legal-layout { display: grid; grid-template-columns: 280px minmax(0,1fr); align-items: start; gap: 34px; }
.legal-nav { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 5px; padding: 20px; border: 1px solid #dde4ef; border-radius: 20px; background: rgba(255,255,255,.92); box-shadow: 0 14px 35px rgba(25,40,82,.06); }
.legal-nav > span { margin: 2px 8px 13px; color: #788397; font-size: 12px; font-weight: 850; letter-spacing: .075em; text-transform: uppercase; }
.legal-nav a { display: flex; align-items: center; gap: 11px; padding: 10px 9px; border-radius: 10px; color: #4f5c72; font-size: 14px; font-weight: 700; line-height: 1.35; transition: color .2s ease,background .2s ease; }
.legal-nav a:hover { color: var(--blue); background: var(--blue-soft); }
.legal-nav b { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 30px; border-radius: 8px; color: var(--blue); background: var(--blue-soft); font-size: 10px; }
.legal-content { display: grid; gap: 18px; }
.legal-section { position: relative; scroll-margin-top: 88px; padding: 36px 42px 34px 96px; border: 1px solid #dde4ef; border-radius: 22px; background: white; box-shadow: 0 14px 35px rgba(25,40,82,.045); }
.legal-section-number { position: absolute; left: 32px; top: 36px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; color: var(--blue); background: var(--blue-soft); font-size: 12px; font-weight: 900; }
.legal-section h2 { margin-bottom: 20px; font-size: 27px; line-height: 1.2; }
.legal-section p { margin-bottom: 14px; color: #566278; font-size: var(--type-body); line-height: 1.75; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { margin: 2px 0 17px; padding: 0; list-style: none; }
.legal-section li { position: relative; margin: 9px 0; padding-left: 24px; color: #566278; font-size: var(--type-body); line-height: 1.65; }
.legal-section li::before { content: ""; position: absolute; left: 2px; top: .68em; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px var(--blue-soft); }
.legal-section a { color: var(--blue); font-weight: 700; overflow-wrap: anywhere; }

/* How it works */
.main-nav .is-current { color: var(--blue); }
.guide-page { background: var(--soft); }
.guide-hero { position: relative; padding: 92px 0 100px; overflow: hidden; background: linear-gradient(135deg,#fbfcff 0%,#f3f6ff 64%,#fff9f2 100%); }
.guide-hero::before { content: ""; position: absolute; inset: 0; opacity: .31; background-image: radial-gradient(#aeb9d7 .7px,transparent .7px); background-size: 24px 24px; mask-image: linear-gradient(to right,black,transparent 68%); }
.guide-glow { position: absolute; border-radius: 50%; filter: blur(24px); opacity: .55; }
.guide-glow-one { width: 360px; height: 360px; left: 38%; top: -220px; background: #d9e2ff; }
.guide-glow-two { width: 280px; height: 280px; right: -90px; bottom: -150px; background: #ffe0ba; }
.guide-hero-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 72px; }
.guide-hero-copy h1 { max-width: 620px; margin-bottom: 27px; font-size: clamp(44px,3.7vw,58px); line-height: 1.02; }
.guide-hero-copy h1 em { display: inline; color: var(--blue); font-style: normal; }
.guide-hero-copy > p { max-width: 610px; margin-bottom: 34px; color: #59657b; font-size: var(--type-lead); line-height: 1.65; }
.guide-phase-pills { display: flex; flex-wrap: wrap; gap: 12px; }
.guide-phase-pills > div { min-width: 225px; display: flex; align-items: center; gap: 12px; padding: 13px 15px; border: 1px solid #dde4f1; border-radius: 14px; background: rgba(255,255,255,.82); box-shadow: 0 10px 25px rgba(24,39,85,.05); }
.guide-phase-pills b { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 36px; border-radius: 10px; color: var(--blue); background: var(--blue-soft); font-size: 13px; }
.guide-phase-pills span { display: flex; flex-direction: column; line-height: 1.35; }
.guide-phase-pills strong { font-size: 15px; }
.guide-phase-pills small { color: #798397; font-size: 13px; }

.guide-map { position: relative; padding: 28px; border: 1px solid #dce3ef; border-radius: 28px; background: rgba(255,255,255,.9); box-shadow: 0 26px 65px rgba(27,44,94,.13); }
.guide-map::after { content: ""; position: absolute; z-index: -1; width: 190px; height: 190px; right: -34px; top: -38px; border-radius: 50%; background: rgba(49,87,229,.06); }
.guide-map-label { display: flex; align-items: center; gap: 9px; margin-bottom: 15px; color: #46536c; font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.guide-map-label span { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--blue); font-size: 11px; }
.guide-map-row { display: grid; grid-template-columns: 1fr 40px 1fr; align-items: center; gap: 10px; }
.guide-map-card { min-height: 145px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 22px; border: 1px solid #e0e5ef; border-radius: 18px; background: #f9faff; }
.guide-map-card img { width: 34px; height: 34px; margin-bottom: 17px; object-fit: contain; opacity: .84; }
.guide-map-card span { margin-bottom: 3px; color: #7b8598; font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .05em; }
.guide-map-card strong { font-size: 18px; }
.guide-map-card-blue { border-color: #d2ddff; background: #edf1ff; }
.guide-map-arrow { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid #d7e0fb; border-radius: 50%; color: var(--blue); background: white; font-size: 20px; font-weight: 800; }
.guide-map-divider { display: flex; align-items: center; gap: 12px; margin: 22px 0 16px; color: #657087; }
.guide-map-divider::before, .guide-map-divider::after { content: ""; height: 1px; flex: 1; background: #dfe4ed; }
.guide-map-divider span { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid #d9e2fd; border-radius: 50%; color: var(--blue); background: white; font-size: 16px; }
.guide-map-divider b { white-space: nowrap; font-size: 12px; text-transform: uppercase; letter-spacing: .055em; }
.guide-cycle { position: relative; display: grid; grid-template-columns: 1fr 36px 1fr; align-items: center; gap: 8px; padding: 18px 52px 18px 18px; border-radius: 18px; color: white; background: linear-gradient(145deg,#111b34,#1d2d50); overflow: hidden; }
.guide-cycle > div:not(.guide-cycle-arrow) { display: grid; grid-template-columns: 28px 1fr; column-gap: 10px; align-items: center; }
.guide-cycle-number { grid-row: 1/3; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; color: #aebdff; background: rgba(91,121,235,.17); font-size: 12px; font-weight: 850; }
.guide-cycle strong { font-size: 15px; }
.guide-cycle small { color: #aeb8cc; font-size: 12px; }
.guide-cycle-arrow { color: #8ea4ff; font-size: 20px; text-align: center; }
.guide-cycle-return { position: absolute; right: 16px; top: 50%; color: #70df78; font-size: 28px; font-weight: 600; transform: translateY(-50%); }

.guide-setup { position: relative; overflow: hidden; background: var(--soft); }
.guide-setup::before { content: ""; position: absolute; width: 150px; height: 150px; right: max(22px,calc(50% - 720px)); top: 110px; pointer-events: none; background: center/contain no-repeat url("icon/file-signature.svg"); filter: grayscale(1); opacity: .045; transform: rotate(9deg); }
.guide-section-heading { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; margin-bottom: 50px; }
.guide-section-heading h2 { max-width: 620px; margin-bottom: 0; }
.guide-section-heading > p { max-width: 440px; margin: 0 0 3px; color: var(--muted); font-size: var(--type-lead); line-height: 1.58; }
.guide-setup-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.guide-step-card { min-width: 0; padding: 24px; border: 1px solid #dde4ef; border-radius: 26px; background: white; box-shadow: 0 16px 38px rgba(26,40,78,.06); }
.guide-step-card-accent { border-color: #cbd7ff; box-shadow: 0 20px 44px rgba(49,87,229,.10); }
.guide-step-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.guide-step-number { color: var(--blue); font-size: 20px; font-weight: 850; letter-spacing: .04em; }
.guide-once-badge { padding: 7px 10px; border-radius: 8px; color: var(--blue); background: var(--blue-soft); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .05em; }
.guide-word-window, .guide-upload-window { height: 300px; margin-bottom: 25px; overflow: hidden; border-radius: 18px; background: #f0f3f8; }
.guide-window-bar { height: 43px; display: flex; align-items: center; gap: 5px; padding: 0 13px; border-bottom: 1px solid #dce2ec; background: white; }
.guide-window-bar i { width: 7px; height: 7px; border-radius: 50%; background: #cbd3e1; }
.guide-window-bar span { margin-left: 8px; color: #67738a; font-size: 11px; }
.guide-word-paper { width: 76%; min-height: 234px; margin: 17px auto 0; padding: 24px 28px; color: #3f4758; background: white; box-shadow: 0 8px 22px rgba(25,36,63,.08); font-size: 12px; line-height: 1.55; }
.guide-word-paper > strong { display: block; margin-bottom: 15px; color: #202a3e; text-align: center; font-size: 14px; }
.guide-word-paper > div { display: flex; justify-content: space-between; margin-bottom: 15px; }
.guide-word-paper p { margin-bottom: 11px; }
.guide-word-paper mark { padding: 2px 5px; border-radius: 4px; color: var(--blue); background: #e9eeff; }
.guide-word-paper mark.guide-word-mark-red { color: #d64045; background: #e9eeff; }
.guide-word-paper > i { display: block; width: 100%; height: 4px; margin-top: 7px; border-radius: 4px; background: #e5e9f0; }
.guide-word-paper > i:last-child { width: 66%; }
.guide-upload-window { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 13px; padding: 28px; background: linear-gradient(145deg,#edf1ff,#e7edff); }
.guide-upload-file, .guide-detected-tags { min-width: 0; height: 215px; display: flex; flex-direction: column; justify-content: center; padding: 22px; border: 1px solid #dce3ef; border-radius: 16px; background: white; }
.guide-upload-file { align-items: center; text-align: center; }
.guide-upload-file > b { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 13px; border-radius: 12px; color: white; background: var(--blue); font-size: 22px; }
.guide-upload-file strong { font-size: 14px; }
.guide-upload-file small { margin: 5px 0 17px; color: #7b8598; font-size: 11px; }
.guide-upload-file i { width: 100%; height: 4px; border-radius: 4px; background: var(--blue); }
.guide-upload-file span { margin-top: 10px; color: var(--blue); font-size: 11px; font-weight: 800; }
.guide-detected-tags > strong { margin-bottom: 17px; font-size: 14px; }
.guide-detected-tags > strong b { color: var(--green); }
.guide-detected-tags > div { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.guide-detected-tags code { min-width: 0; padding: 8px 6px; border-radius: 6px; color: var(--blue); background: var(--blue-soft); font-size: 11px; text-align: center; }
.guide-step-copy { padding: 0 5px 3px; }
.guide-step-copy h3 { margin-bottom: 11px; font-size: 24px; }
.guide-step-copy > p { margin-bottom: 18px; color: var(--muted); font-size: var(--type-body); line-height: 1.57; }
.guide-step-copy > small { display: block; margin-top: 14px; color: #6c778c; font-size: 14px; line-height: 1.5; }
.guide-tag-rules { display: flex; flex-wrap: wrap; gap: 8px; }
.guide-tag-rules code { padding: 8px 10px; border: 1px solid #dce3f6; border-radius: 8px; color: var(--blue); background: #f4f6ff; font-size: 13px; }
.guide-check-list { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 0; padding: 0; list-style: none; color: #4d5a72; font-size: 14px; font-weight: 650; }
.guide-check-list li::before { content: "✓"; margin-right: 7px; color: var(--green); font-weight: 900; }

.guide-repeat { position: relative; overflow: hidden; color: white; background: #111b34; }
.guide-repeat::before { content: ""; position: absolute; width: 390px; height: 390px; right: -170px; top: -250px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 65px rgba(255,255,255,.018),0 0 0 130px rgba(255,255,255,.012); }
.guide-repeat-heading { position: relative; z-index: 1; max-width: 760px; margin: 0 auto 52px; text-align: center; }
.guide-repeat-heading h2 { color: white; }
.guide-repeat-heading > p { margin: 0; color: #b8c2d5; font-size: var(--type-lead); }
.guide-repeat-flow { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 68px 1fr; align-items: center; gap: 22px; padding-bottom: 64px; }
.guide-repeat-card { min-width: 0; align-self: stretch; padding: 28px; border: 1px solid rgba(255,255,255,.13); border-radius: 24px; background: rgba(255,255,255,.055); }
.guide-repeat-number { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 17px; border-radius: 10px; color: #b8c5ff; background: rgba(92,121,235,.18); font-size: 13px; font-weight: 850; }
.guide-repeat-card h3 { margin: 22px 0 10px; color: white; font-size: 24px; }
.guide-repeat-card > p { margin: 0; color: #b8c2d5; font-size: var(--type-body); line-height: 1.58; }
.guide-form-demo { padding: 18px; border-radius: 16px; background: white; }
.guide-form-demo label { display: block; margin-bottom: 10px; color: #6d788d; font-size: 11px; font-weight: 700; }
.guide-form-demo label span { display: block; margin-top: 4px; padding: 9px 11px; border: 1px solid #e0e5ed; border-radius: 7px; color: #28344a; background: #fafbfe; font-size: 13px; }
.guide-form-demo button { width: 100%; display: flex; justify-content: space-between; margin-top: 14px; padding: 11px 13px; border: 0; border-radius: 8px; color: white; background: var(--blue); font-size: 12px; font-weight: 800; }
.guide-repeat-connector { display: grid; place-items: center; }
.guide-repeat-connector span { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(151,171,255,.32); border-radius: 50%; color: #9bb0ff; background: #172441; font-size: 26px; }
.guide-result-demo { padding: 18px; border-radius: 16px; background: #eef2f8; }
.guide-result-paper { position: relative; min-height: 162px; padding: 25px; border-radius: 8px; color: #273149; background: white; box-shadow: 0 8px 18px rgba(28,40,69,.08); }
.guide-result-paper > strong { display: block; margin-bottom: 20px; text-align: center; font-size: 13px; }
.guide-result-paper > i { display: block; width: 100%; height: 4px; margin-top: 8px; border-radius: 4px; background: #e4e8ef; }
.guide-result-paper > i:nth-of-type(2) { width: 84%; }
.guide-result-paper > i:nth-of-type(4) { width: 67%; }
.guide-result-paper > span { position: absolute; right: 12px; bottom: 12px; padding: 6px 8px; border: 1px solid #cbeadf; border-radius: 7px; color: #167555; background: white; font-size: 10px; font-weight: 800; }
.guide-result-ready { display: flex; align-items: center; gap: 9px; margin-top: 12px; padding: 11px 12px; border-radius: 10px; color: #17352c; background: #dcf6ec; }
.guide-result-ready > b { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: white; background: #20a875; }
.guide-result-ready > span { flex: 1; display: flex; flex-direction: column; }
.guide-result-ready strong { font-size: 13px; }
.guide-result-ready small { color: #55756c; font-size: 10px; }
.guide-result-ready em { padding: 5px 6px; border: 1px solid rgba(21,125,92,.15); border-radius: 5px; color: #157d5c; background: rgba(255,255,255,.7); font-size: 9px; font-style: normal; font-weight: 900; }
.guide-loop-line { position: absolute; left: 12%; right: 12%; bottom: 3px; height: 38px; border-right: 2px dashed rgba(139,160,238,.58); border-bottom: 2px dashed rgba(139,160,238,.58); border-left: 2px dashed rgba(139,160,238,.58); border-radius: 0 0 25px 25px; }
.guide-loop-line::before { content: "←"; position: absolute; left: -9px; top: -15px; color: #90a6ff; font-size: 24px; }
.guide-loop-line::after { content: "↑"; position: absolute; right: -8px; top: -16px; color: #90a6ff; font-size: 24px; }
.guide-loop-line span { position: absolute; left: 50%; bottom: -12px; padding: 4px 10px; border: 1px solid rgba(139,160,238,.3); border-radius: 20px; color: #b5c1ec; background: #111b34; font-size: 11px; font-weight: 750; transform: translateX(-50%); }

.guide-automatic { position: relative; overflow: hidden; background: white; }
.guide-automatic::after { content: ""; position: absolute; width: 130px; height: 130px; left: max(24px,calc(50% - 710px)); bottom: 60px; pointer-events: none; background: center/contain no-repeat url("icon/data-report.svg"); filter: grayscale(1); opacity: .04; transform: rotate(-9deg); }
.guide-automatic-heading { margin-bottom: 46px; }
.guide-automatic-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.guide-automatic-grid article { min-width: 0; display: flex; align-items: flex-start; gap: 17px; padding: 27px; border: 1px solid #dfe5ef; border-radius: 20px; background: #fafbfe; }
.guide-automatic-grid article > div { min-width: 0; }
.guide-automatic-grid h3 { margin: 2px 0 9px; font-size: var(--type-card-title); }
.guide-automatic-grid p { margin: 0; color: #59657b; font-size: var(--type-body); line-height: 1.55; }
.guide-automatic-grid code { display: inline-block; margin-top: 13px; padding: 7px 9px; border-radius: 7px; color: var(--blue); background: var(--blue-soft); font-size: 12px; }
.guide-format-samples { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; margin-top: 13px; }
.guide-format-samples span { padding: 6px 8px; border: 1px solid #dfe5ee; border-radius: 7px; color: #425069; background: white; font-size: 12px; }
.guide-final-cta { background: linear-gradient(180deg,#fff 0%,#f6f8fc 100%); }
.guide-final-cta .final-inner h2 { max-width: 720px; }

/* Detailed “How it works” page */
.guide-detail-hero { padding: 84px 0 88px; }
.guide-detail-hero .guide-hero-grid { align-items: center; }
.guide-overview-title { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.guide-overview-title span { color: var(--blue); font-size: var(--type-kicker); font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.guide-overview-title strong { color: #59657b; font-size: var(--type-secondary); }
.guide-overview-list { display: grid; gap: 8px; }
.guide-overview-list a { display: grid; grid-template-columns: 44px 1fr; align-items: center; gap: 14px; padding: 15px 16px; border: 1px solid #e0e6f0; border-radius: 14px; color: var(--ink); background: #fbfcff; transition: border-color .2s ease,background .2s ease,transform .2s ease; }
.guide-overview-list a.guide-overview-once { grid-template-columns: 44px minmax(0,1fr) auto; }
.guide-step-stamp { position: relative; min-width: 116px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0; padding: 7px 12px 6px; border: 2px solid #7557c8; outline: 1px solid rgba(117,87,200,.55); outline-offset: 3px; color: #6849bb; background: rgba(244,241,255,.7); transform: rotate(-2deg); line-height: 1; text-align: center; text-transform: uppercase; }
.guide-overview-once:nth-child(2) .guide-step-stamp { transform: rotate(1.5deg); }
.guide-overview-list .guide-step-stamp strong { color: inherit; font-size: 9px; font-weight: 850; letter-spacing: .09em; }
.guide-step-stamp em { margin-top: 4px; font-size: 16px; font-style: normal; font-weight: 900; letter-spacing: .045em; }
.guide-overview-list a:hover { border-color: #bdcbff; background: #f1f4ff; transform: translateX(3px); }
.guide-overview-list b { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 11px; color: var(--blue); background: var(--blue-soft); font-size: 14px; }
.guide-overview-list span { display: flex; min-width: 0; flex-direction: column; gap: 3px; }
.guide-overview-list strong { font-size: var(--type-body); }
.guide-overview-list small { color: #778196; font-size: var(--type-kicker); }
.guide-overview-note { display: flex; align-items: center; gap: 13px; margin-top: 15px; padding: 14px 16px; border-radius: 14px; color: #e8edff; background: var(--navy); }
.guide-overview-note span { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 34px; border-radius: 50%; color: #78e784; background: rgba(67,216,105,.13); font-size: 22px; }
.guide-overview-note p { margin: 0; font-size: var(--type-secondary); line-height: 1.45; }
.guide-contents { position: sticky; z-index: 9; top: 72px; border-top: 1px solid #e4e9f1; border-bottom: 1px solid #e0e6ef; background: rgba(255,255,255,.94); backdrop-filter: blur(14px); transition: top .22s ease; }
.site-header.is-compact + main .guide-contents { top: 58px; }
.guide-contents-inner { min-height: 62px; display: flex; align-items: center; gap: 26px; overflow-x: auto; scrollbar-width: none; }
.guide-contents-inner::-webkit-scrollbar { display: none; }
.guide-contents-inner span { flex: 0 0 auto; color: #7a8497; font-size: 13px; font-weight: 750; letter-spacing: .055em; text-transform: uppercase; }
.guide-contents-inner a { position: relative; flex: 0 0 auto; padding: 8px 10px; border-radius: 8px; color: #3f4b61; font-size: 15px; font-weight: 700; transition: color .18s ease,background-color .18s ease; }
.guide-contents-inner a:hover { color: var(--blue); background: #f5f7ff; }
.guide-contents-inner a.is-active { color: var(--blue); background: var(--blue-soft); }
.guide-contents-inner a.is-active::after { content: ""; position: absolute; right: 10px; bottom: 3px; left: 10px; height: 2px; border-radius: 2px; background: var(--blue); }
.guide-detail-section { position: relative; scroll-margin-top: 122px; background: white; }
.guide-detail-section-tint { background: var(--soft); }
.guide-before-start { scroll-margin-top: 122px; padding: 78px 0; background: var(--soft); }
.guide-before-start-inner { display: grid; grid-template-columns: .7fr 1.3fr; gap: 56px 70px; align-items: center; }
.guide-before-start-heading { max-width: 470px; }
.guide-before-label { display: inline-flex; margin-bottom: 17px; padding: 8px 11px; border-radius: 8px; color: #9a6700; background: #fff1d3; font-size: 12px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.guide-before-start-heading h2 { margin-bottom: 18px; font-size: clamp(32px,2.5vw,42px); }
.guide-before-start-heading p { margin: 0; color: var(--muted); font-size: var(--type-body); line-height: 1.65; }
.guide-before-start .guide-field-source { margin: 0; background: white; box-shadow: 0 15px 38px rgba(28,42,79,.06); }
.guide-before-tip { grid-column: 1/-1; display: flex; align-items: center; gap: 14px; margin-top: -28px; padding: 17px 20px; border: 1px solid #cfe8df; border-radius: 14px; background: #f1faf6; }
.guide-before-tip > span { width: 32px; height: 32px; display: grid; place-items: center; flex: 0 0 32px; border-radius: 50%; color: #11805d; background: #d9f3e9; font-weight: 900; }
.guide-before-tip p { margin: 0; color: #536277; font-size: var(--type-secondary); line-height: 1.55; }
.guide-detail-layout { display: grid; grid-template-columns: minmax(250px,.58fr) minmax(0,1.42fr); gap: 76px; align-items: start; }
.guide-detail-aside { position: sticky; top: 150px; }
.guide-detail-number { display: block; margin-bottom: 18px; color: #c4ccda; font-size: 66px; font-weight: 900; line-height: .9; letter-spacing: -.05em; }
.guide-detail-aside .guide-once-badge, .guide-cycle-badge { display: inline-flex; margin-bottom: 23px; padding: 8px 11px; border-radius: 8px; color: var(--blue); background: var(--blue-soft); font-size: 12px; font-weight: 850; letter-spacing: .055em; text-transform: uppercase; }
.guide-cycle-badge { color: #13785a; background: #e2f6ef; }
.guide-detail-aside h2 { margin-bottom: 18px; font-size: clamp(32px,2.4vw,40px); }
.guide-detail-aside p { margin: 0; color: var(--muted); font-size: var(--type-body); line-height: 1.65; }
.guide-detail-content { min-width: 0; }
.guide-prose { max-width: 850px; }
.guide-prose-lead { margin: 0 0 35px; color: #4f5b70; font-size: var(--type-lead); line-height: 1.72; }
.guide-prose h3, .guide-after-upload > h3 { margin: 0 0 18px; font-size: 24px; }
.guide-field-source { display: grid; grid-template-columns: .92fr 1.08fr; gap: 22px; margin: -5px 0 34px; padding: 24px; border: 1px solid #d6e0ff; border-radius: 18px; background: linear-gradient(135deg,#f8faff,#eef2ff); }
.guide-field-source-copy { display: flex; flex-direction: column; justify-content: center; }
.guide-field-source-copy > span { margin-bottom: 8px; color: var(--blue); font-size: 11px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.guide-field-source-copy h3 { margin-bottom: 9px; font-size: 21px; }
.guide-field-source-copy p { margin: 0; color: #617087; font-size: var(--type-secondary); line-height: 1.55; }
.guide-field-source-list { display: grid; gap: 7px; }
.guide-field-source-list > div { display: grid; grid-template-columns: minmax(0,1fr) 24px minmax(0,.85fr); align-items: center; gap: 8px; min-height: 49px; padding: 8px 10px; border: 1px solid #dfe5f4; border-radius: 9px; background: white; }
.guide-field-source-list span { min-width: 0; overflow: hidden; color: #5e697d; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.guide-field-source-list b { color: #9aa8c3; font-size: 16px; text-align: center; }
.guide-field-source-list code { min-width: 0; overflow-wrap: anywhere; color: var(--blue); font-size: 14px; font-weight: 750; }
.guide-instruction-list { display: grid; gap: 13px; margin: 0 0 34px; padding: 0; list-style: none; counter-reset: guide-instructions; }
.guide-instruction-list li { position: relative; min-height: 76px; display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 15px 18px 15px 70px; border: 1px solid #e0e6ef; border-radius: 15px; background: #fbfcfe; counter-increment: guide-instructions; }
.guide-instruction-list li::before { content: counter(guide-instructions); position: absolute; left: 17px; top: 17px; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; color: var(--blue); background: var(--blue-soft); font-size: 13px; font-weight: 850; }
.guide-instruction-list li > b { font-size: var(--type-body); }
.guide-instruction-list li > span { color: #647086; font-size: var(--type-secondary); line-height: 1.55; }
.guide-instruction-image { width: 100%; margin: 13px 0 2px; padding: 8px; border: 1px solid #dfe5ee; border-radius: 12px; background: white; box-shadow: 0 10px 25px rgba(28,42,79,.06); }
.guide-instruction-image img { display: block; width: 100%; height: auto; border-radius: 7px; }
.guide-instruction-image figcaption { padding: 9px 4px 2px; color: #778297; font-size: 12px; line-height: 1.45; }
.guide-actions-image { width: min(310px,100%); }
.guide-copy-tag-image { width: min(510px,100%); }
.guide-initial-value-note { display: flex; align-items: flex-start; gap: 12px; margin-top: 13px; padding: 15px 16px; border: 1px solid #cfdafc; border-radius: 12px; background: #f2f5ff; }
.guide-initial-value-note > span { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 28px; border-radius: 50%; color: var(--blue); background: #dfe6ff; font-size: 14px; font-weight: 900; }
.guide-initial-value-note b { display: block; margin-bottom: 4px; color: #26334c; font-size: 15px; }
.guide-initial-value-note p { margin: 0; color: #5e6a80; font-size: 14px; line-height: 1.55; }
.guide-template-upload-guide { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.guide-template-upload-guide figure { min-width: 0; overflow: hidden; margin: 0; border: 1px solid #dce3ee; border-radius: 13px; background: white; }
.guide-template-upload-title { display: flex; align-items: center; gap: 9px; padding: 11px 12px; border-bottom: 1px solid #e2e7ef; }
.guide-template-upload-title b { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 28px; border-radius: 8px; color: var(--blue); background: var(--blue-soft); font-size: 11px; }
.guide-template-upload-title span { color: #253149; font-size: 14px; font-weight: 800; line-height: 1.35; }
.guide-template-upload-shot { min-height: 190px; display: grid; place-items: center; padding: 14px; background: #fafbfe; }
.guide-template-upload-shot img { display: block; width: 100%; height: auto; max-height: 190px; object-fit: contain; }
.guide-template-upload-guide figcaption { padding: 12px 13px 14px; color: #657187; font-size: 13px; line-height: 1.5; }
.guide-detail-word { height: 410px; margin: 0 0 18px; border: 1px solid #e0e6ef; box-shadow: 0 16px 35px rgba(28,42,79,.07); }
.guide-instruction-word { width: 100%; margin: 14px 0 2px; }
.guide-detail-word .guide-word-paper { width: 72%; min-height: 340px; padding: 38px 42px; font-size: 14px; line-height: 1.72; }
.guide-detail-word .guide-word-paper > strong { margin-bottom: 24px; font-size: 17px; }
.guide-field-builder { margin-bottom: 50px; overflow: hidden; border: 1px solid #dce3ef; border-radius: 22px; background: white; box-shadow: 0 18px 42px rgba(28,42,79,.08); }
.guide-builder-head { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 22px; border-bottom: 1px solid #e1e6ef; background: #fafbfe; }
.guide-builder-head > div { display: flex; flex-direction: column; gap: 3px; }
.guide-builder-head span { color: #778298; font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .05em; }
.guide-builder-head strong { font-size: 19px; }
.guide-builder-head button { padding: 10px 13px; border: 0; border-radius: 9px; color: white; background: var(--blue); font-size: 13px; font-weight: 800; }
.guide-builder-table { padding: 8px 18px; }
.guide-builder-row { display: grid; grid-template-columns: 44px 1fr .75fr minmax(150px,.9fr); align-items: center; gap: 14px; min-height: 74px; padding: 9px 6px; border-bottom: 1px solid #e4e8ef; }
.guide-builder-row:last-child { border-bottom: 0; }
.guide-builder-row.is-open { margin: 0 -10px; padding-right: 16px; padding-left: 16px; border: 1px solid #cdd8ff; border-radius: 12px; background: #f4f6ff; }
.guide-field-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; color: var(--blue); background: var(--blue-soft); font-size: 13px; font-weight: 850; }
.guide-field-icon.is-date { color: #9a6700; background: #fff2d8; }
.guide-field-icon.is-money { color: #087958; background: #e0f4ed; font-size: 18px; }
.guide-builder-row > div { display: flex; min-width: 0; flex-direction: column; gap: 3px; }
.guide-builder-row small { color: #7a8497; font-size: 11px; }
.guide-builder-row strong { font-size: 14px; }
.guide-builder-row > code { overflow-wrap: anywhere; padding: 8px 9px; border-radius: 7px; color: var(--blue); background: var(--blue-soft); font-size: 12px; text-align: center; }
.guide-generated-tags { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.25fr; gap: 8px; padding: 18px; border-top: 1px solid #dce4fa; background: #eef2ff; }
.guide-generated-tags > div { display: flex; flex-direction: column; justify-content: center; gap: 4px; padding: 0 8px; }
.guide-generated-tags > div span { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.guide-generated-tags > div strong { font-size: 13px; line-height: 1.4; }
.guide-generated-tags button { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; padding: 11px; border: 1px solid #d8e0f6; border-radius: 10px; color: var(--ink); background: white; text-align: left; }
.guide-generated-tags button code { max-width: 100%; overflow-wrap: anywhere; color: var(--blue); font-size: 10px; }
.guide-generated-tags button small { color: #68748a; font-size: 10px; line-height: 1.35; }
.guide-examples-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 26px; }
.guide-example-card { min-width: 0; display: flex; flex-direction: column; gap: 8px; padding: 14px; border: 1px solid #dce4f3; border-radius: 12px; background: #f7f9ff; }
.guide-example-card span { color: #738097; font-size: 12px; }
.guide-example-card code { overflow-wrap: anywhere; color: var(--blue); font-size: 13px; font-weight: 750; }
.guide-callout { display: flex; align-items: flex-start; gap: 18px; margin-top: 28px; padding: 24px; border: 1px solid #cfe9df; border-radius: 17px; background: #f2faf7; }
.guide-callout-important { border-color: #d6e0ff; background: #f3f6ff; }
.guide-callout-icon { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 42px; border-radius: 12px; color: #12815e; background: #daf3ea; font-size: 19px; font-weight: 900; }
.guide-callout-important .guide-callout-icon { color: var(--blue); background: #e2e8ff; }
.guide-callout h3 { margin: 1px 0 7px; font-size: var(--type-card-title); }
.guide-callout p { margin: 0; color: #59667c; font-size: var(--type-body); line-height: 1.6; }
.guide-callout code { color: var(--blue); font-weight: 750; }
.guide-formatting-callout { border-color: #ecd9bd; background: #fffaf1; }
.guide-formatting-callout .guide-callout-icon { color: #a9670b; background: #ffedcd; font-size: 15px; }
.guide-formatting-properties { display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0 12px; }
.guide-formatting-properties span { padding: 7px 10px; border: 1px solid #ead8ba; border-radius: 8px; color: #73542b; background: rgba(255,255,255,.74); font-size: 13px; font-weight: 750; }
.guide-formatting-callout small { display: block; color: #806b4f; font-size: 14px; line-height: 1.5; }
.guide-callout + .guide-detail-upload { margin-top: 28px; }
.guide-detail-upload { height: 340px; grid-template-columns: .72fr 1.28fr; margin: 0 0 30px; padding: 38px; }
.guide-detail-upload .guide-upload-file, .guide-detail-upload .guide-detected-tags { height: 245px; }
.guide-detail-upload .guide-detected-tags > div { gap: 10px; }
.guide-detail-upload .guide-detected-tags code { padding: 11px 8px; font-size: 13px; }
.guide-after-upload { margin-top: 5px; }
.guide-after-upload-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.guide-after-upload-grid > div { min-width: 0; padding: 20px; border: 1px solid #dfe5ee; border-radius: 15px; background: white; }
.guide-after-upload-grid b { display: block; margin-bottom: 18px; color: var(--blue); font-size: 13px; }
.guide-after-upload-grid strong { display: block; margin-bottom: 8px; font-size: var(--type-body); }
.guide-after-upload-grid p { margin: 0; color: #657186; font-size: var(--type-secondary); line-height: 1.55; }
.guide-form-stage { display: grid; grid-template-columns: .8fr 1.2fr; gap: 18px; margin: 8px 0 54px; padding: 24px; border-radius: 22px; background: var(--navy); }
.guide-form-demo-large { padding: 21px; }
.guide-form-demo-large label { font-size: 12px; }
.guide-form-demo-large label span { padding: 10px 12px; font-size: 14px; }
.guide-form-explanation { display: flex; flex-direction: column; justify-content: center; padding: 20px 22px; color: white; }
.guide-form-explanation > span { margin-bottom: 13px; color: #9eb0fb; font-size: 12px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.guide-form-explanation h3 { margin: 0 0 12px; color: white; font-size: 25px; }
.guide-form-explanation p { margin: 0 0 17px; color: #bdc7d9; font-size: var(--type-body); line-height: 1.58; }
.guide-form-explanation ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.guide-form-explanation li { padding: 7px 9px; border: 1px solid rgba(255,255,255,.13); border-radius: 7px; color: #dbe2f2; font-size: 12px; }
.guide-capabilities-heading { max-width: 720px; margin-bottom: 25px; }
.guide-capabilities-heading h3 { margin: 0 0 12px; font-size: 30px; }
.guide-capabilities-heading p { margin: 0; color: #5d697e; font-size: var(--type-body); line-height: 1.6; }
.guide-capability-card { display: grid; grid-template-columns: 62px 1fr; gap: 20px; margin-bottom: 16px; padding: 28px; border: 1px solid #dfe5ef; border-radius: 20px; background: #fbfcff; }
.guide-capability-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 15px; background: var(--blue-soft); }
.guide-capability-icon img { width: 30px; height: 30px; object-fit: contain; }
.guide-capability-copy h3 { margin: 2px 0 10px; font-size: 23px; }
.guide-capability-copy > p { margin: 0 0 21px; color: #5c687d; font-size: var(--type-body); line-height: 1.62; }
.guide-formula-demo { display: grid; grid-template-columns: 1fr 34px 1fr 34px 1fr; align-items: center; gap: 7px; margin-bottom: 13px; }
.guide-formula-demo span { min-height: 56px; display: grid; place-items: center; padding: 10px; border: 1px solid #dce3ee; border-radius: 11px; background: white; font-size: 14px; font-weight: 750; text-align: center; }
.guide-formula-demo span.is-result { border-color: #bde6d7; color: #087b56; background: #e9f8f2; }
.guide-formula-demo b { color: var(--blue); font-size: 21px; text-align: center; }
.guide-formula-code { display: inline-block; padding: 9px 11px; border-radius: 8px; color: var(--blue); background: var(--blue-soft); font-size: 13px; }
.guide-formula-operations { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 18px; }
.guide-formula-operations span { min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 9px 10px; border: 1px solid #dce3ef; border-radius: 11px; color: #435068; background: white; font-size: 13px; font-weight: 750; }
.guide-formula-operations b { color: var(--blue); font-size: 20px; }
.guide-formula-image { overflow: hidden; margin: 0 0 18px; border: 1px solid #dce3ef; border-radius: 14px; background: white; }
.guide-formula-image img { display: block; width: 100%; height: auto; }
.guide-formula-image figcaption { padding: 13px 15px; border-top: 1px solid #e1e6ef; color: #5d697e; font-size: 14px; line-height: 1.5; }
.guide-formula-image code { color: var(--blue); font-weight: 800; }
.guide-formula-examples { margin-bottom: 16px; }
.guide-formula-examples-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 10px; }
.guide-formula-examples-heading span { color: var(--blue); font-size: 12px; font-weight: 850; letter-spacing: .065em; text-transform: uppercase; }
.guide-formula-examples-heading strong { color: #536078; font-size: 14px; text-align: right; }
.guide-formula-example-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.guide-formula-example-grid > div { min-width: 0; display: flex; flex-direction: column; gap: 6px; padding: 13px 14px; border: 1px solid #dfe5ef; border-radius: 11px; background: white; }
.guide-formula-example-grid > div.is-wide { grid-column: 1/-1; }
.guide-formula-example-grid span { color: #69758a; font-size: 12px; font-weight: 750; }
.guide-formula-example-grid code { overflow-wrap: anywhere; color: #17223a; font-size: 14px; font-weight: 800; }
.guide-benefit-note { margin-top: 14px; padding: 13px 15px; border-radius: 10px; color: #2a5c4d; background: #e8f7f1; font-size: 14px; line-height: 1.5; }
.guide-one-value { margin-top: 18px; overflow: hidden; border: 1px solid #cfdafc; border-radius: 15px; background: white; }
.guide-one-value-head { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 12px; padding: 14px 16px; color: white; background: var(--navy); }
.guide-one-value-head span { color: #aebdf2; font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.guide-one-value-head strong { font-size: 18px; }
.guide-one-value-head b { padding: 7px 10px; border-radius: 7px; color: #16213c; background: white; font-size: 17px; }
.guide-one-value-flow { display: grid; grid-template-columns: minmax(0,1fr) 64px minmax(0,1fr); align-items: stretch; gap: 14px; padding: 18px; background: #f5f7fc; }
.guide-value-preview { overflow: hidden; border: 1px solid #dbe3f0; border-radius: 13px; background: white; }
.guide-value-preview-title { display: flex; align-items: center; gap: 10px; padding: 13px 14px; border-bottom: 1px solid #e3e8f1; }
.guide-value-preview-title > span { flex: 0 0 auto; display: grid; width: 32px; height: 32px; place-items: center; border-radius: 8px; color: var(--blue); background: var(--blue-soft); font-size: 12px; font-weight: 850; }
.guide-value-preview-title div { min-width: 0; }
.guide-value-preview-title small { display: block; margin-bottom: 3px; color: #748097; font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.guide-value-preview-title strong { display: block; color: #17223a; font-size: 16px; }
.guide-value-preview-rows { display: grid; }
.guide-value-preview-rows > div { min-height: 74px; display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 11px 16px; border-bottom: 1px solid #e7ebf2; }
.guide-value-preview-rows > div:last-child { border-bottom: 0; }
.guide-value-preview-rows span { color: #748097; font-size: 13px; font-weight: 700; }
.guide-value-preview-rows code { overflow-wrap: anywhere; color: var(--blue); font-size: 14px; font-weight: 800; }
.guide-value-preview-rows strong { color: #17223a; font-size: 16px; line-height: 1.4; }
.guide-value-result { border-color: #bfe4d7; }
.guide-value-result .guide-value-preview-title > span { color: #087b56; background: #e3f7ef; }
.guide-value-result .guide-value-preview-rows > div:last-child { background: #f0faf6; }
.guide-value-transform { align-self: center; display: grid; justify-items: center; gap: 7px; color: var(--blue); }
.guide-value-transform span { font-size: 11px; font-weight: 850; letter-spacing: .05em; text-align: center; }
.guide-value-transform b { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid #ccdafc; border-radius: 50%; background: white; box-shadow: 0 8px 18px rgba(40,76,170,.12); font-size: 20px; }
.guide-one-value-note { padding: 17px 18px; border-top: 1px solid #dce4f3; background: #eef8f4; }
.guide-one-value-note > strong { display: block; margin-bottom: 7px; color: #145f4a; font-size: 17px; }
.guide-one-value-note p { margin: 0; color: #49665e; font-size: 16px; line-height: 1.58; }
.guide-one-value-note code { color: #087456; font-weight: 800; }
.guide-rich-content { margin: 16px 0; padding: 28px; border: 1px solid #dfe5ef; border-radius: 20px; background: #fbfcff; }
.guide-rich-content-heading { max-width: 720px; margin-bottom: 22px; }
.guide-rich-content-heading h3 { margin: 0 0 10px; font-size: 26px; }
.guide-rich-content-heading p { margin: 0; color: #5c687d; font-size: var(--type-body); line-height: 1.62; }
.guide-rich-content-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.guide-rich-card { min-width: 0; display: flex; flex-direction: column; padding: 20px; border: 1px solid #dce4f0; border-radius: 15px; background: white; }
.guide-rich-card-title { display: flex; align-items: center; gap: 11px; margin-bottom: 13px; }
.guide-rich-card-title > span { flex: 0 0 36px; display: grid; width: 36px; height: 36px; place-items: center; border-radius: 9px; color: var(--blue); background: var(--blue-soft); font-size: 12px; font-weight: 850; }
.guide-rich-card-title small { display: block; margin-bottom: 2px; color: #748097; font-size: 11px; font-weight: 850; letter-spacing: .055em; text-transform: uppercase; }
.guide-rich-card-title h4 { margin: 0; color: #17223a; font-size: 18px; }
.guide-rich-card > p { margin: 0 0 18px; color: #5c687d; font-size: 14px; line-height: 1.58; }
.guide-rich-card > p code { color: var(--blue); font-weight: 850; white-space: nowrap; }
.guide-rich-template { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding: 12px 14px 23px; border: 1px dashed #bdccf4; border-radius: 11px 11px 0 0; background: #f5f7ff; }
.guide-rich-template small { color: #6f7c94; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.guide-rich-template code { color: var(--blue); font-size: 14px; font-weight: 850; }
.guide-rich-template b { position: absolute; left: 50%; bottom: -13px; z-index: 1; display: grid; width: 26px; height: 26px; place-items: center; border: 1px solid #cbd8fa; border-radius: 50%; color: var(--blue); background: white; transform: translateX(-50%); }
.guide-mini-table { overflow: hidden; border: 1px solid #dce4ef; border-top: 0; border-radius: 0 0 11px 11px; font-size: 12px; }
.guide-mini-table > div { display: grid; grid-template-columns: minmax(0,1.35fr) .55fr .8fr; gap: 8px; align-items: center; min-height: 37px; padding: 7px 10px; border-bottom: 1px solid #e7ebf2; }
.guide-mini-table > div:last-child { border-bottom: 0; }
.guide-mini-table .guide-mini-table-head { min-height: 34px; color: #68758a; background: #f4f6f9; font-size: 10px; font-weight: 850; text-transform: uppercase; }
.guide-mini-table strong { color: #17223a; text-align: right; }
.guide-mini-table-total { grid-template-columns: 1fr auto !important; color: #087456; background: #edf9f5; font-weight: 850; }
.guide-mini-table-total strong { color: #087456; }
.guide-result-stage { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; margin: 4px 0 28px; padding: 28px; border-radius: 22px; background: #e9edf4; }
.guide-result-paper-large { min-height: 330px; padding: 42px 40px; }
.guide-result-paper-large > strong { margin-bottom: 14px; font-size: 17px; }
.guide-result-paper-large > span { display: block; margin-bottom: 28px; color: #647086; font-size: 12px; text-align: center; }
.guide-result-paper-large > i { height: 5px; margin-top: 10px; }
.guide-result-paper-large > p { margin-top: 28px; color: #475369; font-size: 13px; }
.guide-result-paper-large > em { position: absolute; right: 18px; bottom: 18px; padding: 8px 10px; border: 1px solid #c6e9dc; border-radius: 8px; color: #107555; background: #f1fbf7; font-size: 11px; font-style: normal; font-weight: 750; }
.guide-download-panel { display: flex; flex-direction: column; justify-content: center; padding: 30px; border-radius: 17px; color: white; background: var(--navy); }
.guide-ready-check { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 50%; color: white; background: var(--green); font-size: 24px; }
.guide-download-panel h3 { margin: 0 0 11px; color: white; font-size: 25px; }
.guide-download-panel p { margin: 0 0 23px; color: #bdc7d8; font-size: var(--type-secondary); line-height: 1.6; }
.guide-download-panel > div { display: flex; flex-wrap: wrap; gap: 8px; }
.guide-download-panel button { padding: 10px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; color: white; background: rgba(255,255,255,.08); font-size: 13px; font-weight: 750; }
.guide-repeat-summary { color: white; background: var(--navy); }
.guide-repeat-summary-inner { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 70px; }
.guide-repeat-summary h2 { margin-bottom: 18px; color: white; }
.guide-repeat-summary p { margin: 0; color: #b9c3d5; font-size: var(--type-lead); }
.guide-repeat-summary-flow { position: relative; display: grid; grid-template-columns: 1fr 45px 1fr; align-items: center; gap: 12px; padding-bottom: 42px; }
.guide-repeat-summary-flow > div { min-height: 100px; display: flex; align-items: center; gap: 13px; padding: 17px; border: 1px solid rgba(255,255,255,.13); border-radius: 15px; background: rgba(255,255,255,.055); }
.guide-repeat-summary-flow > div > b { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 38px; border-radius: 10px; color: #aec0ff; background: rgba(83,114,231,.2); font-size: 13px; }
.guide-repeat-summary-flow span { display: flex; flex-direction: column; gap: 4px; }
.guide-repeat-summary-flow strong { font-size: var(--type-body); }
.guide-repeat-summary-flow small { color: #aeb9cb; font-size: 13px; }
.guide-repeat-summary-flow > i { color: #95aafa; font-size: 24px; font-style: normal; text-align: center; }
.guide-repeat-summary-flow > em { position: absolute; left: 8%; right: 8%; bottom: 0; padding-top: 13px; border-top: 2px dashed rgba(135,158,246,.52); color: #aebdf6; font-size: 12px; font-style: normal; font-weight: 750; text-align: center; }

@media (max-width: 1020px) {
  .hero-grid { width: min(100% - 48px,1180px); grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .product-stage { width: min(760px,100%); margin: 0 auto; transform: none; }
  .format-panel { grid-template-columns: .72fr 1.28fr; }
  .format-panel-copy { padding: 36px 30px; }
  .format-flow { grid-template-columns: minmax(135px,.64fr) 38px minmax(250px,1.36fr); gap: 10px; padding: 24px 20px; }
  .format-results > div { grid-template-columns: 38px 1fr; gap: 10px; padding: 10px 12px; }
  .format-results span { width: 36px; height: 36px; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .trust-panel { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: .75fr 1.25fr 1fr; gap: 55px; }
  .footer-contact { grid-column: auto; }
  .guide-hero-grid { grid-template-columns: 1fr; }
  .guide-hero-copy { max-width: 790px; }
  .guide-map { width: min(760px,100%); }
  .guide-section-heading { align-items: flex-start; flex-direction: column; gap: 20px; }
  .guide-section-heading > p { max-width: 650px; }
  .guide-automatic-grid { grid-template-columns: 1fr; }
  .guide-detail-layout { grid-template-columns: 1fr; gap: 34px; }
  .guide-before-start-inner { grid-template-columns: 1fr; gap: 30px; }
  .guide-before-start-heading { max-width: 720px; }
  .guide-before-tip { margin-top: -6px; }
  .guide-detail-aside { position: static; display: grid; grid-template-columns: auto 1fr; column-gap: 18px; align-items: center; }
  .guide-detail-number { grid-row: 1/4; margin: 0; }
  .guide-detail-aside .guide-once-badge, .guide-detail-aside .guide-cycle-badge { width: max-content; margin-bottom: 10px; }
  .guide-detail-aside h2 { margin-bottom: 8px; }
  .guide-detail-aside p { max-width: 720px; }
  .guide-repeat-summary-inner { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px,1180px); }
  .section-pad { padding: 76px 0; }
  .audience { padding-bottom: 42px; }
  .header-inner { height: 68px; }
  .main-nav { display: none; }
  .hero { padding: 60px 0 66px; }
  .hero-grid { width: min(100% - 28px,1180px); gap: 40px; }
  .hero h1 { font-size: 42px; }
  .hero-title-line { white-space: normal; }
  h2 { font-size: 34px; }
  .trust-intro h2, .final-inner h2 { font-size: 34px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-points { flex-direction: column; gap: 8px; }
  .product-stage { padding-top: 25px; }
  .browser-card { transform: none; }
  .browser-top { grid-template-columns: 50px 1fr; }
  .browser-status { display: none; }
  .app-layout { grid-template-columns: 1fr; }
  .document-preview { padding: 14px; }
  .doc-paper { min-height: 300px; padding: 24px 20px; }
  .form-panel { display: none; }
  .float-chip { display: none; }
  .use-strip-shell { padding: 22px 0 24px; }
  .use-strip-list { gap: 12px; }
  .use-pill { min-height: 66px; font-size: 15px; }
  .use-separator { display: none; }
  .problem::before { width: 94px; height: 94px; left: -24px; top: 94px; opacity: .04; }
  .problem::after { width: 86px; height: 86px; right: -20px; top: 330px; opacity: .04; }
  .how::before { width: 88px; height: 88px; left: -24px; top: 88px; opacity: .038; }
  .how::after { width: 92px; height: 92px; right: -28px; bottom: 70px; opacity: .038; }
  .features::before { width: 86px; height: 86px; left: -24px; top: 108px; opacity: .036; }
  .features::after { width: 82px; height: 82px; right: -22px; bottom: 92px; opacity: .036; }
  .pricing::before { width: 88px; height: 88px; left: -24px; top: 190px; opacity: .038; }
  .compare-grid, .steps-grid, .demo-box { grid-template-columns: 1fr; }
  .compare-grid { max-width: 620px; gap: 28px; }
  .compare-card { min-height: 0; }
  .time-main strong { font-size: 60px; }
  .time-main .time-unit { font-size: 27px; }
  .new-way-automation { min-height: 0; }
  .compare-bridge { position: relative; left: auto; top: auto; justify-self: center; transform: none; }
  .compare-arrow { transform: rotate(90deg); }
  .section-heading-row { align-items: flex-start; flex-direction: column; gap: 17px; }
  .steps-grid { min-height: 0; display: grid; grid-template-columns: 1fr; gap: 72px; padding-bottom: 0; }
  .steps-route { display: none; }
  .step-card { position: relative; top: auto; right: auto; left: auto; width: 100%; max-width: 620px; min-height: 0; margin: 0 auto; }
  .step-number { top: 23px; right: 24px; left: auto; font-size: 16px; font-weight: 850; }
  .step-card:not(:last-child)::before { content: ""; position: absolute; z-index: 0; left: 50%; bottom: -73px; height: 73px; border-left: 2px dashed #9fb1e6; }
  .step-card:not(:last-child)::after { content: "↓"; position: absolute; z-index: 3; left: 50%; bottom: -57px; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid #d6e0fc; border-radius: 50%; color: var(--blue); background: white; box-shadow: 0 9px 22px rgba(49,87,229,.13); font-size: 18px; font-weight: 850; transform: translateX(-50%); }
  .step-visual { height: 265px; }
  .step-doc-paper { width: min(82%,400px); min-height: 224px; }
  .step-upload-scene { padding-inline: max(12px,3vw); }
  .step-upload-file, .step-found-panel { height: 216px; }
  .step-result-layout { grid-template-columns: 1fr 1fr; }
  .step-result-paper { height: 170px; }
  .demo-box { padding: 45px 24px; gap: 35px; border-radius: 25px; }
  .demo-mini-ui { padding: 0; }
  .feature-heading { margin-bottom: 34px; }
  .format-toolbar { align-items: stretch; flex-direction: column; gap: 12px; padding: 12px; }
  .format-tabs { width: 100%; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 4px; overflow: visible; padding: 0; }
  .format-tab { width: 100%; min-width: 0; min-height: 46px; padding: 9px 4px; font-size: clamp(10px,3.25vw,16px); }
  .format-nav { display: none; }
  .format-panel { min-height: 0; grid-template-columns: 1fr; padding: 12px; }
  .format-panel-copy { min-height: 310px; padding: 38px 34px; }
  .format-flow { min-height: 340px; padding: 30px 24px; }
  .feature-essentials { grid-template-columns: 1fr; }
  .feature-essentials article { min-height: 0; }
  .feature-essentials h3 { min-height: 0; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 0; }
  .audience-card > p { min-height: 0; }
  .trust { padding-bottom: 54px; }
  .trust-panel { gap: 28px; padding: 28px; }
  .trust-icon { display: none; }
  .pricing-header { margin-bottom: 38px; }
  .pricing-cards { width: min(520px,100%); grid-template-columns: 1fr; gap: 22px; }
  .price-card { min-height: 0; }
  .price-summary { min-height: 0; }
  .final-cta { padding: 28px 0 32px; }
  .final-inner { min-height: 0; align-items: flex-start; flex-direction: column; padding: 48px 36px; border-radius: 26px; }
  .final-actions { align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .footer-legal { justify-content: flex-start; }
  .guide-hero { padding: 68px 0 74px; }
  .guide-hero-grid { gap: 42px; }
  .guide-hero-copy h1 { font-size: 42px; }
  .guide-phase-pills { flex-direction: column; }
  .guide-phase-pills > div { width: 100%; min-width: 0; }
  .guide-setup-grid { grid-template-columns: 1fr; }
  .guide-repeat-flow { grid-template-columns: 1fr; gap: 70px; padding-bottom: 0; }
  .guide-repeat-connector { position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%,-50%); }
  .guide-repeat-connector span { transform: rotate(90deg); }
  .guide-loop-line { display: none; }
  .guide-repeat-card { max-width: 620px; width: 100%; margin: 0 auto; }
  .guide-contents { top: 68px; }
  .guide-contents-inner { gap: 22px; }
  .guide-contents-inner span { display: none; }
  .guide-before-start { padding: 66px 0; }
  .guide-before-start .guide-field-source { grid-template-columns: 1fr; }
  .guide-before-tip { align-items: flex-start; }
  .guide-detail-number { font-size: 54px; }
  .guide-detail-word { height: 335px; }
  .guide-detail-word .guide-word-paper { width: 84%; min-height: 278px; padding: 27px 25px; font-size: 12px; }
  .guide-generated-tags { grid-template-columns: 1fr 1fr; }
  .guide-generated-tags > div { grid-column: 1/-1; padding: 0 0 6px; }
  .guide-examples-grid { grid-template-columns: 1fr 1fr; }
  .guide-after-upload-grid { grid-template-columns: 1fr; }
  .guide-form-stage, .guide-result-stage { grid-template-columns: 1fr; }
  .guide-formula-demo { grid-template-columns: 1fr 28px 1fr; }
  .guide-formula-demo b:nth-of-type(2) { display: none; }
  .guide-formula-demo span.is-result { grid-column: 1/-1; }
  .guide-repeat-summary-flow { grid-template-columns: 1fr; gap: 12px; padding-bottom: 0; }
  .guide-repeat-summary-flow > i { transform: rotate(90deg); }
  .guide-repeat-summary-flow > em { position: static; padding: 13px 0; border: 2px dashed rgba(135,158,246,.42); border-radius: 10px; }
}

@media (max-width: 620px) {
  .format-showcase { border-radius: 22px; }
  .format-panel-copy { min-height: 330px; padding: 34px 26px; }
  .format-panel-copy h3 { font-size: 25px; }
  .format-flow { grid-template-columns: 1fr; gap: 14px; padding: 22px 14px 28px; }
  .format-source { min-height: 145px; }
  .format-flow-arrow { margin: 0 auto; transform: rotate(90deg); }
  .format-results { width: 100%; }
  .guide-rich-content { padding: 21px; }
}

@media (max-width: 430px) {
  .brand-logo { height: 34px; }
  .button-small { padding: 9px 13px; }
  .hero h1 { font-size: 36px; }
  h2 { font-size: 32px; }
  .trust-intro h2 { font-size: 32px; }
  .compare-card { min-height: 0; padding: 25px; }
  .compare-title { font-size: 13px; }
  .time-main { gap: 6px; }
  .time-main .time-mark { font-size: 34px; }
  .time-main strong { font-size: 52px; }
  .time-main .time-unit { font-size: 22px; }
  .time-summary > small { font-size: 14px; }
  .old-way li small { min-width: 72px; padding: 8px 10px; font-size: 14px; }
  .compare-feature-icon { width: 20px; height: 20px; }
  .old-way li { gap: 10px; min-height: 56px; font-size: 16px; }
  .waste-note { padding: 14px; font-size: 15px; }
  .new-way-content strong { font-size: 27px; }
  .new-way-content p { font-size: 15px; }
  .new-way-automation { padding: 18px; }
  .automation-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .automation-ready { align-items: stretch; flex-direction: column; }
  .automation-formats { justify-content: flex-end; }
  .strip-title { margin-bottom: 16px; font-size: 11px; }
  .use-strip-list { gap: 10px; }
  .use-pill, .use-pill-wide {
    width: 100%;
    min-height: 58px;
    justify-content: flex-start;
    padding: 0 16px;
    font-size: 14px;
  }
  .use-pill img { width: 22px; height: 22px; flex-basis: 22px; }
  .demo-copy .button-light { width: 100%; justify-content: space-between; }
  .feature-heading p { font-size: 17px; }
  .format-tab { padding: 9px 3px; }
  .pricing-header p { font-size: 17px; }
  .pricing-note { align-items: flex-start; text-align: left; }
  .price-card { padding: 28px 24px; border-radius: 22px; }
  .price-value strong { font-size: 42px; }
  .popular-label { top: 18px; right: 18px; }
  .format-panel-copy { min-height: 350px; padding: 32px 22px; }
  .format-panel-copy h3 { font-size: 23px; }
  .format-results { grid-template-columns: 1fr; }
  .format-results > div { min-height: 76px; }
  .formula-results > div { grid-template-columns: 32px 1fr; gap: 8px; padding: 9px; }
  .formula-results span { width: 32px; height: 32px; }
  .formula-results > div > div { gap: 8px; }
  .formula-results small { font-size: 12px; }
  .formula-results strong { font-size: 15px; }
  .feature-essentials article { padding: 22px; }
  .trust-panel { padding: 24px 20px; }
  .trust-grid { grid-template-columns: 1fr; }
  .final-inner { padding: 40px 22px; }
  .final-inner h2 { font-size: 32px; }
  .final-inner .section-kicker-light { font-size: 15px; }
  .final-actions { width: 100%; }
  .final-actions .button-light { width: 100%; min-width: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { grid-column: 1/-1; }
  .guide-hero-copy h1 { font-size: 36px; }
  .guide-map { padding: 18px; border-radius: 22px; }
  .guide-map-row { grid-template-columns: 1fr; }
  .guide-map-card { min-height: 120px; }
  .guide-map-arrow { margin: -3px auto; transform: rotate(90deg); }
  .guide-map-divider b { white-space: normal; text-align: center; }
  .guide-cycle { grid-template-columns: 1fr; gap: 14px; padding: 17px 50px 17px 17px; }
  .guide-cycle-arrow { transform: rotate(90deg); }
  .guide-word-window, .guide-upload-window { height: 265px; }
  .guide-word-paper { width: 88%; padding: 20px 17px; font-size: 10px; }
  .guide-upload-window { grid-template-columns: 1fr 1.15fr; gap: 8px; padding: 12px; }
  .guide-upload-file, .guide-detected-tags { height: 214px; padding: 12px; }
  .guide-detected-tags > div { grid-template-columns: 1fr; gap: 5px; }
  .guide-detected-tags code { padding: 5px 4px; font-size: 9px; }
  .guide-step-card { padding: 18px; }
  .guide-step-copy h3, .guide-repeat-card h3 { font-size: 22px; }
  .guide-repeat-card { padding: 20px; }
  .guide-result-ready { flex-wrap: wrap; }
  .guide-result-ready > span { min-width: 150px; }
  .guide-automatic-grid article { padding: 22px; }
  .guide-detail-hero { padding-top: 58px; }
  .guide-overview-title { align-items: flex-start; flex-direction: column; gap: 5px; }
  .guide-overview-list a { grid-template-columns: 38px 1fr; padding: 13px; }
  .guide-overview-list a.guide-overview-once { grid-template-columns: 38px minmax(0,1fr); }
  .guide-step-stamp { grid-column: 2; min-width: 108px; justify-self: start; margin: 6px 4px 2px; padding: 6px 10px 5px; }
  .guide-overview-list b { width: 38px; height: 38px; }
  .guide-contents-inner a { font-size: 13px; }
  .guide-before-start { padding: 62px 0; }
  .guide-before-start .guide-field-source { grid-template-columns: 1fr; }
  .guide-before-tip { align-items: flex-start; }
  .guide-detail-aside { grid-template-columns: 1fr; }
  .guide-detail-number { grid-row: auto; margin-bottom: 8px; font-size: 48px; }
  .guide-detail-aside h2 { font-size: 30px; }
  .guide-instruction-list li { padding: 60px 15px 15px; }
  .guide-instruction-list li::before { top: 14px; left: 14px; }
  .guide-template-upload-guide { grid-template-columns: 1fr; }
  .guide-template-upload-shot { min-height: 0; }
  .guide-detail-word { height: 290px; }
  .guide-detail-word .guide-word-paper { width: 92%; min-height: 232px; margin-top: 10px; padding: 19px 15px; font-size: 9px; }
  .guide-detail-word .guide-word-paper > strong { margin-bottom: 13px; font-size: 12px; }
  .guide-builder-head { align-items: flex-start; flex-direction: column; }
  .guide-builder-row { grid-template-columns: 38px 1fr 1fr; gap: 9px; }
  .guide-builder-row > code { grid-column: 2/-1; width: 100%; }
  .guide-field-icon { width: 38px; height: 38px; }
  .guide-generated-tags { grid-template-columns: 1fr; }
  .guide-generated-tags > div { grid-column: auto; }
  .guide-examples-grid { grid-template-columns: 1fr; }
  .guide-callout { flex-direction: column; padding: 19px; }
  .guide-detail-upload { height: auto; grid-template-columns: 1fr; padding: 15px; }
  .guide-detail-upload .guide-upload-file, .guide-detail-upload .guide-detected-tags { height: auto; min-height: 190px; }
  .guide-detail-upload .guide-detected-tags > div { grid-template-columns: 1fr 1fr; }
  .guide-form-stage, .guide-result-stage { padding: 15px; }
  .guide-form-explanation { padding: 16px 5px 7px; }
  .guide-capability-card { grid-template-columns: 1fr; padding: 21px; }
  .guide-formula-operations { grid-template-columns: 1fr 1fr; }
  .guide-formula-example-grid { grid-template-columns: 1fr; }
  .guide-formula-example-grid > div.is-wide { grid-column: auto; }
  .guide-formula-examples-heading { align-items: flex-start; flex-direction: column; gap: 4px; }
  .guide-formula-examples-heading strong { text-align: left; }
  .guide-one-value-head { grid-template-columns: 1fr auto; }
  .guide-one-value-head span { grid-column: 1/-1; }
  .guide-one-value-flow { grid-template-columns: 1fr; gap: 11px; padding: 13px; }
  .guide-value-transform { grid-template-columns: auto auto; }
  .guide-value-transform b { transform: rotate(90deg); }
  .guide-result-paper-large { min-height: 290px; padding: 30px 20px; }
  .guide-download-panel { padding: 23px; }
}

@media (max-width: 900px) {
  .inner-hero { padding: 58px 0 66px; }
  .tariff-table-row { grid-template-columns: 1fr .8fr 1.15fr; }
  .tariff-table-row > * { padding: 18px; font-size: 15px; }
  .help-layout, .help-contact-panel { grid-template-columns: 1fr; gap: 42px; }
  .help-aside { position: static; }
  .help-aside h2, .help-aside > p { max-width: 650px; }
  .help-contact-panel { padding: 42px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; flex-direction: row; overflow-x: auto; padding: 13px; scrollbar-width: none; }
  .legal-nav::-webkit-scrollbar { display: none; }
  .legal-nav > span { display: none; }
  .legal-nav a { flex: 0 0 auto; padding: 9px; }
}

@media (max-width: 640px) {
  .inner-hero { padding: 46px 0 54px; }
  .inner-hero h1 { font-size: 36px; }
  .inner-hero p { font-size: 17px; }
  .pricing-page-plans { padding-top: 66px; padding-bottom: 72px; }
  .tariff-comparison { padding-top: 68px; }
  .tariff-table { overflow: visible; border: 0; border-radius: 0; box-shadow: none; background: transparent; }
  .tariff-table-row { grid-template-columns: 1fr 1fr; margin-bottom: 12px; overflow: hidden; border: 1px solid #dce3ee; border-radius: 16px; background: white; }
  .tariff-table-head { display: none; }
  .tariff-table-row > * { min-height: 62px; padding: 14px; border-right: 0; border-bottom: 1px solid #e3e8f0; }
  .tariff-table-row > span:first-child { grid-column: 1/-1; min-height: 54px; }
  .tariff-table-row > span:nth-child(2) { border-right: 1px solid #e3e8f0; border-bottom: 0; }
  .tariff-table-row > span:nth-child(2)::before { content: "Бесплатный"; display: block; margin-bottom: 6px; color: #7a8497; font-size: 11px; text-transform: uppercase; }
  .tariff-table-row > span:nth-child(2) { flex-direction: column; }
  .tariff-table-row > span:nth-child(3) { flex-direction: column; align-items: flex-start; }
  .tariff-table-row > span:nth-child(3)::before { content: "PRO"; display: block; margin-bottom: 6px; color: var(--blue); font-size: 11px; text-transform: uppercase; }
  .tariff-table-special { grid-template-columns: 1fr; }
  .tariff-special-value { grid-column: 1; }
  .tariff-table-special > span:nth-child(2) { align-items: flex-start; border: 0; }
  .tariff-table-special > span:nth-child(2)::before { content: "Для обоих тарифов"; }
  .inner-page-cta { padding-bottom: 62px; }
  .inner-page-cta-panel { align-items: flex-start; flex-direction: column; padding: 38px 24px; }
  .inner-page-cta-panel .button { width: 100%; justify-content: space-between; }
  .help-faq, .help-contact { padding: 70px 0; }
  .faq-question { min-height: 66px; padding: 14px 15px; }
  .faq-question > span { align-items: flex-start; gap: 11px; font-size: 16px; font-weight: 600; }
  .faq-question b { width: 32px; height: 32px; flex-basis: 32px; }
  .faq-answer { padding: 0 16px 20px; font-size: 16px; }
  .help-contact-panel { padding: 28px 20px; border-radius: 22px; }
  .help-form-row { grid-template-columns: 1fr; }
  .help-form-bottom { align-items: stretch; flex-direction: column; }
  .help-form-bottom button { width: 100%; }
  .legal-document { padding: 68px 0; }
  .legal-nav { margin: 0 -6px; }
  .legal-section { padding: 76px 21px 25px; border-radius: 18px; }
  .legal-section-number { left: 21px; top: 21px; width: 38px; height: 38px; }
  .legal-section h2 { font-size: 24px; }
  .legal-section p, .legal-section li { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .site-header, .header-inner, .brand-logo, .site-header .button-small { transition: none; }
  .format-panel { animation: none; }
  .audience-card { transition: none; }
  .audience-card:hover { transform: none; }
}
