/*
Theme Name: Tomosu Design
Theme URI: https://tomosu-design.muro104.chatgpt.site/
Author: Tomosu Design
Description: PowerPoint資料作成サービス「ともすデザイン」専用の1ページWordPressテーマ。
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: tomosu-design
*/

:root {
  --ink: #0b1630;
  --slate: #34445b;
  --muted: #52647b;
  --line: #d5dce5;
  --paper: #ffffff;
  --warm: #fff0ca;
  --soft: #f1f4f8;
  --amber: #f28c00;
  --amber-dark: #b45309;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo",
    sans-serif;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: flex;
  width: 230px;
  height: 58px;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  color: var(--slate);
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--amber-dark);
}

.header-cta {
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: #1e293b;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(242, 140, 0, 0.24), transparent 30%),
    linear-gradient(145deg, #fffdf7 0%, #fff3d3 56%, #ffdfa1 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 23, 42, 0.1) 0.8px, transparent 0.8px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to right, transparent, #000 55%, #000);
  opacity: 0.18;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  min-height: 710px;
  margin: 0 auto;
  padding: 98px 0 78px;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 72px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  width: 380px;
  height: 380px;
  top: -160px;
  right: 14%;
  border: 1px solid rgba(245, 158, 11, 0.18);
}

.hero-glow-two {
  width: 620px;
  height: 620px;
  right: -290px;
  bottom: -390px;
  border: 1px solid rgba(245, 158, 11, 0.18);
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--amber-dark);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.powerpoint-badge {
  width: fit-content;
  margin-bottom: 22px;
  padding: 9px 16px 9px 9px;
  border: 1px solid rgba(180, 83, 9, 0.28);
  border-radius: 14px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(180, 83, 9, 0.12);
}

.powerpoint-mark,
.pptx-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: #d35230;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.powerpoint-badge > span:last-child,
.pptx-delivery > span:last-child {
  display: grid;
}

.powerpoint-badge strong {
  font-size: 15px;
  line-height: 1.35;
}

.powerpoint-badge small {
  color: var(--slate);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.hero h1 {
  margin: 0;
  font-size: clamp(50px, 5.4vw, 78px);
  line-height: 1.18;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.hero h1 span {
  position: relative;
  color: var(--amber-dark);
  white-space: nowrap;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 7px;
  border-radius: 999px;
  background: var(--amber);
  opacity: 0.5;
  transform: rotate(-1deg);
}

.hero-lead {
  margin: 30px 0 0;
  color: var(--slate);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.button {
  min-height: 54px;
  border: 0;
  border-radius: 14px;
  padding: 13px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 14px 34px rgba(180, 83, 9, 0.28);
}

.button-primary:hover {
  background: var(--amber-dark);
  box-shadow: 0 16px 38px rgba(217, 119, 6, 0.28);
}

.button-secondary {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.hero-facts {
  margin: 44px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
}

.hero-facts li {
  min-height: 88px;
  padding: 16px 14px;
  border: 1px solid rgba(11, 22, 48, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.82);
}

.hero-facts li + li {
  padding-left: 14px;
}

.hero-facts li:first-child {
  border-color: var(--amber);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(11, 22, 48, 0.18);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font-size: 14px;
}

.hero-facts span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.hero-facts li:first-child span {
  color: #fbd38d;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245, 158, 11, 0.24);
}

.orbit-one {
  width: 470px;
  height: 470px;
}

.orbit-two {
  width: 360px;
  height: 360px;
  border-style: dashed;
}

.visual-card {
  position: absolute;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.13);
}

.visual-card-back {
  width: 354px;
  height: 420px;
  transform: rotate(8deg) translate(46px, 8px);
  opacity: 0.62;
}

.visual-card-back span {
  display: block;
  height: 8px;
  margin: 32px 42px 0;
  border-radius: 999px;
  background: #e2e8f0;
}

.visual-card-main {
  width: 390px;
  height: 450px;
  padding: 38px;
  transform: rotate(-3deg);
}

.mini-label {
  color: #94a3b8;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.before-lines {
  margin-top: 16px;
}

.before-lines i {
  display: block;
  height: 8px;
  margin-top: 11px;
  border-radius: 999px;
  background: #dbe2eb;
}

.before-lines i:nth-child(2) {
  width: 78%;
}

.before-lines i:nth-child(3) {
  width: 92%;
}

.before-lines i:nth-child(4) {
  width: 62%;
}

.transform-arrow {
  margin: 18px 0 10px;
  color: var(--amber);
  font-size: 26px;
  font-weight: 900;
  text-align: center;
  transform: rotate(90deg);
}

.after-label {
  color: var(--amber-dark);
}

.after-diagram {
  position: relative;
  height: 124px;
  margin-top: 14px;
  border-radius: 16px;
  background: #ffe2a3;
}

.after-diagram b {
  position: absolute;
  width: 68px;
  height: 68px;
  top: 27px;
  left: 32px;
  border-radius: 18px;
  background: #d35230;
}

.after-diagram i {
  position: absolute;
  height: 9px;
  left: 124px;
  right: 28px;
  border-radius: 999px;
  background: #cbd5e1;
}

.after-diagram i:nth-child(2) {
  top: 34px;
  background: var(--ink);
}

.after-diagram i:nth-child(3) {
  top: 60px;
}

.after-diagram i:nth-child(4) {
  top: 86px;
  right: 66px;
}

.pptx-delivery {
  margin-top: 15px;
  padding: 10px 12px;
  border: 1px solid rgba(211, 82, 48, 0.24);
  border-radius: 13px;
  background: #fff7f3;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: rotate(1deg);
}

.pptx-delivery .pptx-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  font-size: 18px;
}

.pptx-delivery strong {
  color: #a53b22;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.pptx-delivery small {
  color: var(--slate);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.symbol-wrap {
  position: absolute;
  top: 4px;
  right: 2px;
  width: 118px;
  height: 118px;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.14);
  transform: rotate(5deg);
}

.symbol-wrap img {
  width: 100%;
  height: 100%;
}

.visual-note {
  position: absolute;
  right: 2px;
  bottom: 20px;
  margin: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.section {
  padding: 112px 0;
}

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

.narrow {
  max-width: 900px;
}

.intro h2,
.section-heading h2,
.promise-intro h2,
.center-heading h2,
.message h2,
.faq-heading h2,
.contact h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.intro {
  background: #fff;
  text-align: center;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  margin-top: 54px;
  text-align: left;
}

.intro-grid p {
  margin: 0;
  color: var(--slate);
  font-size: 16px;
}

.intro-grid strong {
  color: var(--ink);
  background: linear-gradient(transparent 62%, rgba(245, 158, 11, 0.22) 62%);
}

.intro-quote {
  margin-top: 42px;
  padding: 26px 30px;
  border-left: 4px solid var(--amber);
  border-radius: 0 16px 16px 0;
  background: var(--soft);
  text-align: left;
}

.intro-quote strong,
.intro-quote span {
  display: block;
}

.intro-quote strong {
  font-size: 20px;
}

.intro-quote span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.issues {
  background: #e9eef5;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--slate);
}

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

.issue-card {
  min-height: 300px;
  padding: 34px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.045);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.issue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 54px;
}

.card-topline span {
  color: var(--amber-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.card-topline b {
  color: #e2e8f0;
  font-family: Arial, sans-serif;
  font-size: 32px;
  line-height: 1;
}

.issue-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.5;
}

.issue-card p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
}

.issue-summary {
  margin-top: 28px;
  padding: 24px 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: #fff;
  text-align: center;
}

.issue-summary strong,
.issue-summary span {
  display: block;
}

.issue-summary span {
  margin-top: 6px;
  color: var(--slate);
  font-size: 13px;
}

.promises {
  background: var(--ink);
  color: #fff;
}

.promises .container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 94px;
}

.promise-intro {
  position: sticky;
  top: 132px;
  align-self: start;
}

.promise-intro .section-label {
  color: #fbbf24;
}

.promise-intro > p:last-child {
  margin: 30px 0 0;
  color: #aab6c6;
}

.promise-list {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.promise-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 30px;
  padding: 44px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.promise-number {
  color: #fbbf24;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.promise-item h3 {
  margin: 0 0 13px;
  font-size: 25px;
}

.promise-item p {
  margin: 0;
  color: #aab6c6;
}

.service {
  background: #ffe9b8;
}

.service-panel {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.08);
}

.service-main {
  padding: 58px;
}

.service-tag {
  display: inline-flex;
  border-radius: 999px;
  background: #fff4d7;
  color: var(--amber-dark);
  padding: 7px 12px;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.service-main h3 {
  margin: 20px 0 14px;
  font-size: 30px;
}

.service-main > p {
  max-width: 620px;
  margin: 0;
  color: var(--slate);
}

.service-main h4 {
  margin: 30px 0 0;
  font-size: 14px;
}

.check-list {
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 27px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--amber-dark);
  font-weight: 900;
}

.price-box {
  padding: 52px 44px;
  background: var(--ink);
  color: #fff;
}

.price-box > div > span,
.price-box p {
  color: #94a3b8;
  font-size: 12px;
}

.price-box strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
  line-height: 1.3;
}

.price-box strong small {
  margin-left: 4px;
  font-size: 14px;
}

.price-box p {
  margin: 4px 0 0;
}

.price-box hr {
  margin: 30px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.price-box .button {
  width: 100%;
  margin-top: 34px;
}

.service-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.center-heading {
  max-width: 720px;
  margin: 0 auto 62px;
  text-align: center;
}

.center-heading > p:last-child {
  margin: 16px 0 0;
  color: var(--slate);
}

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

.flow-list::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 9%;
  right: 9%;
  height: 1px;
  background: #dbe2ea;
}

.flow-list li {
  position: relative;
  padding: 0 14px;
  text-align: center;
}

.flow-list li > span {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  margin: 0 auto 24px;
  border: 7px solid #fff;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(217, 119, 6, 0.18);
}

.flow-list h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.flow-list p {
  margin: 0;
  color: var(--slate);
  font-size: 12px;
}

.flow-cta {
  margin-top: 52px;
  text-align: center;
}

.message {
  position: relative;
  overflow: hidden;
  border-top: 6px solid var(--amber);
  background: #ffe8ad;
}

.message-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.message-inner > p:not(.section-label) {
  max-width: 760px;
  margin: 28px auto 0;
  color: #29384d;
}

.message-symbol {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -80px;
  bottom: -170px;
  opacity: 0.08;
  transform: rotate(-8deg);
}

.faq {
  background: #eef2f7;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 94px;
}

.faq-heading > p:last-child {
  color: var(--slate);
}

.faq-list {
  border-top: 1px solid #dbe2ea;
}

.faq-list details {
  border-bottom: 1px solid #dbe2ea;
}

.faq-list summary {
  padding: 28px 6px;
  display: flex;
  gap: 18px;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  margin-left: auto;
  color: var(--amber-dark);
  font-size: 24px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list summary span {
  color: var(--amber-dark);
  font-family: Arial, sans-serif;
  font-weight: 900;
}

.faq-list details > p {
  margin: -8px 0 0;
  padding: 0 48px 28px;
  color: var(--slate);
}

.contact {
  background: #fff;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 76px;
  padding: 68px;
  border-radius: 30px;
  background: var(--ink);
  color: #fff;
}

.contact-copy .section-label {
  color: #fbbf24;
}

.contact-copy > p:not(.section-label) {
  margin: 26px 0 0;
  color: #aab6c6;
}

.contact-title {
  font-size: clamp(34px, 3.2vw, 42px) !important;
}

.contact-title span {
  display: block;
  white-space: nowrap;
}

.contact-copy ul {
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
  color: #dbe3ec;
  font-size: 13px;
}

.contact-copy li::before {
  content: "✓";
  margin-right: 10px;
  color: #fbbf24;
  font-weight: 900;
}

.contact-form {
  padding: 36px;
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
}

.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 800;
}

.contact-form em {
  margin-left: 5px;
  color: var(--amber-dark);
  font-size: 10px;
  font-style: normal;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin: 7px 0 17px;
  border: 1px solid #d9e0e8;
  border-radius: 11px;
  background: #fbfcfd;
  padding: 12px 13px;
  outline: none;
  color: var(--ink);
  font-size: 13px;
  transition:
    border 160ms ease,
    box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.13);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a4afbd;
}

