:root {
  --bg: #ffffff;
  --bg-soft: #f5f8f7;
  --bg-deep: #12373a;
  --surface: #ffffff;
  --surface-soft: #f8fbfa;
  --line: rgba(17, 17, 17, 0.08);
  --line-strong: rgba(17, 17, 17, 0.14);
  --text: #111111;
  --subtext: #555555;
  --muted: #6d7a79;
  --accent: #008c98;
  --accent-2: #3dbb78;
  --accent-deep: #0f5c62;
  --accent-soft: rgba(0, 140, 152, 0.08);
  --accent-soft-2: rgba(61, 187, 120, 0.12);
  --shadow: 0 24px 60px rgba(11, 56, 59, 0.10);
  --shadow-soft: 0 18px 40px rgba(11, 56, 59, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(0, 140, 152, 0.03), transparent 240px),
    radial-gradient(circle at top right, rgba(61, 187, 120, 0.10), transparent 28%),
    var(--bg);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.8;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(860px, calc(100% - 32px));
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 35%),
    linear-gradient(180deg, #143d40, #0f2f32);
  color: #edf7f5;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
}

.brand img {
  width: auto;
  height: 42px;
}

.site-footer img {
  width: auto;
  height: 56px;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.header-cta,
.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 32px rgba(0, 140, 152, 0.22);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  padding-top: 56px;
}

.hero-grid,
.split-layout,
.form-layout,
.privacy-layout,
.mockup-layout {
  display: grid;
  gap: 40px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

.eyebrow,
.section-label,
.story-label,
.price-card-tag {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-deep);
}

.section-label-light {
  color: rgba(255, 255, 255, 0.72);
}

.hero h1,
.section-heading h2,
.split-copy h2,
.privacy-copy h2,
.final-cta h2,
.price-card-large h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.hero h1 {
  /*font-size: clamp(2.5rem, 4.8vw, 4.6rem);*/
  font-size: clamp(2.5rem, 3.0vw, 4.0rem);
}

.hero h1 span,
.final-cta h2 span {
  color: var(--accent);
}

.hero-lead,
.section-heading p,
.visual-caption p,
.story-copy p,
.privacy-copy p,
.split-copy p,
.essay-card p,
.reason-card p,
.form-copy p {
  color: var(--subtext);
}

.price-panel,
.feature-card,
.problem-card,
.insight-block,
.story-card,
.essay-card,
.compare-card,
.step-card,
.reason-card,
.price-card-large,
.contact-form,
.form-copy,
.mockup-list,
.compare-card-accent,
.process-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.price-panel {
  margin: 32px 0 24px;
  padding: 24px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.price-note,
.price-label,
.price-tax,
.price-before,
.price-arrow {
  margin: 0;
}

.price-note {
  font-size: 14px;
  font-weight: 700;
  color: var(--subtext); 
}

.price-label {
  font-size: 14px;
  font-weight: 700;
  /*color: var(--subtext); */
  color:red;
}

.price-before {
  margin-top: 6px;
  color: var(--muted);
  text-decoration: line-through;
}

.price-arrow {
  margin: 8px 0;
  font-weight: 700;
  color: var(--accent);
}

.price-main {
  margin: 8px 0 4px;
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: 1;
  font-weight: 800;
  color: var(--text);
}

.price-main span {
  font-size: 0.42em;
}

.hero-points,
.check-list,
.contact-points,
.mockup-list,
.tour-line,
.process-grid,
.included-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  font-size:18px;
}

.hero-points li,
.check-list li,
.contact-points li {
  position: relative;
  padding-left: 30px;
}

.hero-points li::before,
.check-list li::before,
.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 4px var(--accent-soft);
  transform: translateY(-50%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-left: 100px;
}

.hero-actions p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.collage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.collage-main {
  min-height: 420px;
}

.collage-sub {
  min-height: 420px;
}

.frame {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #f0f5f4;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-main img {
  object-fit: contain;
  object-position: center center;
  padding: 14px;
  background: #f7fbfa;
}

.collage-sub img {
  object-fit: contain;
  object-position: center center;
}

.visual-caption {
  margin-top: 20px;
  padding: 22px 24px;
  border-left: 3px solid var(--accent);
  background: linear-gradient(135deg, rgba(0, 140, 152, 0.05), rgba(61, 187, 120, 0.08));
  border-radius: 0 20px 20px 0;
}

.visual-caption strong,
.story-copy h3,
.feature-card h2,
.compare-card h3,
.step-card h3,
.form-copy h2 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.feature-grid,
.problem-grid,
.step-grid,
.included-grid {
  display: grid;
  gap: 20px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.problem-card,
.step-card,
.compare-card,
.compare-card-accent {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 800;
  flex: 0 0 auto;
}

.feature-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 16px;
  align-items: start;
}

.feature-card h2,
.feature-card p {
  grid-column: 2;
}

