:root {
  --bg: #f5f9ff;
  --bg-2: #eaf3ff;
  --bg-3: #ffffff;
  --panel: #ffffff;
  --panel-soft: #f2f7ff;
  --line: rgba(0, 172, 208, 0.24);
  --line-strong: rgba(0, 172, 208, 0.58);
  --line-green: rgba(0, 191, 99, 0.40);
  --ink: #071232;
  --ink-soft: #1c2b52;
  --muted: #4a5a76;
  --cyan: #00b3d4;
  --cyan-strong: #00a0c0;
  --cyan-soft: #4dd0e1;
  --green: #00b859;
  --green-strong: #009e4c;
  --green-soft: #4de08a;
  --gold: #f59e0b;
  --gold-soft: #fbbf24;
  --warn: #e11d48;
  --shadow: 0 18px 50px rgba(10, 60, 120, 0.10);
  --shadow-soft: 0 6px 20px rgba(10, 60, 120, 0.06);
  --radius: 14px;
  --radius-lg: 22px;
  --mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --sans: "Avenir Next", "Hiragino Sans", "Yu Gothic", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 12% 12%, rgba(0, 179, 212, 0.10), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(0, 184, 89, 0.08), transparent 26%),
    radial-gradient(circle at 72% 32%, rgba(0, 179, 212, 0.06), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 60%, #f4f9ff 100%),
    repeating-linear-gradient(90deg, rgba(0, 179, 212, 0.03) 0, rgba(0, 179, 212, 0.03) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg, rgba(0, 179, 212, 0.02) 0, rgba(0, 179, 212, 0.02) 1px, transparent 1px, transparent 80px);
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 0; margin: 0; list-style: none; }

.mono { font-family: var(--mono); letter-spacing: 0.02em; }
.text-cyan { color: var(--cyan); }
.text-green { color: var(--green); }
.text-warn { color: var(--warn); }

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* ============ header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 24px rgba(10, 60, 120, 0.04);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 179, 212, 0.14), rgba(0, 184, 89, 0.10));
  border: 1px solid var(--line-strong);
  box-shadow: 0 4px 14px rgba(0, 179, 212, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--cyan);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-size: 18px; letter-spacing: 0.02em; }
.brand-sub { font-size: 11px; color: var(--muted); font-weight: 500; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.nav-item {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 14px;
  transition: color .15s, border-color .15s, background .15s;
}
.nav-item:hover { color: var(--ink); border-color: var(--line); }
.nav-item.is-active { color: var(--cyan); border-color: var(--line-strong); }
.nav-cta {
  background: linear-gradient(120deg, var(--cyan), var(--green));
  color: #ffffff !important;
  font-weight: 800;
  border-color: transparent !important;
  box-shadow: 0 6px 18px rgba(0, 179, 212, 0.25);
}
.nav-cta:hover { filter: brightness(1.05); transform: translateY(-1px); }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  background: #ffffff;
}
.lang-link { padding: 2px 6px; border-radius: 6px; }
.lang-link.is-active { color: var(--green); background: rgba(0, 184, 89, 0.10); }
.lang-sep { opacity: 0.5; }

/* ============ main ============ */
.main { padding: 24px 0 96px; }

.hero {
  padding: 72px 0 40px;
  position: relative;
  overflow: hidden;
}
.hero-compact {
  padding: 36px 0 24px;
}
.hero-compact .hero-inner { gap: 14px; }
.hero-compact .hero-title { margin-top: 4px; }
.hero-compact .hero-lead { line-height: 1.75; margin-top: -2px; }
.hero-compact + .section { padding-top: 16px; }

.hero-minimal {
  padding: 26px 0 16px;
  position: relative;
  overflow: hidden;
}
.hero-minimal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 179, 212, 0.08), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(0, 184, 89, 0.04), transparent 50%);
  pointer-events: none;
}
.hero-title-minimal {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "Yu Gothic", "游ゴシック", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.45;
  letter-spacing: 0.02em;
  font-weight: 900;
  text-align: center;
  margin: 0;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.hero-title-minimal .text-cyan { font-weight: 900; }
.hero-title-minimal .text-green { font-weight: 900; }
.hero-minimal + .products-section { padding-top: 12px; }

.products-section { padding: 12px 0 40px; }
.products-head {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.products-title {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  color: var(--ink);
}
.products-all-link {
  margin-left: auto;
  color: var(--cyan);
  font-size: 13px;
  text-decoration: none;
}
.products-all-link:hover { text-decoration: underline; }
.products-section .who-card { padding: 0; overflow: hidden; }
.products-section .who-card-thumbed { padding: 0; }
.who-card-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 179, 212, 0.05), rgba(0, 184, 89, 0.03));
  border-bottom: 1px solid var(--line);
}
.who-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.who-card-thumbed:hover .who-card-thumb img { transform: scale(1.03); }
.who-card-thumbed .chip { margin: 16px 20px 0; }
.who-card-thumbed .who-card-title,
.who-card-thumbed .who-card-desc {
  margin-left: 20px;
  margin-right: 20px;
}
.who-card-thumbed > p.mono { margin: 8px 20px 20px; }

