:root {
  color-scheme: light;
  --ink: #111318;
  --muted: #62666f;
  --line: #e8ddd2;
  --orange: #d9480f;
  --orange-dark: #b83a0c;
  --orange-bright: #f15a19;
  --cream: #fff8ef;
  --paper: #fffdf9;
  --sand: #f5eee6;
  --bluegray: #eef3f5;
  --green: #4b8b78;
  --shadow: 0 14px 34px rgba(49, 39, 29, 0.1);
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.96), rgba(255, 255, 255, 0.98) 38%, #fff8ef 100%),
    var(--paper);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.section-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  scroll-margin-top: 96px;
}

.nowrap {
  white-space: nowrap;
}

.accent {
  color: var(--orange);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 12px clamp(20px, 4vw, 40px);
  background: rgba(255, 253, 249, 0.92);
  border-bottom: 1px solid rgba(232, 221, 210, 0.72);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  gap: 2px;
  min-width: 150px;
  line-height: 1.1;
}

.brand-kicker {
  font-size: 11px;
  font-weight: 700;
  color: #34363b;
}

.brand-name {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.brand-romaji {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 28px);
  flex: 1;
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  padding: 8px 0;
}

.nav a:hover {
  color: var(--orange);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.header-cta,
.button-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(241, 90, 25, 0.24);
}

.header-cta:hover,
.button-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--orange);
}

.button-secondary:hover {
  color: var(--orange);
  transform: translateY(-1px);
}

.hero-copy {
  min-width: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  padding: 48px 0 58px;
}

.section-eyebrow {
  margin: 0 0 20px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.6;
}

.section-eyebrow span,
.demo h2 span,
.problem h2 span {
  color: var(--orange);
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 52px);
  line-height: 1.32;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.hero-text {
  max-width: 620px;
  margin: 26px 0 28px;
  color: #2f3338;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.85;
  overflow-wrap: normal;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
  color: #44484f;
  font-size: 13px;
  font-weight: 800;
  list-style: none;
}

.proof-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.proof-list li::before {
  width: 16px;
  height: 16px;
  color: #fff;
  content: "✓";
  display: inline-grid;
  place-items: center;
  background: #ffb178;
  border-radius: 50%;
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.laptop {
  position: absolute;
  inset: 22px 0 auto auto;
  width: min(100%, 620px);
  padding: 18px 18px 20px;
  background: #1b1d20;
  border-radius: 18px 18px 10px 10px;
  box-shadow: 0 28px 60px rgba(17, 19, 24, 0.24);
}

.laptop::after {
  position: absolute;
  left: -42px;
  right: -42px;
  bottom: -15px;
  height: 18px;
  content: "";
  background: linear-gradient(180deg, #4b4d50, #202225);
  border-radius: 0 0 18px 18px;
}

.browser-bar {
  position: absolute;
  left: 50%;
  top: 0;
  width: 114px;
  height: 18px;
  content: "";
  background: #15171a;
  border-radius: 0 0 12px 12px;
  transform: translateX(-50%);
}

.app-frame {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) 132px;
  gap: 18px;
  min-height: 385px;
  padding: 24px 18px 20px;
  overflow: hidden;
  background: #fffaf5;
  border-radius: 6px;
}

.app-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  border-right: 1px solid var(--line);
}

.app-logo {
  margin-bottom: 16px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.app-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  color: #555960;
  font-size: 12px;
  font-weight: 800;
}

.app-sidebar .active {
  color: var(--orange);
}

.app-title {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 900;
}

.post-card {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  margin-bottom: 16px;
  padding: 18px;
  background: #fff;
  border: 1px solid #f0e3d8;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(64, 48, 36, 0.07);
}

