:root {
  --primary: #0f6b5f;
  --primary-dark: #0a5148;
  --primary-deep: #143f3a;
  --primary-light: #e9f6f2;
  --accent: #f2a33a;
  --accent-dark: #c87816;
  --accent-light: #fff2d8;
  --text: #1c2b3a;
  --muted: #5c6b7a;
  --border: #d8e4ef;
  --bg: #ffffff;
  --soft: #fbf7ee;
  --max: 1120px;
  --shadow-card: 0 10px 28px rgba(20, 63, 58, 0.1);
  --shadow-float: 0 16px 42px rgba(20, 63, 58, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans JP", "Yu Gothic", Meiryo, system-ui, sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
}

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

.sp-only {
  display: none;
}

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

.container {
  width: calc(100% - 48px);
  max-width: var(--max);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 88px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.header-inner,
.header-contact,
.header-nav {
  display: flex;
  align-items: center;
}

.header-inner {
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo-mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 auto;
}

.logo-type {
  display: grid;
  gap: 1px;
  line-height: 1.2;
}

.logo-type strong {
  color: var(--primary-deep);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.logo-type small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.header-nav {
  gap: 24px;
  color: var(--primary-deep);
  font-weight: 800;
  font-size: 14px;
}

.header-contact {
  gap: 16px;
}

.header-tel {
  color: var(--primary-deep);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.header-tel span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  transform: translateY(0);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    filter 0.24s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -70% -45%;
  z-index: 1;
  background: linear-gradient(
    105deg,
    transparent 32%,
    rgba(255, 255, 255, 0.46) 46%,
    rgba(255, 255, 255, 0.18) 54%,
    transparent 68%
  );
  transform: translateX(-90%) rotate(8deg);
  transition: transform 0.72s ease;
  pointer-events: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  filter: saturate(1.08);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(90%) rotate(8deg);
}

.button:active {
  transform: translateY(0);
}

.button img {
  width: 28px;
  height: 28px;
}

.line-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 28px;
  border-radius: 8px;
  color: #159847;
  background: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  flex: 0 0 auto;
}

.button.small {
  min-height: 48px;
  padding: 12px 18px;
  font-size: 14px;
}

.button.gold {
  color: #fff;
  background: linear-gradient(180deg, #f2a33a, #c87816);
  box-shadow: 0 10px 22px rgba(242, 163, 58, 0.28);
  animation: button-breathe-gold 2.9s ease-in-out infinite;
}

.button.line {
  color: #fff;
  background: linear-gradient(180deg, #22c35e, #159847);
  box-shadow: 0 10px 22px rgba(21, 152, 71, 0.24);
  animation: button-breathe-line 2.7s ease-in-out infinite;
}

.button.outline {
  color: var(--primary);
  background: #fff;
  border-color: var(--primary);
}

.button.white {
  color: var(--primary-deep);
  background: #fff;
  animation: button-breathe-white 3s ease-in-out infinite;
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 44px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 46%;
  height: 520px;
  background: linear-gradient(115deg, transparent 0 22%, rgba(233, 246, 242, 0.95) 22% 100%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.hero-copy,
.hero-visual,
.split-section > *,
.detail-grid > *,
.contact-methods-grid > *,
.contact-form-grid > *,
.stats-grid > *,
.trouble-grid > *,
.property-grid > *,
.strength-grid > *,
.scope-grid > *,
.reason-grid > *,
.business-grid > *,
.flow-grid > *,
.case-grid > *,
.voice-grid > *,
.faq-grid > * {
  min-width: 0;
}

.label,
.section-kicker {
  display: inline-flex;
  color: #fff;
  background: var(--primary);
  border-radius: 4px;
  padding: 8px 16px;
  font-weight: 900;
}

.hero h1 {
  margin: 28px 0 18px;
  color: var(--text);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.35;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--primary);
  white-space: normal;
}

.hero-lead {
  max-width: 560px;
  font-size: 17px;
  text-wrap: pretty;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-visual {
  position: relative;
}

.hero-visual picture {
  display: block;
}

.hero-visual picture > img,
.hero-visual > img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-float);
}

.hero-badge {
  position: absolute;
  right: -18px;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 152px;
  height: 152px;
  border-radius: 50%;
  background: var(--primary-deep);
  color: #fff;
  text-align: center;
  font-weight: 900;
  box-shadow: var(--shadow-float);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.stats-grid article {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}

.stats-grid img {
  grid-row: span 2;
  width: 44px;
}

.stats-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.stats-grid strong {
  color: var(--primary);
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.2;
}

.section {
  padding: 88px 0;
}

.soft {
  background: var(--soft);
}

.section-title {
  margin: 0 0 38px;
  color: var(--primary-deep);
  text-align: center;
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.45;
  text-wrap: balance;
}

.section-title.light {
  color: #fff;
}

.centered {
  max-width: 820px;
  text-align: center;
}

.solution h2 {
  margin: 20px 0 16px;
  color: var(--primary-deep);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.5;
  text-wrap: balance;
}

.solution .section-kicker {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 10px 22px rgba(15, 107, 95, 0.16);
}

.solution p,
.hero-lead,
.voice-grid p,
.case-grid dd,
.faq p {
  color: var(--muted);
}

.mobile-proof-photo {
  display: none;
}

.trouble-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.trouble-grid article {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  min-height: 176px;
  padding: 24px 18px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  text-align: center;
  color: var(--primary);
  font-weight: 900;
}

.trouble-grid img {
  width: 56px;
}

.trouble-grid p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  text-wrap: pretty;
}

.split-section,
.detail-grid,
.contact-methods-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 44px;
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: 1fr 0.95fr;
}

.split-title {
  margin: 20px 0 18px;
  color: var(--primary-deep);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 3.3vw, 40px);
  line-height: 1.48;
  text-wrap: balance;
}

.split-lead {
  margin: 0;
  color: var(--muted);
  text-wrap: pretty;
}

.scope-grid,
.reason-grid,
.business-grid,
.property-grid {
  display: grid;
  gap: 18px;
}

.property-section {
  background: linear-gradient(180deg, #fff, var(--soft));
}

.property-section .section-kicker {
  margin: 0 auto 18px;
}

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

.property-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}

.property-card img {
  width: 100%;
  height: 172px;
  object-fit: cover;
}

.property-card div {
  padding: 24px;
}

.property-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--primary-deep);
  background: var(--primary-light);
  font-size: 12px;
  font-weight: 900;
}

