:root {
  --primary: #0B5F58;
  --primary-hover: #084945;
  --primary-soft: #B7F0E8;
  --primary-tint: #E6F8F5;
  --accent: #0EA89B;
  --accent-warm: #F59E0B;
  --accent-rose: #E11D48;
  --bg: #FFFFFF;
  --bg-alt: #F4F6F9;
  --bg-section: #ECEFF3;
  --text: #0B1220;
  --text-soft: #1F2937;
  --muted: #475569;
  --border: #CBD5E1;
  --border-light: #E2E8F0;
  --shadow-sm: 0 2px 4px rgba(11, 18, 32, 0.06);
  --shadow-md: 0 6px 16px rgba(11, 18, 32, 0.10);
  --shadow-lg: 0 16px 40px rgba(11, 18, 32, 0.14);
  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html { background: #0F172A; }
body {
  margin: 0;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 450;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}
h1, h2, h3, h4, h5, h6 { color: var(--text); font-weight: 800; }
strong, b { font-weight: 700; color: var(--text); }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary); }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* === Top utility bar === */
.topbar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.topbar .container {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  height: 36px;
  align-items: center;
}
.topbar a:hover { color: var(--primary); }

/* === Header / Nav === */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
}
.brand .logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}
.brand .brand-name { color: var(--text); }
.brand .brand-name .accent { color: var(--primary); }

.nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 11px 18px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--text);
  border-radius: 10px;
  transition: background .15s, color .15s;
  letter-spacing: -.2px;
}
.nav-link:hover { background: var(--primary-tint); color: var(--primary); }
.nav-item.active .nav-link {
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 800;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  min-width: 240px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  transition-delay: .12s;
}
.dropdown.wide { min-width: 560px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }

/* Invisible bridge to prevent hover loss in the gap between nav-link and dropdown */
.dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -16px;
  right: -16px;
  height: 12px;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0s;
}

/* Also extend nav-link's hover area slightly to bridge the gap on entry */
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}
.dropdown-title {
  grid-column: 1 / -1;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  padding: 10px 12px 4px;
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-soft);
  transition: background .15s, color .15s, transform .15s;
}
.dropdown a:hover {
  background: var(--primary-tint);
  color: var(--primary);
  font-weight: 700;
  transform: translateX(2px);
}
.dropdown-title {
  font-weight: 800;
  color: var(--text);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff !important;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14.5px;
  border: 0;
  cursor: pointer;
  transition: box-shadow .2s, transform .2s;
  box-shadow: 0 6px 16px -4px rgba(11, 95, 88, 0.45);
  letter-spacing: -.2px;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -4px rgba(11, 95, 88, 0.55);
  color: #fff !important;
}
.cta-btn.ghost {
  background: #fff;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-sm);
}
.cta-btn.ghost:hover {
  background: var(--primary-tint);
  color: var(--primary-hover) !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.menu-toggle span {
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* === Hero === */
.hero {
  background: linear-gradient(180deg, var(--primary-soft) 0%, var(--bg) 100%);
  padding: 80px 0 60px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 12px;
  letter-spacing: -1px;
}
.hero h1 .accent { color: var(--primary); }
.hero p.lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto 28px;
}
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* === Section === */
.section { padding: 72px 0; }
.section.alt {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-section) 100%);
  position: relative;
}
.section.alt::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-soft), transparent);
}
.section-head {
  text-align: center;
  margin-bottom: 40px;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--primary);
  text-transform: uppercase;
  background: var(--primary-tint);
  border: 1.5px solid var(--primary-soft);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(26px, 3.2vw, 34px);
  margin: 0 0 10px;
  letter-spacing: -.6px;
  color: var(--text);
  font-weight: 800;
  line-height: 1.25;
}
.section-head p {
  color: var(--text-soft);
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

/* === Grids & cards === */
.grid {
  display: grid;
  gap: 20px;
}
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 2px solid var(--border-light);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -10px rgba(11, 95, 88, 0.22);
  border-color: var(--primary);
}
.card .icon {
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 6px 14px -4px rgba(11, 95, 88, 0.4);
}
.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.3px;
}
.card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.6;
}
.card .card-links {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.card .tag {
  font-size: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text-soft);
  padding: 4px 10px;
  border-radius: 999px;
}
.card .tag:hover { background: var(--primary-soft); border-color: var(--primary); color: var(--primary); }

/* ===========================================================
   Region Index — Visual Hero & Color-coded Tiles
   =========================================================== */
