:root {
  --navy: #07356f;
  --blue: #1778b8;
  --sky: #dff3ff;
  --sky-deep: #9fd3f1;
  --line: #06c755;
  --text: #17324d;
  --muted: #60758a;
  --paper: #ffffff;
  --soft: #f5fbff;
  --border: #c8e2f2;
  --shadow: 0 14px 34px rgba(32, 88, 129, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.75;
}

html {
  scroll-behavior: smooth;
}

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

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 22px rgba(7, 53, 111, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  animation: header-arrive 0.55s ease both;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 86px;
}

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

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--blue);
  background: linear-gradient(145deg, #ffffff, #e7f7ff);
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(23, 120, 184, 0.16);
}

.logo-text small,
.header-phone small,
.footer-phone small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}

.logo-text strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.global-nav a {
  padding: 9px 12px;
  border-radius: 999px;
}

.global-nav a:hover,
.global-nav a[aria-current="page"] {
  background: #eef8ff;
  color: var(--blue);
}

.header-actions,
.footer-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-line {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  color: #ffffff;
  background: var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(6, 199, 85, 0.26);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.34) 42%, transparent 72%);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
}

.btn-line i,
.btn-line span {
  position: relative;
  z-index: 1;
}

.btn-line:hover,
.btn-line:focus-visible {
  background: #05b84f;
  box-shadow: 0 13px 26px rgba(6, 199, 85, 0.36);
  transform: translateY(-3px) scale(1.03);
}

.btn-line:active,
.header-phone:active,
.footer-phone:active,
.instagram-link:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-line:hover::after,
.btn-line:focus-visible::after {
  transform: translateX(120%);
}

.btn-line:hover i,
.btn-line:focus-visible i {
  animation: line-pop 0.42s ease;
}

.header-phone,
.footer-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  color: var(--navy);
  background: #eef8ff;
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(20, 148, 201, 0.1);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.header-phone i,
.footer-phone i {
  color: #1494c9;
  font-size: 18px;
  transition: transform 0.18s ease;
}

.header-phone span,
.footer-phone span {
  line-height: 1;
}

.header-phone .phone-text,
.footer-phone .phone-text {
  display: grid;
  gap: 4px;
  text-align: left;
  line-height: 1.15;
}

