


/* ===== 기본 설정 ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:   #9d4edd;
  --primary-light: #ede7ff;
  --secondary: #e879f9;
  --accent:    #f0abfc;
  --purple:    #c77dff;
  --orange:    #f472b6;
  --blue:      #818cf8;
  --green:     #2dd4bf;
  --pink:      #f0abfc;
  --gold:      #c084fc;
  --dark:      #160d3a;
  --text:      #3b2068;
  --text-light:#8b72bf;
  --bg:        #f5efff;
  --white:     #ffffff;
  --radius:    16px;
  --shadow:    0 4px 24px rgba(157,78,237,0.13);
  --shadow-lg: 0 8px 40px rgba(157,78,237,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  text-align: center;
}

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

/* ===== 헤더 ===== */
#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,239,255,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(157,78,237,0.15);
  transition: box-shadow .3s;
}
#header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon { font-size: 28px; }
.logo-text strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}
.logo-text small {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-list a {
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all .2s;
}
.nav-list a:hover { color: var(--primary); background: var(--primary-light); }
.nav-list .btn-nav {
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 8px 20px;
}
.nav-list .btn-nav:hover { background: #6d28d9; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all .3s;
}

.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid #f0f0f0;
}
.mobile-menu ul { list-style: none; }
.mobile-menu a {
  display: block;
  padding: 14px 24px;
  text-decoration: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #f9f9f9;
}
.mobile-menu a:hover { background: var(--primary-light); color: var(--primary); }
.mobile-menu.open { display: block; }

/* ===== 히어로 ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 40%, #7c3aed 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(167,139,250,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(236,72,153,0.12) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(245,158,11,0.1) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #e9d5ff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-content h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-content h1 span {
  background: linear-gradient(90deg, #fbbf24, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #c026d3, #9d4edd);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all .3s;
  box-shadow: 0 4px 24px rgba(192,38,211,0.45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(192,38,211,0.6); }
.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
  padding: 13px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all .3s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* 음표 애니메이션 */
.hero-notes { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.note {
  position: absolute;
  font-size: 32px;
  opacity: 0.2;
  animation: floatNote 6s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(200,100,255,0.6));
}
.n1 { top: 15%; left: 70%; animation-delay: 0s; font-size: 40px; }
.n2 { top: 40%; left: 85%; animation-delay: 1s; font-size: 28px; }
.n3 { top: 65%; left: 75%; animation-delay: 2s; font-size: 36px; }
.n4 { top: 25%; left: 92%; animation-delay: 3s; font-size: 24px; }
.n5 { top: 75%; left: 88%; animation-delay: 4s; font-size: 44px; }
@keyframes floatNote {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
  50% { transform: translateY(-20px) rotate(10deg); opacity: 0.3; }
}

/* ===== 섹션 공통 ===== */
.section { padding: 90px 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.section-header p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
}
.section-header.light h2 { color: white; }
.section-header.light p { color: rgba(255,255,255,0.75); }
.section-header.light .section-tag {
  background: rgba(255,255,255,0.2);
  color: white;
}

/* ===== 소개 ===== */
.about { background: linear-gradient(160deg, #fdf6ff 0%, #f0e7ff 100%); }

.about-banner {
  margin-bottom: 44px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(157,78,237,0.22);
  position: relative;
}
.about-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(22,13,58,0.35) 100%);
  border-radius: 22px;
  pointer-events: none;
}
.about-banner-img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-card {
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(200,150,255,0.25);
  transition: all .3s;
  backdrop-filter: blur(6px);
}
.about-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(157,78,237,0.2); border-color: rgba(200,150,255,0.5); }
.about-icon { font-size: 48px; margin-bottom: 16px; }
.about-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.about-card p { color: var(--text-light); font-size: 14px; line-height: 1.8; }