.region-hero {
  background: linear-gradient(135deg, #0F766E 0%, #14B8A6 50%, #2DD4BF 100%);
  color: #fff;
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.region-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.region-hero::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.region-hero .container { position: relative; z-index: 1; }
.breadcrumb-hero {
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.breadcrumb-hero a { color: rgba(255,255,255,0.95); }
.breadcrumb-hero a:hover { color: #fff; }
.breadcrumb-hero .sep { color: rgba(255,255,255,0.5); }
.region-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin: 0 0 14px;
  letter-spacing: -1.2px;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
}
.region-hero h1 .accent-text {
  background: linear-gradient(90deg, #FEF3C7, #FDE68A);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.region-hero .hero-sub {
  font-size: 17px;
  margin: 0 0 36px;
  opacity: 0.95;
  max-width: 640px;
}
.hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.stat-box {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 14px;
  padding: 16px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 110px;
}
.stat-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.5px;
  line-height: 1;
  color: #fff;
}
.stat-label {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 6px;
  letter-spacing: .04em;
}

/* Region section wrappers */
.region-section {
  padding: 64px 0;
}
.region-section.gwangyeoksi { background: var(--bg-alt); }
.region-section.dodo { background: var(--bg); }
.region-section__head {
  text-align: center;
  margin-bottom: 36px;
}
.region-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.sudokwon-badge { background: #CCFBF1; color: #0F766E; }
.gwangyeoksi-badge { background: #DBEAFE; color: #1E40AF; }
.dodo-badge { background: #FEF3C7; color: #92400E; }
.region-section__head h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 10px;
  letter-spacing: -.5px;
  font-weight: 800;
}
.region-section__head p {
  color: var(--muted);
  margin: 0;
  font-size: 15.5px;
}

/* 수도권 mega cards */
.region-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mega-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.mega-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px -10px rgba(15, 118, 110, 0.25);
}
.mega-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 140px; height: 140px;
  background: linear-gradient(135deg, var(--primary-soft), transparent);
  border-radius: 0 0 0 100%;
  opacity: 0.6;
  pointer-events: none;
}
.mega-card__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.mega-card__title {
  font-size: 22px;
  margin: 0 0 8px;
  letter-spacing: -.5px;
  color: var(--text);
  font-weight: 800;
}
.mega-card__desc {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0 0 18px;
  line-height: 1.6;
}
.mega-card__stats {
  display: flex;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.mega-card__stats span {
  font-size: 13px;
  color: var(--muted);
}
.mega-card__stats strong {
  color: var(--primary);
  font-size: 18px;
  font-weight: 800;
  margin-right: 4px;
}
.mega-card__cta {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  transition: transform .15s;
}
.mega-card:hover .mega-card__cta { transform: translateX(4px); }

/* 광역시 tiles - color-coded */
.region-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.region-tile {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.region-tile:hover {
  transform: translateY(-4px);
  border-color: var(--accent, var(--primary));
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.15);
}
.region-tile::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--accent, var(--primary));
}
.region-tile__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--accent, var(--primary));
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -.3px;
}
.region-tile h3 {
  font-size: 18px;
  margin: 0 0 6px;
  letter-spacing: -.3px;
  font-weight: 800;
}
.region-tile p {
  color: var(--muted);
  font-size: 13.5px;
  margin: 0 0 14px;
}
.region-tile__count {
  display: inline-block;
  font-size: 12px;
  background: var(--bg-alt);
  color: var(--text-soft);
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: -.1px;
}

/* 도 province tiles - horizontal layout */
.region-grid-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.province-tile {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.province-tile:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 10px 24px -8px rgba(15, 118, 110, 0.2);
}
.province-tile__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  color: #92400E;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.5px;
}
.province-tile__body { flex: 1; min-width: 0; }
.province-tile h3 {
  font-size: 15px;
  margin: 0 0 3px;
  font-weight: 800;
  letter-spacing: -.3px;
}
.province-tile p {
  color: var(--muted);
  font-size: 12.5px;
  margin: 0;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1024px) {
  .region-mega-grid { grid-template-columns: 1fr; }
  .region-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .region-grid-8 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .region-hero { padding: 56px 0 60px; }
  .hero-stats { gap: 10px; }
  .stat-box { padding: 12px 18px; min-width: 90px; }
  .stat-num { font-size: 26px; }
  .region-section { padding: 48px 0; }
  .region-grid-6 { grid-template-columns: 1fr; }
  .region-grid-8 { grid-template-columns: 1fr; }
  .mega-card { padding: 22px 20px; }
}