.avatar {
  width: 38px;
  height: 38px;
  background:
    radial-gradient(circle at 50% 36%, #ffe0c5 0 9px, transparent 10px),
    radial-gradient(circle at 50% 112%, #ffd1a8 0 22px, transparent 23px),
    #fff3e8;
  border-radius: 50%;
}

.post-card strong,
.sample-post strong {
  display: block;
  font-size: 13px;
}

.post-card small,
.sample-post small {
  display: block;
  color: #777b82;
  font-size: 11px;
}

.post-card p,
.sample-post p {
  margin: 10px 0;
  color: #3b3f46;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}

.post-meta {
  display: flex;
  gap: 16px;
  color: #777b82;
  font-size: 11px;
  font-weight: 900;
}

.post-meta span:first-child {
  color: var(--orange);
}

.app-stats {
  display: grid;
  align-content: start;
  gap: 16px;
}

.app-stats div {
  padding: 18px 14px;
  text-align: center;
  background: #fff;
  border: 1px solid #f0e3d8;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(64, 48, 36, 0.07);
}

.app-stats small,
.app-stats span {
  display: block;
  color: #555960;
  font-size: 11px;
  font-weight: 800;
}

.app-stats strong {
  display: block;
  margin: 10px 0 5px;
  color: var(--orange);
  font-size: 26px;
}

.phone {
  position: absolute;
  right: -10px;
  bottom: 0;
  width: 190px;
  height: 330px;
  padding: 16px 10px 12px;
  background: #15171a;
  border-radius: 30px;
  box-shadow: 0 22px 42px rgba(17, 19, 24, 0.26);
}

.phone-speaker {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 52px;
  height: 5px;
  background: #2e3136;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  padding: 20px 12px 10px;
  background: #fffaf5;
  border-radius: 22px;
}

.mini-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: 10px 0 12px;
  color: #7b7f86;
  font-size: 8px;
  font-weight: 800;
  text-align: center;
}

.mini-tabs span:first-child {
  color: var(--orange);
}

.mini-post {
  height: 78px;
  margin-bottom: 10px;
  background:
    linear-gradient(#333 0 0) 45px 15px / 56px 5px no-repeat,
    linear-gradient(#ded5cc 0 0) 45px 29px / 88px 4px no-repeat,
    linear-gradient(#ded5cc 0 0) 45px 40px / 72px 4px no-repeat,
    radial-gradient(circle, #ffd5ae 0 14px, transparent 15px),
    #fff;
  border: 1px solid #f0e3d8;
  border-radius: 8px;
}

.mini-post.short {
  height: 64px;
}

.phone-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.phone-nav span {
  height: 14px;
  border: 2px solid #c4b9af;
  border-radius: 50%;
}

.problem {
  padding: 40px 0 36px;
}

.problem h2,
.solution h2,
.faq h2 {
  margin: 0 0 34px;
  text-align: center;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.45;
}

.section-lead {
  max-width: 760px;
  margin: -18px auto 28px;
  color: var(--muted);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.mini-card {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  min-height: 190px;
  padding: 24px 18px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
}

.mini-card:first-child {
  border-radius: 8px 0 0 8px;
}

.mini-card:nth-child(4) {
  border-radius: 0 8px 8px 0;
}

.mini-card img {
  width: 66px;
  height: 66px;
}

.mini-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
}

.problem-note {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 112px minmax(0, 680px);
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin: 24px 0 0;
  padding: 26px 32px;
  background: #fffaf5;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(68, 52, 39, 0.06);
}

.problem-note strong {
  display: block;
  font-size: 22px;
  line-height: 1.55;
}

.problem-note p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.85;
}

.solution {
  padding: 42px 0 48px;
  text-align: center;
}

.solution .section-eyebrow {
  margin-bottom: 6px;
}

.solution h2 {
  margin-bottom: 28px;
  font-size: clamp(22px, 2.6vw, 30px);
}

.solution-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.solution-row div {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 14px 18px;
  text-align: left;
  border-right: 1px dashed #d7cbbf;
}

.solution-row div:last-child {
  border-right: 0;
}

.solution-row img {
  width: 62px;
  height: 62px;
  padding: 12px;
  background: #fff4e8;
  border-radius: 50%;
}

.solution-row span {
  font-weight: 900;
  line-height: 1.7;
}

.features {
  padding: 12px 0 40px;
}

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

.feature-card,
.recommended,
.price-card,
.faq details {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(68, 52, 39, 0.06);
}

.feature-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 30px 26px 26px;
}

.badge {
  justify-self: center;
  margin: 0;
  padding: 6px 11px;
  color: #fff;
  background: var(--orange);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.feature-card h3 {
  margin: 0;
  text-align: center;
  font-size: clamp(22px, 2.2vw, 27px);
  line-height: 1.5;
}

.feature-card > p:not(.badge) {
  margin: 0;
  color: #33373d;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
}

.sample-post,
.read-list,
.ranking {
  min-height: 204px;
  padding: 20px;
  background: #fff;
  border: 1px solid #f0e3d8;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(64, 48, 36, 0.06);
}

.sample-post {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
}

.sample-post span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.feature-card ul,
.comparison ul,
.recommended ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-card > ul li,
.recommended li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 700;
  line-height: 1.7;
}

.feature-card > ul li::before,
.recommended li::before {
  color: var(--orange);
  content: "✓";
  font-weight: 900;
}

.read-list {
  display: grid;
  align-content: center;
  gap: 16px;
}

.read-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 8px;
  background: linear-gradient(90deg, var(--orange), var(--orange)) 0 100% / var(--progress, 100%) 3px no-repeat;
  border-bottom: 1px solid #efe4d9;
  font-size: 13px;
  font-weight: 900;
}

.read-list div:nth-child(2) {
  --progress: 87%;
}

.read-list div:nth-child(3) {
  --progress: 75%;
}

.read-list div:nth-child(4) {
  --progress: 61%;
}

.read-list strong {
  color: var(--orange);
}

.ranking {
  display: grid;
  align-content: center;
  gap: 16px;
}

.rank-top,
.ranking li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  font-weight: 900;
}

.rank-top {
  padding: 12px 14px;
  background: #fff7e8;
  border-radius: 8px;
}

.rank-top strong,
.ranking strong {
  color: var(--orange);
}

.ranking ol {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 26px;
}

.ranking li {
  padding-left: 4px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 1.1fr;
  gap: 18px;
  align-items: stretch;
  padding: 0 0 46px;
}

.before-after-heading {
  grid-column: 1 / -1;
  text-align: center;
}

.before-after-heading .section-eyebrow {
  margin-bottom: 6px;
  color: var(--orange);
}

.before-after-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.45;
}

.comparison {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 28px;
  background: #f2f5f6;
  border-radius: 8px;
}

.comparison.after {
  background: #fff3e5;
}

.comparison-label {
  margin: 0 0 12px;
  color: #1e2228;
  font-size: 30px;
  font-weight: 900;
}

.comparison.after .comparison-label {
  color: var(--orange);
}

.comparison li {
  font-weight: 700;
  line-height: 1.75;
}

.comparison img {
  position: absolute;
  right: 18px;
  bottom: 0;
  width: 118px;
}

.arrow {
  align-self: center;
  color: #181a1f;
  font-size: 28px;
}

.recommended {
  padding: 28px;
}

.recommended h2 {
  margin: 0 0 22px;
  font-size: 22px;
}

.price-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.72fr) minmax(240px, 0.9fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 42px;
  padding: 28px;
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-copy .section-eyebrow {
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 14px;
}

.price-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.45;
}