.header-phone .phone-text small,
.footer-phone .phone-text small {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.header-phone .phone-text span,
.footer-phone .phone-text span {
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.header-phone:hover,
.header-phone:focus-visible,
.footer-phone:hover,
.footer-phone:focus-visible {
  background: #ffffff;
  border-color: #8fc9ea;
  box-shadow: 0 12px 24px rgba(20, 148, 201, 0.22);
  transform: translateY(-3px);
}

.header-phone:hover i,
.header-phone:focus-visible i,
.footer-phone:hover i,
.footer-phone:focus-visible i {
  animation: phone-ring 0.5s ease;
}

.instagram-link {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
  color: #f02d86;
  background: #ffffff;
  border: 1px solid #f8c5df;
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(240, 45, 134, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.instagram-link:hover,
.instagram-link:focus-visible {
  color: #d82279;
  border-color: #f4a6cd;
  box-shadow: 0 12px 24px rgba(240, 45, 134, 0.25);
  transform: translateY(-3px) rotate(-4deg) scale(1.08);
}

.btn-line:focus-visible,
.header-phone:focus-visible,
.footer-phone:focus-visible,
.instagram-link:focus-visible {
  outline: 3px solid rgba(23, 120, 184, 0.28);
  outline-offset: 3px;
}

@keyframes line-pop {
  0% { transform: scale(1); }
  45% { transform: scale(1.22) rotate(-8deg); }
  100% { transform: scale(1); }
}

@keyframes phone-ring {
  0%, 100% { transform: rotate(0); }
  18% { transform: rotate(-16deg); }
  36% { transform: rotate(14deg); }
  54% { transform: rotate(-10deg); }
  72% { transform: rotate(6deg); }
}

@keyframes header-arrive {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-room-reveal {
  from {
    filter: saturate(0.92) brightness(1.08);
  }
  to {
    filter: saturate(1) brightness(1);
  }
}

@keyframes morning-light {
  0% {
    opacity: 0;
    transform: translateX(-18%);
  }
  28% {
    opacity: 0.85;
  }
  100% {
    opacity: 0;
    transform: translateX(16%);
  }
}

@keyframes soft-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes badge-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-line,
  .btn-line::after,
  .header-phone,
  .footer-phone,
  .instagram-link,
  .header-phone i,
  .footer-phone i,
  .page-link-card,
  .page-link-card::before,
  .page-link-card::after,
  .page-link-card strong,
  .service-link-card,
  .service-link-card::before,
  .service-link-card::after,
  .service-detail-grid h3,
  .service-anchor-grid a,
  .service-anchor-grid a::after,
  .footer-nav a,
  .reveal-on-scroll {
    transition: none;
  }

  .site-header,
  .hero,
  .hero::before,
  .hero .eyebrow,
  .hero h1,
  .hero-sub,
  .hero-badges span {
    animation: none;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }

  .btn-line:hover i,
  .btn-line:focus-visible i,
  .header-phone:hover i,
  .header-phone:focus-visible i,
  .footer-phone:hover i,
  .footer-phone:focus-visible i {
    animation: none;
  }
}

.breadcrumb-nav {
  background: #f8fcff;
  border-bottom: 1px solid #e3f1fa;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 9px 0;
  margin: 0;
  color: var(--muted);
  list-style: none;
  font-size: 12px;
}

.breadcrumb-list li:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
  color: #9ab4c7;
}

.breadcrumb-list a {
  color: var(--blue);
}

.hero {
  position: relative;
  min-height: 630px;
  background:
    linear-gradient(90deg, rgba(238, 249, 255, 0.2) 0%, rgba(238, 249, 255, 0.15) 42%, rgba(238, 249, 255, 0.03) 68%, rgba(238, 249, 255, 0) 100%),
    url("assets/hero-clean-living.png") center right / cover;
  overflow: hidden;
  isolation: isolate;
  animation: hero-room-reveal 0.72s ease-out both;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.58) 0%, rgba(223, 243, 255, 0.34) 28%, rgba(255, 255, 255, 0) 56%),
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.36) 22%, rgba(255, 255, 255, 0) 46%);
  transform: translateX(-18%);
  opacity: 0;
  animation: morning-light 1.08s ease-out 0.05s both;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 630px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(720px, 100%);
  padding: 54px 0 64px;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.82);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

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

.hero h1 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.45;
  font-weight: 800;
}

.hero-sub {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--navy);
  font-weight: 700;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 16px;
  max-width: 720px;
}

.service-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid #9fcfed;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 10px 10px 0;
}

.service-card img {
  width: 100%;
  height: 116px;
  object-fit: cover;
  border-radius: 6px;
}

.service-card h2 {
  margin: 0;
  padding: 12px 8px 14px;
  color: var(--navy);
  text-align: center;
  font-size: 17px;
  line-height: 1.3;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-badges span {
  min-width: 144px;
  padding: 9px 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid #99cce9;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(54, 120, 168, 0.12);
  text-align: center;
  font-weight: 800;
}

.hero .eyebrow {
  animation: soft-rise 0.5s ease-out 0.28s both;
}

.hero h1 {
  animation: soft-rise 0.58s ease-out 0.4s both;
}

.hero-sub {
  animation: soft-rise 0.56s ease-out 0.56s both;
}

.hero-badges span {
  animation: badge-in 0.46s ease-out both;
}

.hero-badges span:nth-child(1) {
  animation-delay: 0.76s;
}

.hero-badges span:nth-child(2) {
  animation-delay: 0.86s;
}

.hero-badges span:nth-child(3) {
  animation-delay: 0.96s;
}

.section-pad {
  padding: 72px 0;
}

.section-title {
  margin-bottom: 34px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.35;
  text-align: center;
  font-weight: 800;
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--sky-deep);
  border-radius: 999px;
}

