* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  color: #1f2937;
  line-height: 1.8;
  background:
    radial-gradient(circle at 8% 6%, rgba(37, 99, 235, 0.08), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(14, 165, 233, 0.07), transparent 24%),
    #ffffff;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(37, 99, 235, 0.16);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
  margin: 0;
  padding: 14px 32px;
}

.site-logo {
  font-size: 20px;
  font-weight: 800;
  color: #2563eb;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  margin-left: auto;
}


.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  color: #374151;
}

.site-nav a:hover {
  color: #2563eb;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-btn {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.header-btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
}

.header-btn-secondary {
  background: #ffffff;
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.4);
}

.section {
  padding: 72px 8%;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
  padding: 34px 8% 78px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(37, 99, 235, 0.24), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(14, 165, 233, 0.22), transparent 26%),
    radial-gradient(circle at 72% 72%, rgba(124, 58, 237, 0.16), transparent 30%),
    linear-gradient(135deg, #eef4ff 0%, #ffffff 58%, #eef9ff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(37, 99, 235, 0.10);
  border-radius: 28px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: conic-gradient(from 180deg, rgba(37, 99, 235, 0.25), rgba(14, 165, 233, 0.2), rgba(124, 58, 237, 0.18), rgba(37, 99, 235, 0.25));
  filter: blur(22px);
  opacity: 0.55;
  pointer-events: none;
}

.hero__content,
.hero-form {
  position: relative;
  z-index: 1;
}

.hero__content {
  padding-top: 4px;
}

.badge {
  display: inline-block;
  padding: 7px 16px;
  background: linear-gradient(90deg, #dbeafe 0%, #e0f2fe 52%, #ede9fe 100%);
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}

h1 {
  font-size: 42px;
  line-height: 1.35;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 30px;
  line-height: 1.45;
  margin: 0 0 28px;
  text-align: center;
}

h3 {
  font-size: 21px;
  margin: 0 0 12px;
}

p {
  margin: 0 0 16px;
}

.hero-target {
  font-size: 17px;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 18px;
}

.lead {
  font-size: 18px;
  margin-bottom: 22px;
}

.hero-result {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 18px;
  padding: 18px 20px;
  margin: 22px 0;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.10);
}

.hero-result h3 {
  font-size: 18px;
  color: #1e3a8a;
  margin-bottom: 8px;
}

.hero-result ul {
  margin: 0;
  padding-left: 20px;
}

.hero-result li {
  margin-bottom: 4px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
  border: 1px solid rgba(37, 99, 235, 0.24);
  border-radius: 999px;
  padding: 8px 15px 8px 32px;
  font-size: 14px;
  font-weight: 800;
  color: #1e40af;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.10);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.75);
}

.cta-row,
.final-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.86);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.42);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.10);
}

.form-box {
  background: rgba(255, 255, 255, 0.94);
  padding: 30px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.16);
}

.form-box h2 {
  font-size: 24px;
  text-align: left;
  margin-bottom: 8px;
}

.form-note {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 16px;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font: inherit;
  background: #ffffff;
}

button {
  width: 100%;
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  color: #ffffff;
  padding: 15px;
  border: 0;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.24);
}

.form-under-note {
  margin-top: 18px;
  padding: 14px 16px;
  background: #f8fafc;
  border-radius: 12px;
  font-size: 13px;
  color: #374151;
}

.form-under-note p {
  margin: 0 0 6px;
}

.form-support-note {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.form-support-note li {
  position: relative;
  padding-left: 16px;
  color: #374151;
}

.form-support-note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
}

.privacy-check input {
  width: auto;
  margin: 5px 0 0;
}

.privacy-check strong {
  color: #dc2626;
}

.sub {
  max-width: 840px;
  margin: 0 auto 36px;
  text-align: center;
  color: #4b5563;
}

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

.card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.06);
}

.gray {
  background:
    radial-gradient(circle at 12% 16%, rgba(37, 99, 235, 0.08), transparent 28%),
    #f9fafb;
}

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

.problem-list li {
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 14px;
  padding: 16px 18px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.05);
}

.problem-list li::before {
  content: "✓";
  color: #2563eb;
  margin-right: 8px;
  font-weight: 900;
}

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

.reason-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.06);
}

.reason-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 36px;
  padding: 0 10px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
  color: #1d4ed8;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.12);
}

.section-cta {
  position: relative;
  margin: 42px auto 0;
  padding: 28px;
  max-width: 860px;
  text-align: center;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.07);
}

.section-cta p {
  font-size: 18px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.06);
}

th,
td {
  border: 1px solid #e5e7eb;
  padding: 14px;
  text-align: center;
  vertical-align: middle;
}

th {
  background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
  color: #1e3a8a;
}

td:first-child {
  text-align: left;
  font-weight: 700;
}

.price {
  font-size: 28px;
  color: #2563eb;
  font-weight: 800;
  margin-bottom: 10px;
}

.note {
  font-size: 13px;
  color: #6b7280;
  margin-top: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: step;
}

.step {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.06);
}

.step::before {
  counter-increment: step;
  content: "STEP " counter(step);
  display: inline-block;
  margin-bottom: 10px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 800;
}

.faq-toggle {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-toggle__item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-toggle__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.faq-toggle__title:hover {
  color: #2563eb;
}

.faq-toggle__button {
  flex: 0 0 auto;
  font-size: 32px;
  line-height: 1;
  color: #2563eb;
  transition: 0.3s;
}

.faq-toggle__answer {
  display: none;
  margin: 0;
}

.faq-toggle__answer-text {
  padding: 0 0 24px;
  margin: 0;
  color: #4b5563;
  line-height: 1.8;
}

.faq-toggle__item.active .faq-toggle__answer {
  display: block;
}

.contact {
  background:
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.16), transparent 28%),
    radial-gradient(circle at 80% 60%, rgba(14, 165, 233, 0.16), transparent 28%),
    #eef4ff;
  text-align: center;
}

.final-cta {
  justify-content: center;
  margin-top: 28px;
}

.final-note {
  margin-top: 16px;
  font-size: 13px;
  color: #6b7280;
}

.download-section {
  background: #ffffff;
}

.download-area {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.download-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(37, 99, 235, 0.10);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.04);
}

.download-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.download-card li {
  position: relative;
  padding-left: 18px;
  color: #374151;
}

.download-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 7px;
  height: 7px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #93c5fd;
}

.small-note {
  font-size: 13px;
  color: #6b7280;
}

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

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

  .download-area {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero,
  .cards,
  .problem-list,
  .steps,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 25px;
  }

  .section,
  .hero {
    padding: 48px 6%;
  }

  .site-header__inner {
    padding: 12px 6%;
  }

  .site-header__right {
    gap: 8px;
  }

  table {
    font-size: 14px;
  }

  .btn {
    width: 100%;
  }

  .header-buttons {
    gap: 6px;
  }

  .header-btn {
    padding: 8px 10px;
    font-size: 12px;
  }
}


.function-card {
  position: relative;
  overflow: hidden;
}



