:root {
  --ink: #151515;
  --muted: #5f5f58;
  --paper: #fffefa;
  --paper-deep: #f3f3ed;
  --white: #ffffff;
  --red: #ff5b3d;
  --yellow: #f1e85a;
  --green: #87c846;
  --pink: #ff8fa3;
  --sky: #7ec8e3;
  --line: rgba(21, 21, 21, 0.18);
  --shadow: 7px 7px 0 rgba(21, 21, 21, 0.16);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --display: "Noto Sans JP", system-ui, sans-serif;
  --body: "Noto Sans JP", system-ui, sans-serif;
  --latin: "Baloo 2", "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.035) 1px, transparent 1px) 0 0 / 34px 34px,
    var(--paper);
  font-family: var(--body);
  line-height: 1.75;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.idle-grass {
  position: fixed;
  z-index: 29;
  right: 0;
  bottom: 0;
  left: 0;
  height: 170px;
  overflow: hidden;
  pointer-events: none;
  filter: drop-shadow(0 7px 8px rgba(28, 25, 23, 0.11));
}

.idle-grass__blade {
  position: absolute;
  z-index: var(--front);
  bottom: -12px;
  left: var(--x);
  width: var(--w);
  height: var(--h);
  border-radius: 70% 35% 42% 30% / 100% 100% 8% 8%;
  background:
    linear-gradient(88deg, rgba(255, 255, 255, 0.36) 0 12%, transparent 26% 100%),
    linear-gradient(102deg, transparent 0 54%, rgba(16, 75, 30, 0.25) 57% 100%),
    linear-gradient(180deg, var(--c1) 0%, var(--c2) 54%, var(--c3) 100%);
  box-shadow:
    inset -1px 0 0 rgba(10, 58, 24, 0.24),
    inset 1px 0 0 rgba(255, 255, 255, 0.22);
  clip-path: polygon(50% 0, 88% 38%, 100% 100%, 0 100%, 12% 38%);
  opacity: 0;
  transform: translateY(100%) rotate(var(--r));
  transform-origin: 50% 100%;
  animation:
    grass-grow 760ms cubic-bezier(0.2, 0.85, 0.2, 1.1) var(--d) forwards,
    grass-sway var(--sway) ease-in-out calc(var(--d) + 760ms) infinite alternate;
}

.idle-grass__blade::before {
  position: absolute;
  inset: 7% 47% 4% auto;
  width: 1px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(17, 82, 32, 0.36));
  content: "";
}

.idle-grass__blade:nth-child(3n) {
  bottom: -18px;
}

.idle-grass__blade:nth-child(4n) {
  filter: saturate(0.82) brightness(0.9);
}

.idle-grass__blade:nth-child(5n) {
  transform-origin: 42% 100%;
}

@keyframes grass-grow {
  to {
    opacity: 1;
    transform: translateY(0) rotate(var(--bend));
  }
}

@keyframes grass-sway {
  from {
    transform: translateY(0) rotate(calc(var(--bend) - 2deg));
  }

  to {
    transform: translateY(0) rotate(calc(var(--bend) + 2deg));
  }
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(calc(100% - 32px), 1240px);
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 28px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 6px 6px 0 rgba(21, 21, 21, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
  transition: min-height 180ms ease, padding 180ms ease, top 180ms ease;
}

.site-header.is-scrolled {
  top: 14px;
  min-height: 52px;
  padding: 8px 12px 8px 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--latin);
  font-size: 1.2rem;
  font-weight: 900;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: 188px;
  height: 50px;
  object-fit: contain;
  transition: width 180ms ease, height 180ms ease;
}

.site-header.is-scrolled .brand-logo {
  width: 112px;
  height: 30px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav a {
  padding: 8px 11px;
  border: 1px solid rgba(21, 21, 21, 0.18);
  border-radius: 999px;
  background: #f3f3ed;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav a:hover {
  background: var(--yellow);
  border-color: var(--ink);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  gap: 5px;
  padding: 10px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  overflow: hidden;
  padding: 132px 24px 76px;
  align-items: center;
  border-bottom: 2px solid var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  right: clamp(18px, 4vw, 64px);
  top: 118px;
  bottom: 72px;
  left: auto;
  width: min(44vw, 650px);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: image-set(url("fueru-hero.webp") type("image/webp"), url("fueru-hero.png") type("image/png")) center / cover no-repeat;
  box-shadow: 12px 12px 0 rgba(21, 21, 21, 0.14);
  filter: saturate(0.9) contrast(1.05);
  transform: none;
}

.hero-media::before {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-family: var(--latin);
  font-size: 0.78rem;
  font-weight: 900;
  content: "For You   Following   Trend";
  backdrop-filter: blur(10px);
}

.hero-media::after {
  position: absolute;
  right: 16px;
  bottom: 26px;
  display: grid;
  gap: 9px;
  padding: 10px 8px;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.62);
  color: var(--white);
  font-family: var(--latin);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  white-space: pre;
  content: "♥\A12.8k\A●\A842\A▣\A5.1k\A↗";
  backdrop-filter: blur(10px);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 254, 250, 1) 0%, rgba(255, 254, 250, 0.93) 48%, rgba(255, 254, 250, 0.28) 100%),
    linear-gradient(180deg, rgba(255, 254, 250, 0) 72%, var(--paper) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  margin: 0 auto;
  transform: translateX(-6vw);
}