.price-copy p,
.price-actions span {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.75;
}

.price-card {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  min-height: 118px;
  padding: 20px;
  text-align: center;
}

.price-card strong {
  color: var(--orange);
  font-size: clamp(58px, 6.4vw, 78px);
  line-height: 1;
}

.price-card span {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
  min-width: 0;
  white-space: nowrap;
}

.price-actions {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.demo {
  display: grid;
  grid-template-columns: 260px 1fr 350px;
  gap: 34px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 34px max(24px, calc((100vw - 1120px) / 2));
  background: var(--cream);
  border-top: 1px solid #f2dfcd;
  border-bottom: 1px solid #f2dfcd;
}

.demo h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.5;
}

.demo p {
  margin: 0;
  font-weight: 600;
  line-height: 1.9;
}

.demo-actions {
  display: grid;
  gap: 14px;
}

.demo-voices-visual {
  width: min(260px, 100%);
  filter: drop-shadow(0 18px 28px rgba(49, 39, 29, 0.12));
}

.faq {
  padding: 44px 0 62px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 840px;
  margin: 0 auto;
}

.faq details {
  padding: 18px 22px;
}

.faq summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
}

.faq p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.8;
}

.demo-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 64px;
  padding: 42px 0 10px;
  scroll-margin-top: 96px;
}

.demo-form-copy {
  padding-top: 8px;
}

.demo-form-copy .section-eyebrow {
  margin-bottom: 8px;
  color: var(--orange);
}

.demo-form-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.55;
}

.demo-form-copy p:not(.section-eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.8;
}

.demo-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(68, 52, 39, 0.08);
}

.demo-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.demo-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: var(--ink);
  background: #fffdf9;
  border: 1px solid #e6d8cb;
  border-radius: 8px;
  font: inherit;
  outline: none;
}

.demo-form input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(241, 90, 25, 0.14);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
  scroll-margin-top: 96px;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: var(--orange-dark);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.google-form-target {
  display: none;
}

.footer {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 24px clamp(20px, 4vw, 40px);
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-brand {
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 18px;
  min-width: 0;
}

.footer-brand .brand-name {
  font-size: 20px;
}

.footer-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  color: #585c64;
  font-size: 13px;
  font-weight: 800;
}