/* work-card (works_index) にもサムネ枠 */
.work-card { padding: 0; overflow: hidden; }
.work-card-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 179, 212, 0.05), rgba(0, 184, 89, 0.03));
  border-bottom: 1px solid var(--line);
}
.work-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.work-card:hover .work-card-thumb img { transform: scale(1.03); }
.work-card-badges { padding: 16px 20px 0; }
.work-card-title { margin: 4px 20px; }
.work-card-pain { margin: 8px 20px; }
.work-card-solves { margin: 4px 20px; }
.work-card-meta { margin: 8px 20px; padding-top: 10px; }
.work-card-actions { margin: 4px 20px 20px; }

/* work_detail のヒーロー画像 (縦長 2:3 に最適化) */
.work-detail-hero {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 20px auto 28px;
  background: linear-gradient(135deg, rgba(0, 179, 212, 0.05), rgba(0, 184, 89, 0.03));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.work-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 480px) {
  .work-detail-hero { max-width: 280px; }
}
.products-section .grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .products-section .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .products-section .grid-3 { grid-template-columns: 1fr; }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 179, 212, 0.10), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(0, 184, 89, 0.06), transparent 50%);
  pointer-events: none;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  text-align: center;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-title {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "游明朝", "ヒラギノ明朝 ProN", "MS P明朝", "MS PMincho", serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.7;
  margin: 12px 0 0;
  letter-spacing: 0.06em;
  font-weight: 700;
  word-break: normal;
  overflow-wrap: break-word;
  max-width: 1000px;
  color: var(--ink);
}
.hero-title .text-cyan,
.hero-title .text-green {
  display: inline-block;
  white-space: nowrap;
  font-weight: 800;
}
.hero-lead {
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto;
}
.hero-lead strong { color: var(--ink); font-weight: 800; }
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}
.hero-actions .btn { padding: 14px 28px; font-size: 15px; }

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 40px;
  margin-top: 20px;
  padding: 26px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  width: 100%;
  max-width: 1140px;
  text-align: left;
}
.hero-facts li {
  position: relative;
  padding: 8px 0 8px 20px;
}
.hero-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.hero-facts-inline {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  padding: 12px 22px;
  font-size: 13px;
  margin-top: 8px;
  max-width: 980px;
}
.hero-facts-inline li {
  padding: 2px 0 2px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-facts-inline li::before {
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
}
.hero-facts-inline .fact-label {
  min-width: auto;
  padding: 2px 8px;
  margin-right: 2px;
  font-size: 11px;
}

@media (max-width: 720px) {
  .hero-facts { grid-template-columns: 1fr; padding: 22px 22px; gap: 6px; }
  .hero-facts-inline { padding: 10px 14px; gap: 4px; }
  .hero-facts-inline li { padding: 2px 0 2px 14px; }
  .hero-compact { padding: 24px 0 16px; }
}
.fact-label {
  display: inline-block;
  min-width: 56px;
  padding: 3px 10px;
  margin-right: 8px;
  border-radius: 999px;
  background: rgba(0, 179, 212, 0.12);
  border: 1px solid var(--line-strong);
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  vertical-align: middle;
}

@media (max-width: 720px) {
  .hero-facts { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 30px; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid var(--line-strong);
  background: rgba(0, 179, 212, 0.06);
  color: var(--cyan);
  font-weight: 800;
}
.badge-green { color: var(--green); border-color: var(--line-green); background: rgba(0, 184, 89, 0.06); }
.badge-cyan { color: var(--cyan); border-color: var(--line-strong); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform .12s, filter .15s, background .15s;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(120deg, var(--cyan), var(--green));
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(0, 179, 212, 0.28);
}
.btn-primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn-ghost {
  background: #ffffff;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: rgba(0, 179, 212, 0.05); }
.btn-large { padding: 16px 28px; font-size: 15px; }

.section { padding: 56px 0; }
.section-alt {
  background:
    linear-gradient(180deg, rgba(0, 179, 212, 0.03), transparent 40%),
    var(--panel-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-title {
  font-size: 28px;
  margin: 0 0 28px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-weight: 800;
  line-height: 1.35;
}
.section-title > .text-cyan,
.section-title > .text-green {
  font-size: 24px;
}
@media (max-width: 720px) {
  .section-title { font-size: 22px; }
  .section-title > .text-cyan,
  .section-title > .text-green { font-size: 18px; }
}

.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  padding: 24px 22px 22px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .15s, transform .15s, box-shadow .15s;
  position: relative;
}
.card:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: var(--shadow); }
.card-tag {
  font-size: 11px;
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.14em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  border-radius: 2px;
}
.card-title { margin: 4px 0 4px; font-size: 18px; font-weight: 800; line-height: 1.45; }
.card-body { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.75; }
.card-meta { margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--line); color: var(--green); font-size: 14px; font-weight: 800; }
.card-note { border-color: rgba(225, 29, 72, 0.35); background: rgba(225, 29, 72, 0.05); }
.card-note .card-title { color: var(--warn); }

.steps {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.steps li {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}
.step-index { color: var(--green); font-size: 11px; letter-spacing: 0.12em; font-weight: 700; }
.step-title { margin: 6px 0; font-size: 16px; font-weight: 700; }
.step-desc { margin: 0; color: var(--ink-soft); font-size: 13.5px; }

.cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(0, 179, 212, 0.08), rgba(0, 184, 89, 0.06));
  box-shadow: var(--shadow-soft);
  flex-wrap: wrap;
}
.cta-title { margin: 0 0 6px; font-size: 20px; }
.cta-lead { margin: 0; color: var(--ink-soft); font-size: 14px; }

.page-title { font-size: clamp(24px, 3vw, 34px); margin: 12px 0 6px; }
.page-lead { color: var(--muted); }

/* ============ footer ============ */
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  padding: 40px 0 24px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.2fr 1fr 2fr;
}
.footer-brand { font-weight: 800; margin: 0 0 6px; }
.footer-sub { color: var(--muted); font-size: 13px; margin: 0; }
.footer-heading { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); margin: 0 0 10px; font-weight: 700; }
.footer-links li { margin: 6px 0; }
.footer-links a { color: var(--ink-soft); font-size: 14px; }
.footer-links a:hover { color: var(--cyan); }
.disclaimer { color: var(--ink-soft); font-size: 12.5px; line-height: 1.7; margin: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-note { color: var(--warn); }

/* ============ language gate ============ */
body.gate {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.gate-main {
  width: 100%;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}
.gate-card {
  width: min(560px, 100%);
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px rgba(10, 60, 120, 0.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}
.gate-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 800;
  font-size: 22px;
}
.gate-tag { color: var(--cyan); font-size: 12px; letter-spacing: 0.16em; }
.gate-desc { color: var(--muted); font-size: 14px; line-height: 1.75; margin: 0; }
.gate-actions {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  margin-top: 6px;
}
.gate-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 14px;
  border-radius: var(--radius);
  border: 2px solid var(--line-strong);
  background: rgba(0, 179, 212, 0.04);
  transition: transform .15s, background .15s, border-color .15s, box-shadow .15s;
}
.gate-btn:hover { transform: translateY(-2px); background: rgba(0, 179, 212, 0.08); box-shadow: 0 12px 28px rgba(0, 179, 212, 0.16); }
.gate-btn-jp { border-color: var(--line-strong); }
.gate-btn-en { border-color: var(--line-green); background: rgba(0, 184, 89, 0.04); }
.gate-btn-en:hover { background: rgba(0, 184, 89, 0.08); box-shadow: 0 12px 28px rgba(0, 184, 89, 0.16); }
.gate-btn-lang {
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--cyan);
}
.gate-btn-en .gate-btn-lang { color: var(--green); }
.gate-btn-label { font-size: 13px; color: var(--muted); }
.gate-footnote {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  margin: 6px 0 0;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  display: inline-block;
}
.dot-green { background: var(--green); box-shadow: 0 0 8px rgba(0, 255, 136, 0.6); }