/* === Booking CTA card (region pages) === */
.cta-call {
  padding: 28px 0 0;
}
.cta-call-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #0B5F58 0%, #0EA89B 100%);
  box-shadow: 0 20px 50px -12px rgba(11, 95, 88, 0.4), 0 8px 24px -6px rgba(11, 18, 32, 0.18);
  position: relative;
  isolation: isolate;
}
.cta-call-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.cta-call-image {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #F3E2C8;
  min-height: 280px;
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.2);
  /* 이미지: therapist-hero.png (jpg 업로드 시 자동 적용) */
}
.cta-call-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  color: #fff;
}
.cta-call-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 14px;
  backdrop-filter: blur(6px);
}
.cta-call-tag::before {
  content: '●';
  color: #FDE68A;
  font-size: 10px;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.cta-call-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.5px;
  margin: 0 0 8px;
  color: #fff;
  line-height: 1.3;
}
.cta-call-sub {
  font-size: 14.5px;
  margin: 0 0 22px;
  opacity: 0.95;
  line-height: 1.65;
  max-width: 480px;
}
.cta-call-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: #fff;
  color: var(--primary) !important;
  font-weight: 800;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 24px -6px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0,0,0,.12);
  transition: transform .2s, box-shadow .2s;
  width: fit-content;
  letter-spacing: -.3px;
}
.cta-call-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -6px rgba(0, 0, 0, 0.4);
  color: var(--primary-hover) !important;
}
.cta-call-phone-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 10px -2px rgba(11, 95, 88, 0.4);
}
.cta-call-phone-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.cta-call-phone-num {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.4px;
  line-height: 1;
}
.cta-call-phone-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.cta-call-meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.cta-call-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
}
.cta-call-meta span::before {
  content: '✓';
  width: 16px;
  height: 16px;
  background: rgba(255,255,255,0.2);
  color: #FDE68A;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .cta-call-card { grid-template-columns: 1fr; }
  .cta-call-image { min-height: 220px; background-position: center center; }
  .cta-call-image::after {
    background: linear-gradient(180deg, transparent 50%, rgba(11, 95, 88, 0.55) 100%);
  }
  .cta-call-body { padding: 28px 24px; }
  .cta-call-title { font-size: 20px; }
  .cta-call-phone { width: 100%; justify-content: center; }
  .cta-call-meta { justify-content: center; }
}

/* === Review cards (district hub) === */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 8px;
}
.review-card-v2 {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px 20px;
  position: relative;
  box-shadow: 0 4px 14px -4px rgba(11, 18, 32, 0.12), 0 1px 3px rgba(11, 18, 32, 0.08);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  overflow: hidden;
}
.review-card-v2::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 72px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--primary-tint);
  line-height: 1;
  font-weight: 700;
  z-index: 0;
}
.review-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(11, 95, 88, 0.32);
  border-color: var(--primary);
}
.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  gap: 10px;
  flex-wrap: wrap;
}
.review-stars {
  color: #F59E0B;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(245, 158, 11, 0.15);
}
.review-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--primary-tint);
  color: var(--primary);
  border: 1.5px solid var(--primary-soft);
}
.review-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 500;
  margin: 0 0 16px;
  position: relative;
  z-index: 1;
  word-break: keep-all;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1.5px dashed var(--border);
  font-size: 13px;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 4px 8px -2px rgba(11, 95, 88, 0.3);
}
.review-meta { display: flex; flex-direction: column; gap: 2px; }
.review-meta strong {
  font-size: 13.5px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -.2px;
}
.review-meta span { font-size: 12px; color: var(--muted); }
.review-badge {
  display: inline-block;
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--bg-alt);
  color: var(--text-soft);
  border: 1px solid var(--border-light);
}

/* === Course pricing cards - vivid color-coded design === */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin: 24px 0 10px;
}
.course-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  box-shadow: 0 4px 14px -4px rgba(11, 18, 32, 0.12), 0 1px 3px rgba(11, 18, 32, 0.08);
}
.course-card:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 40px -12px rgba(11, 95, 88, 0.35);
  transform: translateY(-5px);
}
/* Color bar on top - different per course nth-child */
.course-card::before {
  content: '';
  display: block;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.course-card:nth-child(2)::before { background: linear-gradient(90deg, #DB2777, #F472B6); }
.course-card:nth-child(3)::before { background: linear-gradient(90deg, #D97706, #FBBF24); }
.course-card:nth-child(4)::before { background: linear-gradient(90deg, #7C3AED, #A78BFA); }
.course-card:nth-child(5)::before { background: linear-gradient(90deg, #DC2626, #F87171); }
.course-card:nth-child(6)::before { background: linear-gradient(90deg, #0891B2, #22D3EE); }
.course-card > h3,
.course-card > .course-desc { padding-left: 22px; padding-right: 22px; }
.course-card h3 {
  font-size: 19px;
  margin: 18px 0 6px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.4px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.course-tag {
  font-size: 11px;
  background: var(--text);
  color: #fff;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.course-desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.65;
  min-height: 46px;
}
.course-prices {
  list-style: none;
  margin: 0;
  padding: 14px 22px 18px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
}
.course-prices li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 7px 0;
  font-size: 14px;
  color: var(--text-soft);
  border-bottom: 1px dashed var(--border);
}
.course-prices li:last-child { border-bottom: 0; }
.course-prices li span {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}
.course-prices li strong {
  color: var(--primary);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -.3px;
}
.price-note {
  font-size: 14px;
  color: var(--text-soft);
  margin-top: 18px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
  border-radius: 12px;
  border-left: 4px solid #F59E0B;
  line-height: 1.65;
}
.price-note strong { color: #92400E; }

/* === Step process - bold numbered cards === */
.step-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
  margin-top: 20px;
  counter-reset: step;
  padding: 0;
  list-style: none;
}
.step-item {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px 18px;
  position: relative;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  box-shadow: 0 3px 10px -3px rgba(11, 18, 32, 0.10), 0 1px 3px rgba(11, 18, 32, 0.06);
}
.step-item:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 32px -10px rgba(11, 95, 88, 0.32);
  transform: translateY(-3px);
}
.step-item::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 14px;
  box-shadow: 0 6px 14px -4px rgba(11, 95, 88, 0.45);
}
.step-item h4 {
  margin: 0 0 6px;
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: -.3px;
  color: var(--text);
}
.step-item p {
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* === Audience cards - vibrant accent === */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.audience-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 22px 22px;
  position: relative;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  box-shadow: 0 3px 10px -3px rgba(11, 18, 32, 0.10), 0 1px 3px rgba(11, 18, 32, 0.06);
}
.audience-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 0 4px 4px 0;
}
.audience-card:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 32px -10px rgba(11, 95, 88, 0.32);
  transform: translateY(-3px);
}
.audience-card h4 {
  margin: 0 0 10px;
  font-size: 16.5px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.3px;
}
.audience-card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* === Checklist - bold check items === */
.checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
}
.checklist li {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px 16px 54px;
  font-size: 15px;
  color: var(--text-soft);
  position: relative;
  line-height: 1.65;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  box-shadow: 0 2px 8px -2px rgba(11, 18, 32, 0.08);
}
.checklist li:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 22px -8px rgba(11, 95, 88, 0.28);
  transform: translateY(-2px);
}
.checklist li strong { color: var(--text); }
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 14px;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 4px 10px -2px rgba(11, 95, 88, 0.4);
}

/* === Article content - improved readability === */
.article-wrap {
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  padding: 56px 0 36px;
  position: relative;
}
.article-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.article-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}
.article-content h2 {
  font-size: 27px;
  margin: 56px 0 22px;
  letter-spacing: -.6px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--text);
  font-weight: 800;
  color: var(--text);
  position: relative;
}
.article-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 60px;
  height: 3px;
  background: var(--primary);
}
.article-content h2:first-child,
.article-section:first-child h2 { margin-top: 8px; }
.article-content h3 {
  font-size: 19px;
  margin: 32px 0 12px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -.3px;
}
.article-content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-soft);
  margin: 0 0 16px;
  word-break: keep-all;
}
.article-content p:last-child { margin-bottom: 0; }
.article-content ul {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-soft);
  padding-left: 20px;
  margin: 8px 0 14px;
}
.article-content ul li { margin-bottom: 4px; }
.article-section { margin-bottom: 28px; }
.article-content .faq-list { margin-top: 8px; }
.article-content .faq-list details.faq { margin-bottom: 8px; }