.property-card h3 {
  margin: 0 0 10px;
  color: var(--primary);
  line-height: 1.45;
}

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

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

.scope-grid article,
.reason-grid article,
.business-grid article,
.detail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}

.scope-grid article {
  min-height: 214px;
  padding: 24px;
}

.scope-grid img {
  width: 54px;
}

.scope-grid h3,
.reason-grid h3,
.detail-card h2 {
  margin: 14px 0 10px;
  color: var(--primary);
  line-height: 1.45;
}

.scope-grid p,
.reason-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.reason-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reason-grid article {
  padding: 30px;
}

.reason-grid strong {
  color: var(--accent-dark);
  font-size: 30px;
  line-height: 1;
}

.photo-panel {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-float);
}

.photo-panel img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.area-tags,
.trust-list,
.contact-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.area-tags span,
.trust-list span,
.contact-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--primary-deep);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.business-section {
  background: linear-gradient(180deg, #f8fbfd, #ffffff);
}

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

.business-grid article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 94px;
  padding: 20px;
  color: var(--primary-deep);
  font-weight: 900;
  line-height: 1.45;
}

.business-grid img {
  width: 48px;
  flex: 0 0 auto;
}

.detail-grid {
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}

.detail-card {
  overflow: hidden;
}

.detail-photo {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.detail-card h2,
.detail-card .check-list {
  margin-left: 28px;
  margin-right: 28px;
}

.detail-card h2 {
  font-size: 24px;
  text-wrap: balance;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0 0 28px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.strength {
  background: linear-gradient(180deg, #0f6b5f, #143f3a);
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.strength-grid article {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-float);
}

.strength-grid .thumb {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.strength-grid .icon {
  width: 58px;
  margin: 16px auto 0;
  position: relative;
  z-index: 1;
}

.strength-grid h3 {
  margin: 10px 18px 8px;
  color: var(--primary);
  font-size: 18px;
  line-height: 1.45;
  text-wrap: balance;
}

.strength-grid p {
  margin: 0 18px 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  text-wrap: pretty;
}

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

.flow-grid li {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 20px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
}

.flow-grid strong {
  color: var(--primary);
  font-size: 22px;
  line-height: 1;
}

.flow-grid img {
  width: 48px;
}

.flow-grid b {
  color: var(--primary-deep);
  text-wrap: balance;
}

.flow-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  text-wrap: pretty;
}

.case-grid,
.voice-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.case-grid article,
.voice-grid article,
.faq-grid details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.voice-grid article {
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
}

.voice-portrait {
  width: min(180px, 82%);
  aspect-ratio: 1 / 0.86;
  object-fit: contain;
  margin-bottom: 8px;
}

.case-grid img {
  width: 58px;
}

.case-grid h3,
.voice-grid h3 {
  margin: 12px 0;
  color: var(--primary);
  text-wrap: balance;
}

.voice-grid p {
  margin: 0;
  text-align: left;
}

dl,
dd {
  margin: 0;
}

.case-grid dl {
  display: grid;
  gap: 8px;
}

.case-grid dl div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px;
  font-size: 14px;
}

.case-grid dt {
  color: var(--primary-deep);
  font-weight: 900;
}

.result-note {
  margin: 34px 0 0;
  color: var(--primary-deep);
  text-align: center;
  font-size: 22px;
  font-weight: 900;
}

.result-note strong {
  color: var(--accent-dark);
  font-size: 36px;
}

.company-section {
  background: #fff;
}

.company-info,
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}

.company-info {
  padding: 30px;
}

.company-info h3 {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 24px;
}

.company-info dl {
  display: grid;
  gap: 12px;
}

.company-info dl div {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.company-info dt {
  color: var(--primary-deep);
  font-weight: 900;
}

.company-info dd,
.company-info p {
  color: var(--muted);
}

.company-info p {
  margin: 18px 0 0;
  font-size: 13px;
}

.trust-list span {
  border-color: rgba(242, 163, 58, 0.36);
  background: var(--accent-light);
}

.contact-methods-section {
  background:
    linear-gradient(90deg, rgba(233, 246, 242, 0.96), rgba(255, 255, 255, 0.96)),
    linear-gradient(135deg, var(--primary-light), #fff);
}

.contact-form-section {
  background:
    linear-gradient(115deg, rgba(233, 246, 242, 0.9), rgba(255, 242, 216, 0.72)),
    #fff;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 44px;
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 30px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--primary-deep);
  font-size: 14px;
  font-weight: 900;
}

.contact-form label.full,
.contact-form .full,
.form-message {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font: inherit;
  line-height: 1.5;
}

.contact-form input {
  min-height: 48px;
  padding: 11px 13px;
}

.contact-form textarea {
  resize: vertical;
  padding: 13px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  outline: 3px solid rgba(15, 107, 95, 0.16);
}

.form-message {
  min-height: 1.6em;
  margin: 0;
  color: var(--primary);
  font-weight: 900;
}

.fee-note,
.form-help {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.fee-note {
  margin: 14px 0 0;
}

.form-help {
  margin: -2px 0 0;
}

.map-link {
  color: var(--primary);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-methods-grid {
  grid-template-columns: 0.85fr 1fr;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-method {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.contact-method h3 {
  margin: 4px 0 0;
  color: var(--primary);
  font-size: 24px;
  line-height: 1.45;
}

.contact-method p {
  margin: 0;
  color: var(--muted);
}

.contact-method .method-detail {
  color: var(--primary-deep);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.contact-method .button {
  align-self: end;
  margin-top: 8px;
}

.method-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.contact-method .line-mark.method-icon {
  width: 78px;
  height: 52px;
  border-radius: 14px;
  color: #fff;
  background: #159847;
  font-size: 16px;
  box-shadow: 0 10px 22px rgba(21, 152, 71, 0.18);
}

.line-method {
  border-color: rgba(21, 152, 71, 0.24);
}

.phone-method {
  border-color: rgba(242, 163, 58, 0.34);
}

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

.faq summary {
  color: var(--primary-deep);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.6;
  text-wrap: pretty;
}

.faq p {
  margin-bottom: 0;
}

.cta {
  position: relative;
  color: #fff;
  background:
    linear-gradient(rgba(20, 63, 58, 0.84), rgba(20, 63, 58, 0.88)),
    url("assets/generated-fresh/cta-city.png") center / cover;
  text-align: center;
}

.cta h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 3.4vw, 38px);
}

.cta p {
  margin: 0;
}

.cta-inner {
  max-width: 860px;
}

.cta-actions {
  justify-content: center;
}

.site-footer {
  background: var(--primary-deep);
  color: #fff;
  padding: 30px 0 18px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo .logo-type strong,
.footer-logo .logo-type small {
  color: #fff;
}

.footer-logo .logo-mark {
  padding: 5px;
  border-radius: 12px;
  background: #fff;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
}

.copyright {
  margin: 18px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.motion-ready .motion-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--motion-delay, 0ms);
}

.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.button.line::after,
.button.gold::after,
.button.white::after {
  animation: button-sheen 3.8s ease-in-out infinite;
}

.button:hover::after,
.button:focus-visible::after {
  animation: none;
}

.button.line:hover,
.button.line:focus-visible {
  box-shadow: 0 16px 34px rgba(21, 152, 71, 0.34);
}

.button.gold:hover,
.button.gold:focus-visible {
  box-shadow: 0 16px 34px rgba(242, 163, 58, 0.38);
}

.button.white:hover,
.button.white:focus-visible {
  box-shadow: 0 16px 34px rgba(255, 255, 255, 0.28);
}

.header-tel,
.header-nav a,
.sp-fixed a {
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    filter 0.2s ease;
}

.header-nav a:hover,
.header-tel:hover,
.sp-fixed a:hover {
  transform: translateY(-2px);
  filter: saturate(1.1);
}

.hero-visual > img {
  animation: image-float 7.5s ease-in-out infinite;
}

.hero-badge {
  animation: badge-float 4.8s ease-in-out infinite;
}

.stats-grid article,
.trouble-grid article,
.property-card,
.scope-grid article,
.reason-grid article,
.business-grid article,
.detail-card,
.strength-grid article,
.flow-grid li,
.case-grid article,
.voice-grid article,
.faq-grid details,
.company-info,
.contact-form,
.contact-method {
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease;
}

.stats-grid article:hover,
.trouble-grid article:hover,
.property-card:hover,
.scope-grid article:hover,
.reason-grid article:hover,
.business-grid article:hover,
.detail-card:hover,
.strength-grid article:hover,
.flow-grid li:hover,
.case-grid article:hover,
.voice-grid article:hover,
.faq-grid details:hover,
.company-info:hover,
.contact-form:hover,
.contact-method:hover,
.motion-ready .stats-grid article.motion-reveal.is-visible:hover,
.motion-ready .trouble-grid article.motion-reveal.is-visible:hover,
.motion-ready .property-card.motion-reveal.is-visible:hover,
.motion-ready .scope-grid article.motion-reveal.is-visible:hover,
.motion-ready .reason-grid article.motion-reveal.is-visible:hover,
.motion-ready .business-grid article.motion-reveal.is-visible:hover,
.motion-ready .detail-card.motion-reveal.is-visible:hover,
.motion-ready .strength-grid article.motion-reveal.is-visible:hover,
.motion-ready .flow-grid li.motion-reveal.is-visible:hover,
.motion-ready .case-grid article.motion-reveal.is-visible:hover,
.motion-ready .voice-grid article.motion-reveal.is-visible:hover,
.motion-ready .faq-grid details.motion-reveal.is-visible:hover,
.motion-ready .company-info.motion-reveal.is-visible:hover,
.motion-ready .contact-form.motion-reveal.is-visible:hover,
.motion-ready .contact-method.motion-reveal.is-visible:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 107, 95, 0.28);
  box-shadow: var(--shadow-float);
}

.stats-grid img,
.trouble-grid img,
.property-card img,
.scope-grid img,
.business-grid img,
.strength-grid .icon,
.flow-grid img,
.case-grid img,
.voice-portrait,
.method-icon {
  animation: icon-float 5.8s ease-in-out infinite;
}

.stats-grid article:nth-child(2n) img,
.trouble-grid article:nth-child(2n) img,
.property-card:nth-child(2n) img,
.scope-grid article:nth-child(2n) img,
.business-grid article:nth-child(2n) img,
.strength-grid article:nth-child(2n) .icon,
.flow-grid li:nth-child(2n) img,
.case-grid article:nth-child(2n) img,
.voice-grid article:nth-child(2n) .voice-portrait,
.contact-method:nth-child(2n) .method-icon {
  animation-delay: -2s;
}

.sp-fixed a:last-child {
  animation: mobile-line-pulse 2.6s ease-in-out infinite;
}

@keyframes button-sheen {
  0%,
  42% {
    transform: translateX(-92%) rotate(8deg);
  }

  62%,
  100% {
    transform: translateX(92%) rotate(8deg);
  }
}

@keyframes button-breathe-line {
  0%,
  100% {
    box-shadow: 0 10px 22px rgba(21, 152, 71, 0.24);
  }

  50% {
    box-shadow: 0 16px 34px rgba(21, 152, 71, 0.4);
  }
}

@keyframes button-breathe-gold {
  0%,
  100% {
    box-shadow: 0 10px 22px rgba(242, 163, 58, 0.28);
  }

  50% {
    box-shadow: 0 16px 34px rgba(242, 163, 58, 0.44);
  }
}

@keyframes button-breathe-white {
  0%,
  100% {
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
  }

  50% {
    box-shadow: 0 14px 32px rgba(255, 255, 255, 0.26);
  }
}

@keyframes image-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.01);
  }
}