/* ===== 프로그램 ===== */
.services { background: linear-gradient(160deg, #f5efff 0%, #ede7ff 100%); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,0.75);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(200,150,255,0.2);
  transition: all .3s;
  position: relative;
  overflow: hidden;
  text-align: center;
  backdrop-filter: blur(6px);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: #e5e7eb;
  transition: background .3s;
}
.service-card[data-color="purple"]::before { background: linear-gradient(90deg, var(--purple), #a78bfa); }
.service-card[data-color="orange"]::before { background: linear-gradient(90deg, var(--orange), #fbbf24); }
.service-card[data-color="blue"]::before   { background: linear-gradient(90deg, var(--blue), #60a5fa); }
.service-card[data-color="green"]::before  { background: linear-gradient(90deg, var(--green), #34d399); }
.service-card[data-color="pink"]::before   { background: linear-gradient(90deg, var(--pink), #f9a8d4); }
.service-card.service-cta::before          { background: linear-gradient(90deg, var(--gold), #fcd34d); }

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

.service-icon-wrap {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.service-icon-wrap.purple { background: rgba(196,142,255,0.2); }
.service-icon-wrap.orange { background: rgba(240,100,180,0.15); }
.service-icon-wrap.blue   { background: rgba(140,130,255,0.2); }
.service-icon-wrap.green  { background: rgba(80,220,200,0.15); }
.service-icon-wrap.pink   { background: rgba(240,171,252,0.2); }
.service-icon-wrap.gold   { background: rgba(192,132,252,0.2); }

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.service-list li {
  font-size: 13px;
  color: var(--text);
  padding-left: 18px;
  position: relative;
}
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
}

.service-cta { background: linear-gradient(135deg, #0d0625, #4c1d95, #7c2dbe); border-color: transparent; }
.service-cta h3 { color: white; }
.service-cta p  { color: rgba(255,255,255,0.75); }

.btn-service {
  display: inline-block;
  background: linear-gradient(135deg, #c026d3, #f472b6);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  margin-top: 8px;
  transition: all .3s;
}
.btn-service:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(192,38,211,0.5); }

/* ===== 대상 기관 ===== */
.targets {
  background: linear-gradient(135deg, #0d0625 0%, #2a0d6e 40%, #7c2dbe 70%, #b02ab0 100%);
}
.targets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.target-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: all .3s;
}
.target-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }
.target-icon { font-size: 48px; margin-bottom: 14px; }
.target-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.target-card p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.7; }

.visit-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(245,158,11,0.2);
  border: 1px solid rgba(245,158,11,0.4);
  border-radius: 12px;
  padding: 18px 28px;
  font-size: 16px;
  color: #fde68a;
}
.visit-banner span { font-size: 24px; }
.visit-banner strong { color: #fbbf24; }

/* ===== 강사 소개 ===== */
.instructor { background: linear-gradient(160deg, #fdf6ff 0%, #f0e7ff 100%); }
.instructor-card {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  background: rgba(255,255,255,0.7);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(200,150,255,0.25);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 40px rgba(157,78,237,0.12);
}
.instructor-avatar {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(192,38,211,0.4), 0 0 0 4px rgba(200,150,255,0.3);
  border: 3px solid rgba(220,180,255,0.5);
}
.instructor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.instructor-info h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.instructor-title {
  color: var(--primary);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 16px;
}
.instructor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.instructor-tags span {
  background: var(--primary-light);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}
.instructor-desc {
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 24px;
}
.instructor-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  box-shadow: 0 4px 20px rgba(124,58,237,0.3);
  transition: all .3s;
}
.instructor-phone:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,58,237,0.4); }

/* ===== 문의 ===== */
.contact { background: linear-gradient(160deg, #ede7ff 0%, #f5efff 100%); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.7);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(200,150,255,0.25);
  transition: all .3s;
  backdrop-filter: blur(6px);
}
.contact-item:hover { box-shadow: 0 8px 32px rgba(157,78,237,0.18); }
.ci-icon {
  width: 48px; height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.ci-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ci-body strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ci-body a, .ci-body span {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}
.ci-body a:hover { color: var(--primary); }
.ci-body small { font-size: 13px; color: var(--text-light); }

.contact-form {
  background: rgba(255,255,255,0.75);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 8px 40px rgba(157,78,237,0.15);
  border: 1px solid rgba(200,150,255,0.25);
  backdrop-filter: blur(8px);
  text-align: left;
}
.contact-form h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.req { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); background: white; }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  color: white;
  border: none;
  padding: 15px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all .3s;
  margin-top: 4px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,58,237,0.4); }
.form-note {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  min-height: 20px;
  color: var(--green);
}

/* ===== 푸터 ===== */
.footer {
  background: linear-gradient(135deg, #0d0625 0%, #1e0a50 60%, #2a0d6e 100%);
  padding: 40px 0 20px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
}
.footer-logo strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: white;
}
.footer-logo small {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}
.footer-links p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 2; }
.footer-links a { color: rgba(255,255,255,0.8); text-decoration: none; }
.footer-links a:hover { color: #fbbf24; }
.footer-copy {
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  padding-top: 20px;
}

/* ===== 갤러리 ===== */
.gallery { background: linear-gradient(160deg, #fdf6ff 0%, #f0e7ff 100%); }

.gallery-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}
.gtab {
  padding: 10px 28px;
  border-radius: 50px;
  border: 2px solid #e5e7eb;
  background: none;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  color: var(--text-light);
  cursor: pointer;
  transition: all .2s;
}
.gtab:hover { border-color: var(--primary); color: var(--primary); }
.gtab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.gallery-grid.hidden { display: none; }

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: #f3f4f6;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(124,58,237,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: white;
  font-size: 15px;
  font-weight: 700;
  background: rgba(0,0,0,0.3);
  padding: 8px 18px;
  border-radius: 50px;
}

.video-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #160d3a, #3b0d7e);
  box-shadow: 0 4px 20px rgba(157,78,237,0.2);
}
.video-item video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  background: #000;
}
.video-label {
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255,255,255,0.08);
}

/* 라이트박스 */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.lb-close {
  position: fixed;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
  z-index: 1000;
}
.lb-close:hover { background: rgba(255,255,255,0.3); }
.lb-prev, .lb-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: white;
  font-size: 36px;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.25); }

/* ===== 반응형 ===== */
@media (max-width: 900px) {
  .nav-list { display: none; }
  .hamburger { display: flex; }
  .about-cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .targets-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .instructor-card { flex-direction: column; align-items: center; text-align: center; padding: 36px 28px; gap: 28px; }
  .instructor-tags { justify-content: center; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .targets-grid { grid-template-columns: 1fr 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 34px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
  .section { padding: 64px 0; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 400px) {
  .targets-grid { grid-template-columns: 1fr; }
}