@media (max-width: 720px) {
  .article-wrap { padding: 32px 0 24px; }
  .article-content { padding: 0 18px; }
  .article-content h2 { font-size: 20px; margin: 36px 0 14px; padding-bottom: 10px; }
  .article-content h3 { font-size: 16.5px; margin: 22px 0 8px; }
  .article-content p, .article-content ul { font-size: 14.5px; line-height: 1.8; }
}

/* === Directory style (region + theme buttons) === */
/* Directory section — premium chip grid */
.directory {
  padding: 88px 0 96px;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(14, 168, 155, 0.06), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(11, 95, 88, 0.05), transparent 60%),
    linear-gradient(180deg, #FBFAF7 0%, #F5F1E8 100%);
  position: relative;
}
.directory-block { margin-bottom: 56px; }
.directory-block:last-child { margin-bottom: 0; }

.directory-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.directory-accent {
  width: 5px;
  height: 44px;
  border-radius: 4px;
  background: linear-gradient(180deg, #0B5F58 0%, #0EA89B 100%);
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 4px 12px -2px rgba(11, 95, 88, 0.35);
}
.directory-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #0B5F58;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.directory-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  display: block;
  color: #0F172A;
  letter-spacing: -0.6px;
  padding: 0;
  border: none;
  line-height: 1.25;
}
.directory-desc {
  font-size: 13.5px;
  color: #64748B;
  margin: 6px 0 0;
  letter-spacing: -0.1px;
}

.directory-row,
.directory-grid {
  display: grid;
  gap: 10px;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}