.feature-card h2 {
  margin: 6px 0 10px;
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3.3rem);
}

.section-heading p {
  margin: 16px 0 0;
}

.section-cta-center {
  text-align: center;
}

.problem-grid {
  grid-template-columns: repeat(3, 1fr);
}

.problem-card {
  position: relative;
  min-height: 196px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
  background: #17373a;
  border: 1px solid rgba(0, 140, 152, 0.16);
  box-shadow: 0 24px 50px rgba(0, 140, 152, 0.14);
}

.problem-card::before {
  content: "ISSUE";
  position: absolute;
  top: 22px;
  left: 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.78);
  z-index: 2;
}

.problem-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 37, 40, 0.10) 0%, rgba(12, 37, 40, 0.28) 34%, rgba(12, 37, 40, 0.88) 100%),
    linear-gradient(135deg, rgba(0, 140, 152, 0.16), rgba(61, 187, 120, 0.12));
  z-index: 1;
}

.problem-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem-card p {
  margin: 0;
  position: relative;
  z-index: 2;
  max-width: 38ch;
  font-size: clamp(1.4rem, 1.8vw, 1.55rem);
  line-height: 1.55;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.insight-block,
.essay-card,
.reason-card {
  padding: 36px;
  border-radius: var(--radius-xl);
}

.keyword-row,
.plus-row,
.feedback-flow,
.bubble-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.keyword-row {
  margin-bottom: 24px;
}

.keyword-row span,
.plus-row,
.feedback-flow span,
.bubble-row span,
.tour-line li,
.included-grid span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(0, 140, 152, 0.12);
}

.plus-row {
  margin: 24px 0;
  font-weight: 700;
  color: var(--accent-deep);
}

.closing-copy,
.privacy-closing,
.big-statement,
.step-emphasis {
  font-weight: 700;
}

.closing-copy{
  font-size: 20px;;
}

.story-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 28px;
  border-radius: var(--radius-xl);
  margin-top: 28px;
  align-items: center;
}

.story-card-reverse .story-media {
  order: 2;
}

