:root {
  --bg: #f7faf9;
  --surface: #ffffff;
  --ink: #17201f;
  --muted: #5f6f6c;
  --line: #dce8e5;
  --teal: #087d78;
  --teal-dark: #06645f;
  --line-app: #06c755;
  --line-app-dark: #05a948;
  --blue: #1769aa;
  --accent: #f6b73c;
  --accent-dark: #d99515;
  --danger: #c46b2d;
  --shadow: 0 18px 50px rgba(13, 66, 62, 0.11);
  --radius: 8px;
  --container: 1180px;
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  letter-spacing: 0;
}

body,
button {
  font: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
summary {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--surface);
  background: var(--teal);
  border-radius: var(--radius);
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(246, 183, 60, 0.75);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 232, 229, 0.86);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(13, 66, 62, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--surface);
  background: var(--teal);
  border-radius: 50%;
}

.brand-mark svg {
  width: 28px;
  fill: currentColor;
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #2f3f3d;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  padding: 8px 0;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.phone-link {
  color: #213b38;
  white-space: nowrap;
}

.phone-link svg,
.button svg,
.notice svg,
.mobile-sticky-cta svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.25;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: var(--surface);
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(8, 125, 120, 0.2);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-line {
  color: #ffffff;
  background: var(--line-app);
  box-shadow: 0 12px 28px rgba(6, 199, 85, 0.22);
}

.button-line:hover {
  background: var(--line-app-dark);
}

.button-accent {
  color: #241800;
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(246, 183, 60, 0.26);
}

.button-accent:hover {
  background: var(--accent-dark);
}

.button-phone {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(23, 105, 170, 0.22);
}

.button-phone:hover {
  background: #105486;
}

.button-outline {
  color: var(--teal);
  background: var(--surface);
  border-color: var(--teal);
}

.button-large {
  min-height: 58px;
  padding: 15px 22px;
}

.section,
.hero-content,
.site-footer {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-band {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbfa 100%);
}