.site-footer {
  background:
    radial-gradient(circle at 12% 20%, rgba(37, 99, 235, 0.16), transparent 28%),
    radial-gradient(circle at 88% 30%, rgba(14, 165, 233, 0.14), transparent 30%),
    linear-gradient(135deg, #0f172a 0%, #1e3a8a 58%, #0f172a 100%);
  color: #ffffff;
  padding: 56px 8% 24px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(6, 182, 212, 0.26);
}

.footer-logo strong {
  display: block;
  font-size: 20px;
  line-height: 1.3;
}

.footer-logo p,
.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-company {
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 8px !important;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 36px;
}

.footer-links h3 {
  font-size: 15px;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.site-footer__bottom {
  max-width: 1180px;
  margin: 36px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

@media (max-width: 900px) {
  .site-footer__inner,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 48px 6% 24px;
  }
}


.reason-card,
.function-card {
  min-height: 218px;
}

.reason-card h3,
.function-card h3 {
  min-height: 58px;
}

.reason-card p,
.function-card p {
  color: #4b5563;
}

.function-card {
  position: relative;
  overflow: visible;
}


.hero-visual-card {
  max-width: 520px;
  margin: 8px 0 30px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
  overflow: hidden;
}

.visual-header {
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  background: linear-gradient(90deg, #f8fbff 0%, #eff6ff 100%);
  border-bottom: 1px solid rgba(37, 99, 235, 0.10);
}

.visual-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bfdbfe;
}

.visual-body {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.visual-score {
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.visual-score strong {
  display: block;
  color: #1e3a8a;
  font-size: 15px;
  margin-bottom: 4px;
}

.visual-score p {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
}

.visual-lines {
  display: grid;
  gap: 10px;
}

.visual-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #93c5fd 0%, #67e8f9 100%);
  opacity: 0.85;
}


.site-footer__bottom {
  text-align: center;
}

.footer-logo--text {
  gap: 0;
}


.reason-grid,
.function-cards {
  align-items: stretch;
}

.reason-card,
.function-card {
  display: flex;
  flex-direction: column;
}


.section-cta .btn-primary {
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.18);
}


@media (max-width: 900px) {
  .visual-body {
    grid-template-columns: 1fr;
  }
}


.contact-panel {
  max-width: 940px;
  margin: 0 auto;
  padding: 42px 36px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 18%, rgba(37, 99, 235, 0.12), transparent 30%),
    radial-gradient(circle at 88% 50%, rgba(14, 165, 233, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.09);
}

.contact-panel .sub {
  margin-bottom: 24px;
}

.reason-card__icon {
  min-width: auto;
  height: 34px;
  padding: 0 14px;
  font-size: 12px;
  letter-spacing: 0.01em;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .contact-panel {
    padding: 34px 22px;
  }
}


.contact-panel {
  background:
    radial-gradient(circle at 12% 18%, rgba(37, 99, 235, 0.055), transparent 34%),
    radial-gradient(circle at 88% 50%, rgba(14, 165, 233, 0.055), transparent 36%),
    rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(37, 99, 235, 0.10);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.07);
}

.page-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.22);
  background: rgba(255, 255, 255, 0.52);
  color: #2563eb;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.14);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.page-top.is-show {
  opacity: 0.72;
  pointer-events: auto;
  transform: translateY(0);
}

.page-top:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.82);
}

@media (max-width: 900px) {
  .page-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
}


.card-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  font-size: 22px;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.08);
}

.thanks-section {
  min-height: 64vh;
  display: grid;
  place-items: center;
  padding: 88px 8%;
  background:
    radial-gradient(circle at 18% 18%, rgba(37, 99, 235, 0.14), transparent 30%),
    radial-gradient(circle at 82% 34%, rgba(14, 165, 233, 0.12), transparent 30%),
    linear-gradient(135deg, #eef4ff 0%, #ffffff 65%);
}

.thanks-card {
  max-width: 720px;
  width: 100%;
  padding: 46px 38px;
  text-align: center;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.12);
}

.thanks-badge {
  display: inline-block;
  padding: 7px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  font-weight: 800;
}

.thanks-card h1 {
  font-size: 34px;
  margin-bottom: 16px;
}

.thanks-card p {
  color: #4b5563;
  margin-bottom: 28px;
}

@media (max-width: 900px) {
  .thanks-section {
    padding: 64px 6%;
  }

  .thanks-card {
    padding: 36px 24px;
  }
}


.card-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.card-title-row h3 {
  margin: 0;
  min-height: auto;
}

.card-title-row .card-emoji {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.reason-card h3,
.function-card h3 {
  min-height: auto;
}

.thanks-body {
  background: #ffffff;
}

.thanks-hero {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 92px 8%;
  background:
    radial-gradient(circle at 16% 18%, rgba(37, 99, 235, 0.13), transparent 30%),
    radial-gradient(circle at 84% 28%, rgba(14, 165, 233, 0.11), transparent 30%),
    linear-gradient(135deg, #eef4ff 0%, #ffffff 62%, #f8fbff 100%);
}

.thanks-card--wide {
  max-width: 860px;
  text-align: left;
}

.thanks-card--wide h1 {
  text-align: left;
}

.thanks-lead {
  font-size: 17px;
  line-height: 1.9;
}

.thanks-next {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.thanks-next__item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 16px;
  background: rgba(248, 251, 255, 0.9);
  border: 1px solid rgba(37, 99, 235, 0.10);
}

.thanks-next__item span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.thanks-next__item strong {
  display: block;
  color: #1e3a8a;
  margin-bottom: 2px;
}

.thanks-next__item p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
}

.thanks-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .thanks-hero {
    padding: 64px 6%;
  }

  .thanks-card--wide {
    padding: 34px 22px;
  }

  .thanks-actions .btn {
    width: 100%;
  }
}


.thanks-hero {
  background:
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.thanks-card {
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.thanks-badge {
  background: #f3f4f6;
  color: #374151;
}

.thanks-next__item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

.thanks-next__item span {
  background: #eef2ff;
  color: #2563eb;
  box-shadow: none;
}

.thanks-next__item strong {
  color: #111827;
}

.thanks-card .btn-primary {
  background: #2563eb;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.16);
}

.thanks-card .btn-secondary {
  box-shadow: none;
}


/* V12 compact hero with dashboard visual */
.v12-design .hero {
  min-height: 720px;
  grid-template-columns: 1.02fr 0.98fr;
  padding: 38px 8% 70px;
  background:
    radial-gradient(circle at 84% 18%, rgba(14, 165, 233, 0.28), transparent 28%),
    radial-gradient(circle at 14% 16%, rgba(37, 99, 235, 0.20), transparent 28%),
    radial-gradient(circle at 76% 78%, rgba(124, 58, 237, 0.15), transparent 30%),
    linear-gradient(135deg, #f3f8ff 0%, #ffffff 48%, #eefaff 100%);
}

.v12-design .hero h1 {
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.22;
  margin-bottom: 18px;
}

.v12-design .compact-lead {
  max-width: 620px;
  font-size: 17px;
  margin-bottom: 18px;
}

.v12-design .hero-points--compact {
  margin: 18px 0 22px;
}

.v12-design .hero-points--compact li {
  padding-top: 7px;
  padding-bottom: 7px;
}

.alpha-hero-dashboard {
  position: relative;
  max-width: 610px;
  margin: 16px 0 28px;
}

.dashboard-window {
  overflow: hidden;
  border-radius: 26px;
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.20);
  border: 1px solid rgba(255,255,255,.24);
}

.dashboard-top {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  background: rgba(255,255,255,.08);
}

.dashboard-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #60a5fa;
}

.dashboard-top strong {
  margin-left: 10px;
  font-size: 13px;
  color: #cbd5e1;
}

.dashboard-main {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(37,99,235,.34), transparent 30%),
    linear-gradient(135deg, #0f172a, #1e3a8a);
}

.dashboard-score {
  position: relative;
  min-height: 158px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
}

.dashboard-score p {
  margin: 0 0 8px;
  color: #bfdbfe;
  font-size: 13px;
}

.dashboard-score strong {
  font-size: 28px;
}

.score-ring {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 9px solid rgba(255,255,255,.16);
  border-top-color: #22d3ee;
  border-right-color: #60a5fa;
}

.dashboard-checks {
  display: grid;
  gap: 10px;
}

.dashboard-checks div {
  padding: 13px;
  border-radius: 15px;
  background: rgba(255,255,255,.92);
  color: #0f172a;
}

.dashboard-checks span {
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 8px;
}

.dashboard-checks em {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
}

.alpha-float-badge {
  position: absolute;
  z-index: 2;
  padding: 11px 15px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(37,99,235,.12);
  box-shadow: 0 12px 26px rgba(37,99,235,.14);
  font-weight: 900;
  color: #1e3a8a;
  font-size: 13px;
}

.badge-good {
  top: -16px;
  right: 18px;
}

.badge-report {
  bottom: -14px;
  left: 18px;
}

.v12-design .form-box {
  margin-top: 6px;
}

@media (max-width: 1100px) {
  .v12-design .hero {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .v12-design .hero {
    padding: 42px 6% 56px;
  }

  .dashboard-main {
    grid-template-columns: 1fr;
  }

  .alpha-float-badge {
    position: static;
    display: inline-block;
    margin: 8px 8px 8px 0;
  }
}


.hero-for {
  display: inline-block;
  margin: 0 0 14px;
  padding: 9px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: #1e3a8a;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.06);
}

.consultation-benefits {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.consultation-benefits li {
  position: relative;
  padding-left: 22px;
  color: #374151;
  font-size: 14px;
  font-weight: 700;
}

.consultation-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 900;
}

.trust-grid,
.deliverable-grid,
.seo-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.trust-card,
.deliverable-card,
.seo-content-grid article {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.06);
}

.trust-card span,
.deliverable-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 900;
}