.story-card-dark {
  background: linear-gradient(135deg, #163d41, #102d30);
  color: #f2faf8;
}

.story-card-dark p,
.story-card-dark .story-label,
.story-card-dark .story-note {
  color: rgba(242, 250, 248, 0.82);
}

.story-card-playful {
  background:
    linear-gradient(135deg, rgba(0, 140, 152, 0.05), rgba(61, 187, 120, 0.10)),
    #ffffff;
}

.story-media {
  min-height: 320px;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.story-copy h3 {
  margin: 0 0 10px;
  font-size: 2rem;
}

.story-hook {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.story-note {
  display: inline-block;
  padding: 8px 12px;
  border-left: 3px solid var(--accent);
  background: rgba(0, 140, 152, 0.06);
}

.tour-line,
.bubble-row {
  margin-top: 20px;
}

.privacy-layout {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.privacy-grid figure {
  margin: 0;
}

.privacy-grid figcaption {
  padding: 14px 18px 18px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.section-dark .privacy-copy p {
  color: rgba(255, 255, 255, 0.9);
}

.split-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.split-media {
  min-height: 460px;
}

.split-copy h2,
.privacy-copy h2,
.final-cta h2,
.price-card-large h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.big-statement {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.mockup-layout {
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: center;
}

.mockup-layout-single {
  grid-template-columns: 1fr;
  justify-items: center;
}

.device-desktop {
  min-height: 420px;
}

.device-mobile {
  max-width: 220px;
  margin-inline: auto;
}

.youtube-sample-frame {
  display: flex;
  align-items: center;
  justify-content: center;
}

.youtube-sample-frame img {
  display: block;
  width: min(100%, 920px);
  height: auto;
  margin-inline: auto;
}

.youtube-note {
  max-width: 54rem;
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.35rem;
  align-items: start;
  font-size: 0.80rem;
  color: var(--muted);
}

.youtube-note-mark {
  line-height: 1.6;
}

.mockup-list {
  padding: 26px;
  border-radius: var(--radius-lg);
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
}

.mockup-list-heading {
  margin-top: 12px;
  font-weight: 800;
}

.mockup-list-heading:first-child {
  margin-top: 0;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.compare-card ol {
  margin: 20px 0 0;
  padding-left: 20px;
}

.compare-card-accent {
  background: linear-gradient(135deg, rgba(0, 140, 152, 0.08), rgba(61, 187, 120, 0.14));
  border-color: rgba(0, 140, 152, 0.18);
}

.step-grid {
  grid-template-columns: repeat(3, 1fr);
}

.step-card span,
.process-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 800;
}

.step-emphasis {
  margin: 24px 0 0;
  text-align: center;
  color: var(--accent-deep);
}

.feedback-flow {
  margin-top: 24px;
}

.price-card-large {
  padding: 42px 32px;
  border-radius: 36px;
  text-align: center;
}

.included-grid {
  grid-template-columns: repeat(4, 1fr);
  margin: 28px 0 32px;
}

.helper-text {
  margin-top: 18px;
  color: var(--subtext);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.process-card {
  padding: 24px 18px;
  border-radius: var(--radius-lg);
  display: grid;
  gap: 16px;
  justify-items: start;
}

.process-card span {
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--subtext);
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 30%),
    linear-gradient(180deg, #173c40, #102c2f);
  color: #eff8f7;
}

.final-cta-inner {
  max-width: 860px;
}

.final-cta p,
.final-price span {
  color: rgba(239, 248, 247, 0.82);
}

.final-price {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.final-price strong {
  font-size: 1.6rem;
}

.form-layout {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
}

.form-copy,
.contact-form {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.contact-form {
  display: grid;
  gap: 20px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-weight: 700;
}

.required-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border: 1px solid rgba(193, 48, 48, 0.24);
  border-radius: 999px;
  background: rgba(193, 48, 48, 0.10);
  color: #b03a3a;
  font-size: 0.76em;
  line-height: 1.4;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: var(--surface-soft);
  color: var(--text);
}

.field input:focus,
.field textarea:focus {
  outline: 3px solid rgba(0, 140, 152, 0.14);
  border-color: var(--accent);
}

.field-error {
  min-height: 1.2em;
  margin: 0;
  font-size: 13px;
  color: #c13030;
}

.optional {
  font-size: 0.9em;
  color: var(--muted);
}

.submit-block {
  display: grid;
  gap: 12px;
}

.submit-note,
.form-status {
  margin: 0;
  font-size: 14px;
  color: var(--subtext);
}

.form-status[data-state="success"] {
  color: #1a7a4d;
}

.form-status[data-state="error"] {
  color: #b03a3a;
}

.success-modal[hidden] {
  display: none;
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.success-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 47, 50, 0.62);
  backdrop-filter: blur(6px);
}

.success-modal-dialog {
  position: relative;
  width: min(100%, 520px);
  padding: 40px 32px 32px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(0, 140, 152, 0.08), rgba(61, 187, 120, 0.04)),
    #ffffff;
  box-shadow: 0 32px 80px rgba(11, 56, 59, 0.26);
  text-align: center;
}

.success-modal-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
}

.success-modal-dialog h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.3;
}

.success-modal-dialog p {
  margin: 0 0 24px;
  color: var(--subtext);
}

.success-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.success-modal-close:hover,
.success-modal-close:focus-visible {
  background: rgba(17, 17, 17, 0.12);
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  z-index: 90;
  padding: 0 16px 16px;
  pointer-events: none;
}

.sticky-cta-inner {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
  padding: 12px 14px;
  border-radius: 22px;
  background: rgba(17, 17, 17, 0.92);
  color: #fff;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.20);
  pointer-events: auto;
}

.sticky-cta-inner p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  padding: 40px 0 88px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-company-info {
  color: var(--subtext);
}

.footer-company-info p {
  margin: 4px 0;
}

.footer-company-heading {
  margin-top: 0;
  font-weight: 700;
  color: var(--text);
}

.reason-card-company {
  margin-top: 32px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(0, 140, 152, 0.05), rgba(61, 187, 120, 0.03)),
    var(--surface);
}

.reason-card-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
}

.reason-card-title {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  line-height: 1.35;
}

.reason-card-lead {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.9;
}

.company-profile-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.company-profile-list div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.company-profile-list div:first-child {
  padding-top: 0;
  border-top: 0;
}

.company-profile-list dt {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
}

.company-profile-list dd {
  margin: 0;
  color: var(--subtext);
  line-height: 1.8;
}

.company-profile-list a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .privacy-layout,
  .split-layout,
  .form-layout,
  .mockup-layout,
  .story-card,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .story-card-reverse .story-media {
    order: initial;
  }

  .feature-grid,
  .problem-grid,
  .step-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .included-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .section {
    padding: 72px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img,
  .site-footer img {
    height: 34px;
  }

  .header-cta {
    min-height: 46px;
    padding: 0 18px;
    font-size: 14px;
  }

  .hero {
    padding-top: 28px;
  }

  .collage {
    grid-template-columns: 1fr;
  }

  .collage-main,
  .collage-sub,
  .story-media,
  .split-media,
  .device-desktop {
    min-height: 260px;
  }

  .feature-grid,
  .problem-grid,
  .step-grid,
  .field-grid,
  .included-grid,
  .process-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .insight-block,
  .essay-card,
  .reason-card,
  .feature-card,
  .problem-card,
  .step-card,
  .compare-card,
  .compare-card-accent,
  .form-copy,
  .contact-form,
  .price-card-large,
  .story-card {
    padding: 24px;
  }

  .sticky-cta-inner {
    display: flex;
  }

  .success-modal-dialog {
    padding: 36px 22px 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