.section-band > .section-heading,
.section-band > .service-grid {
  width: min(var(--container), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.section-compact {
  padding-top: 10px;
}

.hero {
  padding: 54px 0 0;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.9fr);
  gap: 44px;
  align-items: center;
}

.hero-copy {
  padding: 44px 0 48px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: 52px;
  line-height: 1.18;
  font-weight: 950;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.headline-accent {
  color: var(--teal);
}

.headline-main,
.headline-tail {
  color: var(--ink);
}

h2 {
  margin-bottom: 12px;
  font-size: 40px;
  line-height: 1.25;
  font-weight: 900;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.35;
}

.hero-lead {
  max-width: 650px;
  color: #314541;
  font-size: 18px;
}

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

.hero-kpis span {
  min-height: 58px;
  padding: 10px 12px;
  color: #2d4946;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
}

.hero-kpis strong {
  color: var(--teal);
  font-size: 18px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.trust-grid div,
.included-grid div {
  display: grid;
  place-items: center;
  min-height: 84px;
  padding: 14px 10px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.trust-grid svg,
.included-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
  fill: currentColor;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-pills span {
  min-width: 78px;
  padding: 7px 14px;
  color: var(--teal);
  background: var(--surface);
  border: 1px solid rgba(8, 125, 120, 0.34);
  border-radius: var(--radius);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.hero-media {
  align-self: stretch;
  min-height: 560px;
  overflow: hidden;
  border-radius: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.align-left {
  margin-left: 0;
  text-align: left;
}

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

.price-card,
.service-grid article,
.estimate-card,
.reason-card,
.flow-card,
.case-card,
.voice-card,
.benefit-card,
.area-notes article,
.company-table,
.company-note,
.faq-grid details,
.final-cta,
.notice,
.included-grid,
.estimate-image,
.map-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-card {
  padding: 26px;
  text-align: center;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  color: var(--teal);
  border: 2px solid rgba(8, 125, 120, 0.2);
  border-radius: var(--radius);
}

.icon-box svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
}

.price-card h3 {
  margin-bottom: 0;
}

.price-card p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.price-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 38px;
  line-height: 1;
}

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

.price-card a {
  display: block;
  padding: 9px;
  color: var(--teal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
}

.notice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 14px 18px;
  color: #28504c;
  background: #eef9f7;
  font-size: 14px;
  font-weight: 700;
}

.condition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.condition-grid article {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.condition-grid h3 {
  color: var(--teal);
  font-size: 17px;
}

.condition-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.table-wrap {
  margin-top: 22px;
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-table,
.company-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table caption {
  padding: 16px 18px 0;
  color: var(--teal);
  text-align: left;
  font-weight: 900;
}

.price-table th,
.price-table td,
.company-table th,
.company-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
}

.price-table th {
  color: #203c39;
  background: #f0f8f6;
  font-size: 13px;
}

.price-table td:nth-child(2) {
  min-width: 138px;
  color: var(--teal);
  font-weight: 900;
  white-space: nowrap;
}

.price-table tr:last-child td,
.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: 0;
}

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

.reason-grid,
.flow-grid,
.voice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.reason-card,
.flow-card,
.voice-card {
  padding: 24px;
}

.reason-card > span,
.flow-card > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  color: var(--surface);
  background: var(--teal);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 900;
}

.reason-card h3,
.flow-card h3,
.voice-card h3 {
  color: var(--teal);
}

.reason-card p,
.flow-card p,
.voice-card p {
  color: var(--muted);
  font-size: 14px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.included-grid div {
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
}

.included-grid div:last-child {
  border-right: 0;
}

.estimate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 360px;
  gap: 24px;
  align-items: stretch;
}

.estimate-image {
  overflow: hidden;
}

.estimate-image img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.estimate-card {
  padding: 26px;
}

.estimate-card ol {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 18px 0 22px;
  list-style: none;
}

.estimate-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.estimate-card li span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--surface);
  background: var(--teal);
  border-radius: 50%;
  font-size: 13px;
}

.estimate-help {
  margin: -2px 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.line-section {
  padding-top: 18px;
}

.line-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: stretch;
  padding: 34px;
  color: var(--surface);
  background: linear-gradient(135deg, #087d78 0%, #0b6f83 100%);
  border-radius: var(--radius);
}

.line-panel h2 {
  max-width: 760px;
}

.line-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.line-panel .eyebrow {
  color: #c9fff0;
}

.line-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.line-panel .button-outline {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.52);
}

.line-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.line-note.is-warning {
  color: #fff5cf;
}

.line-card {
  padding: 24px;
  color: var(--ink);
  background: #ffffff;
  border-radius: var(--radius);
}

.line-card h3 {
  color: var(--teal);
}

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

.line-card li {
  position: relative;
  padding-left: 22px;
  color: #314541;
  font-size: 14px;
  font-weight: 800;
}

.line-card li::before {
  position: absolute;
  left: 0;
  color: var(--line-app);
  content: "●";
  font-size: 10px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 72px;
}

.service-grid article {
  overflow: hidden;
  padding: 22px 18px;
}

.service-visual {
  display: grid;
  place-items: center;
  min-height: 132px;
  color: var(--teal);
  background:
    linear-gradient(135deg, rgba(8, 125, 120, 0.1) 0%, rgba(23, 105, 170, 0.08) 100%),
    #f6fbfa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-visual svg {
  width: 64px;
  height: 64px;
  fill: currentColor;
}

.service-grid h3,
.service-grid p {
  padding: 0;
}

.service-grid h3 {
  margin-top: 16px;
  color: var(--teal);
  font-size: 18px;
}

.service-grid p {
  color: var(--muted);
  font-size: 14px;
}

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

.case-card {
  overflow: hidden;
}

.case-visual {
  display: grid;
  place-items: center;
  min-height: 150px;
  color: var(--teal);
  background:
    linear-gradient(135deg, rgba(8, 125, 120, 0.09) 0%, rgba(246, 183, 60, 0.12) 100%),
    #f8fcfb;
  border-bottom: 1px solid var(--line);
}

.case-visual svg {
  width: 70px;
  height: 70px;
  fill: currentColor;
}

.case-card div {
  padding: 20px;
}

.case-card h3 {
  color: var(--teal);
}

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

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

.case-card li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  font-weight: 800;
}

.case-card li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "•";
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: end;
}

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