.section-title.align-left {
  text-align: left;
  margin-bottom: 16px;
}

.section-title.align-left::after {
  margin-left: 0;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.58s ease, transform 0.58s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.reasons {
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

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

.reason-card {
  padding: 24px 24px 22px;
  background: var(--paper);
  border: 2px solid #99cce9;
  border-radius: 18px;
}

.reason-num {
  display: block;
  color: var(--navy);
  font-size: 24px;
  font-weight: 800;
  font-family: Georgia, serif;
}

.reason-card h3 {
  margin: 8px 0 8px;
  color: var(--navy);
  font-size: 18px;
}

.reason-card p {
  min-height: 76px;
  color: var(--muted);
  font-size: 14px;
}

.reason-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.service-section {
  background: #ffffff;
}

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

.service-detail-grid article,
.service-link-card,
.page-link-card,
.company-card,
.message-box,
.faq-item {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-detail-grid article,
.service-link-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.service-link-card {
  padding-bottom: 58px;
}

.service-link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(159, 211, 241, 0.22) 44%, transparent 72%);
  transform: translateX(-120%);
  transition: transform 0.48s ease;
}

.service-link-card::after {
  content: "→";
  position: absolute;
  right: 22px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(23, 120, 184, 0.24);
  opacity: 0;
  transform: translateX(-10px) scale(0.86);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.service-link-card:hover,
.service-link-card:focus-visible {
  background: #f8fcff;
  border-color: #8fc9ea;
  box-shadow: 0 18px 36px rgba(32, 88, 129, 0.2);
  transform: translateY(-4px);
}

.service-link-card:hover::before,
.service-link-card:focus-visible::before {
  transform: translateX(120%);
}

.service-link-card:hover::after,
.service-link-card:focus-visible::after {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.service-link-card:active {
  transform: translateY(-1px) scale(0.99);
}

.service-link-card:focus-visible {
  outline: 3px solid rgba(23, 120, 184, 0.28);
  outline-offset: 4px;
}

.service-detail-grid img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 180px;
  margin-bottom: 16px;
  object-fit: cover;
  border-radius: 8px;
}

.service-detail-grid h3 {
  position: relative;
  z-index: 1;
  color: var(--navy);
  font-size: 18px;
  text-align: center;
  font-weight: 800;
  transition: transform 0.18s ease;
}

.service-detail-grid p,
.area-section p,
.message-box p {
  position: relative;
  z-index: 1;
  color: var(--muted);
}

.service-link-card:hover h3,
.service-link-card:focus-visible h3 {
  transform: translateY(-2px);
}

.area-section,
.company-section,
.faq-section {
  background: var(--soft);
}

.area-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: center;
}

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

.area-list li {
  padding: 12px 10px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  font-weight: 800;
}

.page-links {
  background: #ffffff;
}

.page-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.page-link-card {
  position: relative;
  overflow: hidden;
  padding: 28px 72px 28px 28px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.page-link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(159, 211, 241, 0.22) 44%, transparent 72%);
  transform: translateX(-120%);
  transition: transform 0.48s ease;
}

.page-link-card::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 28px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(23, 120, 184, 0.24);
  opacity: 0;
  transform: translate(-10px, -50%) scale(0.86);
  transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.page-link-card:hover,
.page-link-card:focus-visible {
  background: #f8fcff;
  border-color: #8fc9ea;
  box-shadow: 0 18px 36px rgba(32, 88, 129, 0.2);
  transform: translateY(-4px);
}

.page-link-card:hover::before,
.page-link-card:focus-visible::before {
  transform: translateX(120%);
}

.page-link-card:hover::after,
.page-link-card:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}

.page-link-card:active {
  transform: translateY(-1px) scale(0.99);
}

.page-link-card:focus-visible {
  outline: 3px solid rgba(23, 120, 184, 0.28);
  outline-offset: 4px;
}