.eyebrow,
.section-label,
.case-kicker {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before,
.case-kicker::before {
  content: "#";
  color: var(--green);
}

.hero h1,
.intro h2,
.section-heading h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 5.7vw, 5.55rem);
  line-height: 1.16;
}

.hero h1 span {
  display: inline-block;
  background: linear-gradient(transparent 70%, var(--yellow) 70%, var(--yellow) 92%, transparent 92%);
}

.hero h1 span:last-child {
  background: none;
}

.hero h1 .nowrap {
  white-space: nowrap;
}

.nowrap {
  white-space: nowrap;
}

.keep-line {
  white-space: nowrap;
}

.hero-rotator {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 900;
}

.hero-rotator span {
  display: inline-block;
  min-width: 6em;
  margin-right: 6px;
  padding: 2px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--green);
  color: var(--ink);
  transform: rotate(-1.2deg);
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.grow-chart {
  width: min(520px, 100%);
  margin-top: 22px;
}

.grow-chart svg {
  width: 100%;
  height: auto;
}

.grow-line {
  fill: none;
  stroke: var(--green);
  stroke-width: 5;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.grow-chart.drawn .grow-line {
  animation: drawLine 2.2s ease forwards 0.2s;
}

.chart-pop {
  opacity: 0;
  transform: scale(0.8);
  transform-origin: center;
}

.chart-pop rect {
  fill: var(--white);
  stroke: var(--ink);
  stroke-width: 2.5;
}

.chart-pop.p2 rect {
  fill: #fff3d6;
}

.chart-pop text {
  fill: var(--ink);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 900;
}

.chart-pop circle {
  fill: var(--green);
  stroke: var(--ink);
  stroke-width: 2.5;
}

.chart-pop path {
  fill: none;
  stroke: var(--green);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.grow-chart.drawn .chart-pop {
  animation: popIn 420ms cubic-bezier(.34, 1.56, .64, 1) forwards;
}

.grow-chart.drawn .chart-pop.p1 {
  animation-delay: 0.9s;
}

.grow-chart.drawn .chart-pop.p2 {
  animation-delay: 1.35s;
}

.grow-chart.drawn .chart-pop.p3 {
  animation-delay: 1.9s;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  font-weight: 900;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  box-shadow: 5px 5px 0 var(--green);
  transform: translate(-3px, -3px);
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
}

.floating-contact {
  position: fixed;
  z-index: 30;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--ink);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.floating-contact::before {
  content: "";
  width: 16px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 3px;
  background:
    linear-gradient(35deg, transparent 45%, currentColor 46%, currentColor 54%, transparent 55%) left 1px top 1px / 50% 70% no-repeat,
    linear-gradient(145deg, transparent 45%, currentColor 46%, currentColor 54%, transparent 55%) right 1px top 1px / 50% 70% no-repeat;
}

.floating-contact:hover {
  box-shadow: 8px 8px 0 var(--ink);
  transform: translate(-3px, -3px);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 32px;
  left: 24px;
  writing-mode: vertical-rl;
  font-size: 0.72rem;
  font-weight: 900;
}

.news-section {
  display: grid;
  width: min(1120px, calc(100% - 36px));
  margin: 34px auto;
  grid-template-columns: 0.34fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.news-heading {
  padding: 26px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--yellow);
  box-shadow: var(--shadow);
}

.news-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.news-more {
  display: inline-flex;
  margin-top: 24px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.news-list {
  display: grid;
  gap: 12px;
}

.news-item {
  display: grid;
  grid-template-columns: 104px 76px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 82px;
  padding: 18px 22px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 5px 5px 0 rgba(21, 21, 21, 0.1);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.news-item:hover {
  box-shadow: 7px 7px 0 var(--green);
  transform: translate(-2px, -2px);
}

.news-item time {
  color: var(--muted);
  font-family: var(--latin);
  font-size: 0.9rem;
  font-weight: 900;
}

.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.news-item span {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--green);
  font-family: var(--latin);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.news-item strong {
  font-size: 1rem;
  line-height: 1.5;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 108px 0;
}

.feed-band {
  position: relative;
  overflow: hidden;
  padding: 22px 0 30px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
}

.feed-band::before,
.feed-band::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 90px;
  content: "";
  pointer-events: none;
}

.feed-band::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink), transparent);
}