@keyframes badge-float {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: var(--shadow-float);
  }

  50% {
    transform: translateY(-8px);
    box-shadow: 0 22px 46px rgba(20, 63, 58, 0.26);
  }
}

@keyframes icon-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes mobile-line-pulse {
  0%,
  100% {
    box-shadow: inset 0 0 0 rgba(255, 255, 255, 0);
  }

  50% {
    box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .motion-ready .motion-reveal,
  .motion-ready .motion-reveal.is-visible,
  .hero-visual picture > img,
  .hero-visual > img,
  .hero-badge,
  .stats-grid img,
  .trouble-grid img,
  .scope-grid img,
  .business-grid img,
  .strength-grid .icon,
  .flow-grid img,
  .case-grid img,
  .voice-portrait,
  .method-icon {
    opacity: 1 !important;
    transform: none !important;
  }
}

.sp-fixed {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    height: 72px;
  }

  .header-nav,
  .header-contact {
    display: none;
  }

  .logo-mark {
    width: 48px;
    height: 48px;
  }

  .logo-type strong {
    font-size: 16px;
  }

  .logo-type small {
    font-size: 7px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-grid,
  .split-section,
  .split-section.reverse,
  .contact-methods-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .scope-grid,
  .reason-grid,
  .business-grid,
  .property-grid,
  .detail-grid,
  .strength-grid,
  .flow-grid,
  .case-grid,
  .voice-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-badge {
    right: 14px;
  }

  .sp-fixed {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    box-shadow: 0 -8px 24px rgba(20, 63, 58, 0.16);
  }

  .sp-fixed a {
    padding: 14px 10px;
    color: var(--primary);
    text-align: center;
    font-weight: 900;
  }

  .sp-fixed a:last-child {
    color: #fff;
    background: linear-gradient(180deg, #22c35e, #159847);
  }

  body {
    padding-bottom: 56px;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100vw - 32px);
    max-width: 358px;
  }

  .sp-only {
    display: block;
  }

  .hero-grid,
  .stats-grid,
  .scope-grid,
  .reason-grid,
  .business-grid,
  .property-grid,
  .detail-grid,
  .contact-methods-grid,
  .contact-form-grid,
  .contact-methods,
  .trouble-grid,
  .strength-grid,
  .flow-grid,
  .case-grid,
  .voice-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    height: 64px;
  }

  .logo {
    gap: 8px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
  }

  .logo-type strong {
    font-size: 13px;
  }

  .logo-type small {
    font-size: 6px;
  }

  .hero {
    padding: 0 0 40px;
    background: linear-gradient(180deg, #fff 0%, #fff 78%, #f8fbfd 100%);
  }

  .hero::after {
    display: none;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    width: calc(100vw - 32px);
    max-width: 358px;
    margin-inline: auto;
    gap: 0;
  }

  .hero-visual {
    order: 1;
    width: 100%;
    margin-inline: 0;
  }

  .hero-visual picture > img,
  .hero-visual > img {
    width: 100%;
    height: 340px;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center top;
    border-radius: 0 0 24px 24px;
    box-shadow: var(--shadow-float);
  }

  .hero-copy {
    order: 2;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    margin-top: -30px;
    padding: 22px 16px 0;
    border-radius: 22px 22px 0 0;
    background: #fff;
    box-shadow: 0 -12px 30px rgba(20, 63, 58, 0.12);
  }

  .label,
  .section-kicker {
    padding: 7px 11px;
    font-size: 12px;
    line-height: 1.45;
  }

  .hero h1 {
    margin: 18px 0 12px;
    font-size: clamp(30px, 8vw, 32px);
    line-height: 1.44;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.85;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .button {
    min-height: 50px;
    padding: 12px 8px;
    border-radius: 9px;
    font-size: 14px;
  }

  .hero-actions .button.outline {
    grid-column: 1 / -1;
    min-height: 46px;
  }

  .button img {
    width: 22px;
    height: 22px;
  }

  .line-mark {
    width: 36px;
    height: 24px;
    border-radius: 7px;
    font-size: 10px;
  }

  .section-title {
    margin-bottom: 30px;
    font-size: clamp(25px, 6.8vw, 28px);
    line-height: 1.5;
  }

  .solution h2,
  .split-title,
  .cta h2 {
    font-size: clamp(24px, 6.7vw, 27px);
    line-height: 1.55;
  }

  .solution h2 br {
    display: none;
  }

  .detail-card h2,
  .contact-method h3 {
    font-size: 22px;
    line-height: 1.55;
  }

  .hero-badge {
    width: 104px;
    height: 104px;
    font-size: 12px;
    right: 18px;
    bottom: 18px;
    background: rgba(20, 63, 58, 0.92);
    box-shadow: 0 12px 30px rgba(20, 63, 58, 0.2);
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .stats-grid article {
    display: block;
    min-height: 116px;
    padding: 14px;
    border-radius: 12px;
  }

  .stats-grid img {
    width: 34px;
    margin-bottom: 8px;
  }

  .stats-grid span,
  .stats-grid strong {
    display: block;
  }

  .stats-grid span {
    font-size: 11px;
  }

  .stats-grid strong {
    margin-top: 3px;
    font-size: 15px;
    line-height: 1.45;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .section {
    padding: 56px 0;
  }

  .trouble-grid article {
    min-height: auto;
    border-radius: 18px;
  }

  .trouble-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .trouble-grid article {
    min-height: 128px;
    padding: 18px 10px;
    border-radius: 14px;
  }

  .trouble-grid img {
    width: 42px;
  }

  .trouble-grid p {
    font-size: 12px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .mobile-proof-photo {
    display: block;
    width: 100%;
    margin-top: 28px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--shadow-float);
  }

  .property-card {
    border-radius: 16px;
  }

  .property-card img {
    height: 150px;
  }

  .strength-grid article {
    display: grid;
    grid-template-columns: 96px 1fr;
    align-items: stretch;
  }

  .strength-grid .thumb {
    grid-row: 1 / span 3;
    width: 96px;
    height: 100%;
    min-height: 138px;
  }

  .strength-grid .icon {
    display: none;
  }

  .strength-grid h3 {
    margin: 16px 14px 6px;
    font-size: 16px;
  }

  .strength-grid p {
    margin: 0 14px 16px;
    font-size: 12.5px;
  }

  .business-grid article {
    min-height: auto;
  }

  .detail-photo {
    height: 190px;
  }

  .detail-card h2,
  .detail-card .check-list {
    margin-left: 22px;
    margin-right: 22px;
  }

  .contact-method {
    min-height: auto;
    padding: 24px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .company-info dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

:root {
  --primary: #075f52;
  --primary-dark: #064a42;
  --primary-deep: #07362f;
  --primary-light: #eaf5f1;
  --accent: #d9a24a;
  --accent-dark: #b77a1f;
  --accent-light: #fff4df;
  --text: #182833;
  --muted: #61707a;
  --border: #dde8e4;
  --bg: #fbfbf7;
  --soft: #fbf5ea;
  --shadow-card: 0 14px 36px rgba(7, 54, 47, 0.09);
  --shadow-float: 0 22px 58px rgba(7, 54, 47, 0.18);
}

body {
  background:
    radial-gradient(circle at 12% 0%, rgba(217, 162, 74, 0.12), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #fbfbf7 38%, #f7faf8 100%);
}

.container {
  max-width: 1180px;
}

.site-header {
  height: 82px;
  background: rgba(255, 255, 251, 0.92);
  border-bottom: 1px solid rgba(7, 95, 82, 0.12);
  box-shadow: 0 10px 34px rgba(7, 54, 47, 0.06);
}

.logo-type strong,
.header-nav,
.header-tel,
.section-title,
.split-title,
.solution h2,
.cta h2 {
  color: var(--primary-deep);
}

.header-nav a {
  position: relative;
  padding: 8px 0;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  border-radius: 12px;
  letter-spacing: 0;
  box-shadow: none;
}

.button.line {
  background: linear-gradient(180deg, #18b95b 0%, #089446 100%);
  box-shadow: 0 14px 28px rgba(8, 148, 70, 0.24);
}

.button.gold {
  background: linear-gradient(180deg, #dfad59 0%, #b9751b 100%);
  box-shadow: 0 14px 28px rgba(185, 117, 27, 0.24);
}

.button.outline {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(7, 95, 82, 0.5);
}

.hero {
  padding: 76px 0 54px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 42%, rgba(255, 255, 255, 0.72) 58%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, #ffffff 0%, #f6faf8 100%);
}

.hero::after {
  display: none;
}

.hero-grid {
  grid-template-columns: 0.86fr 1.14fr;
  gap: 50px;
}

.label,
.section-kicker {
  border-radius: 5px;
  background: linear-gradient(180deg, #096858, #064a42);
  box-shadow: 0 10px 24px rgba(7, 95, 82, 0.14);
}

.hero h1 {
  margin-top: 26px;
  font-size: clamp(42px, 4.9vw, 60px);
  line-height: 1.34;
}

.hero-lead {
  max-width: 530px;
}

.hero-actions {
  gap: 12px;
}

.hero-actions .button {
  min-width: 180px;
}

.hero-visual picture > img,
.hero-visual > img {
  aspect-ratio: 1.42;
  border-radius: 0 0 26px 26px;
  box-shadow: var(--shadow-float);
}

.hero-badge {
  right: -4px;
  bottom: 34px;
  width: 142px;
  height: 142px;
  background: rgba(7, 54, 47, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.stats-grid {
  margin-top: 34px;
}

.stats-grid article,
.trouble-grid article,
.property-card,
.scope-grid article,
.reason-grid article,
.detail-card,
.case-grid article,
.voice-grid article,
.faq-grid details,
.company-info,
.contact-form,
.contact-method {
  border: 1px solid rgba(7, 95, 82, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.stats-grid article {
  padding: 22px;
}

.stats-grid strong {
  color: var(--primary);
}

.section {
  padding: 92px 0;
}

.soft {
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 162, 74, 0.15), transparent 32rem),
    linear-gradient(180deg, #fbf5ea 0%, #fffaf1 100%);
}

.section-title {
  position: relative;
  margin-bottom: 42px;
}

.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.trouble-grid {
  gap: 18px;
}

.trouble-grid article {
  min-height: 160px;
}

.solution {
  background: #ffffff;
}

.solution .centered {
  max-width: 980px;
}

.mobile-proof-photo {
  border-radius: 14px;
}

.property-section {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbf7 100%);
}

.property-card {
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(7, 54, 47, 0.15);
}

.property-card img,
.detail-photo,
.photo-panel img {
  filter: saturate(0.95) contrast(1.03);
}

.property-card span,
.area-tags span,
.trust-list span,
.contact-notes span {
  color: var(--primary);
  background: #fffaf1;
  border-color: rgba(217, 162, 74, 0.34);
}

.strength {
  background:
    linear-gradient(180deg, rgba(7, 54, 47, 0.94), rgba(4, 43, 38, 0.98)),
    url("assets/generated-fresh/cta-city.png") center / cover;
}

.strength .section-title::after,
.cta h2::after {
  background: linear-gradient(90deg, transparent, rgba(217, 162, 74, 0.9), transparent);
}

.strength-grid article {
  background: rgba(255, 255, 255, 0.98);
}

.strength-grid .thumb {
  height: 122px;
}

.service-scope,
.area-section,
.contact-methods-section {
  background: #ffffff;
}

.business-section {
  background: linear-gradient(180deg, #f7faf8, #ffffff);
}

.business-grid article {
  border: 1px solid rgba(7, 95, 82, 0.12);
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(7, 54, 47, 0.07);
}

.detail-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(217, 162, 74, 0.13), transparent 26rem),
    #fbf7ee;
}

.flow-grid {
  gap: 18px;
}

.flow-grid li {
  position: relative;
  padding: 24px 18px;
  border-color: rgba(7, 95, 82, 0.14);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.flow-grid li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -16px;
  width: 14px;
  height: 1px;
  background: rgba(7, 95, 82, 0.34);
}

.flow-grid li:nth-child(3n)::before,
.flow-grid li:last-child::before {
  display: none;
}

.flow-grid strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-size: 15px;
}

.faq-grid {
  grid-template-columns: 1fr;
  max-width: 940px;
  margin-inline: auto;
  gap: 10px;
}

.faq-grid details {
  padding: 0;
  overflow: hidden;
}

.faq-grid summary {
  padding: 18px 22px;
}

.faq-grid p {
  padding: 0 22px 18px;
}

.company-section {
  background: #ffffff;
}

.company-info {
  padding: 28px;
}

.company-info h3 {
  margin-top: 0;
  color: var(--primary);
}

.company-info dl div {
  border-color: rgba(7, 95, 82, 0.12);
}

.contact-form-section {
  background:
    radial-gradient(circle at 0% 0%, rgba(7, 95, 82, 0.12), transparent 28rem),
    linear-gradient(180deg, #f4faf6, #fffaf1);
}

.contact-form-grid {
  align-items: start;
}

.contact-form {
  padding: 30px;
}

.contact-form input,
.contact-form textarea {
  border-color: rgba(7, 95, 82, 0.18);
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(7, 54, 47, 0.03);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(7, 95, 82, 0.18);
  border-color: var(--primary);
}

.contact-methods {
  gap: 18px;
}

.contact-method.line-method {
  color: #fff;
  background: linear-gradient(180deg, #0ca24d, #05763a);
}

.contact-method.line-method h3,
.contact-method.line-method p {
  color: #fff;
}

.contact-method.phone-method {
  color: #fff;
  background: linear-gradient(180deg, #d9a24a, #b8751d);
}

.contact-method.phone-method h3,
.contact-method.phone-method p,
.contact-method.phone-method .method-detail {
  color: #fff;
}

.contact-method .button {
  background: #fff;
  color: var(--primary);
  box-shadow: none;
}

.cta {
  position: relative;
  background:
    linear-gradient(180deg, rgba(7, 54, 47, 0.88), rgba(4, 43, 38, 0.96)),
    url("assets/generated-fresh/cta-city.png") center / cover;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(217, 162, 74, 0.25);
  pointer-events: none;
}

.cta h2,
.cta p {
  color: #fff;
}

.site-footer {
  background: #042b26;
  border-top: 1px solid rgba(217, 162, 74, 0.24);
}

.site-footer,
.site-footer a,
.site-footer .logo-type strong,
.site-footer .logo-type small,
.copyright {
  color: rgba(255, 255, 255, 0.86);
}

@media (min-width: 981px) {
  .contact-form-grid {
    grid-template-columns: 0.72fr 1fr;
  }

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

  .contact-form .full,
  .contact-form button,
  .contact-form .form-message {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 72px;
  }

  .section {
    padding: 68px 0;
  }

  .flow-grid li::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .container,
  .hero-grid {
    width: min(358px, calc(100vw - 32px));
    max-width: none;
  }

  .site-header {
    height: 64px;
  }

  .hero {
    padding: 0 0 42px;
    background: #ffffff;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-inline: auto;
  }

  .hero-visual {
    order: 1;
    width: 100%;
  }

  .hero-copy {
    order: 2;
    width: 100%;
    margin: -30px 0 0;
    padding: 22px 16px 0;
    border-radius: 22px 22px 0 0;
    background: #fff;
    box-shadow: 0 -14px 32px rgba(7, 54, 47, 0.12);
  }

  .hero-visual picture > img,
  .hero-visual > img {
    width: 100%;
    height: 340px;
    aspect-ratio: auto;
    object-position: center top;
    border-radius: 0 0 24px 24px;
  }

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

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-actions .button {
    min-width: 0;
  }

  .hero-actions .button.outline {
    grid-column: 1 / -1;
  }

  .stats-grid,
  .trouble-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .stats-grid article {
    display: block;
    min-height: 112px;
    padding: 14px;
  }

  .stats-grid img {
    width: 34px;
    margin-bottom: 8px;
  }

  .stats-grid span,
  .stats-grid strong {
    display: block;
  }

  .stats-grid strong {
    font-size: 15px;
  }

  .trouble-grid article {
    min-height: 132px;
    padding: 18px 12px;
  }

  .solution .centered {
    text-align: left;
  }

  .mobile-proof-photo {
    display: block;
    width: 100%;
    margin-top: 28px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    box-shadow: var(--shadow-float);
  }

  .strength-grid article {
    grid-template-columns: 98px 1fr;
  }

  .strength-grid .thumb {
    width: 98px;
    min-height: 142px;
  }

  .contact-form {
    padding: 22px;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .sp-fixed {
    border-top: 1px solid rgba(7, 95, 82, 0.12);
  }

  .sp-fixed a {
    min-height: 58px;
    display: grid;
    place-items: center;
    background: #fff;
  }

  .sp-fixed a:last-child {
    background: linear-gradient(180deg, #18b95b, #089446);
  }
}

@media (max-width: 480px) {
  main,
  .hero {
    overflow-x: hidden;
  }

  .container {
    width: calc(100% - 24px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-grid.container {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-visual,
  .hero-visual picture,
  .hero-visual picture > img,
  .hero-visual > img {
    width: 100%;
  }

  .hero-visual picture > img,
  .hero-visual > img {
    height: 340px;
    border-radius: 0 0 20px 20px;
  }

  .hero-copy {
    width: calc(100% - 16px);
    margin-left: 8px;
    margin-right: 8px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .sp-fixed {
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hero-grid {
    padding-top: 18px;
  }

  .hero-copy {
    order: 1;
    width: calc(100% - 16px);
    margin: 0 auto 18px;
    padding-top: 22px;
    border-radius: 22px;
    box-shadow: var(--shadow-card);
  }

  .hero-visual {
    order: 2;
  }

  .hero-badge {
    right: 12px;
    width: 124px;
    height: 124px;
    font-size: 13px;
  }

  .fee-note {
    margin-top: 12px;
    font-size: 12px;
  }

  .contact-form .button.full {
    min-height: 58px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 15px;
  }
}
