/* ═══ 청담수 1인기술창업 — Main Stylesheet ═══ */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;700;800&display=swap');

:root {
  --primary: #3d4f2e;
  --primary-dark: #2a3820;
  --primary-light: #536a3e;
  --accent: #e8a020;
  --accent-dark: #c8881a;
  --text-dark: #1e293b;
  --text-body: #475569;
  --text-light: #94a3b8;
  --bg-white: #ffffff;
  --bg-gray: #f8fafc;
  --border: #e2e8f0;
  --footer-bg: #1e293b;
  --radius-card: 0.75rem;
  --radius-btn: 0.375rem;
  --shadow-card: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --max-width: 1200px;
  --section-py: 5rem;
  --header-h: 70px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  color: var(--text-body);
  background: var(--bg-white);
  word-break: keep-all;
  overflow-wrap: break-word;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 { color: var(--text-dark); line-height: 1.3; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.375rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p { font-size: 1rem; font-weight: 400; }

/* ── Layout Utilities ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: var(--section-py) 0; }
.section--gray { background: var(--bg-gray); }
.section--dark { background: var(--primary-dark); color: #fff; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-white { color: #fff; }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232,160,32,0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.section-title { margin-bottom: 0.75rem; }
.section-desc { color: var(--text-body); font-size: 1.05rem; max-width: 600px; margin: 0 auto 3rem; }

/* ── Animations ── */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.fade-in-up.is-visible { opacity: 1; transform: translateY(0); }
.fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.fade-in-up:nth-child(3) { transition-delay: 0.2s; }
.fade-in-up:nth-child(4) { transition-delay: 0.3s; }
.fade-in-up:nth-child(5) { transition-delay: 0.4s; }
.fade-in-up:nth-child(6) { transition-delay: 0.5s; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--primary);
  color: #fff;
}
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(61,79,46,0.3); }

.btn--accent {
  background: var(--accent);
  color: #fff;
}
.btn--accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(232,160,32,0.3); }

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn--outline:hover { background: var(--primary); color: #fff; }

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

.btn--lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

/* ── Cards ── */
.card {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--bg-white);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
  line-height: 1.2;
}
.site-logo svg { width: 32px; height: 32px; flex-shrink: 0; }

/* ── Navigation ── */
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav > ul { display: flex; align-items: center; gap: 0; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 0 1.1rem;
  height: var(--header-h);
  line-height: var(--header-h);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color 0.2s;
  white-space: nowrap;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a { color: var(--primary); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(var(--header-h) - 5px);
  left: 0;
  min-width: 180px;
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 100;
}
.main-nav > ul > li:hover .dropdown-menu,
.main-nav > ul > li:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-body);
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: var(--bg-gray); color: var(--primary); }

.nav-cta {
  margin-left: 1rem;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-white);
  z-index: 999;
  overflow-y: auto;
  padding: 1rem 0 2rem;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { padding: 0 1.5rem; }
.mobile-nav > ul > li { border-bottom: 1px solid var(--border); }
.mobile-nav > ul > li > a {
  display: block;
  padding: 1rem 0;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1rem;
}
.mobile-nav .mobile-sub a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  color: var(--text-body);
}
.mobile-nav .mobile-sub { display: none; background: var(--bg-gray); border-radius: 0.5rem; margin-bottom: 0.5rem; }
.mobile-nav > ul > li.is-open .mobile-sub { display: block; }