.trust-card strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
  color: #111827;
}

.center-note {
  max-width: 920px;
  margin: 24px auto 0;
  text-align: center;
}

.deliverable-note {
  max-width: 920px;
  margin: 28px auto 0;
  padding: 22px 24px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
}

.deliverable-note p {
  margin-bottom: 8px;
}

.seo-content-grid {
  grid-template-columns: repeat(4, 1fr);
}

.seo-content-grid article h3 {
  color: #1e3a8a;
}

@media (max-width: 1100px) {
  .seo-content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .trust-grid,
  .deliverable-grid,
  .seo-content-grid {
    grid-template-columns: 1fr;
  }
}


/* V14 SEO strengthened sections */
.target-grid,
.trust-grid,
.deliverable-grid,
.recommended-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.target-card,
.trust-card,
.deliverable-card,
.seo-guide-grid article {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.06);
}

.target-card span,
.trust-card span,
.deliverable-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 900;
}

.target-card h3,
.trust-card strong,
.deliverable-card h3 {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
  color: #111827;
}

.seo-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.seo-guide-grid article h3 {
  color: #1e3a8a;
}

.diagnostic-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.diagnostic-list > div {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.05);
}

.diagnostic-list h3 {
  color: #1e3a8a;
}

.diagnostic-list ul {
  margin: 0;
  padding-left: 20px;
}

.deliverable-note {
  max-width: 920px;
  margin: 28px auto 0;
  padding: 22px 24px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
}

.deliverable-note p {
  margin-bottom: 8px;
}

.recommended-grid {
  grid-template-columns: repeat(4, 1fr);
}

.recommended-grid div {
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.05);
}

.recommended-grid span {
  display: inline-block;
  margin-bottom: 8px;
  color: #2563eb;
  font-weight: 900;
}

.recommended-grid p {
  margin: 0;
  font-weight: 700;
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.card-title-row h3 {
  margin: 0;
  min-height: auto;
}

.card-title-row .card-emoji {
  flex: 0 0 auto;
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .seo-guide-grid,
  .diagnostic-list,
  .recommended-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .target-grid,
  .trust-grid,
  .deliverable-grid,
  .seo-guide-grid,
  .diagnostic-list,
  .recommended-grid {
    grid-template-columns: 1fr;
  }
}


/* V15 adjustments */
.hero-download-only {
  margin-top: 6px;
}

.hero-download-only .btn-secondary {
  min-width: 220px;
}

.seo-guide-section {
  background: #ffffff;
}


/* Contact LP V16 */
.hero-side-visual {
  position: relative;
  z-index: 1;
  align-self: center;
}

.contact-form-panel {
  max-width: 820px;
  text-align: left;
}

.contact-form-panel h2 {
  text-align: center;
}

.contact-only-form {
  max-width: 680px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.required-mark {
  color: #dc2626;
  font-size: 12px;
  font-weight: 900;
  margin-left: 4px;
}

.alpha-hero-dashboard {
  position: relative;
  max-width: 610px;
  margin: 16px 0 28px;
}

.dashboard-window {
  overflow: hidden;
  border-radius: 26px;
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.20);
  border: 1px solid rgba(255,255,255,.24);
}

.dashboard-top {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  background: rgba(255,255,255,.08);
}

.dashboard-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #60a5fa;
}

.dashboard-top strong {
  margin-left: 10px;
  font-size: 13px;
  color: #cbd5e1;
}

.dashboard-main {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(37,99,235,.34), transparent 30%),
    linear-gradient(135deg, #0f172a, #1e3a8a);
}

.dashboard-score {
  position: relative;
  min-height: 158px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
}

.dashboard-score p {
  margin: 0 0 8px;
  color: #bfdbfe;
  font-size: 13px;
}

.dashboard-score strong {
  font-size: 28px;
}

.score-ring {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 9px solid rgba(255,255,255,.16);
  border-top-color: #22d3ee;
  border-right-color: #60a5fa;
}

.dashboard-checks {
  display: grid;
  gap: 10px;
}

.dashboard-checks div {
  padding: 13px;
  border-radius: 15px;
  background: rgba(255,255,255,.92);
  color: #0f172a;
}

.dashboard-checks span {
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 8px;
}

.dashboard-checks em {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
}

.alpha-float-badge {
  position: absolute;
  z-index: 2;
  padding: 11px 15px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(37,99,235,.12);
  box-shadow: 0 12px 26px rgba(37,99,235,.14);
  font-weight: 900;
  color: #1e3a8a;
  font-size: 13px;
}

.badge-good {
  top: -16px;
  right: 18px;
}

.badge-report {
  bottom: -14px;
  left: 18px;
}

@media (max-width: 900px) {
  .dashboard-main {
    grid-template-columns: 1fr;
  }

  .alpha-float-badge {
    position: static;
    display: inline-block;
    margin: 8px 8px 8px 0;
  }
}


/* Contact LP V17 adjustments */
.hero-side-visual {
  align-self: start;
  padding-top: 8px;
}

.hero-side-visual .alpha-hero-dashboard {
  max-width: 680px;
  margin: 0;
}

.hero-side-cta {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  text-align: center;
}

.hero-side-cta .btn {
  min-width: 260px;
}

.hero__content .alpha-hero-dashboard {
  display: none;
}

.v12-design .hero,
.hero {
  align-items: start;
}

.dashboard-window {
  border-radius: 30px;
}

.dashboard-main {
  padding: 30px;
  gap: 26px;
}

.dashboard-score {
  min-height: 190px;
}

.dashboard-score strong {
  font-size: 34px;
}

.score-ring {
  width: 82px;
  height: 82px;
}

.dashboard-checks div {
  padding: 16px;
}

.form-support-note--vertical {
  display: grid;
  gap: 6px;
}

.form-support-note--vertical li {
  width: 100%;
}

.privacy-check {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
}

@media (max-width: 900px) {
  .hero-side-visual .alpha-hero-dashboard {
    max-width: none;
  }

  .hero-side-cta .btn {
    width: 100%;
    min-width: 0;
  }

  .dashboard-score {
    min-height: 150px;
  }
}


/* Contact LP V18 */
.hero {
  min-height: 720px;
  align-items: center;
}

.hero__content {
  max-width: 680px;
}

