/* ===========================
   집수리팩토리 - 샤워부스수리
   =========================== */

:root {
  --primary: #1e6fbf;
  --primary-dark: #154f8a;
  --primary-light: #e8f2fc;
  --accent: #2196f3;
  --bg: #f5f8fc;
  --white: #ffffff;
  --text: #222831;
  --text-muted: #5a6a7e;
  --border: #d0dce8;
  --shadow: 0 2px 12px rgba(30, 111, 191, 0.10);
  --shadow-md: 0 4px 24px rgba(30, 111, 191, 0.15);
  --radius: 8px;
  --radius-lg: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Apple SD Gothic Neo', '맑은 고딕', 'Malgun Gothic', 'Noto Sans KR', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--primary);
  box-shadow: 0 2px 8px rgba(30,111,191,0.08);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.site-nav a:hover { color: var(--primary); background: var(--primary-light); }

.site-nav .btn-header-call {
  background: var(--primary);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.site-nav .btn-header-call:hover { background: var(--primary-dark); color: var(--white); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 20px 16px;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn-header-call {
  display: block;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  padding: 12px;
  border-radius: var(--radius);
  margin-top: 8px;
  font-weight: 700;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1a4f8c 0%, #2176c7 50%, #42a5f5 100%);
  color: var(--white);
  padding: 80px 20px 70px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/shower-main.jpg') center/cover no-repeat;
  opacity: 0.18;
}

.hero-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  line-height: 1.25;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 32px;
  opacity: 0.95;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 36px;
  border-radius: 32px;
  transition: 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-primary:hover { background: #e8f2fc; transform: translateY(-1px); }

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 24px;
  letter-spacing: 0.5px;
}

/* ===========================
   SECTIONS
   =========================== */
.section {
  padding: 70px 20px;
}

.section-white { background: var(--white); }
.section-light { background: var(--bg); }
.section-blue { background: linear-gradient(135deg, #1a4f8c, #2176c7); color: var(--white); }

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

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-desc {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 44px;
  font-size: 1rem;
  line-height: 1.8;
}

.section-blue .section-title { color: var(--white); }
.section-blue .section-desc { color: rgba(255,255,255,0.85); }

/* ===========================
   CARDS
   =========================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.card-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: 0.2s;
  box-shadow: var(--shadow);
}

.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-icon svg { width: 26px; height: 26px; fill: var(--primary); }

.card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Problem cards */
.problem-card {
  background: var(--white);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 22px 24px;
  box-shadow: var(--shadow);
  transition: 0.2s;
}

.problem-card:hover { transform: translateX(4px); }

.problem-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.problem-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Case photo cards */
.photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: 0.2s;
}

.photo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.photo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--primary-light);
}

.photo-card-body {
  padding: 14px 16px;
}

.photo-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Service list cards */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--primary);
  transition: 0.2s;
}

.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===========================
   PROCESS STEPS
   =========================== */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  position: relative;
  justify-content: center;
}

.process-step {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
  text-align: center;
  padding: 28px 16px;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 38px;
  right: -18px;
  width: 36px;
  height: 2px;
  background: var(--border);
  z-index: 1;
}

.process-step:last-child::after { display: none; }

.step-num {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.process-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  background: linear-gradient(135deg, #154f8a 0%, #1e6fbf 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
}

.cta-section h2 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.cta-section p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.8;
}

.btn-cta {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  font-weight: 800;
  font-size: 1.15rem;
  padding: 16px 48px;
  border-radius: 32px;
  transition: 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn-cta:hover { background: #e8f2fc; transform: translateY(-2px); }

.phone-num-big {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--white);
}

/* ===========================
   FAQ
   =========================== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--text);
  user-select: none;
  gap: 12px;
}

.faq-question:hover { color: var(--primary); }

.faq-question .faq-q-mark {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 900;
  flex-shrink: 0;
}

.faq-question .faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  fill: var(--text-muted);
  transition: transform 0.3s;
}

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

.faq-answer {
  display: none;
  padding: 0 24px 20px 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

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

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-phone-box {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto 40px;
  box-shadow: var(--shadow-md);
}

.contact-phone-box h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  opacity: 0.9;
}

.contact-phone-big {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
}

.btn-contact-call {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 14px 48px;
  border-radius: 32px;
  transition: 0.2s;
}

.btn-contact-call:hover { background: #e8f2fc; }

.checklist {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  max-width: 700px;
  margin: 0 auto 32px;
}

.checklist h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 18px;
}

.checklist li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checklist li:last-child { border-bottom: none; }

.checklist li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: #1a2a3d;
  color: rgba(255,255,255,0.8);
  padding: 50px 20px 30px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand .brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 2;
  color: rgba(255,255,255,0.65);
}

.footer-brand a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ===========================
   MOBILE CALL BAR
   =========================== */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--primary);
  padding: 0;
}

