:root {
  --bg: #f7f5f0;
  --surface: #ffffff;
  --surface-soft: #fbfaf7;
  --text: #1f2933;
  --muted: #5d6975;
  --line: #e3ded3;
  --accent: #7c5c36;
  --accent-dark: #5b4226;
  --accent-soft: #eee5d7;
  --green-soft: #e7ece7;
  --shadow: 0 18px 45px rgba(31, 41, 51, 0.08);
  --radius-lg: 28px;
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.header {
  position: sticky; top: 0; z-index: 10; backdrop-filter: blur(16px);
  background: rgba(247, 245, 240, 0.88);
  border-bottom: 1px solid rgba(227, 222, 211, 0.85);
}
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; flex-direction: column; gap: 2px; min-width: 220px; }
.brand-name { font-size: 17px; font-weight: 740; letter-spacing: -0.02em; }
.brand-line { font-size: 12px; color: var(--muted); }
.nav-links { display: flex; gap: 22px; font-size: 14px; color: var(--muted); }
.nav-links a:hover { color: var(--text); }
.lang { display: flex; gap: 6px; color: var(--muted); font-size: 13px; white-space: nowrap; }
.lang .active { color: var(--text); font-weight: 650; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 18px; border-radius: 999px;
  font-size: 14px; font-weight: 680; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap; transition: transform 0.18s ease, background 0.18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { color: #fff; background: var(--accent); border-color: var(--accent); }
.button-primary:hover { background: var(--accent-dark); }
.button-secondary { color: var(--text); border-color: var(--line); background: transparent; }
.button-secondary:hover { background: var(--surface); }
section { padding: 64px 0; }
.hero { padding: 82px 0 66px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr); gap: 58px; align-items: center; }
.eyebrow {
  display: inline-flex; padding: 7px 12px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-dark);
  font-size: 13px; font-weight: 700; margin-bottom: 22px;
}
h1, h2, h3, p { margin-top: 0; }