.page-link-card span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.page-link-card strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.35;
  transition: transform 0.18s ease;
}

.page-link-card p {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  color: var(--muted);
}

.page-link-card:hover strong,
.page-link-card:focus-visible strong {
  transform: translateX(4px);
}

.sub-hero {
  padding: 86px 0;
  color: var(--navy);
  background:
    linear-gradient(90deg, rgba(238, 249, 255, 0.97), rgba(238, 249, 255, 0.58)),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1600&q=85") center / cover;
}

.faq-hero {
  background:
    linear-gradient(90deg, rgba(238, 249, 255, 0.97), rgba(238, 249, 255, 0.58)),
    url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1600&q=85") center / cover;
}

.services-hero {
  background:
    linear-gradient(90deg, rgba(238, 249, 255, 0.97), rgba(238, 249, 255, 0.48)),
    url("assets/hero-clean-living.png") center right / cover;
}

.sub-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.25;
}

.sub-hero p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 0;
  font-weight: 700;
}

.service-nav-section {
  position: sticky;
  top: 86px;
  z-index: 10;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.service-anchor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.service-anchor-grid a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 34px 8px 14px;
  color: var(--navy);
  background: #f8fcff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.service-anchor-grid a::after {
  content: "↓";
  position: absolute;
  right: 14px;
  color: var(--blue);
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.service-anchor-grid a:hover,
.service-anchor-grid a:focus-visible {
  background: #ffffff;
  border-color: #8fc9ea;
  box-shadow: 0 10px 20px rgba(32, 88, 129, 0.14);
  transform: translateY(-2px);
}

.service-anchor-grid a:hover::after,
.service-anchor-grid a:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.service-anchor-grid a:focus-visible {
  outline: 3px solid rgba(23, 120, 184, 0.28);
  outline-offset: 3px;
}

.service-page-section {
  scroll-margin-top: 150px;
  background: #ffffff;
}

.service-page-section.alt {
  background: var(--soft);
}

.service-page-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.service-page-layout.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.service-page-layout.reverse .service-page-image {
  order: 2;
}

.service-page-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-page-content {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.service-kicker {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.service-page-content h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.35;
}

.service-page-content p {
  color: var(--muted);
}

.service-point-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.service-point-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-weight: 700;
}

.service-point-list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--sky-deep);
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--blue);
}

.price-box {
  margin-top: 28px;
  padding: 22px;
  background: #f8fcff;

.payment-methods {
  margin-top: 18px;
  padding: 18px 20px;
  background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
  border: 1px solid #d8eaf5;
  border-radius: 8px;
}

.payment-methods-title {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
}

.payment-methods-body {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
  border: 1px solid var(--border);
  border-radius: 8px;
}

.price-box h3 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 20px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: #ffffff;
  border-radius: 8px;
}

.price-table th,
.price-table td {
  padding: 14px;
  border: 1px solid #d8eaf5;
  text-align: left;
}

.price-table th {
  width: 52%;
  color: var(--navy);
  background: #eff9ff;
  font-weight: 800;
}

.price-table .price-category th {
  width: auto;
  color: #ffffff;
  background: var(--blue);
  text-align: center;
}

.price-table td {
  color: var(--navy);
  font-weight: 800;
}

.price-note {
  margin: 12px 0 0;
  font-size: 13px;
}

.service-price-link {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 18px 20px;
  background: #f8fcff;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.service-price-link p {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.service-price-link a {
  position: relative;
  flex: 0 0 auto;
  padding: 10px 34px 10px 16px;
  color: var(--blue);
  background: #ffffff;
  border: 1px solid #bfe1f5;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(32, 88, 129, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.service-price-link a::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: transform 0.18s ease;
}

.service-price-link a:hover,
.service-price-link a:focus-visible {
  color: var(--navy);
  border-color: var(--sky-deep);
  box-shadow: 0 14px 28px rgba(32, 88, 129, 0.13);
  transform: translateY(-2px);
}