/* === District directory (region/<province>/index.html) - upgraded card style === */
.district-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 12px;
  background: transparent;
  border: none;
  border-radius: 0;
  margin-top: 22px;
}
.district-row .dir-btn {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 20px 14px;
  font-size: 15.5px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.3px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
  position: relative;
  overflow: hidden;
  min-height: 0;
  line-height: 1.3;
  box-shadow: var(--shadow-sm);
}
.district-row .dir-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.district-row .dir-btn::after {
  content: '→';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  opacity: 0;
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  transition: opacity .2s, transform .2s;
}
.district-row .dir-btn:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px -8px rgba(15, 118, 110, 0.25);
  color: var(--primary);
  background: linear-gradient(180deg, #fff 30%, var(--primary-soft) 100%);
}
.district-row .dir-btn:hover::before { transform: scaleX(1); }
.district-row .dir-btn:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 720px) {
  .district-row {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
  }
  .district-row .dir-btn {
    padding: 16px 10px;
    font-size: 14.5px;
    border-radius: 12px;
  }
  .district-row .dir-btn::after { display: none; }
}
@media (max-width: 480px) {
  .district-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .district-row .dir-btn {
    padding: 14px 8px;
    font-size: 13.5px;
  }
}
.directory-row .dir-btn,
.directory-grid .dir-btn {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 10px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  font-size: 14.5px;
  color: #334155;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
  min-height: 52px;
  line-height: 1.2;
  word-break: keep-all;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 2px 6px -2px rgba(15, 23, 42, 0.04);
  letter-spacing: -0.2px;
  overflow: hidden;
}
.directory-row .dir-btn::after,
.directory-grid .dir-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, #0B5F58 0%, #0EA89B 100%);
  opacity: 0;
  transition: opacity .2s ease;
  z-index: -1;
}
.directory-row .dir-btn:hover,
.directory-grid .dir-btn:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(11, 95, 88, 0.5), 0 4px 8px -4px rgba(11, 95, 88, 0.25);
}
.directory-row .dir-btn:hover::after,
.directory-grid .dir-btn:hover::after { opacity: 1; }
.directory-row .dir-btn.active,
.directory-grid .dir-btn.active {
  color: #fff;
  border-color: transparent;
  font-weight: 800;
  box-shadow: 0 10px 22px -8px rgba(11, 95, 88, 0.55), 0 4px 8px -4px rgba(11, 95, 88, 0.25);
}
.directory-row .dir-btn.active::after,
.directory-grid .dir-btn.active::after { opacity: 1; }
.directory-row .dir-btn.active:hover,
.directory-grid .dir-btn.active:hover { transform: translateY(-2px); }
.dir-empty { display: none; }

.directory-row { grid-template-columns: repeat(9, 1fr); }
.directory-grid { grid-template-columns: repeat(7, 1fr); }

@media (max-width: 1024px) {
  .directory-row { grid-template-columns: repeat(6, 1fr); }
  .directory-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 720px) {
  .directory { padding: 64px 0 72px; }
  .directory-row { grid-template-columns: repeat(4, 1fr); }
  .directory-grid { grid-template-columns: repeat(3, 1fr); }
  .directory-row .dir-btn,
  .directory-grid .dir-btn { font-size: 13.5px; padding: 13px 8px; min-height: 46px; border-radius: 10px; }
  .directory-title { font-size: 20px; }
  .directory-accent { height: 38px; }
}
@media (max-width: 480px) {
  .directory-row { grid-template-columns: repeat(3, 1fr); }
  .directory-grid { grid-template-columns: repeat(3, 1fr); }
  .directory-row .dir-btn,
  .directory-grid .dir-btn { font-size: 13px; padding: 12px 6px; min-height: 44px; }
  .directory-title { font-size: 18px; }
}

/* === Region quick find (compact pills) === */
.region-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.region-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.region-block:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.region-block__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.region-block__head h3 {
  margin: 0;
  font-size: 18px;
  flex: 1;
  letter-spacing: -.3px;
}
.region-mark {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.region-more {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  white-space: nowrap;
}
.region-more:hover { color: var(--primary-hover); }
.region-block__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.region-block__pills a {
  display: inline-block;
  font-size: 13px;
  padding: 7px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-soft);
  transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.region-block__pills a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .region-grid { grid-template-columns: 1fr; gap: 12px; }
  .region-block { padding: 16px 18px; }
  .region-block__head { margin-bottom: 12px; gap: 10px; }
  .region-block__head h3 { font-size: 16px; }
  .region-mark { width: 28px; height: 28px; font-size: 13px; }
  .region-block__pills a { font-size: 12.5px; padding: 6px 12px; }
}

/* List cards - stronger structure */
.list-card {
  background: #fff;
  border: 2px solid var(--border-light);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color .2s, box-shadow .2s;
}
.list-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 24px -10px rgba(11, 95, 88, 0.22);
}
.list-card h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  letter-spacing: -.3px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-light);
}
.list-card h3 .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: inline-block;
  box-shadow: 0 2px 6px -1px rgba(11, 95, 88, 0.4);
}
.list-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-card li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.6;
}
.list-card li:last-child { border-bottom: 0; }
.list-card li a { display: flex; justify-content: space-between; align-items: center; }
.list-card li a::after { content: "›"; color: var(--muted); font-size: 18px; }