.form-button {
  width: 100%;
  margin-top: 2px;
}

.form-button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.form-note {
  margin: 12px 0 0;
  color: #94a3b8;
  font-size: 10px;
  text-align: center;
}

footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.tomosu-hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.form-alert {
  margin: 0 0 20px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
}

.form-success {
  border: 1px solid #86d7ad;
  background: #ecfdf5;
  color: #166534;
}

.form-error {
  border: 1px solid #f1a7a7;
  background: #fff1f2;
  color: #9f1239;
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer-inner img {
  width: 220px;
  height: auto;
}

.footer-inner p {
  margin: 0;
  color: var(--slate);
  font-size: 12px;
}

.footer-inner small {
  color: #94a3b8;
  font-size: 11px;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

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

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 74px;
    gap: 56px;
  }

  .hero-copy {
    max-width: 720px;
  }

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

  .section-heading,
  .promises .container,
  .faq-layout,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .promise-intro {
    position: static;
  }

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

  .issue-card {
    min-height: auto;
  }

  .service-panel {
    grid-template-columns: 1fr;
  }

  .flow-list {
    grid-template-columns: 1fr 1fr;
    row-gap: 38px;
  }

  .flow-list::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .hero-inner,
  .container,
  .narrow,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    height: 70px;
  }

  .brand {
    width: 174px;
  }

  .header-cta {
    padding: 9px 15px;
    font-size: 11px;
  }

  .hero-inner {
    padding: 62px 0 58px;
  }

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

  .hero-lead {
    font-size: 16px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-facts li,
  .hero-facts li + li {
    padding: 14px;
  }

  .powerpoint-badge {
    margin-bottom: 18px;
  }

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

  .orbit-one {
    width: 350px;
    height: 350px;
  }

  .orbit-two {
    width: 290px;
    height: 290px;
  }

  .visual-card-main {
    width: min(330px, calc(100vw - 52px));
    height: 372px;
    padding: 28px;
  }

  .visual-card-back {
    width: min(310px, calc(100vw - 72px));
    height: 350px;
  }

  .symbol-wrap {
    width: 86px;
    height: 86px;
  }

  .visual-note {
    right: auto;
    left: 50%;
    bottom: 0;
    white-space: nowrap;
    transform: translateX(-50%);
    font-size: 10px;
  }

  .section {
    padding: 78px 0;
  }

  .intro h2,
  .section-heading h2,
  .promise-intro h2,
  .center-heading h2,
  .message h2,
  .faq-heading h2,
  .contact h2 {
    font-size: 32px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 38px;
  }

  .section-heading {
    gap: 24px;
    margin-bottom: 34px;
  }

  .card-topline {
    margin-bottom: 36px;
  }

  .promise-item {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .service-main,
  .price-box {
    padding: 34px 24px;
  }

  .check-list,
  .flow-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .flow-list li {
    padding: 0 18px 24px;
    text-align: left;
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 14px;
  }

  .flow-list li > span {
    grid-row: 1 / 3;
    margin: 0;
  }

  .flow-list h3,
  .flow-list p {
    grid-column: 2;
  }

  .contact-panel {
    padding: 38px 20px;
    border-radius: 22px;
  }

  .contact-title {
    font-size: 29px !important;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .footer-inner {
    padding: 38px 0;
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