.feed-band::after {
  right: 0;
  background: linear-gradient(-90deg, var(--ink), transparent);
}

.feed-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: scrollFeed 48s linear infinite;
}

.feed-frame {
  position: relative;
  display: flex;
  width: 250px;
  aspect-ratio: 1.25 / 1;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.18);
  overflow: hidden;
  color: var(--white);
}

.feed-frame::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 21, 21, 0.06) 0%, rgba(21, 21, 21, 0.18) 42%, rgba(21, 21, 21, 0.82) 100%),
    radial-gradient(circle at 24% 24%, rgba(255, 255, 255, 0.55), transparent 23%),
    radial-gradient(circle at 72% 28%, rgba(135, 200, 70, 0.5), transparent 24%),
    radial-gradient(circle at 58% 74%, rgba(241, 232, 90, 0.42), transparent 28%);
  content: "";
}

.feed-frame::after {
  position: absolute;
  right: 12px;
  bottom: 18px;
  display: grid;
  gap: 7px;
  color: var(--white);
  font-family: var(--latin);
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.42);
  white-space: pre;
  content: "♡\A8.6万\A••\A421\A▣\A保存\A↗";
}

.feed-frame:nth-child(odd) {
  transform: rotate(-1.2deg);
}

.feed-frame:nth-child(even) {
  transform: rotate(1.2deg);
}

.feed-frame span {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  font-size: 0.68rem;
  font-weight: 900;
}

.feed-frame strong {
  position: relative;
  z-index: 1;
  max-width: calc(100% - 54px);
  font-family: var(--display);
  font-size: 1.08rem;
  line-height: 1.45;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
}

.feed-frame small {
  position: relative;
  z-index: 1;
  max-width: calc(100% - 54px);
  margin-top: 8px;
  color: var(--white);
  font-family: var(--latin);
  font-size: 0.86rem;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
}