.hero-problem-checks {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.hero-problem-checks li {
  position: relative;
  padding: 12px 14px 12px 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.06);
  font-weight: 800;
  color: #1f2937;
}

.hero-problem-checks li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #2563eb;
  font-weight: 900;
}

.hero-main-cta {
  margin-top: 24px;
}

.hero-main-cta .btn {
  min-width: 260px;
}

.hero-side-visual {
  align-self: center;
}

.hero-side-visual .alpha-hero-dashboard {
  max-width: 700px;
}

.dashboard-window {
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
}

.form-support-note--vertical {
  display: grid;
  gap: 8px;
}

.privacy-note-text {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.7;
}

.report-sample-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(37, 99, 235, 0.07), transparent 28%),
    #ffffff;
}

.report-sample-area {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.report-mock {
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 20px 46px rgba(37, 99, 235, 0.12);
}

.report-mock__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
}

.report-mock__header span {
  color: #2563eb;
  font-weight: 900;
}

.report-mock__header strong {
  color: #1e3a8a;
}

.report-score-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 22px;
}

.report-score-grid div {
  padding: 16px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.report-score-grid span {
  display: block;
  color: #6b7280;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
}

.report-score-grid strong {
  display: block;
  color: #111827;
  font-size: 18px;
  margin-bottom: 12px;
}

.report-score-grid em {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
}

.report-score-grid em.is-warning {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.report-comment {
  margin: 0 22px 22px;
  padding: 20px;
  border-radius: 18px;
  background: #0f172a;
  color: #ffffff;
}

.report-comment h3 {
  color: #ffffff;
}

.report-comment ul {
  margin: 0;
  padding-left: 20px;
}

.report-copy h3 {
  font-size: 26px;
  color: #1e3a8a;
}

.report-copy ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.report-copy li {
  position: relative;
  padding-left: 22px;
  font-weight: 700;
}

.report-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
  }

  .report-sample-area {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-main-cta .btn {
    width: 100%;
    min-width: 0;
  }

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

  .report-mock__header {
    display: block;
  }
}


/* V21 rollback adjustments */
.hero {
  text-align: left;
}

.hero__content {
  text-align: left;
}

.hero-side-visual {
  align-self: center;
}

.hero-side-visual .alpha-hero-dashboard {
  max-width: 700px;
}

.target-visual-strip,
.trust-visual-note,
.hero-bg-dashboard,
.abstract-report {
  display: none !important;
}

.contact-form-panel {
  text-align: left;
}

.report-sample-section {
  display: block;
}


/* V23 report sample and flow */
.report-sample-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(37, 99, 235, 0.08), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(14, 165, 233, 0.07), transparent 30%),
    #ffffff;
}

.report-sample-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.report-document {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.13);
}

.report-document__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
}

.report-document__head span {
  display: block;
  color: #2563eb;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 4px;
}

.report-document__head h3 {
  margin: 0;
  color: #1e3a8a;
  font-size: 22px;
}

.report-document__head strong {
  align-self: start;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  color: #2563eb;
  font-size: 12px;
}

.report-summary {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  padding: 26px;
}

.report-total-score {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 190px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 38%, rgba(37, 99, 235, 0.16), transparent 38%),
    #f8fafc;
  border: 1px solid #e5e7eb;
}

.report-total-score p {
  margin: 0;
  color: #4b5563;
  font-weight: 800;
}

.report-total-score strong {
  display: block;
  color: #2563eb;
  font-size: 52px;
  line-height: 1;
}

.report-total-score strong span {
  font-size: 20px;
  color: #6b7280;
}

.report-total-score small {
  color: #f59e0b;
  font-weight: 900;
}

.report-status-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.status-item {
  padding: 18px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.status-item span {
  display: block;
  color: #6b7280;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 6px;
}

.status-item strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #111827;
}

.status-item strong::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  font-size: 13px;
}

.status-item.is-warning strong::before {
  content: "!";
  background: #fef3c7;
  color: #d97706;
}

.report-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 0 26px 26px;
}

.report-detail-grid div {
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

.report-detail-grid h4,
.report-recommend h4 {
  margin: 0 0 8px;
  color: #1e3a8a;
  font-size: 16px;
}

.report-detail-grid p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.7;
}

.report-recommend {
  margin: 0 26px 26px;
  padding: 22px;
  border-radius: 20px;
  background: #0f172a;
  color: #ffffff;
}

.report-recommend h4 {
  color: #ffffff;
}

.report-recommend ul {
  margin: 0;
  padding-left: 20px;
}

.report-recommend li {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.84);
}

.section-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 13px;
  font-weight: 900;
}

.report-side-copy h3 {
  font-size: 30px;
  color: #1e3a8a;
}

.report-side-copy ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.report-side-copy li {
  position: relative;
  padding-left: 24px;
  font-weight: 800;
}

.report-side-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
}

.flow-section {
  background: #f9fafb;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 34px auto 0;
}

.flow-card {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.06);
}

.flow-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 14px;
}

.flow-card h3 {
  font-size: 19px;
}

@media (max-width: 1100px) {
  .report-sample-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .report-summary,
  .report-detail-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .report-status-list {
    grid-template-columns: 1fr;
  }

  .report-document__head {
    display: block;
  }

  .report-document__head strong {
    display: inline-block;
    margin-top: 10px;
  }
}


/* Integrated contact LP */
.integrated-contact-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(37, 99, 235, 0.10), transparent 30%),
    radial-gradient(circle at 86% 24%, rgba(14, 165, 233, 0.10), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 62%);
}

.integrated-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 42px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.integrated-contact-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.08);
  backdrop-filter: blur(10px);
}

.integrated-contact-card h2 {
  text-align: left;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.38;
  margin: 22px 0 16px;
  color: #111827;
}

.integrated-contact-card p {
  color: #374151;
  line-height: 1.9;
}

.consult-visual {
  margin: 26px 0;
}

.consult-visual__window {
  overflow: hidden;
  border-radius: 22px;
  background: #0f172a;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
}

.consult-visual__top {
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.consult-visual__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.consult-visual__row span {
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 900;
}

.consult-visual__row em {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
}

.consult-visual__row.is-warning em {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.integrated-contact-card .contact-message-box {
  margin: 0;
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.05);
}

.integrated-contact-card .contact-message-box h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: #1e3a8a;
}

.integrated-contact-card .contact-message-box ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.integrated-contact-card .contact-message-box li {
  position: relative;
  padding-left: 24px;
  font-weight: 700;
}

.integrated-contact-card .contact-message-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 900;
}

.integrated-contact-form {
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.14);
}