/* ── HERO SLIDER ── */
.hero-slider {
  position: relative;
  height: 100svh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  margin-top: var(--header-h);
}
.hero-slides { display: flex; height: 100%; transition: transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.hero-slide {
  flex: 0 0 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.slide-1 { background: #1a1a1a url('/assets/images/slides/slider-01.webp') center/cover no-repeat; }
.slide-2 { background: #1a1a1a url('/assets/images/slides/slider-02.webp') center/cover no-repeat; }
.slide-3 { background: #1a1a1a url('/assets/images/slides/slider-03.webp') center/cover no-repeat; }

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: #fff;
}
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.06em;
}
.hero-content h1 { color: #fff; margin-bottom: 1rem; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero-content p { font-size: 1.15rem; color: rgba(255,255,255,0.88); margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Slider controls */
.slider-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.slider-dot.active { background: #fff; width: 28px; border-radius: 5px; }

.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.slider-prev:hover, .slider-next:hover { background: rgba(255,255,255,0.3); }
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }

/* ── QUICK MENU ── */
.quick-menu { padding: 3rem 0; background: var(--bg-white); }
.quick-menu-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-card);
  background: var(--bg-gray);
  transition: all 0.25s ease;
  text-align: center;
}
.quick-item:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.quick-item:hover .quick-icon { background: rgba(255,255,255,0.2); }
.quick-item:hover .quick-label { color: #fff; }
.quick-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}
.quick-icon svg { width: 26px; height: 26px; color: var(--primary); }
.quick-item:hover .quick-icon svg { color: #fff; }
.quick-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* ── PAIN POINT ── */
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--primary);
}
.pain-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  min-width: 40px;
  line-height: 1;
}
.pain-text strong { display: block; font-size: 1rem; color: var(--text-dark); margin-bottom: 0.25rem; }
.pain-text p { font-size: 0.875rem; color: var(--text-body); }

/* ── FACILITY ── */
.facility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

/* 시설 모자이크 */
.facility-mosaic { display: flex; flex-direction: column; gap: 0.75rem; }
.facility-mosaic-main { border-radius: var(--radius-card); overflow: hidden; }
.facility-mosaic-main img { width: 100%; height: 280px; object-fit: cover; display: block; }
.facility-mosaic-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.facility-mosaic-thumbs img { width: 100%; height: 160px; object-fit: cover; border-radius: 0.5rem; display: block; }

/* 시설 추가 썸네일 */
.facility-extra-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-top: 1rem; }
.facility-extra-thumbs img { width: 100%; height: 80px; object-fit: cover; border-radius: 0.5rem; display: block; }

/* 메인 갤러리 그리드 */
.main-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  text-align: left;
}
.main-gallery-item { border-radius: 0.5rem; overflow: hidden; aspect-ratio: 4/3; background: #e2e8f0; }
.main-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.main-gallery-item:hover img { transform: scale(1.05); }

.facility-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.stat-item { text-align: center; padding: 1rem; background: var(--bg-gray); border-radius: 0.5rem; }
.stat-num { font-size: 1.75rem; font-weight: 800; color: var(--primary); display: block; }
.stat-label { font-size: 0.8rem; color: var(--text-body); }

/* ── COURSE CARDS ── */
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.course-card {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.course-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-6px); }

.course-thumb {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background: #1e293b;
}
.course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.4s ease;
}
.course-card:hover .course-thumb img { transform: scale(1.05); }
.course-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 0.25rem;
}
.course-badge--basic { background: var(--primary-light); }