/* ============ services / detail / policy / pricing ============ */
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.svc-grid { margin-top: 24px; }
.svc-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.svc-card:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: var(--shadow); }
.svc-head { display: flex; align-items: baseline; gap: 12px; }
.svc-number { color: var(--cyan); font-size: 13px; letter-spacing: 0.12em; font-weight: 700; }
.svc-title { margin: 0; font-size: 18px; font-weight: 800; }
.svc-tag { margin: 0; color: var(--ink-soft); font-size: 14px; }
.svc-scope { display: flex; flex-direction: column; gap: 6px; margin: 4px 0; font-size: 13px; color: var(--ink-soft); }
.svc-scope li { display: flex; align-items: baseline; gap: 10px; }
.svc-scope li .chip { flex-shrink: 0; }
.svc-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  font-size: 12px;
}
.svc-price { color: var(--green); font-weight: 700; }
.svc-dur { color: var(--cyan); font-weight: 700; }
.btn-block { display: flex; width: 100%; }

.chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: rgba(0, 179, 212, 0.06);
  color: var(--cyan);
  font-family: var(--mono);
  font-weight: 700;
}
.chip-cyan { color: var(--cyan); border-color: var(--line-strong); }
.chip-green { color: var(--green); border-color: var(--line-green); background: rgba(0, 184, 89, 0.06); }

.back-link {
  display: inline-block;
  color: var(--muted);
  font-size: 12.5px;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.back-link:hover { color: var(--cyan); border-color: var(--line-strong); }

.detail-meta {
  display: flex;
  gap: 16px;
  margin: 16px 0 24px;
  flex-wrap: wrap;
}
.detail-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  color: var(--ink);
}
.detail-meta-item .chip { flex-shrink: 0; }

.detail-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 12px;
}
.detail-block {
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}
.detail-block.detail-warn {
  border-color: rgba(225, 29, 72, 0.30);
  background: rgba(225, 29, 72, 0.03);
}
.detail-h {
  margin: 0 0 12px;
  font-size: 15px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 800;
}
.bullet-list { display: flex; flex-direction: column; gap: 6px; color: var(--ink-soft); font-size: 13.5px; }
.bullet-list li { position: relative; padding-left: 16px; }
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}
.detail-warn .bullet-list li::before { background: var(--warn); }

.numbered-list {
  counter-reset: nl;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  list-style: none;
  padding: 0;
}
.numbered-list li {
  counter-increment: nl;
  position: relative;
  padding-left: 32px;
}
.numbered-list li::before {
  content: counter(nl, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--mono);
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.policy-block {
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  margin-top: 20px;
}
.policy-block.policy-danger {
  border-color: rgba(225, 29, 72, 0.30);
  background: rgba(225, 29, 72, 0.03);
}
.policy-block.policy-warn {
  border-color: rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.04);
}
.policy-block.policy-disclaimer {
  border-color: var(--line-strong);
  background: rgba(0, 179, 212, 0.03);
}
.policy-p { color: var(--ink-soft); font-size: 13.5px; line-height: 1.75; margin: 8px 0; }