.integrated-contact-form h2 {
  text-align: left;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.required-mark {
  color: #dc2626;
  font-size: 12px;
  font-weight: 900;
  margin-left: 4px;
  white-space: nowrap;
}

.privacy-note-text {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.7;
}

.form-support-note--vertical {
  display: grid;
  gap: 8px;
}

@media (max-width: 980px) {
  .integrated-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .integrated-contact-card {
    padding: 26px 20px;
  }

  .consult-visual__row {
    grid-template-columns: 90px 1fr;
  }
}


/* Final SEO/contact revision */
.site-footer .footer-brand p {
  line-height: 1.8;
}


/* Mobile refinement v2 */
@media (max-width: 900px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-header__inner {
    align-items: center;
  }

  .site-logo {
    font-size: 18px;
  }

  .header-btn-primary {
    padding: 8px 14px;
    font-size: 12px;
  }

  .hero {
    gap: 28px;
  }

  .hero-side-visual {
    order: -1;
  }

  .hero-side-visual .alpha-hero-dashboard {
    max-width: 100%;
  }

  .alpha-hero-dashboard {
    margin: 0 0 18px;
  }

  .dashboard-window {
    border-radius: 22px;
  }

  .dashboard-main {
    padding: 20px;
  }

  .hero__content {
    max-width: none;
  }

  .hero-problem-checks li {
    padding: 11px 12px 11px 38px;
    font-size: 14px;
  }

  .section-cta {
    padding: 24px 18px;
  }

  table {
    display: block;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  th,
  td {
    min-width: 138px;
  }

  td:first-child {
    min-width: 180px;
  }

  .report-document {
    border-radius: 22px;
  }

  .report-summary {
    padding: 20px;
  }

  .report-detail-grid {
    padding: 0 20px 20px;
  }

  .report-recommend {
    margin: 0 20px 20px;
  }

  .integrated-contact-grid {
    gap: 24px;
  }

  .integrated-contact-card,
  .integrated-contact-form {
    border-radius: 22px;
  }

  .integrated-contact-card h2 {
    font-size: 28px;
  }

  .form-box {
    padding: 24px 20px;
  }

  input,
  textarea,
  select {
    font-size: 16px;
  }

  .thanks-card--wide h1 {
    font-size: 28px;
  }
}

@media (max-width: 560px) {
  .site-header__inner {
    padding: 10px 5%;
  }

  .site-logo {
    font-size: 16px;
  }

  .header-btn {
    padding: 7px 10px;
  }

  .v12-design .hero h1,
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
  }

  .hero-for {
    font-size: 13px;
  }

  .badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .dashboard-score strong {
    font-size: 26px;
  }

  .score-ring {
    width: 64px;
    height: 64px;
  }

  .site-footer__inner {
    gap: 28px;
  }

  .footer-links {
    gap: 24px;
  }
}


/* V30 visual enhancement: no people illustrations */
.md-visual-hero{display:flex;align-items:center;justify-content:center}.maildoctor-hero-board{position:relative;width:min(560px,100%);min-height:520px;border-radius:34px;background:radial-gradient(circle at 18% 18%,rgba(37,99,235,.18),transparent 30%),radial-gradient(circle at 86% 14%,rgba(6,182,212,.16),transparent 28%),linear-gradient(135deg,#f8fbff 0%,#fff 58%,#eff6ff 100%);border:1px solid rgba(37,99,235,.12);box-shadow:0 30px 70px rgba(37,99,235,.16);overflow:hidden}.maildoctor-hero-board:before{content:"";position:absolute;width:280px;height:280px;right:-90px;top:70px;border-radius:50%;background:rgba(37,99,235,.10)}.maildoctor-hero-board:after{content:"";position:absolute;width:220px;height:220px;left:-80px;bottom:80px;border-radius:50%;background:rgba(6,182,212,.10)}.hero-mail-card,.hero-report-card{position:absolute;background:rgba(255,255,255,.92);border:1px solid rgba(37,99,235,.12);border-radius:24px;box-shadow:0 22px 46px rgba(15,23,42,.12);backdrop-filter:blur(14px);z-index:2}.hero-mail-card{left:28px;top:38px;width:280px;padding:18px;transform:rotate(-3deg)}.mail-card-top{display:flex;gap:7px;margin-bottom:14px}.mail-card-top span{width:10px;height:10px;border-radius:50%;background:#cbd5e1}.mail-card-title{font-weight:900;color:#1e3a8a;margin-bottom:14px;font-size:14px}.mail-card-line{height:10px;border-radius:999px;background:#dbeafe;margin-bottom:9px}.mail-card-line.w90{width:90%}.mail-card-line.w70{width:70%}.mail-card-line.w82{width:82%}.mail-card-auth{display:flex;align-items:center;justify-content:space-between;margin-top:12px;padding:10px 12px;border-radius:14px;background:#ecfdf5;color:#047857;font-weight:900}.mail-card-auth.warning{background:#fffbeb;color:#b45309}.hero-report-card{right:28px;bottom:78px;width:320px;padding:22px}.report-card-label{display:inline-flex;padding:6px 12px;border-radius:999px;background:#eff6ff;color:#2563eb;font-weight:900;font-size:12px;margin-bottom:14px}.report-score{display:flex;align-items:end;justify-content:space-between;margin-bottom:18px}.report-score span{color:#475569;font-weight:800}.report-score strong{font-size:54px;line-height:1;color:#1d4ed8}.report-bars{display:grid;gap:12px}.report-bars div{display:grid;grid-template-columns:110px 1fr;align-items:center;gap:12px;font-size:13px;font-weight:900;color:#334155}.report-bars em{height:10px;border-radius:999px;background:linear-gradient(90deg,#2563eb,#06b6d4)}.hero-flow-pills{position:absolute;left:26px;right:26px;bottom:24px;display:flex;align-items:center;justify-content:center;gap:10px;z-index:3}.hero-flow-pills span{padding:10px 14px;border-radius:999px;background:#0f172a;color:#fff;font-weight:900;font-size:13px}.hero-flow-pills i{color:#2563eb;font-style:normal;font-weight:900}.md-visual-process-section{background:radial-gradient(circle at 12% 18%,rgba(37,99,235,.08),transparent 28%),linear-gradient(180deg,#fff 0%,#f8fbff 100%)}.md-visual-process-card{display:grid;grid-template-columns:.9fr 1.1fr;gap:36px;align-items:center;max-width:1180px;margin:0 auto;padding:42px;border-radius:32px;background:rgba(255,255,255,.92);border:1px solid rgba(37,99,235,.12);box-shadow:0 22px 54px rgba(37,99,235,.08)}.md-visual-process-copy h2{text-align:left;font-size:clamp(28px,3vw,42px);line-height:1.35;margin:18px 0 16px}.md-visual-process-copy p{color:#475569;line-height:1.9}.md-process-diagram{display:grid;grid-template-columns:1fr 34px 1fr 34px 1fr 34px 1fr;align-items:center}.process-node{min-height:150px;padding:22px 18px;border-radius:24px;background:radial-gradient(circle at 18% 18%,rgba(37,99,235,.10),transparent 34%),#fff;border:1px solid rgba(37,99,235,.14);box-shadow:0 14px 34px rgba(15,23,42,.08);text-align:center}.process-node strong{display:inline-grid;place-items:center;width:46px;height:46px;margin-bottom:14px;border-radius:16px;background:linear-gradient(135deg,#2563eb,#06b6d4);color:#fff}.process-node span{display:block;font-weight:900;color:#1e293b}.process-node.highlight{background:linear-gradient(135deg,#eff6ff,#fff);border-color:rgba(37,99,235,.28)}.process-arrow{text-align:center;color:#2563eb;font-weight:900;font-size:24px}.md-diagnosis-visual-cta{background:radial-gradient(circle at 88% 22%,rgba(6,182,212,.10),transparent 28%),linear-gradient(135deg,#f8fbff 0%,#fff 60%,#eff6ff 100%)}.md-diagnosis-visual-inner{display:grid;grid-template-columns:.9fr 1.1fr;gap:46px;align-items:center;max-width:1120px;margin:0 auto;padding:42px;border-radius:32px;background:rgba(255,255,255,.88);border:1px solid rgba(37,99,235,.12);box-shadow:0 24px 60px rgba(37,99,235,.10)}.md-diagnosis-visual-inner h2{text-align:left;font-size:clamp(28px,3vw,42px);line-height:1.38;margin:18px 0 16px}.md-diagnosis-visual-inner p{color:#475569;line-height:1.9;margin-bottom:24px}.md-diagnosis-mini-report{position:relative;padding:28px;border-radius:28px;background:#0f172a;color:#fff;box-shadow:0 24px 54px rgba(15,23,42,.20);overflow:hidden}.md-diagnosis-mini-report:before{content:"";position:absolute;width:240px;height:240px;right:-90px;top:-90px;border-radius:50%;background:rgba(37,99,235,.26)}.mini-report-head,.mini-report-grid,.mini-report-note{position:relative;z-index:1}.mini-report-head span{display:inline-flex;padding:6px 12px;border-radius:999px;background:rgba(255,255,255,.12);font-size:12px;font-weight:900;margin-bottom:14px}.mini-report-head strong{display:block;font-size:30px;line-height:1.2}.mini-report-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin:24px 0}.mini-report-grid div{padding:16px;border-radius:18px;background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.12)}.mini-report-grid span{display:block;color:#cbd5e1;font-size:12px;font-weight:800}.mini-report-grid strong{display:block;margin-top:8px;font-size:24px;color:#67e8f9}.mini-report-note{display:grid;gap:10px}.mini-report-note span{display:block;height:10px;border-radius:999px;background:rgba(255,255,255,.18)}.mini-report-note span:nth-child(1){width:92%}.mini-report-note span:nth-child(2){width:74%}.mini-report-note span:nth-child(3){width:84%}@media(max-width:980px){.maildoctor-hero-board{min-height:500px}.md-visual-process-card,.md-diagnosis-visual-inner{grid-template-columns:1fr;padding:30px 22px}.md-process-diagram{grid-template-columns:1fr;gap:12px}.process-arrow{transform:rotate(90deg)}}@media(max-width:640px){.maildoctor-hero-board{min-height:620px;border-radius:26px}.hero-mail-card,.hero-report-card{position:relative;left:auto;right:auto;top:auto;bottom:auto;width:calc(100% - 32px);margin:18px auto;transform:none}.hero-flow-pills{position:relative;left:auto;right:auto;bottom:auto;flex-wrap:wrap;margin:16px}.report-score strong{font-size:44px}.report-bars div{grid-template-columns:96px 1fr}.mini-report-grid{grid-template-columns:1fr}}


/* V31 hero bottom status refinement */
.hero-flow-pills {
  display: none !important;
}

.hero-diagnosis-status {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.status-item {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
  color: #ffffff;
}

.status-dot {
  width: 11px;
  height: 11px;
  margin-top: 6px;
  border-radius: 50%;
  background: #67e8f9;
  box-shadow: 0 0 0 5px rgba(103, 232, 249, 0.14);
}

.status-dot.is-complete {
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.14);
}

.status-dot.is-review {
  background: #f59e0b;
  box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.14);
}

.status-item strong {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: .02em;
}

.status-item small {
  display: block;
  margin-top: 4px;
  color: #cbd5e1;
  font-size: 11px;
  line-height: 1.55;
  font-weight: 700;
}

@media (max-width: 640px) {
  .hero-diagnosis-status {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin: 16px;
  }
}

/* Target/recommended cards: 4 items should be 2 x 2 on desktop */
.target-section .target-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1120px;
  margin: 0 auto;
}

.target-section .target-card {
  min-height: 206px;
}

@media (max-width: 900px) {
  .target-section .target-grid {
    grid-template-columns: 1fr;
  }
}

/* Mail Doctorとは：3カードを均等配置 */
#about .about-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
  margin: 0 auto;
}

