:root {
  --primary: #0277BD;
  --primary-dark: #01579B;
  --primary-mid: #0288D1;
  --primary-light: #E1F5FE;
  --accent: #00BCD4;
  --accent-light: #E0F7FA;
  --cta: #FF6F00;
  --cta-hover: #E65100;
  --text-dark: #1A1A1A;
  --text-mid: #444;
  --text-light: #777;
  --bg-white: #FFFFFF;
  --bg-gray: #F7FBFF;
  --border: #D0E4F2;
  --font: 'Hiragino Kaku Gothic ProN','Hiragino Sans','Meiryo',sans-serif;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--bg-white);
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--bg-gray);
}

/* 害虫LPと同型のセクション変種（FAQなど） */
.section--alt {
  background: var(--bg-gray);
}

.section-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-mid);
  font-size: 15px;
  margin-bottom: 48px;
}

.tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.tag-accent {
  background: var(--cta);
}

/* セクション見出し（害虫LP「対応害虫タイプ」と同型・water配色） */
.text-center {
  text-align: center;
}

.section-label {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: clamp(14px, 2.5vw, 36px);
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 4px 24px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 36px;
}

/* リード文なしの見出しブロック（例：FAQ）でも下マージンを揃える */
.text-center:not(:has(.section-sub)) {
  margin-bottom: 36px;
}

.section-title.airflow-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: bold;
  margin-bottom: 12px;
}

.section-title-accent {
  color: var(--primary);
}

@media (max-width: 768px) {
  .section-label {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    white-space: nowrap;
    font-size: clamp(11px, calc(2.7vw + 6px), 26px);
    line-height: 1.25;
    letter-spacing: 0.03em;
    padding: 8px 12px 10px;
  }
}

/* Header（air_con と同一：ボタン画像・オーバーレイ文言は water） */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  backdrop-filter: blur(8px);
  height: 78px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  color: var(--primary-dark);
}

.header-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.logo {
  color: var(--primary-dark);
  font-size: 18px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
  flex: 1 1 0;
}

.logo p {
  margin: 0;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.logo span {
  color: var(--primary);
}

.logo small {
  color: var(--primary-mid);
  font-weight: 600;
  display: block;
  line-height: 1.25;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  flex-shrink: 0;
  min-width: 0;
}

.header-btn {
  display: block;
  line-height: 0;
}

.header-btn picture {
  display: block;
  line-height: 0;
}

.header-btn--tel {
  flex-shrink: 0;
  position: relative;
}

.header-tel__wide {
  display: block;
  position: relative;
  line-height: 0;
}

.header-btn--tel picture.header-tel__narrow {
  display: none;
}

.header-tel__bg {
  display: block;
  height: 64px;
  width: auto;
  max-width: 100%;
}

.header-tel__inner {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  padding: 0 clamp(6px, 1.2vw, 14px);
  box-sizing: border-box;
  pointer-events: none;
}

.header-tel__cluster {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2px, 0.35vw, 7px);
  min-width: 0;
}

.header-tel__icon {
  display: block;
  font-size: clamp(16px, 1.45vw, 24px);
  color: #fff;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.22));
}

.header-tel__label {
  margin: 0;
  padding: 0;
  color: #fff;
  font-weight: 600;
  font-size: clamp(12px, 1.15vw, 18px);
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.25),
    0 0 1px rgba(0, 0, 0, 0.15);
}

.header-btn--tel picture img {
  display: block;
  height: 64px;
  width: auto;
  max-width: 100%;
}

.header-btn--mail {
  flex-shrink: 0;
}

.header-btn--mail img {
  display: block;
  height: 64px;
  width: auto;
}

/* 緊急バナー（害虫LPと同型） */
.urgent-banner {
  margin-top: 78px;
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.urgent-banner .blink {
  display: inline-block;
  background: #ffcc02;
  color: #8e0000;
  font-size: 12px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 3px;
}

.urgent-banner__text {
  /* flex:1 だと2列目が横いっぱいになり 緊急対応 だけ左に寄る */
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
}

/* ===========================
   ヒーロー（害虫LPと同一・fv_bg / fv_pc）
   =========================== */
.hero {
  background:
    linear-gradient(
      180deg,
      rgba(11, 35, 67, 0.14) 0%,
      rgba(11, 35, 67, 0.14) 100%
    ),
    url("../images/fv_bg.webp") center center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 28px 0 0;
  /* flex 内の改行空白ノードのストラット余白を消す */
  line-height: 0;
  font-size: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  line-height: 0;
  font-size: 0;
}

.hero-fv {
  width: min(100%, 1040px);
  height: auto;
  display: block;
  margin: 0;
  font-size: 1rem;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.16));
}