.pricing-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  margin-top: 20px;
}
.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  font-size: 14px;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row.pricing-head {
  background: rgba(0, 179, 212, 0.05);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 800;
}
.pricing-row a { color: var(--ink); font-weight: 600; }
.pricing-row a:hover { color: var(--cyan); }

/* ============ like button ============ */
.like-area {
  margin-top: 32px;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1.5px dashed var(--line-strong);
  background: linear-gradient(135deg, rgba(0, 179, 212, 0.05), rgba(0, 184, 89, 0.03));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.like-lead { margin: 0 0 12px; color: var(--ink-soft); font-size: 14px; font-weight: 700; }
.like-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid var(--line-strong);
  background: #ffffff;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .12s, background .15s, border-color .15s, box-shadow .15s;
}
.like-btn:hover { transform: translateY(-1px); border-color: var(--cyan); box-shadow: 0 8px 22px rgba(0, 179, 212, 0.20); }
.like-heart {
  color: var(--warn);
  font-size: 20px;
  line-height: 1;
  transition: transform .18s;
}
.like-count { color: var(--cyan); min-width: 24px; text-align: right; }
.like-area.is-liked .like-btn {
  background: linear-gradient(120deg, var(--cyan), var(--green));
  color: #ffffff;
  border-color: transparent;
  cursor: default;
}
.like-area.is-liked .like-heart { color: #ffffff; animation: like-heartbeat 1.2s ease-out; }
.like-area.is-liked .like-count { color: #ffffff; }
.like-area.is-sending .like-btn { opacity: 0.6; pointer-events: none; }
.like-note { margin: 12px 0 0; color: var(--muted); font-size: 12px; }
.like-burst-char {
  position: absolute;
  left: 50%;
  top: 50%;
  color: var(--warn);
  font-size: 18px;
  pointer-events: none;
  animation: like-burst .9s ease-out forwards;
}
@keyframes like-burst {
  from { opacity: 1; transform: translate(-50%, -50%) scale(0.6); }
  to { opacity: 0; transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1.4); }
}
@keyframes like-heartbeat {
  0% { transform: scale(1); }
  20% { transform: scale(1.4); }
  40% { transform: scale(1); }
  60% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}
.like-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(225, 29, 72, 0.06);
  color: var(--warn);
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(225, 29, 72, 0.20);
}

/* ============ public lab status ============ */
.lab-status-chart { width: 100%; height: auto; min-width: 320px; }
.loss-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 12px;
}
.loss-card {
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.loss-card.loss-neg { border-color: rgba(225, 29, 72, 0.30); background: rgba(225, 29, 72, 0.03); }
.loss-card.loss-pos { border-color: rgba(0, 184, 89, 0.30); background: rgba(0, 184, 89, 0.03); }
.loss-bar-wrap {
  margin-top: 8px;
  height: 4px;
  border-radius: 2px;
  background: rgba(85, 102, 128, 0.15);
  overflow: hidden;
}
.loss-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  border-radius: 2px;
}
.loss-neg .loss-bar { background: linear-gradient(90deg, var(--warn), rgba(225,29,72,0.6)); }

/* ============ lab ============ */
.lab-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.lab-card:hover { border-color: var(--line-green); transform: translateY(-2px); box-shadow: var(--shadow); }
.lab-head { display: flex; justify-content: space-between; align-items: center; }
.lab-metrics { display: flex; gap: 6px; flex-wrap: wrap; }
.metric {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 179, 212, 0.06);
  border: 1px solid var(--line);
  font-size: 12px;
}
.metric-label { color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; }
.metric-val { color: var(--cyan); font-weight: 800; }
.metric.metric-warn { background: rgba(225, 29, 72, 0.05); border-color: rgba(225, 29, 72, 0.25); }
.metric.metric-warn .metric-val { color: var(--warn); }

.lab-metrics-big { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; margin-top: 20px; }
.lab-metric-card {
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.lab-metric-card.lab-metric-warn { border-color: rgba(225, 29, 72, 0.30); background: rgba(225, 29, 72, 0.03); }
.metric-big { margin: 6px 0 0; font-size: 32px; font-weight: 800; color: var(--cyan); }
.lab-metric-warn .metric-big { color: var(--warn); }
.metric-big .unit { font-size: 18px; color: var(--muted); font-weight: 600; margin-left: 4px; }

/* ============ reviews ============ */
.review-section { margin-top: 32px; }
.review-list { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.review-card {
  padding: 18px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}
.review-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; flex-wrap: wrap; gap: 8px; }
.review-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.review-body { margin: 0; color: var(--ink); font-size: 14px; line-height: 1.75; white-space: pre-wrap; }

.review-form-wrap {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1.5px dashed var(--line-strong);
  background: rgba(0, 179, 212, 0.03);
}
.review-form-toggle {
  cursor: pointer;
  font-weight: 800;
  color: var(--cyan);
  padding: 8px 4px;
  list-style: none;
}
.review-form-toggle::-webkit-details-marker { display: none; }
.review-form-toggle::before { content: "+ "; font-family: var(--mono); color: var(--green); }
details[open] .review-form-toggle::before { content: "− "; }

.review-form { margin-top: 16px; display: flex; flex-direction: column; gap: 14px; }
.star-picker { display: flex; gap: 8px; flex-wrap: wrap; }
.star-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
  font-weight: 700;
  color: var(--muted);
  transition: border-color .12s, color .12s, background .12s;
}
.star-label input { display: none; }
.star-label:hover { border-color: var(--line-strong); }
.star-label:has(input:checked) { border-color: var(--gold); color: var(--gold); background: rgba(245, 158, 11, 0.08); }