.before-after-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.before-after-grid img {
  width: 100%;
  height: clamp(210px, 24vw, 280px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.before-after-grid figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.benefit-card {
  padding: 26px;
}

.benefit-card ul,
.final-badges,
.faq-grid,
.area-notes {
  display: grid;
  gap: 12px;
}

.benefit-card ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.benefit-card li {
  position: relative;
  padding-left: 26px;
  color: #314541;
  font-weight: 700;
}

.benefit-card li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

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

.voice-card {
  min-height: 180px;
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 24px;
}

.map-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background-color: #eaf5f3;
  background-image:
    linear-gradient(90deg, rgba(8, 125, 120, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8, 125, 120, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #e7f5f2 0%, #f6fbfa 100%);
  background-size: 34px 34px, 34px 34px, auto;
}

.map-card::before,
.map-card::after {
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 46% 54% 55% 45%;
  content: "";
}

.map-card::after {
  inset: 64px 42px;
  transform: rotate(-12deg);
}

.area-chip {
  position: absolute;
  z-index: 2;
  padding: 7px 13px;
  color: var(--surface);
  background: var(--teal);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(8, 125, 120, 0.18);
}

.katsushika { right: 18%; top: 26%; }
.adachi { left: 28%; top: 20%; }
.sumida { left: 38%; top: 47%; }
.edogawa { right: 14%; bottom: 23%; }
.arakawa { left: 22%; bottom: 32%; }
.taito { left: 19%; bottom: 18%; }

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

.area-notes article {
  padding: 26px;
}

.area-notes h3 {
  color: var(--teal);
}

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

details {
  padding: 0;
}

summary {
  position: relative;
  padding: 18px 48px 18px 20px;
  font-weight: 800;
}

summary::after {
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--teal);
  content: "+";
  font-size: 22px;
  line-height: 1;
}

details[open] summary::after {
  content: "−";
}

details p {
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: center;
  padding: 26px;
  background: linear-gradient(135deg, #087d78 0%, #0b6f83 100%);
  color: var(--surface);
}

.final-icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  color: var(--teal);
  background: #ffffff;
  border-radius: var(--radius);
}

.final-icon svg {
  width: 58px;
  height: 58px;
  fill: currentColor;
}

.final-cta .eyebrow,
.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.final-badges {
  grid-template-columns: repeat(3, max-content);
  margin-top: 16px;
}

.final-badges span {
  padding: 7px 12px;
  color: #0d4d4a;
  background: #ffffff;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
}

.final-actions {
  display: grid;
  gap: 12px;
}

.company-section {
  padding-top: 0;
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.company-table {
  overflow: hidden;
}

.company-table th {
  width: 150px;
  color: var(--teal);
  background: #f0f8f6;
}

.company-note {
  padding: 26px;
}

.company-note h3 {
  color: var(--teal);
}

.company-note p {
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag-list span {
  padding: 7px 11px;
  color: var(--teal);
  background: #eef9f7;
  border: 1px solid rgba(8, 125, 120, 0.2);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 0 120px;
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin: 4px 0 0;
}

.site-footer a {
  color: var(--teal);
  font-weight: 800;
}

.mobile-sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(12, 40, 38, 0.26);
}

.mobile-sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
  padding: 10px;
  font-weight: 900;
  line-height: 1.2;
}

.sticky-main {
  color: #fff;
  background: var(--teal);
}

.sticky-accent {
  color: #241800;
  background: var(--accent);
}

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

  .hero-content,
  .estimate-layout,
  .line-panel,
  .split-section,
  .area-layout,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 440px;
  }

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

  h1 {
    font-size: 46px;
  }

  h1 span {
    white-space: normal;
  }

  h2 {
    font-size: 34px;
  }

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

  .case-grid,
  .voice-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .final-cta {
    text-align: left;
  }

  .final-icon {
    max-width: 180px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
    padding: 10px 14px;
  }

  .brand small,
  .phone-link span {
    display: none;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .button {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 13px;
  }

  .section,
  .hero-content,
  .site-footer {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 48px 0 62px;
  }

  .hero {
    padding-top: 26px;
  }

  .hero-content {
    gap: 18px;
  }

  .hero-copy {
    padding: 18px 0 0;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 26px;
  }

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

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

  .hero-kpis span {
    min-height: 0;
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .trust-grid div:nth-child(4) {
    grid-column: 1 / -1;
    min-height: 56px;
    grid-template-columns: auto auto;
    justify-content: center;
  }

  .trust-grid div {
    min-height: 86px;
    padding: 10px 8px;
    font-size: 12px;
  }

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

  .line-panel {
    padding: 24px 18px;
  }

  .line-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 300px;
    order: -1;
    margin: 0 -14px;
  }

  .hero-media img {
    object-position: 64% center;
  }

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

  .price-card {
    padding: 18px 12px;
  }

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

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

  .included-grid div {
    border-bottom: 1px solid var(--line);
  }

  .estimate-image img {
    min-height: 260px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    padding-bottom: 48px;
  }

  .reason-grid,
  .flow-grid,
  .case-grid,
  .voice-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .before-after-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 260px;
  }

  .price-table th,
  .price-table td,
  .company-table th,
  .company-table td {
    padding: 12px;
    font-size: 13px;
  }

  .company-table th {
    width: 118px;
  }

  .final-cta {
    padding: 22px;
    margin-bottom: 18px;
  }

  .final-actions {
    display: none;
  }

  .final-badges {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: block;
    padding-bottom: 110px;
  }

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

  .mobile-sticky-cta.is-visible {
    display: grid;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 30px;
  }

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

  .mobile-sticky-cta {
    right: 10px;
    left: 10px;
  }
}