.course-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.course-duration {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.course-title { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.course-target { font-size: 0.85rem; color: var(--text-body); margin-bottom: 1rem; }
.course-features { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.course-tag {
  font-size: 0.75rem;
  background: var(--bg-gray);
  color: var(--text-body);
  padding: 0.2rem 0.6rem;
  border-radius: 0.25rem;
}
.course-card .btn { margin-top: auto; width: 100%; }

/* ── YOUTUBE SECTION ── */
.youtube-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.yt-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, transform 0.3s;
}
.yt-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.yt-thumb {
  aspect-ratio: 16/9;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.yt-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.yt-card:hover .yt-thumb img { transform: scale(1.05); }
.yt-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}
.yt-play {
  z-index: 2;
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.yt-play svg { width: 22px; height: 22px; color: #ff0000; margin-left: 3px; }
.yt-info { padding: 1rem; background: var(--bg-white); }
.yt-title { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.25rem; }
.yt-meta { font-size: 0.8rem; color: var(--text-light); }

/* ── APPLY CTA ── */
.apply-cta { background: var(--primary); padding: var(--section-py) 0; }
.apply-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.apply-step {
  text-align: center;
  color: rgba(255,255,255,0.9);
  position: relative;
}
.apply-step::after {
  content: '';
  position: absolute;
  top: 2rem;
  right: -1rem;
  width: 2rem;
  height: 2px;
  background: rgba(255,255,255,0.3);
}
.apply-step:last-child::after { display: none; }
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step-title { font-weight: 700; font-size: 1rem; color: #fff; margin-bottom: 0.4rem; }
.step-desc { font-size: 0.875rem; color: rgba(255,255,255,0.75); }
.apply-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
}
.testimonial-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 0.1em; }
.testimonial-text { font-size: 0.9rem; color: var(--text-body); margin-bottom: 1rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
}
.author-info { font-size: 0.85rem; }
.author-name { font-weight: 700; color: var(--text-dark); }
.author-course { color: var(--text-light); }

.load-more-wrap { text-align: center; margin-top: 2rem; }
.hidden-testimonials { display: none; }
.hidden-testimonials.is-visible { display: contents; }

/* ── FAQ ACCORDION ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  text-align: left;
  gap: 1rem;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: var(--text-light);
}
.faq-item.is-open .faq-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
}
.faq-item.is-open .faq-answer { max-height: 400px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.82); margin-bottom: 2rem; font-size: 1.05rem; }

/* ── BENEFITS ── */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.benefit-card {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--primary);
  transition: all 0.3s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.benefit-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.benefit-title { font-weight: 700; font-size: 1.05rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.benefit-desc { font-size: 0.875rem; color: var(--text-body); line-height: 1.7; }

/* ── FOOTER ── */
.site-footer { background: var(--footer-bg); color: rgba(255,255,255,0.75); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }

.footer-brand .site-logo { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.8; }
.footer-biz { margin-top: 1.25rem; font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.8; }
.footer-biz strong { display: block; color: rgba(255,255,255,0.75); font-size: 0.85rem; margin-bottom: 0.25rem; }

.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }

.footer-hours { margin-top: 1rem; font-size: 0.85rem; }
.footer-hours dt { color: rgba(255,255,255,0.5); font-size: 0.78rem; margin-top: 0.5rem; }
.footer-hours dd { color: rgba(255,255,255,0.85); font-weight: 700; }

.footer-phone-box {
  margin-top: 1rem;
  background: rgba(255,255,255,0.07);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
}
.footer-phone-box .fp-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 0.25rem; }
.footer-phone-box a { font-size: 1.15rem; font-weight: 800; color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── FLOATING BUTTONS ── */
.floating-wrap {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.floating-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  transition: all 0.3s ease;
}
.floating-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.floating-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.floating-btn--call { background: var(--primary); }
.floating-btn--sms { background: var(--accent); }
.floating-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.floating-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(61,79,46,0.4);
  transition: all 0.3s;
}
.floating-toggle:hover { background: var(--primary-dark); }
.floating-toggle svg { width: 24px; height: 24px; transition: transform 0.3s; }
.floating-toggle.is-open svg { transform: rotate(45deg); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 5rem 0 3rem;
  margin-top: var(--header-h);
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { color: rgba(255,255,255,0.35); }

/* ── INSTRUCTORS ── */
.instructor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.instructor-card { text-align: center; }
.instructor-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 4px solid var(--border);
}
.instructor-photo img { width: 100%; height: 100%; object-fit: cover; }
.instructor-name { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.25rem; }
.instructor-role { font-size: 0.875rem; color: var(--accent); font-weight: 700; margin-bottom: 0.5rem; }
.instructor-bio { font-size: 0.875rem; color: var(--text-body); line-height: 1.7; }
.instructor-career { margin-top: 0.75rem; font-size: 0.8rem; color: var(--text-light); }
.instructor-career li { padding: 0.15rem 0; }

/* ── GALLERY ── */
.gallery-tabs { display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.gallery-tab {
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 2rem;
  background: #fff;
  color: var(--text-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.gallery-tab:hover { border-color: var(--primary); color: var(--primary); }
.gallery-tab.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
.gallery-item {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
  background: #e2e8f0;
}
.gallery-img-wrap { width: 100%; height: 100%; position: relative; }
.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-img-wrap img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  transition: background 0.3s;
  padding: 0.75rem;
}
.gallery-overlay p {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.4); }
.gallery-item:hover .gallery-overlay p { opacity: 1; transform: translateY(0); }

/* ── APPLY PROCESS ── */
.process-steps { display: flex; flex-direction: column; gap: 0; max-width: 700px; margin: 0 auto; }
.process-step {
  display: flex;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2rem;
}
.process-step::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.process-step:last-child::before { display: none; }
.process-step:last-child { padding-bottom: 0; }
.ps-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}
.ps-content h3 { margin-bottom: 0.35rem; }
.ps-content p { font-size: 0.9rem; }

/* ── TABLE ── */
.content-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.content-table th {
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
}
.content-table td { padding: 0.7rem 1rem; border-bottom: 1px solid var(--border); }
.content-table tr:hover td { background: var(--bg-gray); }

/* ── KEYWORD PAGES ── */
.keyword-hero { background: var(--bg-gray); padding: 4rem 0; }
.keyword-body { padding: 4rem 0; }
.prose h2 { font-size: 1.5rem; margin: 2rem 0 1rem; }
.prose h3 { font-size: 1.2rem; margin: 1.5rem 0 0.75rem; }
.prose p { margin-bottom: 1rem; line-height: 1.8; }
.prose ul, .prose ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.5rem; line-height: 1.7; }
.prose strong { color: var(--primary); }
.prose blockquote {
  border-left: 4px solid var(--accent);
  padding: 0.75rem 1.25rem;
  background: var(--bg-gray);
  border-radius: 0 0.5rem 0.5rem 0;
  margin: 1.5rem 0;
  font-style: italic;
}

/* ── NOTICE BOX ── */
.notice-box {
  background: rgba(61,79,46,0.06);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-size: 0.9rem;
}

/* ── CURRICULUM LIST ── */
.curriculum-list { display: flex; flex-direction: column; gap: 0.5rem; }
.curriculum-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-gray);
  border-radius: 0.5rem;
  font-size: 0.9rem;
}
.curriculum-day {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--primary);
  color: #fff;
  padding: 0.15rem 0.5rem;
  border-radius: 0.25rem;
  white-space: nowrap;
}