/* ============ lp teaser ============ */
.lp-teaser {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  border-radius: var(--radius);
  border: 1px dashed var(--line-strong);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  flex-wrap: wrap;
}

/* ============ services catalog (CrowdWorks-like) ============ */
.catalog-search {
  display: flex;
  gap: 10px;
  margin: 20px 0 24px;
  padding: 10px;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}
.catalog-search-input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: #ffffff;
  min-width: 0;
}
.catalog-search-input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 179, 212, 0.15);
}
.catalog-search-btn { flex-shrink: 0; }

.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: 78px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.catalog-sidebar-block {
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}
.catalog-sidebar-title {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 800;
}
.catalog-cat-list { display: flex; flex-direction: column; gap: 2px; }
.catalog-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 13.5px;
  text-decoration: none;
  transition: background .1s, color .1s;
}
.catalog-cat:hover { background: rgba(0, 179, 212, 0.06); color: var(--cyan); }
.catalog-cat.is-active {
  background: linear-gradient(120deg, rgba(0, 179, 212, 0.10), rgba(0, 184, 89, 0.06));
  color: var(--cyan);
  font-weight: 700;
  border-left: 3px solid var(--cyan);
  padding-left: 9px;
}
.catalog-cat-name { flex: 1; }
.catalog-cat-count { color: var(--muted); font-size: 12px; }
.catalog-cat.is-active .catalog-cat-count { color: var(--cyan); }
.catalog-sidebar-note .bullet-list li { color: var(--ink-soft); }

.catalog-main { display: flex; flex-direction: column; gap: 0; }

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: rgba(0, 179, 212, 0.04);
  border: 1px solid var(--line);
  flex-wrap: wrap;
}
.catalog-summary { margin: 0; font-size: 13px; color: var(--ink-soft); display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.catalog-sort { display: flex; gap: 8px; align-items: center; }
.catalog-sort select {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
}

.catalog-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.catalog-card {
  padding: 20px 22px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  transition: border-color .12s, box-shadow .12s, transform .12s;
}
.catalog-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
.catalog-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.catalog-card-num { color: var(--muted); font-size: 12px; }
.catalog-card-title {
  margin: 6px 0 4px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}
.catalog-card-title a { color: var(--ink); text-decoration: none; }
.catalog-card-title a:hover { color: var(--cyan); }
.catalog-card-tag {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}
.catalog-card-scope {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(0, 179, 212, 0.04);
  margin-bottom: 12px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.catalog-card-scope-label {
  flex-shrink: 0;
  padding: 1px 8px;
  height: fit-content;
  border-radius: 4px;
  background: rgba(0, 179, 212, 0.14);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.catalog-card-scope-body { flex: 1; }
.catalog-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.catalog-meta-item { display: flex; align-items: center; gap: 6px; }
.catalog-meta-label {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.catalog-meta-val {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}
.catalog-card-actions {
  display: flex;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  flex-wrap: wrap;
}
.catalog-card-cta { padding: 8px 20px; font-size: 13px; }
.catalog-card-actions .btn-ghost { padding: 8px 16px; font-size: 13px; }

@media (max-width: 820px) {
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-sidebar { position: static; }
  .catalog-cat-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 4px;
  }
}

/* ============ who page + home who-teaser ============ */
.who-card {
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.who-card .chip { align-self: flex-start; }
.who-card-title, .who-card-desc { align-self: stretch; }
.who-card-link:hover { border-color: var(--line-strong); transform: translateY(-2px); box-shadow: var(--shadow); }
.who-card-title { margin: 4px 0; font-size: 17px; color: var(--ink); font-weight: 800; }
.who-card-desc { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }

.who-detail {
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  margin-top: 24px;
  scroll-margin-top: 80px;
}
.who-detail-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.who-detail-head .chip { flex-shrink: 0; align-self: flex-start; }
.who-detail-title { margin: 0; font-size: 22px; font-weight: 800; line-height: 1.4; }
.who-desire-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.who-desire-card {
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(0, 179, 212, 0.03);
}
.who-desire-label {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(0, 179, 212, 0.14);
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 8px;
}
.who-desire-item { margin: 4px 0; color: var(--ink); font-size: 13.5px; line-height: 1.6; }
.who-desire-item::before { content: "・"; color: var(--cyan); font-weight: 700; }

/* Catalog card emotional benefit line */
.catalog-card-emotion {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 184, 89, 0.06), rgba(0, 179, 212, 0.04));
  border: 1px solid var(--line-green);
  margin-bottom: 12px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 600;
}
.catalog-card-emotion-label {
  flex-shrink: 0;
  padding: 1px 8px;
  height: fit-content;
  border-radius: 4px;
  background: rgba(0, 184, 89, 0.14);
  color: var(--green);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============ discord CTA ============ */
.discord-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.08), rgba(0, 179, 212, 0.06));
  flex-wrap: wrap;
}
.discord-cta .cta-title { margin-top: 6px; }