.service-price-link a:hover::after,
.service-price-link a:focus-visible::after {
  transform: translate(4px, -50%);
}

.price-page-section {
  background: #ffffff;
}

.price-page-section.alt {
  background: var(--soft);
}

.price-page-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(360px, 1.22fr);
  gap: 30px;
  align-items: start;
}

.price-page-copy {
  position: sticky;
  top: 112px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-page-copy h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.35;
}

.price-page-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.price-page-grid .price-box {
  margin-top: 0;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.price-overview-card {
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-overview-head {
  max-width: 780px;
  margin-bottom: 24px;
}

.price-overview-head h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.35;
}

.price-overview-head p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

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

.price-menu-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(32, 88, 129, 0.09);
}

.price-menu-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--sky-deep));
}

.price-menu-card-featured {
  background: linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
}

.price-menu-card-wide {
  grid-row: span 2;
}

.price-menu-card-head {
  margin-bottom: 18px;
}

.price-menu-label {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.price-menu-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.45;
}

.price-menu-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.price-menu-list div,
.room-price-grid div,
.consult-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid #d8eaf5;
  border-radius: 8px;
}

.price-menu-list .price-menu-group {
  justify-content: center;
  padding: 7px 12px;
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
}

.price-menu-list .price-menu-group dt {
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.price-menu-list .price-menu-group dd {
  display: none;
}

.price-menu-list dt,
.room-price-grid span,
.consult-price span {
  color: var(--text);
  font-weight: 700;
}

.price-menu-list dd,
.room-price-grid strong,
.consult-price strong {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.room-price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.consult-price {
  min-height: 86px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.consult-price strong {
  font-size: 24px;
}

.price-menu-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

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

.price-check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-weight: 700;
}

.price-check-list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--sky-deep);
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--blue);
}

.estimate-cta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #d8eaf5;
}

.estimate-cta-title {
  display: grid;
  gap: 5px;
  justify-items: center;
  margin: 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.estimate-cta-title::after {
  content: "↓";
  color: var(--blue);
  font-size: 20px;
  line-height: 1;
}

.service-consult-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  justify-content: center;
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 30px;
  align-items: stretch;
}

.company-card {
  padding: 32px;
}

.company-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid #d8eaf5;
  border-radius: 16px;
  font-size: 15px;
}

.company-table th,
.company-table td {
  padding: 16px 14px;
  border-right: 1px solid #d8eaf5;
  border-bottom: 1px solid #d8eaf5;
  text-align: left;
  vertical-align: top;
}

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

.company-table th:last-child,
.company-table td:last-child {
  border-right: 0;
}

.company-table th {
  width: 150px;
  color: var(--navy);
  background: #eff9ff;
  font-weight: 800;
}

.company-photo {
  margin: 0;
}

.company-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.message-section {
  background: #ffffff;
}

.message-box {
  padding: 34px;
}

.message-box h2 {
  color: var(--navy);
  font-size: 26px;
}

.company-message-box {
  position: relative;
  max-width: 980px;
  overflow: hidden;
  padding: 42px 46px 42px 54px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fcff 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.company-message-box::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 28px;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), var(--sky-deep));
  border-radius: 999px;
}

.company-message-box::after {
  content: "Message";
  position: absolute;
  right: 34px;
  bottom: 22px;
  color: rgba(23, 120, 184, 0.08);
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.company-message-box h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  font-size: 28px;
  line-height: 1.45;
}

.company-message-box p {
  max-width: 820px;
  margin: 0;
  font-size: 16px;
  line-height: 2.15;
  letter-spacing: 0;
}