#about .about-cards .card {
  height: 100%;
}

@media (max-width: 900px) {
  #about .about-cards {
    grid-template-columns: 1fr;
    max-width: 680px;
  }
}

/* =========================================================
   Compact hero layout v3
   横方向の間延びを抑え、1画面目の情報をコンパクトに整理
========================================================= */
.v12-design .hero,
.hero {
  min-height: 0;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: 42px;
  align-items: center;
  padding: 54px max(32px, calc((100vw - 1180px) / 2)) 58px;
}

.hero__content {
  width: 100%;
  max-width: 620px;
  padding-top: 0;
}

.hero h1 {
  font-size: clamp(40px, 4.2vw, 60px);
  line-height: 1.16;
  margin-bottom: 16px;
}

.hero-for {
  margin-bottom: 12px;
}

.hero .compact-lead {
  margin-bottom: 0;
}

.hero-problem-checks {
  gap: 8px;
  margin: 18px 0 20px;
}

.hero-problem-checks li {
  padding-top: 10px;
  padding-bottom: 10px;
}

.hero-main-cta {
  margin-top: 18px;
}

.hero-side-visual {
  width: 100%;
  max-width: 480px;
  justify-self: end;
}

.maildoctor-hero-board {
  width: 100%;
  min-height: 455px;
  border-radius: 30px;
}

.hero-mail-card {
  left: 22px;
  top: 28px;
  width: 250px;
  padding: 16px;
}

.hero-report-card {
  right: 22px;
  bottom: 66px;
  width: 286px;
  padding: 18px;
}

.report-score strong {
  font-size: 48px;
}

.report-bars div {
  grid-template-columns: 98px 1fr;
}

.hero-diagnosis-status {
  left: 22px;
  right: 22px;
  bottom: 18px;
}

@media (max-width: 980px) {
  .v12-design .hero,
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 46px 24px 52px;
  }

  .hero__content,
  .hero-side-visual {
    max-width: 680px;
    margin-inline: auto;
  }

  .hero-side-visual {
    justify-self: stretch;
  }

  .maildoctor-hero-board {
    min-height: 470px;
  }
}

@media (max-width: 640px) {
  .v12-design .hero,
  .hero {
    padding: 36px 18px 42px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .hero-main-cta .btn {
    width: 100%;
    min-width: 0;
  }

  .maildoctor-hero-board {
    min-height: 0;
  }
}


/* =========================================================
   Final integration revision
   Hero CTA center / Diagnosis and report integration
========================================================= */
.hero-main-cta {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  margin-top: 32px !important;
}

.hero-main-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 420px) !important;
  min-width: 0 !important;
  min-height: 60px;
  font-size: 18px;
}

.diagnosis-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto 22px;
}

.diagnosis-summary > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.06);
}

.diagnosis-summary span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.diagnosis-summary strong {
  color: #111827;
  font-size: 15px;
  line-height: 1.4;
}

.diagnosis-summary small {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.report-sample-caption {
  max-width: 900px;
  margin: 0 auto 28px;
  color: #64748b;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 900px) {
  .diagnosis-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .hero-main-cta .btn {
    width: 100% !important;
  }

  .diagnosis-summary {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   Final horizontal strengths / flow layout
========================================================= */
.hero-main-cta {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  margin-top: 32px !important;
}

.hero-main-cta .btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: min(100%, 420px) !important;
  min-width: 380px !important;
  min-height: 60px;
  font-size: 18px;
}

/* Mail Doctorの強み：横並び */
.strengths-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(37, 99, 235, .06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.strengths-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.strength-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  align-items: start;
  min-height: 230px;
  padding: 30px 26px;
  border: 1px solid rgba(37, 99, 235, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 36px rgba(37, 99, 235, .08);
}

.strength-icon,
.flow-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, .14);
  box-shadow: 0 12px 28px rgba(37, 99, 235, .10);
}

.strength-icon svg,
.flow-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: #2563eb;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.strength-item h3 {
  margin: 6px 0 10px;
  color: #1e3a8a;
  font-size: 20px;
}

.strength-item p {
  margin: 0;
  color: #475569;
  line-height: 1.85;
}

/* ご利用の流れ：横向きタイムライン */
.flow-section {
  background:
    radial-gradient(circle at 90% 16%, rgba(14, 165, 233, .08), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.flow-horizontal {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 42px auto 0;
}

.flow-horizontal::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 9%;
  right: 9%;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  opacity: .32;
}

.flow-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 14px 24px;
}

.flow-number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(37, 99, 235, .22);
}

.flow-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
}

.flow-step h3 {
  margin-bottom: 10px;
  color: #1e3a8a;
  font-size: 19px;
}