/* Review card */
.review {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.review .stars { color: #F59E0B; font-size: 14px; margin-bottom: 8px; }
.review p { margin: 0 0 14px; color: var(--text-soft); font-size: 14px; line-height: 1.65; }
.review .meta { font-size: 12px; color: var(--muted); display: flex; justify-content: space-between; }
.review .meta .badge {
  background: var(--primary-soft);
  color: var(--primary);
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 600;
}

/* Safety strip */
.safety {
  background: linear-gradient(135deg, #0F766E 0%, #14B8A6 100%);
  color: #fff;
  padding: 48px 0;
  border-radius: var(--radius);
}
.safety .container { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.safety h2 { margin: 0 0 8px; font-size: 26px; color: #fff; }
.safety p { margin: 0 0 16px; opacity: .92; }
.safety ul { padding-left: 18px; margin: 0; }
.safety ul li { margin-bottom: 6px; }
.safety .cta-btn { background: #fff; color: var(--primary) !important; }
.safety .cta-btn:hover { background: var(--primary-soft); }

/* Page header - stronger contrast */
.page-header {
  background: linear-gradient(180deg, var(--primary-tint) 0%, var(--bg-alt) 100%);
  border-bottom: 1px solid var(--border);
  padding: 56px 0 44px;
  position: relative;
}
.page-header::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  opacity: 0.85;
}
.page-header h1 {
  font-size: clamp(26px, 3.5vw, 38px);
  margin: 0 0 10px;
  letter-spacing: -.7px;
  color: var(--text);
  font-weight: 800;
  line-height: 1.25;
}
.page-header p {
  color: var(--text-soft);
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  max-width: 760px;
}
.breadcrumb {
  display: flex;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 600;
}
.breadcrumb a { color: var(--text-soft); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--border); }

/* Anchor nav (sub-section quick links) */
.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}
.anchor-nav a {
  font-size: 13px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--text-soft);
}
.anchor-nav a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.subsection {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.subsection:last-child { border-bottom: 0; }
.subsection h2 { font-size: 24px; margin: 0 0 6px; }
.subsection .sub-desc { color: var(--muted); margin: 0 0 24px; }

/* Notice / callout - vivid contrast */
.callout {
  background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
  border: 2px solid #FDE68A;
  border-left: 5px solid #F59E0B;
  color: #78350F;
  border-radius: 14px;
  padding: 18px 22px;
  font-size: 15px;
  line-height: 1.7;
}
.callout strong { color: #78350F; font-weight: 800; }
.callout.info {
  background: linear-gradient(135deg, var(--primary-tint), var(--primary-soft));
  border-color: var(--primary-soft);
  border-left-color: var(--primary);
  color: var(--text-soft);
}
.callout.info strong { color: var(--primary); font-weight: 800; }

/* FAQ - stronger contrast */
details.faq {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 12px;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: 0 2px 8px -2px rgba(11, 18, 32, 0.08);
}
details.faq:hover { border-color: var(--primary); }
details.faq[open] {
  border-color: var(--primary);
  box-shadow: 0 8px 20px -10px rgba(11, 95, 88, 0.25);
}
details.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -.2px;
  gap: 16px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-tint);
  color: var(--primary);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  flex-shrink: 0;
  transition: background .2s, color .2s, transform .2s;
}
details.faq[open] summary::after {
  content: "−";
  background: var(--primary);
  color: #fff;
}
details.faq p {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.7;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}

/* Footer — restrained, single navy palette */
.site-footer {
  background: #0F172A;
  color: #94A3B8;
  margin-top: 72px;
}

/* Trust signals (E-E-A-T) */
.footer-trust {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 0;
}
.footer-trust .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.trust-item p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #CBD5E1;
}
.trust-item p strong { color: #fff; font-weight: 700; }
.trust-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #CBD5E1;
}
.trust-icon svg { display: block; }

/* Main grid */
.site-footer .container.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-top: 52px;
  padding-bottom: 44px;
}
.site-footer h4 {
  color: #fff;
  font-size: 13px;
  margin: 0 0 14px;
  letter-spacing: .04em;
  font-weight: 600;
}
.site-footer p {
  font-size: 13px;
  line-height: 1.7;
  color: #94A3B8;
  margin: 0 0 18px;
}
.site-footer .brand { color: #fff; margin-bottom: 12px; }
.site-footer .brand .brand-name { color: #fff; }

/* Brand: simple bordered tel */
.footer-brand .footer-tel {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  line-height: 1.25;
  transition: border-color .15s ease;
}
.footer-brand .footer-tel:hover { border-color: rgba(255, 255, 255, 0.32); }
.footer-brand .ft-num { font-size: 16px; font-weight: 700; color: #fff; letter-spacing: .02em; }
.footer-brand .ft-label { font-size: 11px; color: #94A3B8; margin-top: 2px; letter-spacing: .04em; }

/* Nav columns */
.footer-nav ul { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin: 0; }
.footer-nav a {
  color: #94A3B8;
  font-size: 13px;
  display: block;
  padding: 5px 0;
  text-decoration: none;
  transition: color .15s ease;
}
.footer-nav a:hover { color: #fff; }

/* Meta row: business info + SNS */
.footer-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
}
.footer-meta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.business-info {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
}
.business-info > div { display: inline-flex; gap: 6px; align-items: baseline; }
.business-info dt {
  font-size: 11.5px;
  color: #64748B;
  font-weight: 500;
}
.business-info dd {
  font-size: 12.5px;
  color: #CBD5E1;
  margin: 0;
}

/* SNS icons — minimal outline */
.footer-sns {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
}
.footer-sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94A3B8;
  transition: color .15s ease, border-color .15s ease;
}
.footer-sns a:hover { color: #fff; border-color: rgba(255, 255, 255, 0.32); }

/* Footer bottom: minimal copyright */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0 28px;
}
.footer-bottom .container { text-align: center; }
.footer-bottom p {
  font-size: 12px;
  color: #64748B;
  margin: 0;
}

/* Fixed floating call CTA (모든 페이지 공통) */
.float-call {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px 18px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7f00 0%, #ffa340 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .01em;
  box-shadow:
    0 16px 36px rgba(255, 127, 0, 0.4),
    0 4px 12px rgba(255, 127, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.float-call:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 44px rgba(255, 127, 0, 0.48),
    0 6px 16px rgba(255, 127, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}
.float-call:active { transform: translateY(0); }
.float-call .fc-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: relative;
}
.float-call .fc-icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  animation: fcPulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes fcPulse {
  0%   { transform: scale(.85); opacity: .8; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}
.float-call .fc-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.float-call .fc-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, 0.92);
}
.float-call .fc-num {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .02em;
  color: #fff;
}

@media (max-width: 720px) {
  .float-call {
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: center;
    padding: 16px 22px;
    border-radius: 18px;
    gap: 12px;
  }
  .float-call .fc-icon { width: 40px; height: 40px; font-size: 20px; }
  .float-call .fc-label { font-size: 12px; }
  .float-call .fc-num { font-size: 19px; }
}

/* Floating CTA sits over footer's bottom area — no body padding needed */

/* "함께 보면 좋은 글" — 라이트 톤 (페이지와 자연스럽게 어우러짐) */
.related-dark {
  background: linear-gradient(180deg, #FBFAF7 0%, #F5EFE0 100%);
  border: 1px solid rgba(11, 95, 88, 0.12);
  border-radius: 20px;
  padding: 32px 36px 28px;
  margin: 56px auto 24px;
  position: relative;
  overflow: hidden;
  max-width: 760px;
  color: #2A3441;
  box-shadow: 0 4px 14px -8px rgba(15, 23, 42, 0.08);
}
.magazine-post .related-dark {
  max-width: 760px;
}
.related-dark::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0B5F58, #0EA89B, #ff7f00);
}
.related-dark__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(11, 95, 88, 0.12);
}
.related-dark__head h2 {
  color: #0F172A;
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -.3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.related-dark__head h2 .pin {
  font-size: 16px;
}
.related-dark__head .sub {
  color: #64748B;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -.1px;
}
.related-dark__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
  row-gap: 0;
}
.related-dark__list li {
  border-bottom: 1px dashed rgba(11, 95, 88, 0.15);
  padding: 12px 0;
}
.related-dark__list li:last-child,
.related-dark__list li:nth-last-child(2):nth-child(odd) {
  border-bottom: none;
}
.related-dark__list a {
  color: #1F2937;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  letter-spacing: -.2px;
  transition: color .15s ease, transform .15s ease;
  word-break: keep-all;
}
.related-dark__list a::before {
  content: "•";
  color: #ff7f00;
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.4;
  font-weight: 700;
}
.related-dark__list a:hover {
  color: #0B5F58;
  transform: translateX(2px);
}

@media (max-width: 720px) {
  .related-dark {
    padding: 24px 22px 20px;
    border-radius: 16px;
  }
  .related-dark__list { grid-template-columns: 1fr; column-gap: 0; }
  .related-dark__list li { padding: 11px 0; }
  .related-dark__list li:last-child { border-bottom: none; }
}

/* === Magazine index — Kadence-style card grid === */
.magazine-header {
  background: linear-gradient(180deg, #FBFAF7 0%, #F3EEDE 100%);
  padding: 56px 0 40px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.magazine-header h1 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  margin: 8px 0 8px;
  letter-spacing: -.8px;
  color: #0F172A;
}
.magazine-header .tagline {
  color: #64748B;
  font-size: 16px;
  margin: 0 0 24px;
}
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.category-tab {
  padding: 9px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  font-size: 13.5px;
  color: #475569;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -.2px;
  transition: all .15s ease;
  white-space: nowrap;
}
.category-tab:hover {
  border-color: #0B5F58;
  color: #0B5F58;
}
.category-tab.active {
  background: #0B5F58;
  color: #fff;
  border-color: #0B5F58;
}

/* Featured post — hero card */
.magazine-featured-section { padding: 48px 0 24px; }
.featured-post {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FAF8F2 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: 44px 44px 40px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow: 0 2px 6px -2px rgba(15, 23, 42, 0.04);
}
.featured-post::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0B5F58, #0EA89B, #ff7f00);
}
.featured-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -18px rgba(11, 95, 88, 0.32);
  border-color: rgba(11, 95, 88, 0.25);
}
.featured-post__top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.featured-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  color: #ff7f00;
  text-transform: uppercase;
}
.featured-post h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  color: #0F172A;
  margin: 12px 0 14px;
  letter-spacing: -.6px;
  line-height: 1.3;
  font-weight: 800;
  word-break: keep-all;
}
.featured-post p.lead {
  font-size: 16px;
  color: #475569;
  line-height: 1.75;
  margin: 0 0 24px;
  max-width: 780px;
  word-break: keep-all;
}
.featured-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: #64748B;
}
.featured-meta .meta-divider { color: #CBD5E1; }
.featured-meta .featured-cta {
  margin-left: auto;
  color: #0B5F58;
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: -.2px;
}

/* Post grid — 3 columns */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; gap: 16px; } }

