/* =========================================
   Reset & Base
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
:root {
  --primary: #1F8A70;
  --primary-dark: #176c57;
  --primary-light: #2ba787;
  --navy: #1E3A5F;
  --navy-dark: #14283f;
  --navy-light: #2c4f7d;
  --line-green: #06C755;
  --line-green-dark: #05a548;
  --bg-light: #f5f7fa;
  --bg-soft: #eef2f6;
  --text: #1a2332;
  --text-muted: #5a6878;
  --text-light: #8a96a4;
  --border: #e3e8ee;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(30, 58, 95, 0.06), 0 1px 2px rgba(30, 58, 95, 0.04);
  --shadow-md: 0 4px 12px rgba(30, 58, 95, 0.08), 0 2px 4px rgba(30, 58, 95, 0.04);
  --shadow-lg: 0 10px 30px rgba(30, 58, 95, 0.12), 0 4px 10px rgba(30, 58, 95, 0.06);
}
body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
  background: var(--white);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-title {
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 40px;
}

/* =========================================
   Header
   ========================================= */
.header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
}
.header-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.logo-text { line-height: 1.2; }
.logo-tag {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  display: block;
}
.logo-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.nav { display: flex; gap: 28px; align-items: center; }
.nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: color 0.2s;
}
.nav a:hover { color: var(--primary); }
.nav a:hover::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-tel { line-height: 1.2; text-align: right; }
.header-tel-time { font-size: 10px; color: var(--text-muted); }
.header-tel-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
}
.header-tel-num svg { width: 18px; height: 18px; }
.btn-quote-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  transition: background 0.2s, transform 0.1s;
}
.btn-quote-header:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-quote-header svg { width: 16px; height: 16px; }

/* =========================================
   Hero
   ========================================= */