.flow-step p {
  margin: 0;
  color: #475569;
  line-height: 1.8;
  font-size: 14px;
}

/* 診断・レポートはレポート画像を主役に */
.report-sample-section .sub {
  margin-bottom: 32px;
}

.diagnosis-summary,
.report-sample-caption {
  display: none !important;
}

@media (max-width: 980px) {
  .strengths-row {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .strength-item {
    min-height: 0;
  }

  .flow-horizontal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 22px;
  }

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

@media (max-width: 640px) {
  .hero-main-cta .btn {
    width: 100% !important;
    min-width: 0 !important;
  }

  .strength-item {
    grid-template-columns: 64px 1fr;
    gap: 16px;
    padding: 24px 20px;
  }

  .strength-icon {
    width: 60px;
    height: 60px;
  }

  .strength-icon svg {
    width: 34px;
    height: 34px;
  }

  .flow-horizontal {
    grid-template-columns: 1fr;
  }

  .flow-step {
    display: grid;
    grid-template-columns: 54px 66px 1fr;
    gap: 12px;
    align-items: center;
    text-align: left;
    padding: 0;
  }

  .flow-number,
  .flow-icon {
    margin: 0;
  }

  .flow-icon {
    width: 62px;
    height: 62px;
  }

  .flow-icon svg {
    width: 32px;
    height: 32px;
  }

  .flow-step h3 {
    margin: 0 0 5px;
  }

  .flow-step p {
    grid-column: 3;
  }
}


/* =========================================================
   Consultant photo section
   Replace img/consultant.png with a stock photo.
========================================================= */
.consultant-section {
  padding-top: 64px;
  padding-bottom: 64px;
  background:
    radial-gradient(circle at 86% 22%, rgba(14, 165, 233, .10), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 60%, #eef7ff 100%);
}

.consultant-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 52px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.consultant-copy h2 {
  text-align: left;
  margin: 14px 0 18px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.35;
}

.consultant-copy > p {
  color: #475569;
  line-height: 1.95;
}

.consultant-points {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.consultant-points li {
  position: relative;
  padding: 14px 18px 14px 46px;
  border-radius: 15px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(37,99,235,.12);
  font-weight: 800;
  color: #1e3a8a;
  box-shadow: 0 8px 20px rgba(37,99,235,.05);
}

.consultant-points li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #2563eb;
  font-weight: 900;
}

.consultant-photo {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 30px;
  background: #eef6ff;
  border: 1px solid rgba(37,99,235,.14);
  box-shadow: 0 24px 58px rgba(37,99,235,.14);
}

.consultant-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 65%, rgba(15,23,42,.08));
}

.consultant-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.consultant-image-note {
  margin-top: 18px !important;
  font-size: 12px;
  color: #64748b !important;
}

.consultant-image-note code {
  padding: 3px 7px;
  border-radius: 7px;
  background: #e0ecff;
  color: #1d4ed8;
}

@media (max-width: 980px) {
  .consultant-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .consultant-photo {
    min-height: 360px;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

  .consultant-photo img {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .consultant-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .consultant-copy h2 {
    font-size: 28px;
  }

  .consultant-photo,
  .consultant-photo img {
    min-height: 300px;
  }
}


/* =========================================================
   Hero concise design
   文章量を抑えつつ、タグと余白で寂しく見せない構成
========================================================= */
.hero__content--simple {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 455px;
}

.hero__content--simple .badge {
  align-self: flex-start;
  margin-bottom: 16px;
}

.hero__content--simple h1 {
  margin-bottom: 24px;
}

.hero-simple-copy {
  max-width: 610px;
  margin: 0;
  color: #334155;
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.85;
  font-weight: 700;
  letter-spacing: .01em;
}

.hero-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.hero-scope span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(37,99,235,.14);
  color: #1e40af;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
  box-shadow: 0 8px 18px rgba(37,99,235,.06);
  backdrop-filter: blur(8px);
}

.hero-main-cta {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  margin-top: 34px !important;
}

.hero-main-cta .btn {
  width: min(100%, 420px) !important;
  min-width: 380px !important;
  min-height: 60px;
  font-size: 18px;
}

.hero-response-note {
  margin: 12px 0 0;
  text-align: center;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero__content--simple {
    min-height: 0;
  }

  .hero__content--simple .badge {
    align-self: center;
  }

  .hero__content--simple h1,
  .hero-simple-copy {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-scope {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero-copy-break {
    display: none;
  }

  .hero-simple-copy {
    font-size: 17px;
  }

  .hero-scope {
    gap: 7px;
    margin-top: 22px;
  }

  .hero-scope span {
    min-height: 34px;
    padding: 6px 11px;
    font-size: 12px;
  }

  .hero-main-cta .btn {
    width: 100% !important;
    min-width: 0 !important;
  }
}


/* =========================================================
   Hero trust strip
   派手すぎず、実績・対応範囲を視覚的に補強
========================================================= */
.hero-trust-strip {
  padding: 26px max(24px, calc((100vw - 1180px) / 2)) 30px;
  background: #ffffff;
  border-top: 1px solid rgba(37, 99, 235, .08);
  border-bottom: 1px solid rgba(37, 99, 235, .08);
}

.hero-trust-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-trust-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 118px;
  padding: 22px 24px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(37, 99, 235, .12);
  box-shadow: 0 10px 26px rgba(37, 99, 235, .06);
}

.hero-trust-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
  border: 1px solid rgba(37, 99, 235, .12);
}

.hero-trust-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #2563eb;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-trust-card strong {
  display: block;
  margin-bottom: 4px;
  color: #1e3a8a;
  font-size: 20px;
  line-height: 1.35;
}

.hero-trust-card span {
  display: block;
  color: #475569;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .hero-trust-inner {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .hero-trust-card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .hero-trust-strip {
    padding: 20px 18px 24px;
  }

  .hero-trust-card {
    grid-template-columns: 52px 1fr;
    padding: 18px;
  }

  .hero-trust-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }

  .hero-trust-icon svg {
    width: 28px;
    height: 28px;
  }

  .hero-trust-card strong {
    font-size: 18px;
  }
}


/* =========================================================
   Hero with consultant photo + integrated strengths
========================================================= */
.hero-person-visual {
  position: relative;
  width: 100%;
  max-width: 510px;
  justify-self: end;
}

.hero-person-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(15,23,42,.08)),
    #eaf3ff;
  border: 1px solid rgba(37,99,235,.14);
  box-shadow: 0 30px 72px rgba(37,99,235,.18);
}

.hero-person-photo {
  position: absolute;
  inset: 0;
}

.hero-person-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,23,42,.02) 32%, rgba(15,23,42,.62) 100%),
    linear-gradient(90deg, rgba(37,99,235,.10), transparent 40%);
}

.hero-person-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.hero-person-overlay {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 28px;
  z-index: 2;
}