.footer p {
  margin: 0;
  color: #585c64;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1040px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .laptop {
    left: 0;
    right: auto;
  }

  .problem-grid,
  .feature-grid,
  .before-after,
  .demo-form-section,
  .demo {
    grid-template-columns: 1fr;
  }

  .problem-grid {
    gap: 12px;
  }

  .mini-card,
  .mini-card:first-child,
  .mini-card:nth-child(4) {
    border-radius: 8px;
  }

  .problem-note {
    margin: 20px 0 0;
  }

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

  .solution-row div {
    border-right: 0;
    border-bottom: 1px dashed #d7cbbf;
  }

  .arrow {
    display: none;
  }

  .price-band {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }

  .demo-device {
    display: none;
  }
}

@media (max-width: 720px) {
  .section-shell {
    width: min(100% - 32px, 1120px);
  }

  .site-header {
    position: static;
    align-items: center;
    gap: 14px;
    padding: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-kicker {
    font-size: 10px;
  }

  .brand-name {
    font-size: 21px;
  }

  .brand-romaji {
    font-size: 8px;
  }

  .header-cta {
    min-height: 44px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero {
    gap: 28px;
    padding: 32px 0 44px;
  }

  .hero h1 {
    font-size: clamp(30px, 9vw, 36px);
    line-height: 1.35;
  }

  .hero-text {
    margin: 20px 0 22px;
    font-size: 16px;
    line-height: 1.9;
  }

  .hero-actions,
  .proof-list {
    display: grid;
  }

  .hero-actions {
    gap: 12px;
    margin-bottom: 16px;
  }

  .proof-list {
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 320px;
    overflow: hidden;
  }

  .laptop {
    left: 50%;
    width: 500px;
    transform: translateX(-50%) scale(0.62);
    transform-origin: top center;
  }

  .phone {
    right: 4px;
    bottom: 4px;
    transform: scale(0.64);
    transform-origin: bottom right;
  }

  .problem {
    padding: 34px 0 32px;
  }

  .problem h2,
  .solution h2,
  .faq h2 {
    font-size: 23px;
    line-height: 1.55;
  }

  .mini-card {
    min-height: 130px;
    padding: 20px 16px;
  }

  .problem-note {
    grid-template-columns: 82px 1fr;
    gap: 16px;
  }

  .problem-note strong {
    font-size: 16px;
  }

  .solution {
    padding: 34px 0 40px;
  }

  .solution-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .solution-row div {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    min-height: 78px;
    padding: 12px 4px;
  }

  .solution-row img {
    width: 54px;
    height: 54px;
  }

  .features {
    padding: 8px 0 40px;
  }

  .feature-card,
  .comparison,
  .recommended {
    padding: 22px;
  }

  .feature-card h3 {
    font-size: 22px;
  }

  .sample-post,
  .read-list,
  .ranking {
    min-height: auto;
    padding: 16px;
  }

  .comparison {
    min-height: 230px;
    padding-bottom: 112px;
  }

  .comparison img {
    width: 98px;
  }

  .recommended h2 {
    font-size: 20px;
  }

  .price-band {
    gap: 16px;
    margin-bottom: 38px;
    padding: 18px;
  }

  .price-card {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
    min-height: auto;
    padding: 18px 14px;
  }

  .price-card strong {
    font-size: 48px;
  }

  .price-card span {
    font-size: 18px;
  }

  .price-card span:last-child {
    flex-basis: 100%;
    text-align: center;
  }

  .demo {
    gap: 22px;
    padding: 34px 16px;
  }

  .demo h2 {
    font-size: 25px;
  }

  .demo-actions {
    gap: 12px;
  }

  .demo-form-section {
    width: min(100% - 32px, 1120px);
    gap: 20px;
    margin-bottom: 44px;
    padding-top: 34px;
  }

  .demo-form-copy h2 {
    font-size: 25px;
  }

  .demo-form {
    padding: 20px;
  }

  .footer {
    display: grid;
    gap: 16px;
    padding: 24px 16px;
  }

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

  .footer-links {
    flex-wrap: wrap;
    gap: 14px;
    margin-left: 0;
  }
}

@media (max-width: 420px) {
  .header-cta {
    flex: 0 0 auto;
    width: auto;
    gap: 8px;
    padding: 0 12px;
    font-size: 12px;
  }

  .header-cta span {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .laptop {
    width: 480px;
    transform: translateX(-50%) scale(0.59);
  }

  .phone {
    transform: scale(0.6);
  }

  .problem-note {
    grid-template-columns: 1fr;
  }

  .problem-note img {
    width: 96px;
  }
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 720px) {
  body {
    padding-bottom: 74px;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .header-cta {
    white-space: nowrap;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 30;
    display: grid;
    place-items: center;
    min-height: 52px;
    color: #fff;
    background: var(--orange);
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(184, 58, 12, 0.28);
    font-weight: 900;
  }
}
