/* =========================
   페이지 전용 (index.css)
========================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up-visible {
  opacity: 1;
  transform: translateY(0);
}

/*------------------------- Hero------------------------------- */
.section-hero {
  position: relative;
  padding: 60px 0 140px; /* 상단 여백은 헤더 높이에 맞게 조절 */
  text-align: center;
  color: #fff;
  background-image: url("../images/index-bg02.jpg"); /* 히어로 배경 이미지 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: var(--header-h) !important;
}


.section-hero .text-container .title {
  font-size: 6rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

/* 스크롤 안내 영역 */
/*.hero-scroll {
  /*display: flex;*/
  /*flex-direction: column;
  align-items: center;
  gap: 12px;
  position: absolute;
  left: 50%;
  bottom: 40px;      
  transform: translateX(-50%);
}

.hero-scroll-circle {
  align-items: center;
  justify-content: center;
  width:100%;
  margin:0 auto;
}

.hero-scroll-arrow {
  font-size: 28px;
  line-height: 1;
}

.hero-scroll-text {
  font-size: 14px;
  color: #222222;
}

.hero-ment-text {
  transition: opacity 220ms ease, transform 220ms ease;
  word-break: keep-all;
}

.hero-ment-text.is-out {
  opacity: 0;
  transform: translateY(10px);
}

.hero-ment-text.is-in {
  opacity: 1;
  transform: translateY(0);
}

  /**/
.hero-container {
  max-width: 1200px;
  margin: 50px auto 0px auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-left {
    z-index: 2;
    width: 60%;
    text-align: left;
}
.main-container .hero-label {
    font-size: 20px;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    text-align: left;
    border-radius: 30px;
    border: 1px solid #4fffe2;
    text-align: center;
    display: inline;
    padding: 10px 20px;
    color:#4fffe2;
}
.main-container .hero-title {
    font-size: 6rem;
    line-height: 1.1;
    color: #fff;
    text-align: left;
    margin-bottom: 0;
    font-family: 'GmarketSansMedium', sans-serif;
}
.hero-title .highlight {
    color: #4fffe2;
    font-family: 'GmarketSansMedium';
}
.hero-sub {
    font-size: 1.1rem;
    color: #d3d6ff;
    margin-top: 0;
    text-align: left;
}

/* ===== fade 초기 상태 ===== */
.js-fade-down,
.js-robot{
  opacity: 0;
  will-change: transform, opacity;
}

/* 왼쪽: 페이드 다운(위에서 내려오며 등장) */
.fade-down-start{
  transform: translateY(-18px);
}
.fade-down-show{
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s ease, transform .7s ease;
}

/* 오른쪽: 페이드 업(아래에서 올라오며 등장) */
.robot-start{
  transform: translateY(18px);
}
.robot-show{
  opacity: 1;
  transform: translateY(0);
  transition: opacity .8s ease, transform .8s ease;
}

/* 로봇 둥실둥실(등장 후 계속) */
.robot-float{
  animation: robotFloat 2.6s ease-in-out infinite;
}

@keyframes robotFloat{
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}


.hero-right {
    flex: 1;
    text-align: right;
    width: 40%;
}
.hero-right img {
    width:100%;
}
/* 모바일에서 터치 스와이프할 때 브라우저 기본 스크롤과 충돌 최소화 */
.section-hero {
  touch-action: pan-y; /* 세로 스크롤은 허용 */
}


/* Q / A 타입에 따라 스타일 다르게 주고 싶으면 */
.section-hero.hero-step-q .title {
  color: #111;
}

.section-hero.hero-step-a {
  background: #b7f7f7;           /* 원하는 색으로 바꿔도 됨 */
}

.section-hero.hero-step-a .title {
  color: #111;
}

/* 전환 중 숨김 효과 */
.hero-qa-hidden {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* 기본 상태(보이는 상태)도 transition 유지 */
#hero-qa-text {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/**/

/*------------------------ Partner --------------------------*/
h2 {
  font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
    margin-top: 10px;
}
h3 {
  font-size: 1.2rem;
    font-weight: 600;
    color: #a8b3c7;
    font-weight: 400;
    line-height: 1.5;
}
.section-partner {
  padding: 100px 0 ;
  background-color: #ffffff;
  color: #111111;
}
.section-partner .text-container {
    text-align: center;
}
.section-partner .text-container h2 {
    font-weight: 700;
}
.section-partner .text-container h3 {
    margin:0;
    color:#333;
}

.section-partner .content-container {
  text-align: center;
}

/* 로고 행 */
.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  margin-bottom: 40px;
}

.partner-logo-item img {
  height: 200px;
  width: auto;
}

.partner-x {
  font-size: 28px;
  font-weight: 700;
  color: #111111;
}

/* 설명 문장 */
.partner-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
}

/*-----------------------Education Intro-------------------------*/
.section-education-intro {
  padding: 120px 0 120px;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
}

.section-education-intro .text-container {
  margin-bottom: 60px;
}
.education-info-card .grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

/* 상단 배지 */
.education-badge {
  display: inline-block;
  padding: 6px 18px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: #00e0c6;
  color: #020815;
  font-size: 20px;
  font-weight: 600;
}

/* 타이틀 / 서브타이틀 */
.section-education-intro .title {
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-education-intro .subtitle {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

/* 하단 정보 카드 전체 */
.education-info-card {
  background: radial-gradient(circle at top left, #192133 0%, #050910 50%, #050910 100%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 48px;
}

/* 각 칸 */
.education-info-item {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0 24px;
  position: relative;
}

/* 가운데 세로 구분선 (PC) */
.education-info-item::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  width: 1px;
  height: calc(100% - 24px);
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.education-info-item:last-child::after {
  display: none;
}

.education-info-item .card-title {
  font-size: 16px;
  font-weight: 600;
  color: #00e0c6;
  margin-bottom: 10px;
}

.education-info-item .card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #f5f5f5;
}

/* =========================kit Section========================= */
.kit-badge {
    color: #40f2df;
    font-weight: 600;
}
.section-kit {
  padding: 60px 0;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
}
.section-kit .container {
    text-align: center;
}

/* -- 비디오 슬아이드 + 부드러운 전환 -- */

.video-rotator {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 16px; /* 필요 없으면 제거 */
  max-width: 900px;
  margin: 0 auto;
}

/* 16:9 유지하고 싶으면 사용 (필요 없으면 제거) */
.video-rotator::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.video-rotator > .vr-track {
  position: absolute;
  inset: 0;
}

.vr-track {
  display: flex;
  height: 100%;
  transform: translateX(0%);
  transition: transform 500ms ease;
}

.vr-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

.vr-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  /* 페이드 느낌(선택) */
  opacity: 0.35;
  transition: opacity 500ms ease;
}

.vr-slide.is-active .vr-video {
  opacity: 1;
}


/*new동영상 css*/
/* .video-rotator{
  width: 100%;
  max-width: 980px;   /* 필요 시 조정
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
  aspect-ratio: 16 / 9;
} 
*/

/* .vr-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
} */

/* .vr-video.is-active{
  opacity: 1;
  pointer-events: auto;
} */


/* =========================Urgency Section========================= */

.section-urgency {
  padding: 120px 0;
  background: radial-gradient(circle at 20% 10%, #1b2a3a 0%, #0a111b 45%, #050915 100%);
  color: #ffffff;
}
.section-urgency .container {
  position: relative;
}

.section-urgency .text-container {
  text-align: left;
  margin-bottom: 40px;
}

.urgency-label {
  color: #40f2df;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.urgency-title {
  margin-bottom: 16px;
}

.urgency-subtitle {
  margin-top: 18px;
  margin-bottom: 0;
  max-width: 680px;           /* 너무 길게 퍼지지 않게 */
  font-size: 16px;
  font-weight: 500;           /* 가독성 업 */
  line-height: 1.8;
  letter-spacing: -0.01em;
}

/* 상단: 텍스트 영역(좌) + 일러스트(우) */
.urgency-img {
  display: grid;
  align-items: start;
  gap: 24px;
  margin-bottom: 40px;
  pointer-events: none;
  position: absolute;
  top:-50px;
  right:20px;
}

.urgency-top-left {
  min-height: 1px;
}

.urgency-illust img {
  display: block;
}

/* 카드 그리드 */
.urgency-grid {
  margin-top: 10px;
}

/* 카드 */
.urgency-card {
  background: rgba(5, 9, 21, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.urgency-card-head {
  background: #40f2df;
  padding: 18px 18px;
}

.urgency-card-head .card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #06101a;
  text-align: center;
  letter-spacing: -0.02em;
}

.urgency-card-body {
  padding: 28px 26px 30px;
}

.urgency-card-lead {
  font-size: 18px;
  line-height: 1.45;
  margin-bottom: 14px;
  color: #ffffff;
}

.urgency-card-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
}

/* 그리드 기본 */
.grid {
  display: grid;
  gap: 28px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* =========================SECTION : RECOMMEND========================= */
.section-recommend {
  position: relative;
  padding: 100px 0 150px;
  background-color: #000;

  /* 왼쪽 드론 + 핸드폰 이미지 */
  background-image: url("/assets/images/index-img-05.png");
  background-repeat: no-repeat;
  background-position: 10% bottom;
  overflow: hidden;
}

/* 콘텐츠 래퍼 */
.recommend-content {
  margin-left: auto;
  color: #fff;
}

/* 상단 라벨 */
.recommend-label {
  font-weight: 600;
  color: #4fffe0;
  margin-bottom: 16px;
}

/* 타이틀 */
.recommend-title {
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

/* 리스트 */
.recommend-list {
  list-style: none;
  padding: 0;
  margin-left: 660px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* pill 공통 */
.recommend-item {
  padding: 22px 28px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #4fffe0;
  background: rgba(10, 20, 30, 0.7);
  border: 1px solid rgba(79, 255, 224, 0.35);
}

/* 첫 번째 강조 */
.recommend-item.highlight {
  background: #4fffe0;
  color: #000;
  border: none;
}

/* =========================Stats Section========================= */
.section-stats {
  position: relative;
  padding: 80px 0 80px;
  color: #ffffff;
  text-align: center;

  background-image: url("/assets/images/index-bg02.png"); /* 졸업 배경 이미지 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 어두운 오버레이 */
.section-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-stats .container {
  position: relative;
  z-index: 1;
}

/* 배지 */
.stats-badge {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background: #40f2df;
  color: #06101a;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

/* 타이틀/서브 */

.stats-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

/* 지표 그리드 */
.stats-grid {
  margin-top: 70px;
  align-items: start;
}

.stats-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.stats-card.is-percent .stats-number::after{
  content: "%";
  font-size: 0.45em;      /* %는 작게 */
  margin-left: 0.1em;
}

/* 아이콘 */
.stats-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-icon img {
  width: 100%;
  height: auto;
}

/* 숫자/라벨 */
.stats-number {
  font-size: 76px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 14px;
  margin-top:0;
}

.stats-label {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.stats-number.percent::after {
  content: "%";
  font-size: 26px;              /* 숫자보다 작게 */
  font-weight: 700;              /* 노란 강조 */
  margin-left: 6px;
  position: relative;
  top: -6px;     
}

/* 하단 문구 */
.stats-footnote {
  margin-top: 72px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

/* Courses */
/* =========================Course Intro Section========================= */

.section-course-intro {
  padding: 80px 0;
  text-align: center;
  color: #111111;

  /* ✅ 1) CSS 그라데이션 배경(추천) */
  background: radial-gradient(circle at 50% 25%, rgba(255,255,255,0.95) 0%, rgba(214, 245, 255, 0.95) 40%, rgba(210, 220, 255, 0.95) 100%);
}

/* ✅ 2) 배경을 이미지로 쓰고 싶으면 아래 주석 해제 후 1) 배경을 지워도 됨 */
/*
.section-course-intro {
  background-image: url("/assets/images/img-index-51.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
*/

.section-course-intro .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-course-intro .text-container {
  order: 2;
  margin-top: 22px;
}

.section-course-intro .text-container h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: rgba(17, 17, 17, 0.65);
}
.swing {
  display: inline-block;
  transform-origin: 50% 0%; /* 🔥 위 가운데가 축 */
  animation: swingMotion 2.8s ease-in-out infinite;
}

/* 이미지가 커도 흔들림 안정화 */
.swing img {
  display: block;
}

@keyframes swingMotion {
  0%   { transform: rotate(-6deg); }
  20%  { transform: rotate(6deg); }
  50%  { transform: rotate(-6deg); }
  80%  { transform: rotate(6deg); }
  100% { transform: rotate(-6deg); }
}


/* =========================
   Courses Section (Dark grid like left)
========================= */

.section-courses {
  padding: 60px 0;
  background: radial-gradient(circle at 50% 0%, #1b2a3a 0%, #0a111b 45%, #050915 100%);
  color: #ffffff;
}

.section-courses .text-container {
  text-align: center;
  margin-bottom: 60px;
}

.section-courses .text-container .label {
  display: inline-block;
  color: #40f2df;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-courses .text-container h2 {
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.section-courses .text-container h3 {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
}

/* grid */
.grid {
  display: grid;
  gap: 28px;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* card */
.course-card {
  background: rgba(8, 14, 26, 0.65);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 18px 18px 20px;
  box-shadow: none;
  position: relative;
}

.course-card .card-img {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 14px;
}

.course-card .card-img img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

/* badges */
.course-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  position: absolute;
  top:19px;
}

.badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.badge-outline {
  color: #40f2df;
  border: 1px solid rgba(64, 242, 223, 0.45);
  background: #000;
}

.badge-danger {
  color: #ff6b6b;
  border: 1px solid rgba(255, 107, 107, 0.45);
  background: #000;
}

/* title/desc/button */
.course-card .card-title {
  display: grid;
  grid-template-columns: 30px 1fr; /* 체크박스 폭 + 텍스트 */
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
  min-height: 49px;
  margin-top: 15px;
  align-items: start;
}

.course-card .card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
  min-height: 55px; /* 카드 높이 정렬 */
  margin: 0;
}

/* button */
.course-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 46px;
  border-radius: 10px;
  text-decoration: none;
}
/* (프로젝트 공통 버튼 클래스가 있다면 유지, 없으면 아래로 기본 정의) */
.btn {
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: #40f2df;
  color: #06101a;
  font-weight: 800;
}
/* 아이콘 */
.course-intro-icon {
  order: 1;
  width: 110px;
  height: auto;
}
.course-intro-icon img {
  width: 100%;
  height: auto;
  display: block;
}
.section-courses .container-form {
  padding-top:50px;
}
.container-form .form-box {
  max-width: 1280px;
  position: fixed;
  width: 90%;
  bottom: 0;
  margin: 0 auto;
  z-index: 999;
  left: 0;
  right: 0;
}
.container-form form {
  display: flex;
  margin: 26px auto 0;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(64, 242, 223, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);

  display: grid;
  grid-template-columns: 20% 20% 33% 23%;
  gap: 12px;
  align-items: center;
}
/* fixed 폼 숨김용 */
.container-form.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 200ms ease, transform 200ms ease;
}

/* Support */
/* ===== Support Section ===== */
.section-support {
  position: relative;
  padding: 80px 0;
  background: #000;
  color: #fff;
  overflow: hidden; /* 오른쪽으로 붙일 때 가로 스크롤 방지 */
}

.section-support .support-layout {
  position: relative;
  display: flex;
  align-items: flex-start;
}

/* 왼쪽 텍스트 */
.section-support .support-left {
  flex: 1;
  min-width: 0;
}

.section-support .text-container .label {
  display: inline-block;
  margin-bottom: 18px;
  font-weight: 700;
  color: #3fffe2;
}

.section-support .text-container h2 {
  line-height: 1.25;
  margin-bottom: 18px;
  color: #fff;
}

.section-support .text-container h3 {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

/* 오른쪽 그래프 영역 */
.section-support .support-right {
  flex: 0 0 auto;
}

/*
  ✅ 핵심: 그래프를 "뷰포트 오른쪽 끝"에 딱 붙이기
  container 오른쪽 여백 = max(0, (100vw - 1280px)/2) + 20px(컨테이너 padding)
  → 그만큼을 음수로 right에 적용
*/
.section-support .support-graph {
  position: absolute;
  top: 40px;
  right: -50px;
  width: 560px; /* 그래프 전체 덩어리 폭(너 이미지에 맞게 조절) */
  border-radius: 24px;
  background: radial-gradient(circle at 50% 40%, rgba(63,255,226,0.20), rgba(0,0,0,0) 60%);
  filter: drop-shadow(0 10px 30px rgba(64, 242, 223, 0.15));
}

.section-support .support-graph-title {
  position: absolute;
  top: 44px;
  font-size: 28px;
  font-weight: 800;
  color: #67ffe9;
  margin: 0;
}

/* 도넛 */
.section-support .support-donut {
  position: absolute;
}
.section-support .support-donut img {
  object-fit: contain;
}

/* 장식 요소 */
.section-support .support-sparkle {
  position: absolute;
  left: 120px;
  top: 120px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 18px rgba(255,255,255,0.65);
}

.section-support .support-cube {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(63,255,226,0.95), rgba(63,255,226,0.25));
  box-shadow: 0 10px 18px rgba(63,255,226,0.15);
}

.section-support .support-cube-1 {
  left: 110px;
  top: 210px;
  transform: rotate(18deg);
}

.section-support .support-cube-2 {
  left: 190px;
  top: 300px;
  transform: rotate(-12deg);
}
.section-support .bottom-container {
  margin-top:150px;
}
/* 그래프 때문에 텍스트가 가려지지 않도록 오른쪽 공간 확보 */
.section-support .support-left .text-container {
  padding-right: 520px; /* 그래프가 차지하는 시각 폭에 맞춰 조절 */
}
/* =========================   Review Section========================= */
.support-question {
  text-align: center;
  margin: 70px 0 40px;
}

.support-question .title {
  font-size: 44px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* 카드 그리드 */
.support-grid {
  gap: 44px;           /* grid / flex 모두 대응 */
  align-items: stretch;
  grid-template-columns: repeat(2, 1fr);
}

/* 카드 공통 */
.support-card {
  border: 1px solid rgba(79, 255, 226, 0.35);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  border-radius: 2px;  /* 스샷처럼 각진 느낌 */
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

/*.support-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 255, 226, 0.7);
  box-shadow: 0 24px 60px rgba(79, 255, 226, 0.08);
}
*/
/* 카드 헤더(민트 바) */
.support-card-head {
  background: #4fffe2;
  padding: 26px 28px;
}

.support-card-head .card-title {
  margin: 0;
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: #001514;
}

/* 카드 바디(설명 영역) */
.support-card-body {
  padding: 28px 32px 34px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-card-body .card-desc {
  margin: 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.01em;
}

/* 강조(HTML에 strong 사용) */
.support-card-body .card-desc strong {
  color: #4fffe2;
  font-weight: 800;
}

/* 하단 안내 문구 */
.support-footnote {
  margin: 54px 0 0;
  text-align: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.01em;
}
.section-review {
  padding: 120px 0;
  background: radial-gradient(circle at 50% 0%, #1b2a3a 0%, #0a111b 45%, #050915 100%);
  color: #ffffff;
}

.section-review .text-container {
  text-align: center;
  margin-bottom: 54px;
}

.review-label {
  display: inline-block;
  color: #40f2df;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-review .text-container h2 {
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.section-review .text-container h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

/* list */
.review-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* card base */
.review-card {
  display: grid;
  grid-template-columns: 1fr 160px;
  align-items: center;
  gap: 22px;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 26px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* left avatar version */
.review-card-left {
  grid-template-columns: 160px 1fr;
}

.review-body {
  min-width: 0;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.review-role {
  font-weight: 800;
}

.review-sep {
  color: rgba(255, 255, 255, 0.35);
}

.review-name,
.review-major {
  color: rgba(255, 255, 255, 0.78);
}

/* stars */
.review-stars {
  margin-bottom: 12px;
  font-size: 18px;
  letter-spacing: 2px;
}

.star {
  opacity: 0.25;
}

.star-on {
  color: #40f2df;
  opacity: 1;
}

/* desc */
.review-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

/* avatar */
.review-avatar .img-box {
  width: 100px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
}
.review-avatar img {
  width: 100%;
  object-fit: cover;
}

/* =========================FAQ Section========================= */
.section-faq {
  padding: 80px 0;
  background: #000000;
  color: #ffffff;
}

.section-faq .text-container {
  text-align: center;
  margin-bottom: 56px;
}

.faq-label {
  display: inline-block;
  color: #40f2df;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-faq .text-container h2 {
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.section-faq .text-container h3 {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}

/* list wrap */
.faq-list {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* item */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* question button row */
.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;

  padding: 26px 6px;
  background: transparent;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  text-align: left;
}

.faq-q {
  color: #40f2df;
  font-weight: 900;
  font-size: 16px;
}

.faq-title {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.faq-icon {
  position: relative;
  width: 44px;
  height: 44px;
  justify-self: end;
  border-radius: 999px;
  background: rgba(64, 242, 223, 0.08);
  border: 1px solid rgba(64, 242, 223, 0.20);
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease;
  font-size: 0;
  line-height: 0;
  color: transparent;
}
.faq-icon::before,
.faq-icon::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: #40f2df;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition:
    transform 260ms cubic-bezier(.2,.9,.2,1),
    opacity 220ms ease;
}

/* 세로 라인 */
.faq-icon::after{
  transform: translate(-50%, -50%) rotate(90deg);
}

/* hover 살짝 “뜸” */
.faq-question:hover .faq-icon{
  transform: translateY(-1px);
  background: rgba(64, 242, 223, 0.12);
  border-color: rgba(64, 242, 223, 0.35);
}

/* open 상태: +가 -로 “모핑” (세로 라인이 줄어들며 사라짐 + 살짝 회전) */
.faq-item.is-open .faq-icon{
  transform: rotate(180deg);
}

.faq-item.is-open .faq-icon::after{
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

/* ===== 답변 펼침 애니메이션 업그레이드 ===== */
.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms cubic-bezier(.2,.9,.2,1);
}

.faq-answer-text{
  margin: 0;
  padding: 0 54px 26px 54px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);

  /* 등장 모션 */
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 220ms ease, transform 260ms cubic-bezier(.2,.9,.2,1);
}

.faq-item.is-open .faq-answer-text{
  opacity: 1;
  transform: translateY(0);
}

/* answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-answer-text {
  margin: 0;
  padding: 0 54px 26px 54px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

/* open state */
.faq-item.is-open .faq-answer {
  max-height: 260px; /* 답변 길면 JS에서 자동으로 늘려줌 */
}

/* CTA */
.section-cta{
  color: #ffffff;
  background-image: url(/assets/images/index-bg03.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.cta-layout {
  align-items: center;
  gap: 80px;
  position: relative;
}

.cta-robot {
  flex: 0 0 420px;
  position: absolute;
  top:100px;
  right:0;
}

.cta-form {
  flex: 1;
}

.section-cta .label {
  display: inline-block;
  margin-bottom: 12px;
  color: #4fffe2;
}

.section-cta h2 {
  font-size: 44px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.section-cta h3 {
  font-size: 18px;
  color: #cfd6d6;
  line-height: 1.6;
  margin-bottom: 40px;
}

.section-cta .text-container {
  text-align: center;
}

.form-box {
  max-width: 520px;
  margin: 0 auto;
}

.form-group input {
  width: 100%;
  height: 56px;
  margin-bottom: 16px;
  position: relative;
  padding: 0 16px;
  background: transparent;
  border: 2px solid rgba(79, 255, 226, 0.6);
  color: #fff;
  border-radius: 10px;
  background: rgba(22, 22, 35, 0.7);
}

.container-form .form-group input, .container-form .form-check, .container-form .btn-primary  {
    margin:0;
}

.form-group input::placeholder {
  color: #aaa;
}

.form-check {
  margin: 20px 0 30px;
  font-size: 14px;
  color: #bbb;
}

.btn-primary {
  width: 100%;
  background: #4fffe2;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-bottom: 20px;
}
.btn-primary01 {
  width: 100%;
  background: #000;
  color: #4fffe2;
  font-size: 18px;
  font-weight: 700;
  border: 1px solid #1f5a50;
  cursor: pointer;
  margin-bottom: 20px;
}
.call {
  text-align: center;
  font-size: 28px;
  margin: 0;
}

/* =========================
   반응형 (추후 PC용 확장)
========================= */

@media (max-width: 1280px) {
  .section-hero .text-container .title {
    font-size: 5rem;
  }
  .partner-logo-item img {
    height: 110px;
  }
   .section-education-intro {
    padding: 110px 0 110px;
  }
  .education-info-card {
    padding: 36px 32px;
  }
  .urgency-title {
    font-size: 40px;
  }

  .urgency-top {
    grid-template-columns: 1fr 360px;
    margin-top: -150px;
  }
  .stats-title {
    font-size: 40px;
  }
  .stats-number {
    font-size: 68px;
  }
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .support-top {
    grid-template-columns: 1fr 480px;
  }
  .support-graph {
    width: 480px;
  }
  .section-review .text-container h2 {
    font-size: 40px;
  }
  .cta-grid{ grid-template-columns: 1fr 380px; }
  .cta-form{ grid-template-columns: 220px 220px 240px; }
  .support-question .title {
    font-size: 40px;
  }

  .support-grid {
    gap: 32px;
  }
  .img-box {
    width: 60%;
  }
}

@media (max-width: 1029px) {
   .main-container .hero-title {
    font-size: 5rem;
   } 
}

@media (max-width: 1024px) {
    .section-hero {
    padding: 70px 0 110px;
    }
    .partner-logo-item img {
    height: 100px;
  }
  .section-hero .text-container .title {
    font-size: 48px;
  }
  .hero-scroll {
  }
  .section-education-intro .title {
    font-size: 34px;
  }
  .education-info-card {
    padding: 32px 28px;
  }
  .education-info-item {
    padding: 0 16px;
  }
  .section-urgency {
    padding: 60px 0;
  }

  .urgency-title {
    font-size: 34px;
  }
   .urgency-subtitle {
    font-size: 15px;
    line-height: 1.75;
    max-width: 620px;
  }

  .urgency-top {
    grid-template-columns: 1fr 320px;
    margin-top: -120px;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .section-recommend {
    background-size: 50%;
    background-position: center bottom;
    padding: 80px 0 120px;
  }

  .recommend-title {
    font-size: 36px;
  }
  .section-stats {
    padding: 110px 0 100px;
  }
  .stats-title {
    font-size: 36px;
  }
  .stats-number {
    font-size: 60px;
    margin-top: 0;
  }
  .stats-grid {
    margin-top: 60px;
    gap: 50px;
  }
   .section-course-intro .text-container h2 {
    font-size: 38px;
  }
  .sectionstats-cardstats-card-courses { padding: 110px 0; }
  .section-courses .text-container h2 { font-size: 36px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .section-support {
    padding: 110px 0;
  }
  
.recommend-list {
  margin:0;
}



  .section-support .text-container h2 {
    font-size: 40px;
  }

  .section-support .support-graph {
    width: 520px;
  }

  .section-support .support-left .text-container {
    padding-right: 480px;
  }
  .section-review {
    padding: 110px 0;
  }

  .section-review .text-container h2 {
    font-size: 36px;
  }

  .review-card,
  .review-card-left {
  }
  .section-faq {
    padding: 80px 0;
  }
  .section-faq .text-container h2 {
    font-size: 38px;
  }
  .cta-grid{ grid-template-columns: 1fr; gap: 34px; }
  .cta-right{ justify-content: center; }
  .cta-form{ grid-template-columns: 1fr 1fr; }
  .cta-submit{ grid-column: 1 / -1; }
  .cta-layout {
    gap: 40px;
  }

  .cta-robot {
    flex: 0 0 320px;
  }
  .support-question {
    margin: 60px 0 34px;
  }

  .support-question .title {
    font-size: 36px;
  }
}

@media (max-width: 913px) {
.hero-container {
    display: block;
}
.hero-left {
    margin:0 auto;
    text-align: center;
    width: 100%;
}
.main-container .hero-label {
    font-size: 1rem;
}
.main-container .hero-title {
    text-align: center;
    font-size: 3rem;
    padding: 10px 0;
}
.section-hero {
  min-height: 100vh;
  top:0;
}
.hero-sub {
    text-align: center;
}
.hero-right {
    margin: 0 auto;
}
.section-hero .container {
    margin-top: 50px;
}

.partner-logos {
    gap: 28px;
  }

  .partner-logo-item img {
    height: 90px;
  }

  .partner-desc {
    font-size: 15px;
  }
  .title {
    font-size: 30px;
  }
  .section-education-intro .title {
    font-size: 30px;
  }

  .section-education-intro .subtitle {
    font-size: 15px;
  }
  .urgency-top {
    margin-top: -90px;
  }
   .stats-number {
    font-size: 54px;
  }
  .section-course-intro {
    padding: 100px 0;
  }
  .section-courses .text-container h2 { font-size: 32px; }
  .support-question .title {
    font-size: 30px;
  }
  .section-review .text-container h2 {
    font-size: 32px;
  }
  .cta-title{ font-size: 36px; }
  .support-card-head .card-title {
    font-size: 24px;
  }
  .urgency-img {
    display: block;
    position: relative;
    top:0;
    right: 0;
  }
      .img-box {
        width: auto;
    }
    .section-urgency .text-container {
      text-align: center;
    }
    .section-support .support-layout {
      display: block;
    }
    .section-support .support-graph {
      position: relative;
      margin: 0 auto;
    }
    .section-support {
      padding:50px 0;
    }
    .section-support .support-left .text-container {
      padding:0;
      text-align: center;
    }
    .section-support .bottom-container {
      margin:0;
    }
    .section-support .support-graph-title {
      position: relative;
      display: block;
      top:0;
      text-align: center;
    }
    .section-support .support-donut {
      position: relative;
      width:90%;
      right:auto;
      top:auto;
      padding-top:20px;
      text-align: center;
    }
    .section-support .support-graph {
      width:auto;
      right: auto;
      top:0;
    }
    .support-card-head {
        padding:10px 28px;
    }
}
@media (max-width: 900px) {
  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-form {
    grid-template-columns: 1fr;
  }

  .cta-visual {
    height: 320px;
    order: -1;
  }
  .section-support .support-donut img {
    width: 100%;
    max-width: 400px;
  }
}
@media (max-width: 768px) {
    .kit-badge {
        margin-bottom: 0;
    }
    section {
        padding:30px 0 20px 0 !important;
    }
    .hero-scroll {
        bottom: 100px;
    }
  .section-hero {
  }

  .section-hero .text-container .title {
    font-size: 3rem;
  }

  .hero-scroll-circle,   .hero-scroll-circle img {
    width: 70px;
    height: 70px;
  }

  .hero-scroll-arrow {
    font-size: 24px;
  }

  .hero-scroll-text {
    font-size: 13px;
  }
  .hero-right {
    width:70%;
  }
  .section-partner {
    padding: 80px 0;
  }

  .partner-logos {
    gap: 20px;
  }
  
  .partner-logo-item img {
    height: 80px;
  }

  .partner-x {
    font-size: 24px;
  }

  .partner-desc {
    font-size: 14px;
  }
  .section-education-intro {
    padding: 90px 0 90px;
  }

  .section-education-intro .text-container {
    margin-bottom: 40px;
  }

  .education-info-card {
    padding: 28px 20px;
  }

  .education-info-card .grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .education-info-item {
    padding: 0;
  }

  /* 모바일에서는 세로 구분선 제거 */
  .education-info-item::after {
    display: none;
  }

  .education-info-item .card-desc {
    font-size: 14px;
  }
  .section-kit .subtitle {
    font-size: 14px;
  }
  .section-urgency {
    padding: 90px 0;
  }

  .section-urgency .text-container {
    text-align: center;
    margin-bottom: 26px;
  }

  .urgency-title {
    font-size: 28px;
  }

  .urgency-subtitle {
     font-size: 14px;
    line-height: 1.7;
    max-width: 100%;
    margin-top: 14px;
  }

  .urgency-top {
    grid-template-columns: 1fr;
    margin-top: 0;
    pointer-events: none;
  }

  .urgency-top-right {
    display: flex;
    justify-content: flex-end;
  }

  .urgency-card-head .card-title {
    font-size: 16px;
  }

  .urgency-card-lead {
    font-size: 16px;
  }
  .section-recommend {
    padding: 50px 0 100px;
    background-size: 110%;
    background-position: center top;
  }

  .recommend-content {
    margin-left: 0;
    max-width: 100%;
    text-align: left;
  }

  .recommend-title {
    font-size: 28px;
  }
  .recommend-list {
    
  }

  .recommend-item {
    font-size: 16px;
    padding: 18px 20px;
  }
  .section-stats {
    padding: 90px 0 80px;
  }

  .stats-title {
    font-size: 30px;
  }

  .stats-subtitle {
    font-size: 14px;
  }

  .grid-3.stats-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .stats-number {
    font-size: 56px;
  }

  .stats-footnote {
    margin-top: 46px;
    font-size: 14px;
  }

  .section-course-intro {
    padding: 90px 0;
  }

  .course-intro-icon {
    width: 92px;
  }

  .section-course-intro .text-container h2 {
    font-size: 30px;
  }

  .section-course-intro .text-container h3 {
    font-size: 14px;
  }
  .section-courses { padding: 90px 0; }
  .section-courses .text-container { margin-bottom: 36px; }
  .section-courses .text-container h2 { font-size: 28px; }
  .section-courses .text-container h3 { font-size: 14px; }
  .course-card .card-img img { height: 190px; }
  .section-support {
    padding: 50px 0;
  }

  .section-support .text-container h2 {
    font-size: 30px;
  }

  .support-top {
    margin-bottom: 44px;
    gap: 18px;
  }

  .support-graph {
    height: 280px;
  }

  .support-donut {
    right: 12px;
    top: 58px;
    width: 210px;
    height: 210px;
  }

  .support-graph-title {
    font-size: 22px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .support-card-head .card-title {
    font-size: 20px;
  }
  .section-review {
    padding: 50px 0;
  }

  .section-review .text-container {
    margin-bottom: 36px;
  }

  .section-review .text-container h2 {
    font-size: 28px;
  }

  .section-review .text-container h3 {
    font-size: 14px;
  }

  .review-card,
  .review-card-left {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .review-avatar {
    order: -1;
  }

  .review-avatar .img-box {
    width: 96px;
    height: 96px;
  }

  .review-desc {
    font-size: 14px;
  }
   .section-faq {
    padding: 50px 0;
  }

  .section-faq .text-container {
    margin-bottom: 40px;
  }

  .section-faq .text-container h2 {
    font-size: 30px;
  }

  .section-faq .text-container h3 {
    font-size: 14px;
  }

  .faq-question {
    grid-template-columns: 38px 1fr 38px;
    padding: 22px 4px;
  }

  .faq-title {
    font-size: 16px;
  }

  .faq-answer-text {
    padding: 0 44px 22px 44px;
    font-size: 14px;
  }
  .faq-icon{
    width: 38px;
    height: 38px;
  }
  .faq-icon::before,
  .faq-icon::after{
    width: 14px;
  }
  .section-cta{ padding: 50px 0; }
  .cta-title{ font-size: 30px; }
  .cta-form{ grid-template-columns: 1fr; }
  .cta-submit{ grid-column: auto; }
  .cta-layout {
    flex-direction: column;
    text-align: center;
  }

  .cta-robot {
    max-width: 180px;
    position: relative;
    top:0;
    margin: 0 auto;
  }
  .cta-robot img {
    width: 100%;
  }

  .form-box {
    margin: 0 auto;
  }
  .support-question {
    margin: 46px 0 26px;
  }

  .support-question .title {
    font-size: 30px;
  }

  /* grid-2를 쓰고 있으니 여기서 1열로 강제 */
  .support-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .support-card-body {
    min-height: auto;
    padding: 24px 22px 28px;
  }

  .support-footnote {
    margin-top: 36px;
  }
  .section-recommend {
    background-position: center bottom;
    background-size: 70%;
  }
  .container-form form {
    display: block;
  }
  .container-form {
    padding-top:0;
  }
  .container-form .form-group input, .container-form .form-check, .container-form .btn-primary {
    margin-bottom: 16px;
  }
  .urgency-card-head {
    padding:10px 0;
  }
}

@media (max-width: 520px) {
    .stats-badge {
        font-size:13px;
    }
    .section-support .text-container .label {
        font-size: 13px;
    }
    .recommend-label {
        font-size: 13px;
    }
    .kit-badge {
        font-size: 13px;
    }
   .section-courses .text-container h2 {
     font-size: 20px;
   }
   .section-review .text-container h2 {
     font-size: 23px;
   }
   .site-logo img {
        width:80%;
    }
    .section-partner .text-container h3 {
        font-size: 14px;
    }
   .section-partner .text-container h2 {
        font-size: 20px;
    }
  .education-badge {
     font-size: 12px;
  }
  .section-hero {
    padding: 0 !important;
    min-height: 0;
  }
  .section-hero .container {
    margin-top: 80px;
  }

  .main-container .hero-title {
    font-size: 2rem;
  }
  .section-hero .text-container .title {
    font-size: 28px;
  }
  .main-container .hero-label {
    font-size: 0.6rem;
  }
  .hero-container {
    margin: 0;
  }

  .partner-logos {
    flex-direction: column;
    gap: 12px;
  }

  .partner-logo-item img {
    height: 70px;
  }

  .partner-x {
    font-size: 20px;
  }

  .partner-desc {
    font-size: 13px;
    line-height: 1.7;
  }
  .section-education-intro .title {
    font-size: 26px;
  }

  .education-badge {
    font-size: 12px;
    padding: 5px 14px;
    margin-bottom: 0;
  }

  .section-education-intro .subtitle {
    font-size: 14px;
  }

  .education-info-card {
    padding: 24px 16px;
  }
  .urgency-label {
    font-size: 13px;
  }

  .urgency-title {
    font-size: 24px;
  }

  .grid {
    gap: 18px;
  }

  .urgency-card-body {
    padding: 22px 18px 24px;
  }

  .urgency-illust img {
    width:200px;
    display: block;
    margin: 0 auto;
  }
  .stats-badge {
    font-size: 12px;
    padding: 8px 16px;
  }
  .stats-title {
    font-size: 26px;
  }
  .stats-number {
    font-size: 50px;
  }
   .course-intro-icon {
    width: 84px;
  }
  .course-card .card-desc {
    min-height: 0;
    padding-bottom: 10px;
  }
  .section-support .support-graph {
    height: auto;
  }
  .section-support .support-donut {
    height:auto;
  }

  .section-course-intro .text-container h2 {
    font-size: 26px;
  }
  .course-card { padding: 16px; }
  .course-card .card-title { 
    font-size: 17px;
    min-height: 0;
  }
  .section-support .text-container h2 {
    font-size: 26px;
  }

  .support-graph {
    height: 250px;
  }

  .support-donut {
    width: 190px;
    height: 190px;
  }

  .support-question .title {
    font-size: 26px;
  }
   .review-card {
    padding: 20px 18px;
  }

  .review-stars {
    font-size: 16px;
  }
  .section-faq .text-container h2 {
    font-size: 26px;
  }

  .faq-answer-text {
    padding: 0 42px 20px 42px;
  }
  .cta-title{ font-size: 26px; }
  .grid-4 { grid-template-columns: 1fr; }
  .cta-robot {
    max-width: 130px;
  }
  .cta-robot img {
    width: 100%;
  }
  .education-badge {
    font-size: 12px;
  }
}
  @media (max-width: 370px) {
  .site-logo img {
    line-height: 30px;
    height: auto;
    }
  }