/* ============ blog / markdown ============ */
.post-meta { display: flex; gap: 12px; align-items: center; margin: 12px 0 8px; flex-wrap: wrap; }
.md-body {
  margin-top: 20px;
  padding: 28px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.85;
}
.md-body h1, .md-body h2, .md-body h3 { margin: 28px 0 12px; font-weight: 800; letter-spacing: 0.02em; }
.md-body h1 { font-size: 26px; color: var(--ink); }
.md-body h2 { font-size: 22px; color: var(--cyan); border-bottom: 2px solid var(--line); padding-bottom: 4px; }
.md-body h3 { font-size: 18px; color: var(--ink-soft); }
.md-body p { margin: 14px 0; }
.md-body a { color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; }
.md-body a:hover { color: var(--cyan-strong); }
.md-body strong { color: var(--ink); font-weight: 800; }
.md-body em { font-style: italic; }
.md-body ul, .md-body ol { padding-left: 24px; margin: 12px 0; }
.md-body ul { list-style: disc; }
.md-body ol { list-style: decimal; }
.md-body li { margin: 4px 0; }
.md-body blockquote {
  margin: 16px 0;
  padding: 12px 18px;
  border-left: 4px solid var(--cyan);
  background: rgba(0, 179, 212, 0.05);
  color: var(--ink-soft);
  border-radius: 0 8px 8px 0;
}
.md-body .md-code {
  margin: 16px 0;
  padding: 16px 18px;
  background: #0b1b40;
  color: #e8f4ff;
  border-radius: 10px;
  overflow-x: auto;
  font-family: var(--mono);
  font-size: 13.5px;
  line-height: 1.65;
}
.md-body .md-inline {
  padding: 2px 6px;
  background: rgba(0, 179, 212, 0.10);
  color: var(--cyan-strong);
  border-radius: 5px;
  font-family: var(--mono);
  font-size: 0.92em;
}
.md-body hr { margin: 24px 0; border: none; border-top: 1px dashed var(--line-strong); }
.md-body .md-fig { margin: 16px 0; }
.md-body .md-fig img { max-width: 100%; height: auto; border-radius: 10px; box-shadow: var(--shadow-soft); }

.editor-form textarea { min-height: 400px; }

/* ============ cases ============ */
.case-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin-top: 24px;
}
.case-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.case-card:hover { border-color: var(--line-green); transform: translateY(-3px); box-shadow: var(--shadow); }
.case-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.case-date { color: var(--muted); font-size: 12px; }
.case-title { margin: 4px 0 0; font-size: 17px; font-weight: 800; line-height: 1.4; }
.case-client { margin: 0; font-size: 12px; color: var(--cyan); }
.case-summary { margin: 4px 0; font-size: 14px; color: var(--ink-soft); }
.case-stack { display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0; }
.case-outcome { margin: 8px 0 0; font-size: 13.5px; color: var(--ink); }
.case-outcome strong { color: var(--green); }

/* ============ request form ============ */
.wrap-form { width: min(820px, calc(100% - 40px)); margin: 0 auto; }
.form { display: flex; flex-direction: column; gap: 22px; margin-top: 20px; }
.form-group {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  padding: 22px 24px 20px;
  margin: 0;
}
.form-group legend {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}
.form-group-warn {
  border-color: rgba(225, 29, 72, 0.30);
  background: rgba(225, 29, 72, 0.03);
}
.form-group-warn legend { color: var(--warn); border-color: rgba(225, 29, 72, 0.4); }

.field { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; }
.field:first-of-type { margin-top: 6px; }
.field-label { font-size: 13.5px; font-weight: 700; color: var(--ink); display: block; }
.field-label em {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 8px;
  border-radius: 999px;
  background: rgba(225, 29, 72, 0.10);
  color: var(--warn);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form input[type="text"],
.form input[type="email"],
.form textarea,
.form select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .15s, box-shadow .15s;
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 179, 212, 0.16);
}
.form textarea { resize: vertical; min-height: 100px; font-family: var(--mono); font-size: 13.5px; }

.radio-grid, .check-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.radio-grid-inline { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
.radio-item, .check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color .12s, background .12s;
  min-height: 44px;
  font-size: 14px;
}
.radio-item:hover, .check-item:hover { border-color: var(--line-strong); }
.radio-item input, .check-item input {
  margin-top: 2px;
  accent-color: var(--cyan);
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.radio-item span, .check-item span { flex: 1; line-height: 1.4; }
.radio-item:has(input:checked), .check-item:has(input:checked) {
  border-color: var(--cyan);
  background: rgba(0, 179, 212, 0.06);
}
.check-agree {
  border-color: rgba(225, 29, 72, 0.25);
  background: rgba(225, 29, 72, 0.02);
}
.check-agree:has(input:checked) {
  border-color: var(--green);
  background: rgba(0, 184, 89, 0.06);
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 24px;
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0, 179, 212, 0.06), rgba(0, 184, 89, 0.04));
}
.form-actions .btn { min-width: 260px; }
.form-note { margin: 0; color: var(--ink-soft); font-size: 12.5px; text-align: center; }