/* ── LEGAL PAGES ── */
.legal-section { padding: 3rem 0 5rem; }
.legal-section h2 { font-size: 1.3rem; margin: 2rem 0 0.75rem; }
.legal-section h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
.legal-section p, .legal-section li { font-size: 0.9rem; line-height: 1.8; }
.legal-section ul { padding-left: 1.25rem; list-style: disc; margin-bottom: 1rem; }

/* ── 404 PAGE ── */
.notfound {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
  margin-top: var(--header-h);
}
.notfound-code { font-size: clamp(6rem, 20vw, 10rem); font-weight: 800; color: var(--primary); opacity: 0.12; line-height: 1; }
.notfound h2 { margin-top: -1rem; margin-bottom: 1rem; }
.notfound p { color: var(--text-body); margin-bottom: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .quick-menu-grid { grid-template-columns: repeat(5, 1fr); gap: 0.75rem; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
  .instructor-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 3.5rem; }
  .hamburger { display: flex; }
  .main-nav { display: none; }

  .quick-menu-grid { grid-template-columns: repeat(3, 1fr); }
  .quick-item { padding: 1rem 0.5rem; }
  .quick-icon { width: 48px; height: 48px; }

  .hero-content h1 { font-size: 1.75rem; }
  .hero-content p { font-size: 0.95rem; }

  .pain-grid { grid-template-columns: 1fr; }
  .facility-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .youtube-grid { grid-template-columns: 1fr; }
  .apply-steps { grid-template-columns: 1fr; }
  .apply-step::after { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .instructor-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .main-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .facility-grid { grid-template-columns: 1fr; }
  .facility-mosaic-main img { height: 220px; }
  .facility-mosaic-thumbs img { height: 130px; }
  .facility-extra-thumbs { grid-template-columns: repeat(3, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .slider-prev, .slider-next { display: none; }
  .floating-btn span { display: none; }
  .floating-btn { padding: 0.75rem; border-radius: 50%; }
  .floating-btn svg { width: 22px; height: 22px; }
}

@media (max-width: 480px) {
  .quick-menu-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .main-gallery-grid { grid-template-columns: 1fr; }
  .facility-mosaic-thumbs { grid-template-columns: 1fr 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