.faq-layout {
  max-width: 820px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 20px 22px;
  color: var(--navy);
  background: #ffffff;
  border: 0;
  text-align: left;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.faq-question i {
  color: var(--blue);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.site-footer {
  padding: 54px 0 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(150px, 0.75fr) minmax(190px, 0.9fr) minmax(190px, 0.9fr);
  gap: 30px;
  align-items: start;
}

.footer-brand {
  max-width: 520px;
}

.footer-kicker {
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.footer-brand strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.35;
}

.footer-brand p,
.footer-area p,
.footer-bottom p {
  color: var(--muted);
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.footer-nav h2,
.footer-area h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.4;
}

.footer-nav ul,
.footer-area ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-nav a::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  background: var(--sky-deep);
  border-radius: 50%;
  transition: transform 0.18s ease, background 0.18s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--blue);
  transform: translateX(3px);
}

.footer-nav a:hover::before,
.footer-nav a:focus-visible::before {
  background: var(--blue);
  transform: scale(1.22);
}

.footer-nav a:focus-visible {
  outline: 3px solid rgba(23, 120, 184, 0.22);
  outline-offset: 4px;
  border-radius: 6px;
}

.footer-area ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.footer-area li {
  padding: 7px 9px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid #d7ebf7;
  border-radius: 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid #d7ebf7;
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
}

.copyright {
  margin: 0;
  color: #8aa2b5;
  font-size: 12px;
}