/* ============ Works / Portfolio ============ */
.works-cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 8px;
}
.works-cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.18s ease;
}
.works-cat-tab:hover { border-color: var(--line-strong); }
.works-cat-tab.is-active {
  border-color: var(--cyan);
  background: rgba(0, 179, 212, 0.06);
  color: var(--cyan);
  font-weight: 700;
}
.works-cat-tab-count {
  font-size: 11px;
  color: var(--muted);
  padding: 1px 7px;
  border-radius: 999px;
  background: var(--line);
}
.works-cat-tab.is-active .works-cat-tab-count {
  background: var(--cyan);
  color: #fff;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.work-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: all 0.2s ease;
}
.work-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.work-card-paid { border-left: 4px solid var(--cyan); }
.work-card-live { border-left: 4px solid var(--green); }
.work-card-dev  { border-left: 4px solid #f59e0b; }
.work-card-free { border-left: 4px solid var(--muted); }

.work-card-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.work-card-status {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  white-space: nowrap;
}
.work-card-status.status-paid {
  color: var(--cyan);
  border-color: rgba(0, 179, 212, 0.4);
  background: rgba(0, 179, 212, 0.05);
}
.work-card-status.status-live {
  color: var(--green);
  border-color: rgba(0, 184, 89, 0.4);
  background: rgba(0, 184, 89, 0.05);
}
.work-card-status.status-dev {
  color: #b45309;
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.05);
}
.work-card-status.status-free {
  color: var(--muted);
  background: var(--line);
}

.work-card-title {
  margin: 0;
  font-size: 18px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.4;
}
.work-card-title a { color: inherit; text-decoration: none; }
.work-card-title a:hover { color: var(--cyan); }

.work-card-pain {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0, 179, 212, 0.06), rgba(0, 184, 89, 0.02));
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}
.work-card-pain-mark {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: var(--cyan);
  border-radius: 50%;
}

.work-card-solves {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.work-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}
.work-card-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.work-card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.work-card-btn { padding: 8px 16px; font-size: 13px; }

/* Work detail */
.work-detail-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 8px;
}
.work-detail-pain {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 16px;
  padding: 16px 20px;
  border-left: 4px solid var(--cyan);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 179, 212, 0.08), rgba(0, 184, 89, 0.03));
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--ink);
}
.work-detail-pain-mark {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: var(--cyan);
  border-radius: 50%;
}

/* ============ Free templates ============ */
.free-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
.free-item {
  padding: 24px;
  border: 1.5px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-lg);
  background: #fff;
}
.free-item-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.free-item-file {
  font-size: 11px;
  color: var(--muted);
}
.free-item-title {
  margin: 4px 0 12px;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
}
.free-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  border: 1px dashed var(--line-strong);
  border-radius: 10px;
  background: rgba(0, 184, 89, 0.03);
}
.free-form.is-error {
  border-color: rgba(225, 29, 72, 0.6);
  background: rgba(225, 29, 72, 0.04);
}
.free-form-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--ink-soft);
}
.free-form-input {
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
}
.free-form-input:focus {
  outline: none;
  border-color: var(--cyan);
}
.free-form-consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.free-form-consent input { margin-top: 3px; }
.free-form .btn { align-self: flex-start; }

/* ============ Hero 追加要素 (CW的な訴求) ============ */
.hero-sub-lead {
  margin: 16px auto 0;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-soft);
  text-align: center;
}
.hero-safety-pill {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(0, 179, 212, 0.10), rgba(0, 184, 89, 0.08));
  border: 1px solid rgba(0, 184, 89, 0.35);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.hero-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 22px;
}
.hero-cta-primary {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 800;
  background: linear-gradient(135deg, #00b3d4, #00b859);
  border: none;
  box-shadow: 0 8px 24px rgba(0, 184, 89, 0.28);
}
.hero-cta-primary:hover { transform: translateY(-2px); }
.hero-cta-ghost { padding: 16px 24px; font-size: 15px; }

/* ============ Requests section (CW的な依頼例カード) ============ */
.requests-section {
  padding: 40px 0 48px;
  background: linear-gradient(180deg, rgba(0, 179, 212, 0.04) 0%, transparent 100%);
}
.requests-head { text-align: center; margin-bottom: 24px; }
.requests-head-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.requests-title {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 900;
  margin: 0;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.requests-lead {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.85;
}

.requests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.request-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border: 1.5px solid var(--line);
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius-lg);
  background: #ffffff;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.request-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 179, 212, 0.15);
  border-left-color: var(--green);
}
.request-cat {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border: 1px solid rgba(0, 179, 212, 0.45);
  border-radius: 999px;
  background: rgba(0, 179, 212, 0.05);
}
.request-title {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
  color: var(--ink);
}
.request-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.request-meta {
  margin: 8px 0 0;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  font-size: 12px;
  color: var(--muted);
}
.request-meta strong { color: var(--green); font-weight: 800; }

.requests-safety {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin: 28px auto 20px;
  max-width: 900px;
}
.safety-item {
  font-size: 12px;
  color: var(--ink);
  padding: 6px 14px;
  border: 1.5px solid rgba(0, 184, 89, 0.4);
  border-radius: 999px;
  background: rgba(0, 184, 89, 0.06);
  font-weight: 700;
}

.requests-cta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.requests-cta .btn {
  padding: 18px 32px;
  font-size: 15px;
  font-weight: 800;
  background: linear-gradient(135deg, #00b3d4, #00b859);
  border: none;
  box-shadow: 0 8px 22px rgba(0, 184, 89, 0.28);
}
.requests-cta .btn:hover { transform: translateY(-2px); }

@media (max-width: 900px) {
  .requests-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .requests-grid { grid-template-columns: 1fr; }
  .hero-cta-row .btn { width: 100%; }
  .requests-safety { gap: 6px 10px; }
  .safety-item { font-size: 11px; padding: 5px 10px; }
  .requests-cta .btn { width: 100%; font-size: 14px; }
}

/* ============ Nav「無料版」pill装飾 (A-1) ============ */
.nav-item-free {
  background: linear-gradient(135deg, rgba(0, 184, 89, 0.12), rgba(0, 179, 212, 0.10));
  border: 1.5px solid rgba(0, 184, 89, 0.4);
  color: #00733a !important;
  padding: 6px 14px !important;
  border-radius: 999px !important;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.15s ease;
}
.nav-item-free:hover { transform: translateY(-1px); background: linear-gradient(135deg, rgba(0, 184, 89, 0.2), rgba(0, 179, 212, 0.16)); }
.nav-free-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #00b859;
  box-shadow: 0 0 0 3px rgba(0, 184, 89, 0.22);
  animation: nav-free-pulse 2.4s ease-in-out infinite;
}
@keyframes nav-free-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0, 184, 89, 0.22); }
  50%      { box-shadow: 0 0 0 6px rgba(0, 184, 89, 0.06); }
}