.hero {
  position: relative;
  background: linear-gradient(135deg, #f8fafb 0%, #eaf1f5 100%);
  overflow: hidden;
  padding: 100px 0;
  height: 750px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  background-image: url("/images/mv_pc.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-title {
  font-size: clamp(24px, 3.6vw, 38px);
  font-weight: 900;
  line-height: 1.4;
  color: var(--navy);
  margin: 24px 0;
}
.hero-title .small { font-size: 0.85em; font-weight: 700; display: block; margin: 10px 0; }
.hero-title .accent {
  color: var(--primary);
  background: linear-gradient(transparent 65%, rgba(31, 138, 112, 0.18) 65%);
  padding: 0 4px;
  font-size: 1.5em;
}
.hero-checks { margin-bottom: 28px; }
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5em;
  font-weight: 500;
  color: var(--text);
  padding: 6px 0;
}
.hero-checks .check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-checks .check-icon svg { width: 12px; height: 12px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 6px;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.25);
}
.btn-primary:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(30, 58, 95, 0.3); }
.btn-line {
  background: var(--line-green);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.25);
}
.btn-line:hover { background: var(--line-green-dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(6, 199, 85, 0.3); }
.btn svg { width: 18px; height: 18px; }

/* Hero Right (image collage) */
.hero-visual {
  position: relative;
  height: 460px;
}
.hero-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-before, .hero-img-after {
  position: absolute;
  bottom: 0;
  width: 32%;
  height: 170px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-img-before { right: 33%; }
.hero-img-after { right: 0; }
.hero-img-before img, .hero-img-after img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.1em;
}
.hero-badge {
  position: absolute;
  bottom: 175px;
  left: 6%;
  width: 130px;
  height: 130px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.18);
  animation: badge-pop 0.6s 0.3s backwards cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-badge .top { font-size: 13px; color: var(--primary); margin-bottom: 2px; }
.hero-badge .mid { font-size: 18px; line-height: 1.2; }
.hero-badge .bot { font-size: 18px; line-height: 1.2; }
@keyframes badge-pop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* =========================================
   Stats Bar
   ========================================= */
.stats {
  background: var(--navy);
  color: var(--white);
  padding: 28px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.stat:last-child { border-right: none; }
.stat-icon { color: rgba(255, 255, 255, 0.85); }
.stat-icon svg { width: 30px; height: 30px; }
.stat-text { line-height: 1.3; }
.stat-num {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.stat-num .unit { font-size: 16px; font-weight: 500; margin-left: 2px; }
.stat-label { font-size: 11px; color: rgba(255, 255, 255, 0.7); }

/* =========================================
   Services
   ========================================= */
.services { padding: 80px 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-img {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-img img { transform: scale(1.04); }
.service-icon-circle {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(31, 138, 112, 0.35);
  border: 3px solid var(--white);
}
.service-icon-circle svg { width: 22px; height: 22px; }
.service-body { padding: 36px 24px 24px; text-align: center; flex: 1; display: flex; flex-direction: column; }
.service-name { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; letter-spacing: 0.05em; }
.service-desc { font-size: 13px; color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; flex: 1; text-align: left; }
.service-tag {
  display: inline-block;
  align-self: center;
  padding: 8px 18px;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

/* =========================================
   Pricing
   ========================================= */
.pricing { padding: 80px 0; background: var(--white); }
.pricing-note { text-align: center; color: var(--text-muted); font-size: 13px; margin-bottom: 36px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.price-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.price-card-head {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.price-amount {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  margin: 12px 0 20px;
  letter-spacing: 0.02em;
}
.price-amount .yen { font-size: 18px; font-weight: 500; }
.price-amount .tilde { font-size: 18px; }
.price-quote {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 12px 0 20px;
}
.price-rows { font-size: 13px; }
.price-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px dashed var(--border);
}
.price-row:first-child { border-top: none; }
.price-row .lbl { color: var(--text-muted); }
.price-row .val { color: var(--text); font-weight: 500; }
.price-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 28px;
}
.price-disclaimer .accent { color: var(--primary); }

/* =========================================
   Cases (Carousel)
   ========================================= */
.cases { padding: 80px 0; background: var(--bg-light); }
.cases-wrapper { position: relative; padding: 0 50px; }
.cases-track-container { overflow: hidden; }
.cases-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.case-card {
  flex: 0 0 calc((100% - 40px) / 3);
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.case-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  position: relative;
}
.case-imgs > div { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.case-imgs img { width: 100%; height: 100%; object-fit: cover; }
.case-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.1em;
  z-index: 2;
}
.case-body { padding: 18px 20px 20px; }
.case-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.case-spec { font-size: 12px; }
.case-spec-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  color: var(--text-muted);
}
.case-spec-row .dot {
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.case-spec-row .lbl { flex: 1; }
.case-spec-row .val { color: var(--text); font-weight: 500; }
.case-result {
  margin-top: 14px;
  padding: 12px;
  background: var(--bg-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.case-result .label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  padding: 4px 10px;
  border-radius: 3px;
}
.case-result .price { font-size: 22px; font-weight: 900; color: var(--primary); }
.case-result.refund .price { color: #d32f2f; }
.case-result.refund .price small { font-size: 10px; font-weight: 500; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 3;
  transition: background 0.2s, color 0.2s;
}
.carousel-btn:hover { background: var(--navy); color: var(--white); }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }
.carousel-btn svg { width: 16px; height: 16px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}
.carousel-dot.active { background: var(--navy); width: 24px; border-radius: 4px; }

/* =========================================
   Process Flow
   ========================================= */
.process { padding: 70px 0 80px; background: var(--white); }
.process-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: start;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
  padding: 0 8px;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 60px;
  right: -8px;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  transform: rotate(45deg);
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(31, 138, 112, 0.3);
}
.process-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 14px;
}
.process-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.process-icon svg { width: 28px; height: 28px; }
.process-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================================
   Reasons
   ========================================= */
.reasons { padding: 70px 0 80px; background: var(--navy); color: var(--white); }
.reasons .section-title { color: var(--white); }
.reasons .section-subtitle { color: rgba(255, 255, 255, 0.65); }
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.reason {
  text-align: center;
  padding: 0 12px;
}
.reason-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.25s;
}
.reason:hover .reason-icon { background: var(--primary); border-color: var(--primary); }
.reason-icon svg { width: 30px; height: 30px; }
.reason-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.reason-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

/* =========================================
   Voice (Testimonials)
   ========================================= */
.voice { padding: 80px 0; background: var(--bg-light); }
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.voice-card {
  background: var(--white);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  gap: 16px;
  border: 1px solid var(--border);
}
.voice-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--bg-soft);
  overflow: hidden;
}
.voice-avatar img { width: 100%; height: 100%; object-fit: cover; }
.voice-content { flex: 1; }
.voice-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 8px;
}
.voice-text {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.voice-meta {
  font-size: 11px;
  color: var(--text-light);
  display: flex;
  gap: 16px;
}

/* =========================================
   FAQ
   ========================================= */
.faq { padding: 80px 0; background: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--primary); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  text-align: left;
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  transition: background 0.2s;
}
.faq-q:hover { background: var(--bg-light); }
.faq-q-mark {
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.faq-q-text { flex: 1; }
.faq-q-toggle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: transform 0.3s, background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-q-toggle { transform: rotate(45deg); background: var(--primary); color: var(--white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 0 18px 18px 40px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* =========================================
   CTA Block
   ========================================= */
.cta-block {
  background: var(--navy);
  color: var(--white);
  padding: 0;
  position: relative;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  min-height: 200px;
}
.cta-tel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  position: relative;
  background: var(--navy);
}
.cta-tel-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--white);
}
.cta-tel-img img { width: 100%; height: 100%; object-fit: cover; }
.cta-tel-text { flex: 1; }
.cta-tel-headline {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
  text-align: center;
}
.cta-tel-headline .em { font-weight: 700; }
.cta-tel-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 10px;
}
.cta-tel-tags span {
  background: rgba(255, 255, 255, 0.12);
  padding: 2px 8px;
  border-radius: 3px;
}
.cta-tel-num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.cta-tel-num svg { width: 24px; height: 24px; }
.cta-tel-time { text-align: center; font-size: 10px; color: rgba(255, 255, 255, 0.7); }