.hero-person-label {
  display: inline-flex;
  padding: 7px 13px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.hero-person-overlay strong {
  display: block;
  max-width: 320px;
  color: #0f172a;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.35;
  letter-spacing: -.02em;
  text-shadow: 0 2px 18px rgba(255,255,255,.85);
}

.hero-strength-points {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-strength-points > div {
  min-height: 104px;
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 16px 34px rgba(15,23,42,.14);
  backdrop-filter: blur(12px);
}

.hero-strength-points span {
  display: block;
  margin-bottom: 6px;
  color: #1e3a8a;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
}

.hero-strength-points .hero-strength-number {
  font-size: 20px;
  color: #2563eb;
}

.hero-strength-points small {
  display: block;
  color: #475569;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.55;
}

/* Remove standalone trust strip styling from layout */
.hero-trust-strip {
  display: none !important;
}

@media (max-width: 980px) {
  .hero-person-visual {
    max-width: 680px;
    margin: 0 auto;
    justify-self: stretch;
  }

  .hero-person-card {
    min-height: 500px;
  }

  .hero-person-photo img {
    min-height: 500px;
  }
}

@media (max-width: 640px) {
  .hero-person-card {
    min-height: 620px;
    border-radius: 26px;
  }

  .hero-person-photo img {
    min-height: 620px;
    object-position: center top;
  }

  .hero-person-overlay {
    left: 20px;
    right: 20px;
    top: 20px;
  }

  .hero-person-overlay strong {
    font-size: 26px;
  }

  .hero-strength-points {
    grid-template-columns: 1fr;
    left: 16px;
    right: 16px;
    bottom: 16px;
    gap: 8px;
  }

  .hero-strength-points > div {
    min-height: 0;
    padding: 13px 14px;
  }

  .hero-strength-points span,
  .hero-strength-points small {
    display: inline;
  }

  .hero-strength-points span {
    margin-right: 8px;
  }
}



/* =========================================================
   Hero CTA emphasis revision
========================================================= */
.hero-response-note {
  display: none !important;
}

.hero-main-cta {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  margin-top: 34px !important;
}

.hero-main-cta .btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: min(100%, 490px) !important;
  min-width: 440px !important;
  min-height: 70px !important;
  padding: 18px 34px !important;
  border-radius: 20px !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  letter-spacing: .02em;
  box-shadow: 0 16px 36px rgba(37, 99, 235, .28) !important;
  transition: transform .2s ease, box-shadow .2s ease;
}

.hero-main-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(37, 99, 235, .34) !important;
}

/* Right-side hero visual: slightly larger */
.hero-side-visual {
  max-width: 520px !important;
}

.maildoctor-hero-board {
  min-height: 485px !important;
  transform: scale(1.04);
  transform-origin: center;
}

@media (max-width: 980px) {
  .maildoctor-hero-board {
    transform: none;
  }
}

@media (max-width: 640px) {
  .hero-main-cta .btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 62px !important;
    font-size: 18px !important;
    border-radius: 18px !important;
  }
}


/* =========================================================
   Hero CTA / tags order refinement
========================================================= */
.hero-main-cta {
  margin-top: 26px !important;
  margin-bottom: 20px !important;
}

.hero-main-cta .btn {
  width: min(100%, 460px) !important;
  min-width: 420px !important;
}

.hero-scope {
  justify-content: center;
  margin-top: 0 !important;
}

@media (max-width: 980px) {
  .hero-main-cta {
    margin-top: 24px !important;
    margin-bottom: 18px !important;
  }
}

@media (max-width: 640px) {
  .hero-main-cta .btn {
    width: 100% !important;
    min-width: 0 !important;
  }

  .hero-scope {
    justify-content: center;
  }
}


/* =========================================================
   Hero diagnosis flow refinement
========================================================= */
.hero-diagnosis-status {
  display: none !important;
}

.hero-diagnosis-flow {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 54px 1fr;
  gap: 10px;
  align-items: center;
}

.hero-flow-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 72px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(15, 23, 42, .90);
  border: 1px solid rgba(255, 255, 255, .11);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .18);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.hero-flow-step__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
}

.hero-flow-step--report .hero-flow-step__icon {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.hero-flow-step strong {
  display: block;
  font-size: 13px;
  line-height: 1.4;
}

.hero-flow-step small {
  display: block;
  margin-top: 3px;
  color: #cbd5e1;
  font-size: 10px;
  line-height: 1.5;
  font-weight: 700;
}

.hero-flow-arrow {
  display: grid;
  place-items: center;
  color: #2563eb;
  text-align: center;
}

.hero-flow-arrow span {
  display: block;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: #1d4ed8;
  font-size: 9px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(37,99,235,.12);
}

.hero-flow-arrow strong {
  display: block;
  margin-top: 2px;
  color: #2563eb;
  font-size: 22px;
  line-height: 1;
}

/* Hero CTA / scope left alignment final override */
.v12-design .hero .hero-main-cta {
  justify-content: flex-start !important;
}

.v12-design .hero .hero-main-cta .btn {
  width: 440px !important;
  min-width: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.v12-design .hero .hero-scope {
  justify-content: flex-start !important;
}

/* Contact diagnosis checklist */
.contact-diagnosis-list ul {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px !important;
}

.contact-diagnosis-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 16px !important;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(37, 99, 235, .12);
  box-shadow: 0 8px 20px rgba(37, 99, 235, .05);
}

.contact-diagnosis-list li::before {
  display: none !important;
}

.contact-diagnosis-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.contact-diagnosis-list strong {
  color: #1e3a8a;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .hero-diagnosis-flow {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin: 16px;
  }

  .hero-flow-arrow {
    transform: none;
  }

  .hero-flow-arrow strong {
    font-size: 24px;
  }

  .v12-design .hero .hero-main-cta .btn {
    width: 100% !important;
  }

  .contact-diagnosis-list ul {
    grid-template-columns: 1fr;
  }
}

.contact-diagnosis-simple .diagnosis-simple-list{
list-style:none;padding:0;margin:20px 0 0;display:flex;flex-direction:column;gap:18px}
.contact-diagnosis-simple .diagnosis-simple-list li{
display:flex;align-items:center;gap:14px;
font-size:17px;font-weight:700;color:#1e3a8a;
padding:0;border:none;background:none;box-shadow:none}
.contact-diagnosis-simple .diagnosis-simple-list li::before{display:none!important}
.contact-diagnosis-simple .diagnosis-simple-list strong{font-weight:700}

.contact-diagnosis-simple .diagnosis-simple-list li{
  gap:12px;
  font-size:18px;
  color:#1e3a8a;
}


/* =========================================================
   Contact diagnosis list: iconless final version
========================================================= */
.contact-diagnosis-simple .diagnosis-simple-list {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
  margin: 20px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.contact-diagnosis-simple .diagnosis-simple-list li {
  display: block !important;
  min-height: 0 !important;
  padding: 0 0 0 18px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #1e3a8a !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
  letter-spacing: 0 !important;
  position: relative;
}

.contact-diagnosis-simple .diagnosis-simple-list li::before {
  content: "" !important;
  display: block !important;
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2563eb;
  transform: translateY(-50%);
}

.contact-diagnosis-simple .diagnosis-simple-list strong {
  font-weight: 700 !important;
}

/* =========================================================
   WordPress final fixes: Hero title / left alignment / required label
========================================================= */
.hero h1 .hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero .hero-main-cta {
  display: flex !important;
  justify-content: flex-start !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.hero .hero-main-cta .btn {
  width: 440px !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.hero .hero-scope {
  justify-content: flex-start !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.contact-form .required,
.integrated-contact-form .required,
.wpcf7-form .required {
  color: #dc2626 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  margin-left: 4px !important;
  white-space: nowrap;
}

/* Hero見出し：PCでは指定した2行に固定 */
.v12-design .hero h1.hero-title {
  display: block !important;
  width: 100% !important;
  max-width: 620px !important;
  margin: 0 0 24px !important;
  font-size: clamp(36px, 3.2vw, 50px) !important;
  line-height: 1.25 !important;
  letter-spacing: -0.04em !important;
}

.v12-design .hero h1.hero-title > span {
  display: block !important;
  width: 100% !important;
  white-space: nowrap !important;
  margin: 0 !important;
}

/* スマホでは画面幅に合わせて縮小 */
@media (max-width: 640px) {
  .v12-design .hero h1.hero-title {
    font-size: clamp(28px, 8.5vw, 38px) !important;
    line-height: 1.3 !important;
  }

  .v12-design .hero h1.hero-title > span {
    white-space: normal !important;
  }
}