/* ============ 右下フローティング無料DL CTA (A-2) ============ */
.floating-free-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px 14px 18px;
  background: linear-gradient(135deg, #00b3d4, #00b859);
  color: #ffffff !important;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 184, 89, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 90vw;
}
.floating-free-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 184, 89, 0.4);
}
.floating-free-icon { font-size: 22px; }
.floating-free-text {
  display: flex; flex-direction: column; gap: 1px;
  line-height: 1.2;
}
.floating-free-title { font-weight: 900; font-size: 14px; letter-spacing: 0.02em; }
.floating-free-sub   { font-size: 11.5px; opacity: 0.92; }
.floating-free-close {
  position: absolute;
  top: -8px; right: -8px;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #0b1f2a;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-free-close:hover { background: #f0f0f0; }
@media (max-width: 720px) {
  .floating-free-cta { right: 12px; bottom: 12px; padding: 12px 18px 12px 16px; gap: 10px; }
  .floating-free-icon { font-size: 20px; }
  .floating-free-title { font-size: 13px; }
  .floating-free-sub { font-size: 11px; }
}

/* ============ 商品詳細ページの関連無料版リンク (B-1) ============ */
.work-detail-free-hint {
  margin-top: 32px;
  padding: 24px 28px;
  border: 1.5px dashed rgba(0, 184, 89, 0.5);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0, 184, 89, 0.06), rgba(0, 179, 212, 0.04));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
}
.work-detail-free-lead {
  margin: 0;
  flex: 1;
  min-width: 260px;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.7;
}
.work-detail-free-lead strong { color: var(--green); font-weight: 800; }
.work-detail-free-btn {
  border-color: var(--green) !important;
  color: var(--green) !important;
  font-weight: 800;
}

/* ============ フッター常時「無料DL」ボタン (B-3) ============ */
.footer-free-cta {
  padding: 20px 0 0;
  display: flex;
  justify-content: center;
}
.footer-free-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px;
  background: linear-gradient(135deg, #00b3d4, #00b859);
  color: #ffffff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 184, 89, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.footer-free-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 184, 89, 0.3);
}
.footer-free-btn .mono {
  padding: 3px 10px;
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
}

/* ============ Free CTA section (フッター直前の目立つメール獲得ブロック) ============ */
.free-cta-section {
  padding: 56px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(0, 184, 89, 0.14), transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(0, 179, 212, 0.12), transparent 55%),
    linear-gradient(135deg, #f0fbf4 0%, #eaf9f1 100%);
}
.free-cta-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.free-cta-header .badge { display: inline-block; }
.free-cta-title {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic", "游ゴシック", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 12px 0 12px;
}
.free-cta-num {
  color: var(--green);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 1.15em;
}
.free-cta-lead {
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto;
}
.free-cta-lead strong { color: var(--green); font-weight: 800; }

.free-cta-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.free-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #ffffff;
  border: 1.5px solid rgba(0, 184, 89, 0.35);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 184, 89, 0.08);
  font-size: 14px;
  min-width: 260px;
  transition: transform 0.18s ease;
}
.free-chip:hover { transform: translateY(-2px); }
.free-chip-cat {
  font-size: 10px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border: 1px solid rgba(0, 184, 89, 0.4);
  border-radius: 999px;
  background: rgba(0, 184, 89, 0.06);
  white-space: nowrap;
}
.free-chip-name {
  flex: 1;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
}
.free-chip-size {
  font-size: 11px;
  color: var(--muted);
}

.free-cta-action {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.free-cta-btn {
  padding: 20px 44px !important;
  font-size: 18px !important;
  font-weight: 800;
  min-width: 320px;
  background: linear-gradient(135deg, #00b3d4, #00b859);
  border: none;
  box-shadow: 0 10px 30px rgba(0, 184, 89, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.free-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 184, 89, 0.35);
}
.free-cta-note {
  font-size: 12px;
  color: var(--muted);
}

/* ============ responsive ============ */
@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; align-items: flex-start; }
  .brand-sub { display: none; }
  .site-nav { gap: 8px; }
  .nav-item { padding: 6px 10px; font-size: 13px; }
  .works-grid { grid-template-columns: 1fr; }
  .work-card { padding: 18px; }
  .works-cat-tabs { gap: 6px; }
  .works-cat-tab { padding: 6px 10px; font-size: 12px; }
  .free-cta-section { padding: 40px 0; }
  .free-cta-inner { gap: 20px; }
  .free-chip { min-width: 100%; }
  .free-cta-btn { min-width: auto; width: 100%; padding: 16px 20px !important; font-size: 15px !important; }
  .free-cta-note { font-size: 11px; }
}