/* CTA bar（air_con と同一画像・枠色 #2c4a97 / タイトル #1f4aa0） */
.trust-bar {
  background: #fff;
  padding: 28px 0 24px;
}

.trust-cta-panel {
  border: 4px solid #2c4a97;
  background: #fff;
  padding: 18px 18px 22px;
}

.trust-cta-title {
  color: #1f4aa0;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 18px;
}

.trust-cta-actions {
  display: flex;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
}

.trust-cta-note {
  margin: 14px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
}

.btn_mail,
.btn_tel {
  position: relative;
  flex: 1 1 0;
  max-width: 540px;
  min-width: 0;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn_mail:hover,
.btn_tel:hover {
  transform: translateY(-2px);
}

.btn_mail {
  display: block;
  line-height: 0;
}

.btn_mail img {
  display: block;
  width: 100%;
  height: auto;
}

.btn_tel {
  display: block;
  align-self: stretch;
}

.btn_tel__bg {
  display: block;
  width: 100%;
  height: auto;
}

.btn_tel__inner {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  padding: 0 clamp(8px, 2.2vw, 22px);
  box-sizing: border-box;
  pointer-events: none;
}

.btn_tel__cluster {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.8vw, 16px);
  min-width: 0;
}

.btn_tel__icon {
  display: block;
  font-size: clamp(20px, 5.8vw, 34px);
  color: #fff;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.22));
}

.btn_tel__label {
  margin: 0;
  padding: 0;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: clamp(17px, 3.1vw, 34px);
  line-height: 1;
  letter-spacing: 0.03em;
  white-space: nowrap;
  pointer-events: none;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.25),
    0 0 1px rgba(0, 0, 0, 0.15);
}

/* REASONS BAR（air_con と同一） */
.numbers-bar {
  background: #fffae4;
  padding: 28px 0 32px;
}

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

.numbers-grid--reasons .reason-item {
  display: block;
}

.numbers-grid--reasons .reason-item img {
  display: block;
  width: 100%;
  height: auto;
}

/* Trouble types */
/* 対応トラブル（害虫LP「対応害虫タイプ」と同型・16:9画像・water色） */
.trouble-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trouble-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.2s;
  cursor: default;
}

.trouble-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(2, 119, 189, 0.15);
}

.trouble-thumb {
  margin: 0 auto 10px;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #e8f1f8;
}

.trouble-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.trouble-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.trouble-desc {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.5;
}

.trouble-urgent {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  margin-top: 6px;
}

.trouble-urgent.acc {
  background: var(--accent);
  color: #005662;
}

/* Reasons */
.reason-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reason-list .reason-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.07);
  border-left: 5px solid var(--primary);
}

.reason-list .reason-item:nth-child(2) {
  border-left-color: var(--accent);
}

.reason-list .reason-item:nth-child(3) {
  border-left-color: var(--cta);
}

.reason-num {
  width: 72px;
  height: 72px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  gap: 2px;
  flex-shrink: 0;
}

.reason-list .reason-item:nth-child(2) .reason-num {
  background: var(--accent);
}

.reason-list .reason-item:nth-child(3) .reason-num {
  background: var(--cta);
}

.reason-num .rn-big {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.reason-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  background: var(--primary-light);
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.reason-list .reason-item:nth-child(2) .reason-tag {
  background: var(--accent-light);
  color: #006064;
}

.reason-list .reason-item:nth-child(3) .reason-tag {
  background: #FFF3E0;
  color: var(--cta-hover);
}

.reason-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.reason-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* Price table */
.price-table-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.price-table th {
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  font-weight: 700;
  text-align: left;
}

.price-table th:not(:first-child) {
  text-align: center;
}

.price-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.price-table td:not(:first-child) {
  text-align: center;
  font-weight: 700;
  color: var(--primary-dark);
}

.price-table tr:nth-child(even) {
  background: var(--bg-gray);
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-note {
  background: #FFF8E1;
  border: 1.5px solid #FFE082;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13px;
  color: #5D4037;
  line-height: 1.7;
  text-align: center;
}

/* ご利用の流れ（ステップが一目で追えるカード＋番号強調） */
.section--flow {
  background: linear-gradient(
    180deg,
    var(--bg-gray) 0%,
    #fff 28%,
    #fff 100%
  );
}

.flow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 22px);
  align-items: stretch;
}