.mobile-call-bar a {
  display: block;
  text-align: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 20px;
  letter-spacing: 0.5px;
}

/* ===========================
   IMAGE PLACEHOLDER
   =========================== */
.img-placeholder {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-light), #c5d8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

/* ===========================
   SYMPTOM LIST
   =========================== */
.symptom-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.symptom-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.symptom-num {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.symptom-text h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.symptom-text p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===========================
   NOTICE BOX
   =========================== */
.notice-box {
  background: #fff8e1;
  border: 1.5px solid #ffe082;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  max-width: 700px;
  margin: 0 auto;
}

.notice-box h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #e65100;
  margin-bottom: 12px;
}

.notice-box p, .notice-box li {
  font-size: 0.9rem;
  color: #5d4037;
  line-height: 1.75;
}

.notice-box ul { padding-left: 4px; }
.notice-box ul li { margin-bottom: 6px; }
.notice-box ul li::before {
  content: '- ';
  color: #e65100;
  font-weight: 700;
}

/* ===========================
   THUMBNAIL
   =========================== */
.thumb-img {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.thumb-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: var(--primary-light);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .card-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  /* 불편 섹션 5열 → 모바일 2열 */
  .problem-row-5 { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .mobile-call-bar { display: block; }

  body { padding-bottom: 56px; }

  .hero h1 { font-size: 1.9rem; }
  .hero-sub { font-size: 0.97rem; }
  .hero { padding: 56px 20px 52px; }

  .section { padding: 50px 20px; }

  .section-title { font-size: 1.45rem; }

  .card-grid { grid-template-columns: 1fr 1fr; }
  .card-grid-5 { grid-template-columns: 1fr 1fr; }

  .process-steps { flex-direction: column; align-items: center; }
  .process-step::after { display: none; }

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

  .cta-section h2 { font-size: 1.4rem; }
  .phone-num-big { font-size: 1.6rem; }

  .contact-phone-big { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid-5 { grid-template-columns: 1fr; }
  .btn-primary, .btn-cta { font-size: 1rem; padding: 13px 28px; }
}

/* ===========================
   CARDS GRID (service/info cards)
   =========================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card-body {
  padding: 24px 22px;
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===========================
   CASES GRID
   =========================== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.case-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.case-info {
  padding: 12px 14px;
}

.case-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===========================
   PROCESS LIST
   =========================== */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.process-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow);
}

.process-num {
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

.process-text strong {
  display: block;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.process-text p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===========================
   INLINE CTA
   =========================== */
.inline-cta-wrap {
  background: var(--primary-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.inline-cta-wrap p {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.7;
  flex: 1 1 260px;
}

.btn-inline-call {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 32px;
  border-radius: 28px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-inline-call:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ===========================
   SITEMAP PAGE
   =========================== */
.sitemap-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.sitemap-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.sitemap-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.sitemap-card-body {
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sitemap-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.sitemap-card-body p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}

.btn-sitemap {
  display: inline-block;
  align-self: flex-start;
  background: var(--primary);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 20px;
  transition: background 0.2s;
}

.btn-sitemap:hover { background: var(--primary-dark); }

.sitemap-link-list h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.sitemap-link-list ul {
  list-style: disc;
  padding-left: 1.2em;
}

.sitemap-link-list li {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 2;
}

.sitemap-link-list a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.sitemap-link-list a:hover { color: var(--primary-dark); }

/* symptom-text strong (used in new pages) */
.symptom-text strong {
  display: block;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .sitemap-cards-grid { grid-template-columns: 1fr 1fr; }
  .inline-cta-wrap { flex-direction: column; text-align: center; }
  .btn-inline-call { width: 100%; text-align: center; }
  .cases-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .sitemap-cards-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
}

/* ===========================
   PC FLOATING CALL BUTTON
   =========================== */
.pc-float-call {
  display: none;
}

@media (min-width: 769px) {
  .pc-float-call {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 24px;
    bottom: 48px;
    z-index: 998;
    background: var(--primary);
    color: var(--white);
    border-radius: 36px;
    padding: 14px 22px;
    box-shadow: 0 4px 20px rgba(30,111,191,0.35);
    font-weight: 800;
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    gap: 2px;
  }
  .pc-float-call:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
  }
  .pc-float-call span {
    font-size: 0.78rem;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.3px;
  }
}