.hero-brand {
  text-align: center;
  margin-bottom: 34px;
}
.hero-brand-name {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  font-weight: 780;
  letter-spacing: -0.055em;
  color: var(--text);
  margin-bottom: 8px;
}
.hero-brand-descriptor {
  font-size: 15px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
}
.hero-brand-line {
  font-size: 16px;
  color: var(--muted);
}
.hero-main-copy {
  max-width: 620px;
}
h1 { font-size: clamp(28px, 3.2vw, 41px); line-height: 1.11; letter-spacing: -0.048em; margin-bottom: 22px; max-width: 600px; text-wrap: balance; }
h2 { font-size: clamp(24px, 2.8vw, 32px); line-height: 1.11; letter-spacing: -0.042em; margin-bottom: 14px; max-width: 640px; text-wrap: balance; }
h3 { letter-spacing: -0.032em; }
.hero-copy { font-size: 18px; color: var(--muted); max-width: 600px; margin-bottom: 18px; }
.hero-copy strong { color: var(--text); font-weight: 680; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.trust-line { margin-top: 22px; color: var(--muted); font-size: 14px; }
.hero-visual {
  position: relative; min-height: 460px; background: linear-gradient(145deg, #ffffff, #f3efe6);
  border: 1px solid var(--line); border-radius: 34px; box-shadow: var(--shadow);
  padding: 28px; overflow: hidden;
}
.visual-top { display: flex; justify-content: flex-end; align-items: center; margin-bottom: 16px; font-size: 13px; color: var(--muted); }
.dots { display: flex; gap: 6px; }
.output-visual .visual-top span { display: none; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #d2c7b5; }
.input-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-bottom: 20px; }
.mini-card { background: rgba(255,255,255,0.72); border: 1px solid var(--line); border-radius: 16px; padding: 14px; min-height: 84px; }
.mini-label { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.mini-text { font-size: 15px; font-weight: 700; }
.arrow-block { height: 58px; display: flex; align-items: center; justify-content: center; color: var(--accent-dark); font-size: 32px; opacity: 0.75; }
.output-card { background: #fff; border-radius: 24px; border: 1px solid var(--line); padding: 22px; box-shadow: 0 12px 30px rgba(31, 41, 51, 0.06); }
.output-title { font-size: 22px; font-weight: 760; letter-spacing: -0.03em; margin-bottom: 14px; }
.doc-lines { display: grid; gap: 9px; }
.doc-line { height: 10px; border-radius: 999px; background: #ebe6dd; }
.doc-line:nth-child(2) { width: 82%; }
.doc-line:nth-child(3) { width: 91%; }
.doc-line:nth-child(4) { width: 58%; }
.method-strip { position: absolute; left: 28px; right: 28px; bottom: 26px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.method-chip { text-align: center; font-size: 12px; background: var(--green-soft); border-radius: 999px; padding: 8px 6px; color: #435147; font-weight: 650; }
.section-head { max-width: 760px; margin-bottom: 32px; }
.section-kicker { font-size: 13px; color: var(--accent-dark); font-weight: 780; text-transform: uppercase; letter-spacing: 0.055em; margin-bottom: 10px; }
.section-subtitle { color: var(--muted); font-size: 18px; margin-bottom: 0; }
.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: 0 10px 30px rgba(31, 41, 51, 0.04); min-height: 222px; display: flex; flex-direction: column; }
.card-number { width: 38px; height: 38px; border-radius: 13px; background: var(--accent-soft); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; font-weight: 760; margin-bottom: 18px; }
.card h3 { font-size: 22px; line-height: 1.15; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 15.5px; margin-bottom: 14px; }
.card-link { margin-top: auto; color: var(--accent-dark); font-weight: 700; font-size: 14px; }
.value-box { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.value-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 28px; align-items: start; }

.compact-cta { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.compact-cta h2 { font-size: 30px; margin-bottom: 0; }
.method-compact { display: grid; grid-template-columns: 1fr; gap: 24px; }
.method-compact .small-note { margin-top: 14px; font-size: 16px; }
.method-line { display: flex; flex-wrap: wrap; gap: 10px; }
.method-line span { background: rgba(255,255,255,0.72); border: 1px solid rgba(227,222,211,0.95); border-radius: 999px; padding: 10px 14px; color: #435147; font-weight: 650; font-size: 14px; }
.process-grid-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.method-section { background: #efe9de; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.method-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; margin-top: 34px; }
.method-step { background: rgba(255,255,255,0.65); border: 1px solid rgba(227, 222, 211, 0.9); border-radius: 22px; padding: 20px; min-height: 170px; }
.method-step h3 { font-size: 17px; margin-bottom: 10px; }
.method-step p { font-size: 14.5px; color: var(--muted); margin-bottom: 0; }
.ai-box { margin-top: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: 0 12px 28px rgba(31, 41, 51, 0.05); display: grid; grid-template-columns: 0.42fr 1fr; gap: 28px; }
.ai-box h3 { margin-bottom: 0; font-size: 24px; line-height: 1.15; }
.ai-box p { margin-bottom: 0; color: var(--muted); font-size: 16px; }
.audience-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.audience-card { background: var(--surface); border: 1px solid var(--line); border-radius: 24px; padding: 22px; min-height: 170px; }
.audience-card h3 { font-size: 19px; line-height: 1.18; margin-bottom: 12px; }
.audience-card p { color: var(--muted); font-size: 15px; margin-bottom: 0; }
.process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.process-step { background: var(--surface); border: 1px solid var(--line); border-radius: 24px; padding: 22px; min-height: 170px; }
.process-step .step-no { color: var(--accent-dark); font-weight: 820; margin-bottom: 12px; }
.process-step h3 { font-size: 19px; margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: 15px; margin-bottom: 0; }
.about-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; align-items: stretch; }
.about-panel { background: var(--accent-dark); color: #fff; border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; justify-content: space-between; min-height: 290px; }
.about-panel h2 { color: #fff; margin-bottom: 16px; }
.about-panel p { color: rgba(255,255,255,0.78); margin-bottom: 0; }
.about-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.fact { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 22px; }
.fact h3 { font-size: 17px; margin-bottom: 8px; }
.fact p { color: var(--muted); margin-bottom: 0; font-size: 14.5px; }
.contact { background: #1f2933; color: #fff; padding-bottom: 80px; }
.contact .section-kicker, .contact h2 { color: #fff; }
.contact .section-subtitle { color: rgba(255,255,255,0.72); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 38px; align-items: start; }
.quote-list { display: grid; gap: 12px; margin-top: 26px; color: rgba(255,255,255,0.75); }
.quote-example { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 12px 14px; font-size: 14px; }
.form { background: #fff; border-radius: var(--radius-lg); padding: 26px; color: var(--text); box-shadow: var(--shadow); }
.form-grid { display: grid; gap: 14px; }
.field { display: grid; gap: 7px; }
.field label { color: var(--muted); font-size: 13px; font-weight: 650; }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; font: inherit; color: var(--text); background: var(--surface-soft); outline: none; }
textarea { min-height: 112px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--accent); background: #fff; }
.form-note { color: var(--muted); font-size: 13px; margin: 12px 0 0; }
.footer { background: #17212b; color: rgba(255,255,255,0.74); padding: 34px 0; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: start; }
.footer-brand { color: #fff; font-weight: 760; font-size: 16px; margin-bottom: 8px; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-end; }
.disclaimer { margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.58); max-width: 920px; font-size: 13px; }
@media (max-width: 980px) {
  .nav-links, .nav .button { display: none; }
  .nav { height: 70px; }
  .hero-grid, .about-wrap, .contact-grid, .value-grid, .ai-box, .compact-cta { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .hero-visual { min-height: 430px; }
  .cards, .process-grid, .process-grid-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .method-grid, .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  .hero-brand-name { font-size: 40px; }
  .hero-copy, .section-subtitle { font-size: 16px; }
  .hero-visual { display: none; }
  .cards, .process-grid, .process-grid-four, .method-grid, .audience-grid, .about-facts { grid-template-columns: 1fr; }
  .card, .method-step, .audience-card, .process-step { min-height: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

/* Package pages */
.package-list { display: grid; gap: 22px; }
.package {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(31, 41, 51, 0.04);
  padding: 30px;
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  gap: 30px;
  align-items: start;
}
.package-title { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.package-number {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 760;
  flex: 0 0 auto;
}
.package h2 { font-size: 27px; margin-bottom: 10px; }
.package-intro { color: var(--muted); font-size: 16px; margin-bottom: 0; }
.package-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.info-block h3 { font-size: 16px; margin-bottom: 8px; color: var(--accent-dark); }
.info-block p { color: var(--muted); margin-bottom: 0; }
.info-block ul { margin: 0; padding-left: 19px; color: var(--muted); }
.info-block li { margin-bottom: 5px; }
.boundary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  border-left: 6px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(31, 41, 51, 0.04);
}
.boundary .section-kicker { color: var(--accent-dark); }
.boundary h2 { color: var(--text); font-size: clamp(23px, 2.6vw, 31px); }
.boundary p,
.boundary li { color: var(--muted); font-size: 15px; }
.boundary ul { columns: 2; gap: 42px; margin-bottom: 0; padding-left: 19px; }
.boundary li { break-inside: avoid; margin-bottom: 8px; }

.price-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(31, 41, 51, 0.04);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}
.price-card {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.price-card .price-label {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 6px;
}
.price-card .price-value {
  font-size: 22px;
  font-weight: 760;
  letter-spacing: -0.025em;
  color: var(--accent-dark);
}
.price-note {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.support-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 8px 22px rgba(31, 41, 51, 0.035);
}
.support-card h3 { font-size: 17px; margin-bottom: 8px; }
.support-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 0; }
@media (max-width: 980px) {
  .price-grid, .support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .price-grid, .support-grid { grid-template-columns: 1fr; }
}

.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
}
.faq-item h3 { font-size: 18px; line-height: 1.22; margin-bottom: 10px; }
.faq-item p { color: var(--muted); margin-bottom: 0; font-size: 15px; }
.cta-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}
.cta-box p { color: var(--muted); margin-bottom: 0; }
@media (max-width: 980px) {
  .package,
  .cta-box { grid-template-columns: 1fr; }
  .boundary ul { columns: 1; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .package { padding: 24px; }
}

/* v14 visual polish: Soft Business Flow + Structured Paper */
body {
  background:
    radial-gradient(circle at 12% 0%, rgba(124, 92, 54, 0.10), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(89, 112, 98, 0.11), transparent 34%),
    linear-gradient(180deg, #f8f5ef 0%, #f7f5f0 42%, #f4f0e8 100%);
}
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 92, 54, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 92, 54, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), transparent 78%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
.hero-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 24px;
  border: 1px solid rgba(227, 222, 211, 0.9);
  border-radius: 26px;
  background: rgba(255,255,255,0.56);
  box-shadow: 0 16px 40px rgba(31, 41, 51, 0.05);
}
.hero-grid > div:first-child { text-align: center; }
.hero-grid > div:first-child h1,
.hero-grid > div:first-child .hero-copy,
.hero-grid > div:first-child .trust-line { margin-left: auto; margin-right: auto; }
.hero-actions { justify-content: center; }
.flow-visual {
  min-height: 460px;
  background:
    radial-gradient(circle at 50% 16%, rgba(238,229,215,0.92), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(243,239,230,0.86));
}
.flow-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 92, 54, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 92, 54, 0.035) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.flow-visual > * { position: relative; z-index: 1; }
.flow-board {
  display: grid;
  grid-template-columns: 1fr 0.82fr 1fr;
  gap: 14px;
  align-items: center;
  min-height: 325px;
}
.flow-column {
  display: grid;
  gap: 10px;
}
.flow-caption {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 760;
  margin-bottom: 2px;
}
.flow-pill {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 13px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(31,41,51,0.035);
}
.flow-pill.strong {
  background: rgba(238, 229, 215, 0.92);
  border-color: rgba(124, 92, 54, 0.18);
  color: var(--accent-dark);
}
.flow-center {
  display: grid;
  gap: 14px;
  justify-items: center;
}
.flow-core {
  width: 100%;
  min-height: 150px;
  border-radius: 28px;
  background: #5b4226;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  box-shadow: 0 18px 36px rgba(91, 66, 38, 0.20);
}
.flow-core span {
  font-size: 15px;
  font-weight: 760;
  letter-spacing: -0.015em;
}
.flow-lines {
  width: 100%;
  display: grid;
  gap: 7px;
}
.flow-lines span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(124,92,54,0.38), transparent);
}
.flow-note {
  margin-top: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.68);
  border: 1px solid var(--line);
  padding: 14px 16px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.output-board {
  min-height: 325px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 10px 2px 4px;
}
.output-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 70px;
  padding: 14px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249,246,240,0.94));
  min-width: 0;
}
.output-item span:last-child {
  display: block;
  min-width: 0;
  max-width: 100%;
  line-height: 1.24;
  font-size: 13.25px;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}
.output-icon {
  flex: 0 0 32px;
  margin-top: 1px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(124,92,54,0.08);
  color: var(--accent-dark);
  box-shadow: inset 0 0 0 1px rgba(124,92,54,0.08);
}
.output-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.output-heading {
  text-align: center;
  max-width: 390px;
  margin: 0 auto;
}
.output-heading h3 {
  margin: 6px 0 0;
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.output-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}
.output-link {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(124,92,54,0.18);
  color: var(--accent-dark);
  font-weight: 760;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(31,41,51,0.04);
}
.output-link:hover { background: #fff; }
.output-visual .visual-top span { color: var(--muted); }

.card, .process-step, .fact, .package, .faq-item, .value-box, .cta-box {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover, .process-step:hover, .fact:hover, .package:hover, .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(31, 41, 51, 0.075);
  border-color: rgba(124, 92, 54, 0.20);
}
.card-number, .package-number {
  box-shadow: inset 0 0 0 1px rgba(124,92,54,0.06);
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-kicker::before {
  content: "";
  width: 18px;
  height: 1px;
  background: rgba(124, 92, 54, 0.45);
}
.contact {
  background:
    radial-gradient(circle at 12% 0%, rgba(124,92,54,0.22), transparent 34%),
    linear-gradient(145deg, #1f2933, #17212b);
}
@media (max-width: 980px) {
  .hero-grid > div:first-child { text-align: left; }
  .hero-grid > div:first-child h1,
  .hero-grid > div:first-child .hero-copy,
  .hero-grid > div:first-child .trust-line { margin-left: 0; margin-right: 0; }
  .hero-actions { justify-content: flex-start; }
  .hero-brand { align-items: flex-start; text-align: left; }
  .flow-board { grid-template-columns: 1fr; min-height: auto; }
  .output-grid { grid-template-columns: 1fr; }
  .output-board { min-height: auto; }
  .flow-center { order: 2; }
  .result-column { order: 3; }
  .flow-lines { display: none; }
}


/* v20 visual micro-system: icons, brand mark, business-paper detail */
:root {
  --accent-2: #6f7d68;
  --paper: #fffdf8;
}
.brand {
  flex-direction: row;
  align-items: center;
  gap: 11px;
  min-width: 250px;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}
.brand-mark,
.brand-mark-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(124, 92, 54, 0.28);
  background: linear-gradient(145deg, #fffdf8, #eee5d7);
  color: var(--accent-dark);
  font-weight: 820;
  font-family: Georgia, "Times New Roman", serif;
  box-shadow: 0 8px 22px rgba(31, 41, 51, 0.06);
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  font-size: 21px;
  flex: 0 0 auto;
}
.brand-mark-large {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  font-size: 30px;
  margin-bottom: 12px;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: max(18px, calc((100vw - var(--max)) / 2 - 26px));
  top: 38px;
  width: 176px;
  height: 128px;
  border-radius: 18px;
  opacity: 0.78;
  transform: rotate(-5deg);
  background:
    linear-gradient(90deg, transparent 0 54%, rgba(124,92,54,0.09) 54% 55%, transparent 55%),
    linear-gradient(rgba(124,92,54,0.15) 0 0) 24px 28px/96px 2px no-repeat,
    linear-gradient(rgba(124,92,54,0.11) 0 0) 24px 43px/124px 2px no-repeat,
    linear-gradient(rgba(124,92,54,0.11) 0 0) 24px 58px/110px 2px no-repeat,
    linear-gradient(90deg, rgba(111,125,104,0.15) 0 0) 26px 82px/28px 34px no-repeat,
    linear-gradient(90deg, rgba(124,92,54,0.16) 0 0) 61px 70px/28px 46px no-repeat,
    linear-gradient(90deg, rgba(91,66,38,0.12) 0 0) 96px 92px/28px 24px no-repeat,
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(238,229,215,0.78));
  border: 1px solid rgba(227,222,211,0.9);
  box-shadow:
    16px 16px 0 -6px rgba(255,255,255,0.62),
    17px 17px 0 -5px rgba(227,222,211,0.65),
    0 18px 44px rgba(31,41,51,0.07);
  pointer-events: none;
}
.ui-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: rgba(238, 229, 215, 0.62);
  border: 1px solid rgba(124, 92, 54, 0.16);
  color: var(--accent-dark);
}
.ui-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.card-top .card-number { margin-bottom: 0; }
.card-top .ui-icon { opacity: 0.92; }
.card h3, .package h2, .fact h3, .support-card h3, .faq-item h3 { color: #202a33; }
.process-step { position: relative; }
.step-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  opacity: 0.95;
}
.fact-icon,
.support-icon,
.faq-icon {
  margin-bottom: 12px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
}
.faq-item { position: relative; }
.faq-icon { float: right; margin-left: 12px; }
.package-title {
  align-items: center;
}
.package-title .package-number { margin-bottom: 0; }
.package-icon {
  margin-right: 12px;
}
.flow-visual {
  background:
    radial-gradient(circle at 50% 14%, rgba(238,229,215,0.88), transparent 32%),
    radial-gradient(circle at 86% 82%, rgba(111,125,104,0.10), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(243,239,230,0.88));
}
.flow-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 51%;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(124,92,54,0.10);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 42px rgba(124,92,54,0.035), 0 0 0 88px rgba(111,125,104,0.026);
  z-index: 0;
}
.flow-core {
  background: linear-gradient(145deg, #5b4226, #6e5130);
}
.flow-pill {
  position: relative;
  padding-left: 16px;
}
.flow-pill::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(124,92,54,0.36);
  margin-right: 8px;
  vertical-align: 1px;
}
.flow-pill.strong::before { background: rgba(111,125,104,0.46); }
.price-card, .support-card, .faq-item, .package, .card, .process-step, .fact {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,253,248,0.92));
}
.boundary {
  background:
    linear-gradient(90deg, rgba(124,92,54,0.10), transparent 24%),
    rgba(255,255,255,0.78);
}
.cta-box {
  background:
    radial-gradient(circle at 5% 0%, rgba(124,92,54,0.10), transparent 28%),
    rgba(255,255,255,0.84);
}
@media (max-width: 980px) {
  .brand { min-width: 0; }
  .hero::after { display: none; }
  .package-icon { margin-right: 0; }
}
@media (max-width: 640px) {
  .brand-mark { width: 34px; height: 34px; font-size: 19px; }
  .brand-line { display: none; }
  .ui-icon { width: 34px; height: 34px; }
  .step-icon { position: static; margin-bottom: 12px; }
  .faq-icon { float: none; margin-left: 0; }
}


/* v23 pre-publish additions */
.form-note a,
.disclaimer a,
.footer a { text-decoration: none; }
.form-note a { color: var(--accent-dark); font-weight: 700; }
.copyright { margin-top: 18px; color: rgba(255,255,255,0.52); font-size: 13px; }
.privacy-section { padding: 82px 0; }
.privacy-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 34px; max-width: 920px; }
.privacy-card h1 { font-size: clamp(32px, 4vw, 48px); line-height: 1.12; margin-bottom: 18px; }
.privacy-card h2 { font-size: 24px; margin-top: 30px; margin-bottom: 10px; }
.privacy-card p, .privacy-card li { color: var(--muted); }
.privacy-card ul { padding-left: 20px; }
.privacy-card .updated { color: var(--accent-dark); font-weight: 700; margin-bottom: 24px; }


/* v24 PME-inspired spacing / CTA discipline pass
   Keeps Linguset's light Structured Paper identity; improves rhythm, whitespace, and CTA clarity. */
section { padding: 78px 0; }
.hero { padding: 94px 0 82px; }
.section-head { margin-bottom: 40px; }
.section-subtitle { max-width: 720px; }
.cards { gap: 22px; }
.card { padding: 28px; }
.value-box, .cta-box { padding: 36px; }
.compact-cta {
  border: 1px solid rgba(124, 92, 54, 0.16);
  background:
    radial-gradient(circle at 6% 20%, rgba(124,92,54,0.10), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,253,248,0.90));
}
.compact-cta .button,
.cta-box .button,
.hero-actions .button {
  box-shadow: 0 10px 24px rgba(124, 92, 54, 0.11);
}
.button-primary {
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(124, 92, 54, 0.13);
}
.button-secondary {
  background: rgba(255,255,255,0.42);
}
.hero::before {
  background-size: 52px 52px;
  opacity: 0.88;
}
.hero-grid { gap: 70px; }
.hero-copy { max-width: 620px; }
.trust-line {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(124,92,54,0.12);
  max-width: 540px;
}
.flow-visual {
  box-shadow: 0 22px 58px rgba(31, 41, 51, 0.10);
  border-color: rgba(124,92,54,0.15);
}
.card, .package, .faq-item, .process-step, .fact, .support-card, .price-card {
  border-color: rgba(227,222,211,0.92);
}
.card-link,
.package .card-link,
.footer-links a,
.nav-links a {
  letter-spacing: 0.01em;
}
.method-compact,
.process-grid-four,
.about-wrap {
  margin-top: 4px;
}
.process-grid-four { gap: 20px; }
.about-wrap { gap: 34px; }
.contact {
  padding-top: 88px;
  padding-bottom: 92px;
}
.form {
  border: 1px solid rgba(227,222,211,0.86);
}
.package-list { gap: 28px; }
.package { padding: 34px; }
.price-box { padding: 34px; }
.support-grid { gap: 18px; }
.faq-grid { gap: 18px; }
.privacy-section { padding: 96px 0; }

@media (min-width: 981px) {
  .section-head h2 { max-width: 620px; }
  .cards .card:nth-child(odd) { transform-origin: right center; }
  .cards .card:nth-child(even) { transform-origin: left center; }
}

@media (max-width: 980px) {
  section { padding: 64px 0; }
  .hero { padding: 64px 0 58px; }
  .hero-grid { gap: 42px; }
  .trust-line { max-width: none; }
}

@media (max-width: 640px) {
  section { padding: 54px 0; }
  .hero { padding: 52px 0 46px; }
  .card, .package, .value-box, .cta-box, .price-box { padding: 24px; }
}