.f1 { background: #f7f7ef; }
.f2 { background: #eff6e7; }
.f3 { background: #fff7d0; }
.f4 { background: #f2f2f2; }
.f5 { background: #eef6f7; }
.f6 { background: #f7eee8; }

@keyframes scrollFeed {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.metrics-section,
.pricing-section {
  padding: 92px 24px 104px;
  background: var(--paper-deep);
  border-block: 2px solid var(--ink);
}

.section-heading.centered {
  display: block;
  width: min(1120px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.centered p {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  text-align: center;
}

.metrics-grid {
  display: grid;
  width: min(960px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.metric-card {
  padding: 28px 14px 22px;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 5px 5px 0 var(--green);
  text-align: center;
}

.metric-card:nth-child(2) { box-shadow: 5px 5px 0 var(--yellow); }
.metric-card:nth-child(3) { box-shadow: 5px 5px 0 var(--ink); }
.metric-card:nth-child(4) { box-shadow: 5px 5px 0 var(--green); }

.metric-card strong {
  display: block;
  font-family: var(--latin);
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.1;
}

.metric-card em {
  margin-left: 2px;
  color: var(--green);
  font-family: var(--display);
  font-size: 0.5em;
  font-style: normal;
}

.metric-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 900;
}

.intro-copy h2,
.section-heading h2,
.contact h2 {
  font-size: clamp(1.6rem, 3.2vw, 3.2rem);
}

.editorial-visuals {
  display: grid;
  grid-template-columns: 1.35fr 0.82fr 0.82fr;
  gap: 18px;
  margin: 0 0 28px;
  align-items: stretch;
}

.visual-card {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.visual-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.visual-card--illustration {
  display: grid;
  place-items: center;
  padding: 18px;
  background: #f7f7ef;
}

.visual-card--illustration img {
  height: auto;
  max-height: 250px;
  object-fit: contain;
}

.visual-card figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 6px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  font-family: var(--latin);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
}

.stats div,
.service-grid article,
.case-item {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.stats div {
  padding: 24px;
  text-align: center;
}

.stats span,
.service-no {
  display: inline-flex;
  min-width: 42px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  font-family: var(--latin);
  font-weight: 900;
}

.stats strong {
  display: block;
  margin-top: 18px;
  font-size: 1.25rem;
}

.stats p,
.service-grid p,
.case-item p,
.company-list dd {
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 52px;
  margin-bottom: 38px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-grid article {
  min-height: 250px;
  padding: 24px;
  text-align: left;
}

.service-grid article:nth-child(2) .service-no,
.phone-mock.green {
  background: var(--green);
}

.service-grid article:nth-child(3) .service-no,
.phone-mock.yellow {
  background: var(--yellow);
}

.service-grid article:nth-child(4) .service-no {
  background: var(--ink);
  color: var(--white);
}

.service-grid article:nth-child(5) .service-no {
  background: var(--pink);
}

.service-grid article:nth-child(6) .service-no {
  background: var(--sky);
}

.service-grid h3,
.case-item h3 {
  margin: 22px 0 10px;
  font-family: var(--display);
  font-size: 1.42rem;
  line-height: 1.35;
}

.case-list {
  display: grid;
  gap: 16px;
}

.reasons {
  padding-top: 96px;
}

.reason-list {
  display: grid;
  gap: 22px;
  width: min(860px, 100%);
  margin: 0 auto;
}

.reason-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 30px 32px;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 6px 6px 0 var(--green);
  text-align: left;
}

.reason-card > span {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  font-family: var(--latin);
  font-size: 1.3rem;
  font-weight: 900;
  transform: rotate(-4deg);
}

.reason-card div {
  flex: 1;
}

.reason-card:nth-child(2) > span {
  background: var(--yellow);
  color: var(--ink);
}

.reason-card:nth-child(3) > span {
  background: var(--pink);
}

.reason-card h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.45;
}

.reason-card p {
  margin: 0;
  color: var(--muted);
}

.case-item {
  position: relative;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
  text-align: left;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.case-tags li {
  padding: 4px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.76rem;
  font-weight: 900;
}

.case-tags em {
  margin-right: 4px;
  color: var(--green);
  font-style: normal;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.works-more {
  margin: 34px auto 0;
  text-align: center;
}

.phone-mock {
  position: relative;
  display: grid;
  width: 160px;
  height: 220px;
  margin: 0 auto;
  padding: 18px;
  align-content: end;
  gap: 10px;
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
}

.phone-mock::before {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 52px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  content: "";
  transform: translateX(-50%);
}

.phone-mock::after {
  position: absolute;
  right: 12px;
  bottom: 48px;
  display: grid;
  gap: 8px;
  color: var(--white);
  font-family: var(--latin);
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: pre;
  content: "♡\A1.2万\A••\A86\A▣";
}

.phone-mock span {
  position: relative;
  z-index: 1;
  display: block;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.phone-mock span:nth-child(1) {
  width: 72%;
}

.phone-mock span:nth-child(2) {
  width: 92%;
}

.phone-mock span:nth-child(3) {
  width: 54%;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow li {
  min-height: 160px;
  padding: 24px;
  border: 2px solid var(--ink);
  background: var(--white);
  font-weight: 900;
  text-align: left;
}

.flow span {
  display: block;
  margin-bottom: 22px;
  color: var(--green);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.plans {
  display: grid;
  width: min(1080px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 36px 28px;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
}

.plan-card.featured {
  box-shadow: 6px 6px 0 var(--green);
  transform: translateY(-6px);
}

.plan-card .badge {
  position: absolute;
  top: -16px;
  left: 50%;
  padding: 5px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 900;
  transform: translateX(-50%) rotate(-2deg);
  white-space: nowrap;
}

.plan-card h3 {
  margin: 0;
  font-family: var(--latin);
  font-size: 2rem;
  line-height: 1;
}

.plan-for {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.plan-card strong {
  display: block;
  font-family: var(--latin);
  font-size: clamp(1.8rem, 3.2vw, 2.2rem);
  line-height: 1.05;
}

.plan-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.8rem;
}

.plan-card ul {
  display: grid;
  flex: 1;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  display: flex;
  gap: 8px;
  font-size: 0.92rem;
}

.plan-card li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-top: 0.62em;
  border-radius: 50%;
  background: var(--green);
}

.pricing-note {
  width: min(1080px, 100%);
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}

.faq-list {
  display: grid;
  width: min(760px, 100%);
  margin: 0 auto;
  gap: 14px;
}

.faq-list details {
  overflow: hidden;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-list summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  font-family: var(--latin);
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px 70px;
  color: var(--muted);
}

.company-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-list div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.company-list dt {
  font-weight: 900;
}

.company-list dd {
  margin: 0;
}

.contact {
  display: grid;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 96px;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  padding: 54px;
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--yellow);
  box-shadow: 10px 10px 0 var(--ink);
}

.contact h2 {
  max-width: 760px;
}

.contact p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--ink);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 116px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  outline: none;
}

.footer {
  display: flex;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 30px 0 44px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  border-top: 2px solid var(--ink);
  color: var(--muted);
  font-weight: 700;
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer p {
  margin: 0;
  color: var(--ink);
  font-family: var(--latin);
  font-weight: 900;
}

.footer-brand small {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.footer-policy {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  font-size: 0.78rem;
  line-height: 1.5;
}

.footer-policy a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-policy a:hover {
  color: var(--ink);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.footer-social a {
  display: inline-flex;
  position: relative;
  width: 46px;
  height: 46px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
  font-size: 0;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.footer-social a::before {
  display: grid;
  place-items: center;
  color: currentColor;
  font-family: var(--latin);
  font-weight: 900;
  line-height: 1;
}

.footer-social a[href*="lin.ee"] {
  border-color: #06C755;
  background: #06C755;
  color: var(--white);
}

.footer-social a[href*="lin.ee"]::before {
  content: "LINE";
  font-size: 0.68rem;
}

.footer-social a[href*="x.com"] {
  border-color: #000000;
  background: #000000;
  color: var(--white);
}

.footer-social a[href*="x.com"]::before {
  content: "X";
  font-size: 1.32rem;
}

.footer-social a[href*="instagram.com"] {
  border-color: #E1306C;
  background: #E1306C;
  color: var(--white);
}

.footer-social a[href*="instagram.com"]::before {
  content: "";
  width: 19px;
  height: 19px;
  border: 3px solid currentColor;
  border-radius: 7px;
}

.footer-social a[href*="instagram.com"]::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: 9px -9px 0 -4px currentColor;
}

.footer-social a[href*="tiktok.com"] {
  border-color: #FE2C55;
  background: linear-gradient(135deg, #85F9F5 0 48%, #FE2C55 52% 100%);
  color: #000000;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.46);
}

.footer-social a[href*="tiktok.com"]::before {
  content: "♪";
  font-family: var(--display);
  font-size: 1.5rem;
}

.footer-social a[href*="youtube.com"] {
  border-color: #ff0000;
  background: #ff0000;
  color: var(--white);
}

.footer-social a[href*="youtube.com"]::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
}

.footer-social a:hover {
  box-shadow: 0 8px 18px rgba(28, 25, 23, 0.12);
  transform: translateY(-1px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumb .sep {
  opacity: 0.6;
}

.page-hero {
  position: relative;
  padding: 150px 24px 76px;
  background: var(--paper-deep);
}

.page-hero-inner {
  width: min(900px, 100%);
  margin: 0 auto;
}

.page-hero h1 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.3;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
}

.page-hero h1 span {
  background: linear-gradient(transparent 62%, var(--yellow) 62%, var(--yellow) 92%, transparent 92%);
}

.page-hero .lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: #5e5140;
  font-size: 1.02rem;
  font-weight: 500;
}

.case-kicker.big {
  font-size: 0.86rem;
}

.case-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.case-detail-grid > li {
  padding: 26px 22px;
  border: 2.5px solid var(--ink);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 6px 6px 0 rgba(28, 25, 23, 0.12);
}

.case-detail-grid dt {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--yellow);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 900;
}

.case-detail-grid > li:nth-child(2) dt {
  background: var(--pink);
}

.case-detail-grid > li:nth-child(3) dt {
  background: var(--sky);
}

.case-detail-grid > li:nth-child(4) dt {
  background: var(--green);
  color: var(--white);
}

.case-detail-grid dd {
  margin: 14px 0 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.8;
}

.case-results-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.case-results-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 900;
}

.case-results-list strong {
  font-family: var(--latin);
  font-size: 1.5rem;
  color: var(--green);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-card {
  display: block;
  padding: 24px;
  border: 2.5px solid var(--ink);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 6px 6px 0 rgba(28, 25, 23, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.related-card:hover {
  box-shadow: 9px 9px 0 rgba(28, 25, 23, 0.12);
  transform: translate(-3px, -3px);
}

.related-card h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1.4;
}

.related-card p {
  margin: 0;
  color: var(--muted);
}

.related-card .arrow {
  display: inline-block;
  margin-top: 12px;
  font-weight: 900;
}

.blog-index-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-index-card {
  min-height: 260px;
}

.blog-index-meta {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
}

.new-badge {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-family: var(--latin);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  vertical-align: middle;
}

.new-badge[hidden] {
  display: none;
}

.blog-index-title {
  max-width: 11em;
}

.pain-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pain-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 20px 22px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--white);
  font-weight: 700;
}

.pain-list li::before {
  display: inline-grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  content: "✕";
  font-size: 0.8rem;
  font-weight: 900;
}

.blog-article {
  padding: 146px 0 80px;
}

.blog-hero,
.blog-layout {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.blog-hero {
  padding: 48px 0 38px;
}

.blog-hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.25;
}

.blog-lead {
  max-width: 800px;
  margin: 22px 0 0;
  color: #5e5140;
  font-size: 1.05rem;
  font-weight: 700;
}

.blog-hero-thumb {
  margin: 30px 0 0;
  max-width: 920px;
}

.blog-hero-thumb img {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 6px 6px 0 rgba(28, 25, 23, 0.12);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.blog-meta span,
.blog-meta time {
  padding: 4px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
}

.blog-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.blog-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 6px 6px 0 rgba(28, 25, 23, 0.12);
  font-size: 0.86rem;
  font-weight: 900;
}

.blog-toc strong {
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 1.1rem;
}

.blog-toc a {
  color: var(--muted);
}

.blog-toc a:hover {
  color: var(--ink);
}

.blog-content {
  display: grid;
  gap: 42px;
  min-width: 0;
}

.blog-content > section,
.company-block {
  scroll-margin-top: 118px;
  padding: 34px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 7px 7px 0 rgba(28, 25, 23, 0.12);
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  line-height: 1.35;
}

.blog-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.blog-content h3 {
  margin-top: 28px;
  font-size: 1.35rem;
}

.blog-content h4 {
  margin-top: 22px;
  font-size: 1.05rem;
}

.blog-content p,
.blog-content li {
  color: #5e5140;
  font-weight: 600;
}

.blog-content p {
  margin: 16px 0 0;
}

.blog-content ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 1.2em;
}

.blog-content a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.blog-visual {
  margin: 24px 0 6px;
}

.blog-visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 6px 6px 0 rgba(28, 25, 23, 0.12);
}

.blog-visual figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.table-scroll {
  overflow-x: auto;
  margin-top: 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.blog-content table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.94rem;
}

.blog-content th,
.blog-content td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.blog-content th {
  background: var(--yellow);
  font-family: var(--display);
  font-weight: 900;
}

.blog-content tr:last-child td {
  border-bottom: 0;
}

.blog-content th:last-child,
.blog-content td:last-child {
  border-right: 0;
}

.company-block {
  margin-top: 20px;
  box-shadow: 5px 5px 0 rgba(91, 191, 104, 0.18);
}

.info-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.info-list dt {
  font-weight: 900;
}

.info-list dd {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.source-note {
  font-size: 0.82rem;
}

.blog-cta {
  background: var(--yellow) !important;
}

.blog-cta .hero-actions {
  justify-content: flex-start;
}

.cta-banner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 96px;
  padding: 54px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--yellow);
  box-shadow: 10px 10px 0 var(--ink);
  text-align: center;
}

.cta-banner h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.3;
}

.cta-banner p {
  max-width: 640px;
  margin: 18px auto 0;
  color: #5e5140;
  font-weight: 700;
}

.cta-banner .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.thanks-page {
  display: grid;
  min-height: 100svh;
  padding: 28px;
  place-items: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 215, 84, 0.5), transparent 28%),
    radial-gradient(circle at 86% 24%, rgba(91, 191, 104, 0.28), transparent 30%),
    var(--paper);
}

.thanks-card {
  width: min(760px, 100%);
  padding: clamp(34px, 6vw, 68px);
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 10px 10px 0 var(--ink);
  text-align: center;
}

.thanks-card h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.25;
}

.thanks-card p,
.thanks-card ul {
  max-width: 560px;
  margin: 22px auto 0;
  color: var(--muted);
  font-weight: 700;
}

.thanks-card ul {
  display: inline-grid;
  gap: 6px;
  padding-left: 1.2em;
  text-align: left;
}

.thanks-actions {
  margin-top: 32px;
}

.lp-page {
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.035) 1px, transparent 1px) 0 0 / 30px 30px,
    #fffefa;
}

.lp-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: 128px 18px 66px;
  border-bottom: 2px solid var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.95) 0%, rgba(255, 254, 250, 0.86) 54%, rgba(255, 254, 250, 0.98) 100%),
    image-set(url("fueru-hero.webp") type("image/webp"), url("fueru-hero.png") type("image/png")) center / cover no-repeat;
}

.lp-hero__inner {
  position: relative;
  z-index: 2;
  width: min(650px, 100%);
}

.lp-campaign {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 7px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.2;
  transform: rotate(-1.5deg);
}

.lp-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.35rem, 11vw, 4.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

.lp-hero__lead {
  margin: 22px 0 0;
  color: #4d453c;
  font-weight: 800;
}

.lp-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.lp-hero__badges span {
  padding: 5px 11px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.lp-hero__badges span:nth-child(2n) {
  background: var(--yellow);
}

.lp-hero__badges span:nth-child(3n) {
  background: var(--green);
}

.lp-hero__visual {
  position: absolute;
  right: -38px;
  bottom: 22px;
  z-index: 1;
  width: 250px;
  height: 320px;
  opacity: 0.28;
  pointer-events: none;
}

.lp-phone {
  position: absolute;
  display: flex;
  width: 154px;
  height: 244px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  border: 3px solid var(--ink);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.72)),
    var(--green);
  box-shadow: 8px 8px 0 rgba(21, 21, 21, 0.22);
  color: var(--white);
  overflow: hidden;
}