.flow-step {
  margin: 0;
  padding: 0;
  position: relative;
  min-width: 0;
}

.flow-step-card {
  height: 100%;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: clamp(18px, 2.4vw, 26px) clamp(12px, 1.8vw, 18px)
    clamp(20px, 2.6vw, 28px);
  box-shadow: 0 6px 24px rgba(2, 119, 189, 0.07);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  position: relative;
}

.flow-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(2, 119, 189, 0.14);
  border-color: rgba(2, 119, 189, 0.42);
}

.flow-step-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
}

.flow-step-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--primary);
  text-transform: uppercase;
}

.flow-step-index {
  font-size: clamp(2.125rem, 5vw, 2.875rem);
  font-weight: 900;
  line-height: 1;
  color: var(--primary-dark);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.flow-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  font-size: clamp(26px, 5vw, 32px);
  border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.flow-step:nth-child(1) .flow-icon {
  background: linear-gradient(145deg, var(--primary) 0%, #0288d1 100%);
}

.flow-step:nth-child(2) .flow-icon {
  background: linear-gradient(145deg, #0288d1 0%, var(--primary-mid) 100%);
}

.flow-step:nth-child(3) .flow-icon {
  background: linear-gradient(145deg, var(--accent) 0%, #26c6da 100%);
}

.flow-step:nth-child(4) .flow-icon {
  background: linear-gradient(145deg, var(--cta) 0%, #ffa726 100%);
}

.flow-step:nth-child(5) .flow-icon {
  background: linear-gradient(145deg, #2e7d32 0%, #43a047 100%);
}

.flow-step-title {
  font-size: clamp(16px, 1.65vw, 18px);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 10px;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.flow-step-desc {
  font-size: clamp(13px, 1.35vw, 15px);
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
  text-align: center;
}

/* PC：カード間の矢印で流れを示す */
@media (min-width: 769px) {
  .flow-step:not(:last-child) .flow-step-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: clamp(-16px, -1.4vw, -12px);
    width: 11px;
    height: 11px;
    border-right: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
    transform: translateY(-50%) rotate(-45deg);
    opacity: 0.4;
    pointer-events: none;
    z-index: 2;
  }
}

/* 口コミ（害虫LPと同型・water配色） */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--border);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--primary-light);
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-meta strong {
  font-size: 14px;
  color: var(--text-dark);
  display: block;
}

.review-meta span {
  font-size: 12px;
  color: var(--text-light);
}

.review-stars {
  color: #ffb300;
  font-size: 15px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 0 0 8px;
}

.reviews-summary {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: var(--primary-light);
  border-radius: 14px;
  padding: 20px 32px;
  flex-wrap: wrap;
  border: 1px solid var(--border);
}

.reviews-summary-item {
  text-align: center;
}

.reviews-summary-val {
  font-size: clamp(18px, 4vw, 32px);
  font-weight: bold;
  color: var(--primary);
  line-height: 1;
}

.reviews-summary-label {
  font-size: 12px;
  color: var(--text-mid);
  margin-top: 4px;
}

/* FAQ（害虫LPと同型・water配色） */
.faq-list {
  margin-top: 32px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(2, 119, 189, 0.08);
}

.faq-q {
  margin: 0;
  padding: 18px 20px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: bold;
  font-size: 14px;
  color: var(--text-dark);
}

.faq-q-text {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.faq-q-icon {
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 13px;
  flex-shrink: 0;
}

.faq-a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0 20px 18px;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.faq-a-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(145deg, var(--accent), var(--primary-dark));
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 13px;
  flex-shrink: 0;
}

.faq-a-text {
  flex: 1;
  margin: 0;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* クロージングCTA（害虫LPと同型・water配色・trustバーと同じ画像ボタン） */
.closing-cta {
  background: #fff;
  padding: 28px 0 36px;
  text-align: center;
}

.closing-cta-panel {
  margin: 0 auto;
}

.closing-cta-title {
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.closing-cta-accent {
  color: var(--primary);
}

.closing-sub {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 auto 20px;
  max-width: 520px;
  text-align: center;
}

.closing-cta-actions {
  margin-bottom: 0;
}

.closing-points {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.closing-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-weight: bold;
  font-size: clamp(12px, 3.2vw, 14px);
  letter-spacing: 0.02em;
  padding: 9px 18px;
  border-radius: 100px;
  white-space: nowrap;
  line-height: 1.25;
}

.urgency-badge {
  display: inline-block;
  background: rgba(2, 119, 189, 0.1);
  border: 1px solid rgba(2, 119, 189, 0.35);
  color: var(--primary-dark);
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.closing-note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 20px;
  margin-bottom: 0;
}

/* Footer（明るい水色トーン・LP全体と統一） */
footer {
  background: linear-gradient(
    180deg,
    var(--bg-gray) 0%,
    var(--primary-light) 48%,
    #b3e5fc 100%
  );
  color: var(--text-mid);
  padding: 40px 0 24px;
  font-size: 13px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer-logo {
  color: var(--primary-dark);
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}

.footer-logo span {
  color: var(--primary);
}

.footer-desc {
  font-size: 12px;
  line-height: 1.8;
  max-width: 280px;
  color: var(--text-mid);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li a {
  color: var(--primary-dark);
  font-size: 12px;
  opacity: 0.88;
}

.footer-links li a:hover {
  color: var(--primary);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(2, 119, 189, 0.2);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  color: var(--text-light);
}

@media (min-width: 769px) {
  .btn_tel__cluster {
    gap: clamp(2px, 0.35vw, 7px);
  }
}

@media (max-width: 768px) {
  .trust-bar {
    padding: 20px 0 18px;
  }

  .trust-cta-panel {
    border-width: 3px;
    padding: 16px 12px 18px;
  }

  .trust-cta-title {
    margin-bottom: 14px;
  }

  .trust-cta-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn_mail,
  .btn_tel {
    max-width: none;
    width: 100%;
  }

  .btn_tel__label {
    font-size: clamp(24px, 7vw, 34px);
  }

  header {
    height: auto;
    min-height: 64px;
    padding: 8px 0;
  }

  .header-inner {
    padding: 0 12px;
    gap: 10px;
  }

  .logo {
    font-size: 13px;
    flex: 1 1 0;
    min-width: 0;
  }

  .logo p {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.25;
  }

  .logo small {
    display: block;
    font-size: 10px;
    font-weight: bold;
    line-height: 1.2;
  }

  .header-right {
    flex: 0 0 auto;
    min-width: 0;
    gap: 5px;
    align-items: center;
    justify-content: flex-end;
  }

  .header-tel__wide {
    display: none;
  }

  .header-btn--tel picture.header-tel__narrow {
    display: block;
    line-height: 0;
  }

  .header-btn--tel picture {
    display: block;
    width: auto;
    max-width: 100%;
    margin: 0;
  }

  .header-btn--tel picture img {
    width: auto;
    height: 52px;
    max-width: 100%;
    max-height: 52px;
    object-fit: contain;
    object-position: center;
  }

  .header-btn--mail img {
    display: block;
    width: auto;
    height: 52px;
    max-width: 100%;
    max-height: 52px;
    object-fit: contain;
    object-position: center;
  }

  .header-btn--tel,
  .header-btn--mail {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .urgent-banner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 6px 10px;
    padding: 7px 12px;
    font-size: 12px;
    line-height: 1.35;
    text-align: left;
  }

  .urgent-banner .blink {
    font-size: 11px;
    padding: 1px 6px;
    margin-top: 1px;
  }

  .urgent-banner__text {
    text-align: left;
    line-height: 1.35;
  }

  .hero {
    padding: 20px 0 0;
  }

  .hero-inner {
    padding: 0 16px;
  }

  .hero-fv {
    width: 100%;
  }

  .reason-list .reason-item {
    grid-template-columns: 1fr;
  }

  .numbers-grid--reasons {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

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

  .flow-steps {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 22px;
    border-left: 4px solid var(--primary-light);
    position: relative;
  }

  .flow-step {
    padding-bottom: 22px;
  }

  .flow-step:last-child {
    padding-bottom: 0;
  }

  .flow-step::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 30px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--primary-light);
    z-index: 1;
  }

  .flow-step-card {
    text-align: left;
    align-items: flex-start;
  }

  .flow-step-meta {
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
  }

  .flow-step-eyebrow {
    letter-spacing: 0.14em;
    font-size: 11px;
  }

  .flow-icon {
    margin-left: 0;
    margin-right: auto;
  }

  .flow-step-title {
    width: 100%;
    text-align: left;
  }

  .flow-step-desc {
    text-align: left;
  }

  .flow-step:not(:last-child) .flow-step-card::after {
    display: none;
  }

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

@media (max-width: 520px) {
  .numbers-grid--reasons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}