.cta-form, .cta-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.cta-form-title, .cta-line-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.cta-form-sub, .cta-line-sub { font-size: 11px; color: rgba(255, 255, 255, 0.7); margin-bottom: 16px; }
.cta-form-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--white);
  color: var(--navy);
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.cta-form-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2); }
.cta-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--line-green);
  color: var(--white);
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.15s, background 0.2s;
}
.cta-line-btn:hover { background: var(--line-green-dark); transform: translateY(-2px); }
.cta-form-btn svg, .cta-line-btn svg { width: 16px; height: 16px; }

/* =========================================
   Footer
   ========================================= */
.footer { background: var(--navy-dark); color: rgba(255, 255, 255, 0.85); padding: 50px 0 28px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr 1fr;
  gap: 40px;
}
.footer-brand .logo-mark { background: var(--white); }
.footer-brand .logo-mark svg { color: var(--navy); }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tag { color: rgba(255, 255, 255, 0.6); }
.footer-info {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  margin-top: 16px;
}
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.footer-nav-col li {
  font-size: 12px;
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: color 0.2s;
}
.footer-nav-col li:hover { color: var(--primary-light); }
.footer-contact { text-align: right; }
.footer-tel-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-bottom: 4px;
}
.footer-tel-num svg { width: 18px; height: 18px; }
.footer-tel-time { font-size: 10px; color: rgba(255, 255, 255, 0.6); }
.footer-line {
  width: 36px;
  height: 36px;
  background: var(--line-green);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-top: 10px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1024px) {
  .nav { display: none; }
  .header-tel-num { font-size: 18px; }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { height: 400px; max-width: 600px; margin: 0 auto; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat:nth-child(2) { border-right: none; }
  .services-grid, .pricing-grid, .voice-grid, .reasons-grid { grid-template-columns: 1fr 1fr; }
  .case-card { flex: 0 0 calc((100% - 20px) / 2); }
  .process-flow { grid-template-columns: repeat(5, 1fr); gap: 0; }
  .process-step:not(:last-child)::after { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-form, .cta-line { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.1); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-contact { text-align: left; }
  .footer-tel-num { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .header-tel { display: none; }
  .header-cta .btn-quote-header { padding: 8px 12px; font-size: 11px; }
  .hero { padding: 40px 0 50px; }
  .hero-visual { height: 320px; }
  .hero-img-main { height: 200px; }
  .hero-img-before, .hero-img-after { height: 120px; }
  .hero-badge { width: 95px; height: 95px; bottom: 125px; }
  .hero-badge .top { font-size: 10px; }
  .hero-badge .mid, .hero-badge .bot { font-size: 13px; }
  .hero-buttons .btn { flex: 1; padding: 14px 16px; font-size: 13px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 20px; }
  .services, .pricing, .cases, .process, .reasons, .voice, .faq { padding: 50px 0; }
  .services-grid, .pricing-grid, .voice-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
  .case-card { flex: 0 0 100%; }
  .cases-wrapper { padding: 0 30px; }
  .process-flow { grid-template-columns: 1fr; gap: 24px; }
  .cta-tel { flex-direction: column; text-align: center; }
}