.lp-phone::before {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 50px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  content: "";
  transform: translateX(-50%);
}

.lp-phone--main {
  right: 34px;
  bottom: 18px;
  transform: rotate(4deg);
}

.lp-phone--sub {
  right: 104px;
  bottom: 64px;
  width: 128px;
  height: 204px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.72)),
    var(--pink);
  transform: rotate(-8deg);
}

.lp-phone span {
  position: absolute;
  top: 25px;
  left: 12px;
  padding: 3px 9px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 900;
}

.lp-phone strong {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: 0.95rem;
  line-height: 1.35;
}

.lp-phone small {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  font-size: 0.64rem;
  font-weight: 900;
}

.lp-offer {
  padding: 34px 18px 0;
}

.lp-offer__inner {
  width: min(900px, 100%);
  margin: -76px auto 0;
  padding: 28px 22px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--yellow);
  box-shadow: 8px 8px 0 var(--ink);
}

.lp-offer h2,
.lp-feature-list h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
}

.lp-offer h2 {
  font-size: clamp(1.65rem, 7vw, 3rem);
}

.lp-offer p {
  margin: 16px 0 0;
  font-weight: 800;
}

.lp-offer ul,
.lp-check-grid {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.lp-offer li,
.lp-check-grid div {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--white);
  font-weight: 900;
}