.post-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 26px 24px 22px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  position: relative;
}
.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -14px rgba(11, 95, 88, 0.25);
  border-color: rgba(11, 95, 88, 0.3);
}
.post-card .card-category {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(11, 95, 88, 0.08);
  color: #0B5F58;
  text-transform: uppercase;
  width: fit-content;
  margin: 0;
}
.post-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -.3px;
  line-height: 1.4;
  margin: 0;
  word-break: keep-all;
}
.post-card p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.7;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.post-card .post-card__meta {
  font-size: 12px;
  color: #94A3B8;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post-card .post-card__meta .read-arrow {
  color: #0B5F58;
  font-weight: 700;
}

/* Coming soon variant */
.post-card--coming {
  background: linear-gradient(180deg, #FBFAF7 0%, #F5F1E8 100%);
  border-style: dashed;
  pointer-events: none;
  cursor: default;
}
.post-card--coming .card-category {
  background: rgba(255, 127, 0, 0.12);
  color: #ff7f00;
}
.post-card--coming h3 { color: #475569; }
.post-card--coming::after {
  content: "📅";
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 14px;
  opacity: .5;
}

/* Magazine post — premium reading layout */
.post-meta {
  font-size: 13px;
  color: #94A3B8;
  letter-spacing: .02em;
  margin-top: 4px;
}
.post-meta .reading-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid #CBD5E1;
  color: #64748B;
}
.card-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #0B5F58;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.card-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(11, 95, 88, 0.08);
  color: #0B5F58;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Magazine article reading optimization */
.magazine-post .article-wrap {
  background: #fff;
  padding: 56px 0 72px;
}
.magazine-post .article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.magazine-post .article-section + .article-section {
  margin-top: 12px;
}
.magazine-post .article-section h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.5px;
  line-height: 1.35;
  margin: 56px 0 20px;
  padding-left: 18px;
  border-left: 4px solid #0EA89B;
  position: relative;
}
.magazine-post .article-section:first-child h2 { margin-top: 0; }
.magazine-post .article-section p {
  font-size: 17px;
  line-height: 1.95;
  color: #2A3441;
  margin: 0 0 18px;
  letter-spacing: -0.15px;
  word-break: keep-all;
  font-weight: 420;
}
.magazine-post .article-section p:last-child { margin-bottom: 0; }
.magazine-post .article-section p strong { font-weight: 700; color: #0F172A; }

.magazine-post .page-header {
  background: linear-gradient(180deg, #FBFAF7 0%, #F3EEDE 100%);
  padding: 48px 0 56px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.magazine-post .page-header .container {
  max-width: 760px;
}
.magazine-post .page-header h1 {
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.3;
  letter-spacing: -.8px;
  color: #0F172A;
  word-break: keep-all;
}

/* Reading progress bar */
.read-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, #0B5F58, #0EA89B);
  z-index: 10000;
  width: 0;
  transition: width .1s ease;
}

/* Magazine latest cards */
.latest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -16px rgba(11, 95, 88, 0.28);
  border-color: rgba(11, 95, 88, 0.3);
}
.post-card h3 {
  font-size: 17px;
  line-height: 1.45;
  color: #0F172A;
  margin: 0 0 10px;
  letter-spacing: -0.3px;
  font-weight: 700;
  word-break: keep-all;
}
.post-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #64748B;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card .post-card__meta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 12px;
  color: #94A3B8;
}