@media (min-width: 981px) and (max-width: 1120px) {
  .container {
    width: min(100% - 20px, 1120px);
  }

  .header-inner {
    gap: 12px;
    min-height: 72px;
  }

  .header-logo {
    min-width: 190px;
  }

  .logo-text small {
    font-size: 9px;
  }

  .logo-text strong {
    font-size: 14px;
  }

  .global-nav {
    gap: 4px;
    padding: 4px;
    background: #f8fcff;
    border: 1px solid #e3f1fa;
    border-radius: 999px;
    font-size: 12px;
    box-shadow: 0 8px 18px rgba(32, 88, 129, 0.08);
  }

  .global-nav a {
    min-width: 58px;
    padding: 8px 9px;
    text-align: center;
    white-space: nowrap;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .btn-line,
  .header-actions .header-phone {
    min-height: 44px;
    padding: 0 12px;
    font-size: 12px;
  }

  .header-actions .header-phone .phone-text {
    gap: 3px;
  }

  .header-actions .header-phone .phone-text small {
    font-size: 11px;
  }

  .header-actions .header-phone .phone-text span {
    font-size: 10px;
  }

  .header-actions .instagram-link {
    width: 38px;
    height: 38px;
    font-size: 23px;
  }

  .header-actions .btn-line i,
  .header-actions .header-phone i {
    font-size: 15px;
  }
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 14px 0;
    gap: 12px 18px;
  }

  .header-actions {
    order: 2;
    width: auto;
    margin-left: auto;
    gap: 12px;
    justify-content: flex-end;
  }

  .global-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 10px;
    max-height: 54px;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
    transition: max-height 0.22s ease, opacity 0.18s ease, transform 0.22s ease, margin 0.22s ease;
  }

  .global-nav a {
    min-width: 112px;
    text-align: center;
    white-space: nowrap;
  }

  .site-header.nav-collapsed .global-nav {
    max-height: 0;
    margin-top: -8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }

  .service-cards,
  .service-detail-grid,
  .area-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .reasons-grid,
  .area-grid,
  .company-layout,
  .price-page-grid,
  .service-page-layout,
  .service-page-layout.reverse {
    grid-template-columns: 1fr;
  }

  .price-page-copy {
    position: static;
  }

  .service-page-layout.reverse .service-page-image {
    order: 0;
  }

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

  .reason-card {
    border-right: 0;
    border: 2px solid #99cce9;
  }

  .reason-card:last-child {
    border-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-brand {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .header-inner {
    min-height: 0;
    gap: 12px;
  }

  .header-logo {
    min-width: 0;
    max-width: calc(100% - 164px);
  }

  .logo-text small {
    font-size: 10px;
  }

  .logo-text strong {
    font-size: 15px;
  }

  .global-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 6px;
    max-height: 54px;
    overflow-x: hidden;
    overflow-y: hidden;
    padding-bottom: 2px;
    opacity: 1;
    transform: translateY(0);
    transition: max-height 0.22s ease, opacity 0.18s ease, transform 0.22s ease, margin 0.22s ease;
  }

  .global-nav a {
    flex: 1 1 0;
    min-width: 0;
    padding: 8px 4px;
    text-align: center;
    font-size: 0;
    white-space: nowrap;
  }

  .global-nav a::after {
    content: attr(data-short);
    font-size: 12px;
  }

  .header-actions {
    display: flex;
    position: absolute;
    top: 14px;
    right: 0;
    width: auto;
    gap: 12px;
    justify-content: flex-end;
  }

  .header-actions .btn-line,
  .header-actions .header-phone,
  .header-actions .instagram-link {
    width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
    border-radius: 50%;
  }

  .header-actions .btn-line,
  .header-actions .header-phone {
    font-size: 0;
    gap: 0;
  }

  .header-actions .btn-line i,
  .header-actions .header-phone i,
  .header-actions .instagram-link i {
    font-size: 18px;
  }

  .header-actions .header-phone {
    background: #eef8ff;
  }

  .header-actions .header-phone span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .site-header.nav-collapsed .global-nav {
    max-height: 0;
    margin-top: -8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }

  .hero,
  .hero-inner {
    min-height: 0;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(238, 249, 255, 0.76), rgba(238, 249, 255, 0.5)),
      url("assets/hero-clean-living.png") center / cover;
  }

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

  .service-cards,
  .service-detail-grid,
  .area-list,
  .page-link-grid,
  .service-anchor-grid {
    grid-template-columns: 1fr;
  }

  .service-nav-section {
    position: static;
  }

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

  .hero-badges span {
    width: 100%;
  }

  .section-pad {
    padding: 52px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .company-card,
  .message-box,
  .page-link-card,
  .price-overview-card,
  .price-page-copy,
  .service-page-content {
    padding: 22px;
  }

  .company-message-box {
    padding: 30px 24px 30px 32px;
  }

  .company-message-box::before {
    top: 28px;
    bottom: 28px;
    left: 18px;
  }

  .company-message-box::after {
    right: 18px;
    bottom: 16px;
    font-size: 38px;
  }

  .company-message-box h2 {
    font-size: 23px;
  }

  .company-message-box p {
    font-size: 15px;
    line-height: 2;
  }

  .page-link-card,
  .service-link-card {
    padding-right: 58px;
  }

  .service-page-content h2 {
    font-size: 24px;
  }

  .price-page-copy h2 {
    font-size: 24px;
  }

  .price-overview-head h2 {
    font-size: 24px;
  }

  .service-price-link {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-menu-grid {
    grid-template-columns: 1fr;
  }

  .price-menu-card-wide {
    grid-row: auto;
  }

  .room-price-grid {
    grid-template-columns: 1fr;
  }

  .price-table th,
  .price-table td {
    display: block;
    width: 100%;
  }

  .price-table th {
    border-bottom: 0;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }

  .company-table th {
    border-bottom: 0;
  }

  .company-photo img {
    min-height: 260px;
  }

  .site-footer {
    padding: 42px 0 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-brand strong {
    font-size: 20px;
  }

  .footer-cta {
    align-items: center;
    gap: 12px;
  }

  .footer-cta .btn-line,
  .footer-cta .footer-phone,
  .service-consult-actions .btn-line,
  .service-consult-actions .footer-phone {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
    border-radius: 50%;
    gap: 0;
    font-size: 0;
  }

  .footer-cta .btn-line i,
  .footer-cta .footer-phone i,
  .service-consult-actions .btn-line i,
  .service-consult-actions .footer-phone i {
    font-size: 18px;
  }

  .footer-cta .btn-line span,
  .footer-cta .footer-phone .phone-text,
  .service-consult-actions .btn-line span,
  .service-consult-actions .footer-phone .phone-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .footer-cta .footer-phone,
  .service-consult-actions .footer-phone {
    background: #eef8ff;
  }

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