.lp-offer li::before {
  color: var(--green);
  content: "●";
}

.lp-check-grid div::before {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  content: "!";
  font-family: var(--latin);
  font-size: 0.8rem;
  line-height: 1;
}

.lp-feature-list {
  display: grid;
  gap: 16px;
}

.lp-feature-list article {
  padding: 26px 22px;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.lp-feature-list span {
  display: inline-grid;
  min-width: 44px;
  min-height: 34px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--green);
  font-family: var(--latin);
  font-weight: 900;
}

.lp-feature-list article:nth-child(2) span {
  background: var(--yellow);
}

.lp-feature-list article:nth-child(3) span {
  background: var(--pink);
}

.lp-feature-list h3 {
  margin-top: 18px;
  font-size: 1.35rem;
}

.lp-feature-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.lp-compare-table {
  display: grid;
  overflow: hidden;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.lp-compare-table > div {
  display: grid;
  grid-template-columns: 0.78fr 1fr 1fr;
}

.lp-compare-table span,
.lp-compare-table strong {
  display: grid;
  min-height: 58px;
  align-items: center;
  padding: 13px 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}

.lp-compare-table > div:first-child span,
.lp-compare-table > div:first-child strong {
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.lp-compare-table strong {
  background: rgba(135, 200, 70, 0.22);
  font-weight: 900;
}

.lp-compare-table > div:last-child span,
.lp-compare-table > div:last-child strong {
  border-bottom: 0;
}

.lp-compare-table span:last-child {
  border-right: 0;
}

.lp-flow span {
  color: var(--ink);
  font-family: var(--latin);
}

.lp-contact {
  margin-top: 24px;
}

@media (min-width: 760px) {
  .lp-hero {
    padding-right: clamp(24px, 6vw, 84px);
    padding-left: clamp(24px, 7vw, 110px);
  }

  .lp-hero__visual {
    right: clamp(24px, 7vw, 110px);
    bottom: 70px;
    width: 410px;
    height: 430px;
    opacity: 1;
  }

  .lp-check-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-feature-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .lp-feature-list article {
    min-height: 280px;
  }
}

@media (min-width: 1080px) {
  .lp-check-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 920px) {
  .site-header {
    min-height: 72px;
    align-items: center;
    border-radius: var(--radius-lg);
  }

  .site-header.is-scrolled {
    min-height: 54px;
  }

  .menu-toggle {
    display: grid;
    margin-left: auto;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .site-header.is-open .nav {
    display: grid;
  }

  .site-header.is-open + main {
    padding-top: 300px;
  }

  .nav a {
    display: grid;
    min-height: 42px;
    place-items: center;
    padding: 9px 8px;
    border: 1px solid rgba(21, 21, 21, 0.18);
    background: #f3f3ed;
    text-align: center;
  }

  .hero {
    min-height: 92svh;
    padding-top: 150px;
  }

  .hero-media {
    top: auto;
    right: 18px;
    bottom: 30px;
    width: min(360px, 58vw);
    height: 240px;
    opacity: 0.42;
  }

  .hero-media::before {
    font-size: 0.68rem;
  }

  .hero-media::after {
    right: 10px;
    bottom: 16px;
    font-size: 0.62rem;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 254, 250, 0.96) 0%, rgba(255, 254, 250, 0.76) 56%, rgba(255, 254, 250, 0.18) 100%),
      linear-gradient(180deg, rgba(255, 254, 250, 0) 72%, var(--paper) 100%);
  }

  .hero-inner {
    transform: none;
  }

  .section-heading,
  .news-section,
  .stats,
  .service-grid,
  .editorial-visuals,
  .flow,
  .metrics-grid,
  .plans,
  .contact {
    grid-template-columns: 1fr;
  }

  .case-detail-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero {
    padding-top: 130px;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-toc {
    position: static;
  }

  .lp-hero {
    padding-top: 118px;
  }
}

@media (max-width: 640px) {
  html,
  body,
  main {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 62px;
    align-items: center;
    padding: 7px 9px 7px 13px;
    border-radius: 28px;
  }

  .site-header.is-scrolled {
    min-height: 48px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-logo {
    width: 138px;
    height: 36px;
  }

  .site-header.is-scrolled .brand-logo {
    width: 104px;
    height: 28px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 9px;
  }

  .menu-toggle span {
    width: 17px;
  }

  .hero {
    min-height: 94svh;
    padding: 104px 18px 86px;
  }

  .hero-media {
    right: 16px;
    bottom: 22px;
    width: calc(100% - 32px);
    height: 190px;
    opacity: 0.24;
  }

  .hero h1 {
    display: grid;
    gap: 0.18em;
    font-size: clamp(2rem, 9.4vw, 3.1rem);
    line-height: 1;
  }

  .hero h1 br {
    display: none;
  }

  .hero h1 span {
    background: none;
  }

  .hero h1 .nowrap {
    display: block;
    font-size: 0.72em;
    line-height: 1;
    white-space: nowrap;
  }

  .keep-line {
    white-space: normal;
  }

  .grow-chart {
    margin-top: 22px;
  }

  .hero-actions,
  .contact {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .floating-contact {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    min-height: 46px;
    padding: 12px 15px;
    font-size: 0.84rem;
  }

  .section {
    width: min(calc(100% - 28px), 1120px);
    padding: 72px 0;
  }

  .news-section {
    width: min(calc(100% - 28px), 1120px);
    margin: 24px auto;
    gap: 14px;
  }

  .news-heading {
    padding: 22px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .news-item span {
    width: fit-content;
  }

  .editorial-visuals {
    gap: 14px;
  }

  .visual-card,
  .visual-card img {
    min-height: 190px;
  }

  .feed-frame {
    width: 150px;
  }

  .feed-frame::after {
    right: 8px;
    bottom: 14px;
    font-size: 0.55rem;
  }

  .feed-frame strong,
  .feed-frame small {
    max-width: calc(100% - 42px);
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reason-card {
    flex-direction: column;
    gap: 14px;
    padding: 24px;
  }

  .plan-card.featured {
    transform: none;
  }

  .case-item {
    grid-template-columns: 1fr;
  }

  .case-detail-grid,
  .related-grid,
  .pain-list {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 112px 18px 60px;
  }

  .page-hero .blog-index-title {
    max-width: 8.6em;
    font-size: clamp(2.65rem, 12.2vw, 3.45rem);
    line-height: 1.18;
  }

  .blog-article {
    padding: 136px 0 64px;
    overflow-x: hidden;
  }

  .blog-hero,
  .blog-layout {
    width: min(calc(100vw - 28px), 1120px);
    max-width: calc(100vw - 28px);
  }

  .blog-hero {
    padding: 42px 0 30px;
  }

  .blog-hero h1 {
    font-size: clamp(1.9rem, 8.5vw, 2.5rem);
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  .blog-lead {
    font-size: 0.96rem;
  }

  .blog-layout {
    gap: 28px;
  }

  .blog-toc {
    padding: 22px;
  }

  .blog-content {
    gap: 30px;
    max-width: 100%;
    min-width: 0;
  }

  .blog-content > section,
  .company-block {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    scroll-margin-top: 102px;
    padding: 28px 18px;
  }

  .blog-toc {
    width: 100%;
    min-width: 0;
  }

  .blog-visual,
  .blog-hero-thumb,
  .table-scroll,
  .faq-list,
  .hero-actions {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
  }

  .blog-content table {
    min-width: 640px;
    font-size: 0.82rem;
  }

  .blog-content th,
  .blog-content td {
    padding: 11px 9px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .company-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact,
  .cta-banner {
    width: min(calc(100% - 28px), 1120px);
    margin-bottom: 72px;
    padding: 30px 22px;
  }

  .contact-form {
    padding: 20px;
  }

  .footer {
    width: min(calc(100% - 28px), 1120px);
    flex-direction: column;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .lp-header .nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-hero {
    padding: 104px 18px 68px;
  }

  .lp-hero__lead {
    max-width: calc(100% - 16px);
    font-size: 0.96rem;
  }

  .lp-offer__inner {
    margin-top: -58px;
  }

  .lp-check-grid,
  .lp-feature-list {
    gap: 12px;
  }

  .lp-compare-table {
    overflow-x: auto;
  }

  .lp-compare-table > div {
    min-width: 560px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .feed-track,
  .grow-chart.drawn .grow-line,
  .grow-chart.drawn .chart-pop,
  .reveal {
    animation: none;
    transition: none;
  }

  .grow-line {
    stroke-dashoffset: 0;
  }

  .chart-pop,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