@media (max-width: 720px) {
  .magazine-post .article-section h2 {
    font-size: 19px;
    padding-left: 14px;
    border-left-width: 3px;
    margin: 40px 0 16px;
  }
  .magazine-post .article-section p {
    font-size: 16px;
    line-height: 1.85;
  }
  .magazine-post .article-wrap { padding: 36px 0 48px; }
}

/* Utility */
.btn-row { display: flex; gap: 10px; flex-wrap: wrap; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* Responsive */
@media (max-width: 1100px) {
  .site-footer .container.footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .safety .container { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav, .topbar { display: none; }
  .menu-toggle { display: flex; }
  .nav.open {
    display: flex;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px;
    overflow-y: auto;
    z-index: 40;
    gap: 0;
  }
  .nav.open .nav-item { width: 100%; border-bottom: 1px solid var(--border); }
  .nav.open .nav-link { width: 100%; padding: 16px 4px; font-size: 16px; }
  .nav.open .dropdown {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    border: 0;
    padding: 0 0 12px 12px;
    background: transparent;
    min-width: 0;
    grid-template-columns: 1fr !important;
  }
  .header-inner .cta-btn { display: none; }
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
  .site-footer .container.footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; padding-bottom: 36px; }
  .site-footer { padding-bottom: 110px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-trust .container { grid-template-columns: 1fr; gap: 14px; }
  .footer-meta .container { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero { padding: 56px 0 40px; }
  .section { padding: 48px 0; }
}
