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

:root {
  --primary: #FF6B35;
  --primary-dark: #E85A28;
  --secondary: #00C9A7;
  --accent: #845EC2;
  --dark: #1A1A2E;
  --gray-900: #2D2D44;
  --gray-700: #4A4A68;
  --gray-500: #7C7C9A;
  --gray-300: #B8B8CC;
  --gray-100: #F0F0F5;
  --white: #FFFFFF;
  --gradient-primary: linear-gradient(135deg, #FF6B35, #FF8E53);
  --gradient-hero: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 50%, #1A1A2E 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-sm: 10px;
}

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

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: var(--gradient-hero);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.page-transition.is-active {
  opacity: 1;
}

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

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.btn-ghost {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.course-card .btn-outline {
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border-color: rgba(255, 107, 53, 0.78);
}

.course-card .btn-outline:hover {
  background: var(--gradient-primary);
  border-color: transparent;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo-image {
  display: block;
  width: 152px;
  height: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.nav-current {
  color: var(--white);
}

.btn-nav {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 10px 24px;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.circle-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.circle-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  bottom: -50px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.circle-3 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  top: 50%;
  left: 50%;
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.hero-content {
  display: block;
  position: relative;
  z-index: 1;
}

.hero-carousel {
  position: relative;
  min-height: 520px;
  padding-bottom: 74px;
  width: 100%;
}

.hero-slide {
  display: none;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 44px;
  align-items: center;
  opacity: 0;
  transform: translateX(28px);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.is-active {
  display: grid;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-text {
  min-width: 0;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 680px;
}

.highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-desc strong {
  color: var(--secondary);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-carousel-controls {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
}

.hero-arrow,
.hero-dots button {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  transition: all 0.3s ease;
}

.hero-arrow:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  transition: all 0.3s ease;
}

.hero-dots button.is-active {
  width: 30px;
  border-radius: 999px;
  background: var(--primary);
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* Score Card */
.hero-visual {
  display: flex;
  justify-content: center;
}

.score-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px;
  width: 100%;
  max-width: 400px;
  animation: slideUp 1s ease-out;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.score-header {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  text-align: center;
}

.score-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.score-bar {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
  transition: width 1.5s ease-out;
}

.score-val {
  font-weight: 700;
  color: var(--white);
  min-width: 28px;
  text-align: right;
}

.score-total {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
}

.score-total strong {
  color: var(--primary);
  font-size: 2rem;
}

.abroad-card,
.partner-proof-card {
  width: 100%;
  max-width: 430px;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(20px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.24);
}

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

.abroad-card-body,
.partner-proof-card div {
  padding: 24px;
}

.abroad-card-body span,
.partner-proof-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.abroad-card-body strong,
.partner-proof-card strong {
  display: block;
  color: var(--white);
  font-size: 1.04rem;
  line-height: 1.55;
  margin-bottom: 8px;
}

.abroad-card-body p,
.partner-proof-card p {
  color: rgba(255,255,255,0.62);
  font-size: 0.88rem;
  line-height: 1.65;
}

.partner-proof-card {
  padding: 18px;
}

.partner-proof-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
}

.partner-proof-card div {
  padding: 20px 6px 4px;
}

.path-matrix-card,
.partner-summary-card {
  width: 100%;
  max-width: 430px;
  border-radius: 20px;
  padding: 28px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(20px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.24);
}

.path-matrix-card {
  display: grid;
  gap: 14px;
}

.matrix-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.matrix-row.is-strong {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.22), rgba(0, 201, 167, 0.12));
  border-color: rgba(255, 107, 53, 0.3);
}

.matrix-row span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  font-weight: 900;
  font-size: 0.86rem;
}

.matrix-row strong,
.partner-summary-head strong,
.summary-stat-grid strong {
  color: var(--white);
}

.matrix-row strong {
  font-size: 1rem;
}

.matrix-row em {
  color: rgba(255,255,255,0.58);
  font-style: normal;
  font-size: 0.84rem;
}

.partner-summary-head {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.partner-summary-head span,
.summary-case-line span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 900;
}

.partner-summary-head strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.35;
}

.summary-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.summary-stat-grid div {
  padding: 16px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}

.summary-stat-grid strong,
.summary-stat-grid span {
  display: block;
  text-align: center;
}

.summary-stat-grid strong {
  font-size: 1rem;
  margin-bottom: 6px;
}

.summary-stat-grid span,
.summary-case-line p {
  color: rgba(255,255,255,0.62);
  font-size: 0.84rem;
  line-height: 1.65;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 13px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 24px; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== Section Common ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
}

.section-desc {
  color: var(--gray-500);
  margin-top: 12px;
  font-size: 1.05rem;
}

/* ===== Features ===== */
.features {
  padding: 100px 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.features::before,
.courses::before,
.teachers::before,
.testimonials::before,
.enrollment::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.16;
  pointer-events: none;
}

.features::before,
.teachers::before {
  background: var(--primary);
  top: -120px;
  right: -120px;
}

.courses::before,
.testimonials::before,
.enrollment::before {
  background: var(--secondary);
  bottom: -140px;
  left: -120px;
}

.features .container,
.courses .container,
.teachers .container,
.testimonials .container,
.enrollment .container {
  position: relative;
  z-index: 1;
}

.features .section-header h2,
.courses .section-header h2,
.teachers .section-header h2,
.testimonials .section-header h2 {
  color: var(--white);
}

.courses .section-desc {
  color: rgba(255,255,255,0.62);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 360px;
  padding: 28px 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
  border-color: rgba(255, 107, 53, 0.45);
  background: rgba(255,255,255,0.12);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 107, 53, 0.14);
  border: 1px solid rgba(255, 107, 53, 0.22);
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
  line-height: 1.35;
}

.feature-card p {
  color: rgba(255,255,255,0.66);
  font-size: 0.86rem;
  line-height: 1.7;
}

/* ===== Courses ===== */
.courses {
  padding: 100px 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.course-card {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.24);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.24);
}

.course-card.popular {
  border-color: var(--primary);
  transform: scale(1.04);
  box-shadow: 0 24px 70px rgba(255, 107, 53, 0.18);
  background: rgba(255,255,255,0.12);
}

.course-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.course-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.course-price {
  margin-bottom: 8px;
}

.price-symbol {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 700;
  vertical-align: top;
}

.price-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
}

.price-unit {
  font-size: 1rem;
  color: rgba(255,255,255,0.58);
  font-weight: 600;
}

.course-target {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.course-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(0, 201, 167, 0.1);
  border: 1px solid rgba(0, 201, 167, 0.24);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 18px;
}

.course-highlight span {
  color: rgba(255,255,255,0.56);
  font-size: 0.8rem;
}

.course-highlight strong {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.course-subtitle {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.course-features {
  list-style: none;
  margin-bottom: 14px;
}

.course-features li {
  position: relative;
  padding: 7px 0 7px 22px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.76);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.course-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--secondary);
  font-weight: 900;
}

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

.course-replay {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.82rem;
  margin-bottom: 20px;
  font-weight: 600;
}

/* ===== Teachers ===== */
.teachers {
  padding: 100px 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.teachers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.teacher-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
  transition: all 0.3s ease;
}

.teacher-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.24);
  border-color: rgba(255, 107, 53, 0.35);
  background: rgba(255,255,255,0.12);
}

.teacher-avatar {
  margin-bottom: 20px;
}

.teacher-photo,
.avatar-placeholder {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto;
}

.avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
}

.teacher-photo {
  display: block;
  object-fit: cover;
  object-position: center;
  border: 4px solid rgba(255,255,255,0.92);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.35), 0 14px 30px rgba(0,0,0,0.25);
}

.teacher-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.teacher-title {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.teacher-score {
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.teacher-desc {
  color: rgba(255,255,255,0.64);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 12px;
  flex: 1;
}

.teacher-tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.teacher-tags span {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ===== Testimonials (Image Grid) ===== */
.testimonials {
  padding: 100px 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.testimonials-grid-img {
  columns: 4 220px;
  column-gap: 18px;
}

.testimonials-grid-img > * {
  break-inside: avoid;
  margin-bottom: 18px;
}

@supports not (columns: 4 220px) {
  .testimonials-grid-img {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}

.testimonials-grid {
  display: block;
  gap: 20px;
}

.testimonial-img-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.testimonial-img-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===== Stats Section ===== */
.stats-section {
  padding: 80px 0;
  background: var(--dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-text {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

/* ===== Enrollment Process ===== */
.enrollment {
  padding: 100px 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.enrollment .section-header h2 {
  color: var(--white);
}

.enrollment .section-desc {
  color: rgba(255,255,255,0.68);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.enrollment-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: none;
  margin: 0;
  align-items: stretch;
}

.enrollment-step {
  min-height: 188px;
  text-align: left;
  padding: 22px 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.enrollment-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
  border-color: rgba(255, 107, 53, 0.38);
  background: rgba(255,255,255,0.12);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.16);
  border: 1px solid rgba(255, 107, 53, 0.28);
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.enrollment-step h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.35;
}

.enrollment-step p {
  color: rgba(255,255,255,0.62);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===== CTA ===== */
.cta {
  padding: 100px 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--primary);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
  top: -100px;
  right: -100px;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
  text-align: left;
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.cta-contact {
  width: 230px;
  padding: 16px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.cta-qr-copy {
  display: grid;
  gap: 4px;
  text-align: center;
  margin-bottom: 12px;
}

.cta-qr-copy span {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
}

.cta-qr-copy strong {
  color: var(--dark);
  font-size: 1rem;
}

.cta-qr {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ===== Study Abroad Page ===== */
.study-hero,
.study-services,
.study-flow,
.study-advantages,
.partner-teachers,
.partner-cases {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.study-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.study-map {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: transparent;
}

.study-hero::before,
.study-services::before,
.study-flow::before,
.study-advantages::before,
.partner-teachers::before,
.partner-cases::before {
  content: '';
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  pointer-events: none;
}

.study-hero::before {
  background: var(--secondary);
  right: -120px;
  top: 80px;
}

.study-services::before,
.study-advantages::before {
  background: var(--primary);
  left: -140px;
  top: -120px;
}

.study-flow::before {
  background: var(--secondary);
  right: -120px;
  bottom: -140px;
}

.partner-cases::before {
  background: var(--accent);
  right: -150px;
  top: 120px;
}

.partner-teachers::before {
  background: var(--primary);
  left: -140px;
  bottom: -140px;
}

.study-hero-content {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.study-hero-copy h1 {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}

.study-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.study-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 700;
}

.study-hero-points span::before {
  content: '✓';
  color: var(--secondary);
  font-weight: 900;
}

.study-hero-visual {
  display: flex;
  justify-content: center;
}

.flight-card {
  width: min(100%, 430px);
  padding: 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(20px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.24);
}

.path-preview {
  display: grid;
  gap: 18px;
  position: relative;
  margin-bottom: 24px;
}

.path-preview::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--secondary), rgba(255,255,255,0.16));
}

.path-node {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.path-node span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.76);
  font-size: 0.86rem;
  font-weight: 900;
}

.path-node.is-active span {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 14px 32px rgba(255, 107, 53, 0.28);
}

.path-node strong {
  color: var(--white);
  font-size: 1rem;
}

.path-tasks {
  display: grid;
  gap: 12px;
}

.path-tasks div {
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}

.path-tasks span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 900;
}

.path-tasks strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.path-tasks p {
  color: rgba(255,255,255,0.56);
  font-size: 0.82rem;
  line-height: 1.55;
}

.study-services,
.study-flow,
.study-advantages,
.partner-teachers,
.partner-cases {
  padding: 100px 0;
}

.study-services .container,
.study-flow .container,
.study-advantages .container,
.partner-teachers .container,
.partner-cases .container {
  position: relative;
  z-index: 1;
}

.study-services .section-header h2,
.study-flow .section-header h2,
.study-advantages h2,
.partner-teachers .section-header h2,
.partner-cases .section-header h2 {
  color: var(--white);
}

.study-services .section-desc,
.study-advantages p,
.partner-teachers .section-desc,
.partner-cases .section-desc {
  color: rgba(255,255,255,0.66);
}

.partner-teachers-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-teachers .teacher-card {
  min-height: 430px;
}

.partner-proof-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  margin-bottom: 26px;
}

.partner-intro-card,
.partner-license-card,
.partner-scope-card,
.case-map-card,
.case-list article,
.case-card {
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.07));
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.partner-intro-card {
  padding: 34px;
}

.partner-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.16);
  border: 1px solid rgba(255, 107, 53, 0.28);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
}

.partner-intro-card h3 {
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1.35;
  margin-bottom: 14px;
}

.partner-intro-card p,
.partner-license-card p,
.partner-scope-card p,
.case-list p {
  color: rgba(255,255,255,0.64);
  line-height: 1.75;
}

.partner-scope-card {
  padding: 34px;
}

.partner-scope-card > span,
.case-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 900;
}

.partner-scope-card h3 {
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.35;
  margin-bottom: 14px;
}

.scope-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.scope-tags span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.76);
  font-size: 0.84rem;
  font-weight: 700;
}

.partner-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.partner-metrics div {
  padding: 18px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.partner-metrics strong,
.partner-metrics span {
  display: block;
}

.partner-metrics strong {
  color: var(--secondary);
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 8px;
}

.partner-metrics span {
  color: rgba(255,255,255,0.58);
  font-size: 0.84rem;
}

.partner-license-card {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px;
}

.partner-license-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
}

.partner-license-card span,
.case-list span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 900;
}

.partner-license-card strong,
.case-list h3 {
  display: block;
  color: var(--white);
  font-size: 1.12rem;
  line-height: 1.45;
  margin-bottom: 8px;
}

.case-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}

.case-map-card {
  overflow: hidden;
  min-height: 420px;
}

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

.case-list {
  display: grid;
  gap: 16px;
}

.case-list article {
  padding: 24px 26px;
  transition: all 0.3s ease;
}

.case-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 201, 167, 0.34);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.case-card.is-hidden {
  display: none;
}

.case-card {
  min-height: 260px;
  padding: 26px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 201, 167, 0.34);
}

.case-card h3 {
  color: var(--white);
  font-size: 1.26rem;
  line-height: 1.45;
  margin-bottom: 12px;
}

.case-card p {
  color: rgba(255,255,255,0.64);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.case-tags span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.76);
  font-size: 0.78rem;
  font-weight: 700;
}

.case-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.case-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  transition: all 0.3s ease;
}

.case-arrow:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.case-page-indicator {
  min-width: 74px;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-weight: 800;
  font-size: 0.94rem;
}

.study-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.study-service-card {
  min-height: 370px;
  padding: 30px 24px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.065));
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.study-service-card::before {
  content: attr(data-watermark);
  position: absolute;
  right: -12px;
  top: 8px;
  z-index: -1;
  color: rgba(255,255,255,0.035);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
}

.study-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.24);
  background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
  border-color: rgba(0, 201, 167, 0.32);
}

.study-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 86px;
  height: 86px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(0, 201, 167, 0.12)),
    rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 18px 32px rgba(0,0,0,0.16);
}

.study-service-icon::before {
  content: attr(data-icon);
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: 7px;
}

.study-service-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.study-service-card ul {
  list-style: none;
}

.study-service-card li {
  position: relative;
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 7px 0 7px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.study-service-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 900;
}

.study-service-card li:last-child {
  border-bottom: none;
}

.study-flow-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  position: relative;
}

.study-flow-grid::before {
  content: '';
  position: absolute;
  left: 7%;
  right: 7%;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 201, 167, 0.5), rgba(255, 107, 53, 0.5), transparent);
  opacity: 0.55;
}

.study-flow-step {
  min-height: 190px;
  padding: 22px 16px 20px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.07));
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.study-flow-step::after {
  content: '';
  position: absolute;
  inset: auto 16px 14px 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.24), transparent);
}

.study-flow-step:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.38);
  background: rgba(255,255,255,0.12);
}

.study-flow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 30px;
  border-radius: 999px;
  background: rgba(0, 201, 167, 0.14);
  border: 1px solid rgba(0, 201, 167, 0.28);
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.flow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  font-style: normal;
  font-size: 1.35rem;
}

.study-flow-step h3 {
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.study-flow-step p {
  color: rgba(255,255,255,0.62);
  font-size: 0.84rem;
  line-height: 1.65;
}

.study-advantages-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.study-advantages h2 {
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 18px;
}

.study-advantages-list {
  display: grid;
  gap: 16px;
}

.study-advantages-list div {
  display: grid;
  gap: 6px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}

.study-advantages-list strong {
  color: var(--white);
  font-size: 1.05rem;
}

.study-advantages-list span {
  color: rgba(255,255,255,0.64);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===== Responsive ===== */
@media (max-width: 1120px) {
  .nav-links {
    gap: 20px;
  }
  .nav-links a {
    font-size: 0.84rem;
  }
  .btn-nav {
    padding: 10px 18px;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    text-align: center;
  }
  .hero-carousel {
    min-height: 500px;
  }
  .hero-slide {
    grid-template-columns: 1fr;
  }
  .hero-carousel-controls {
    left: 50%;
    transform: translateX(-50%);
  }
  .study-hero-content,
  .study-advantages-content,
  .partner-proof-grid,
  .case-showcase {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .study-hero-points,
  .study-hero .hero-actions {
    justify-content: center;
  }
  .study-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .study-flow-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .study-flow-grid::before {
    display: none;
  }
  .hero-visual {
    display: none;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .teachers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .course-card.popular {
    transform: none;
  }
  .course-card.popular:hover {
    transform: translateY(-8px);
  }
  .testimonials-grid-img {
    columns: 3 220px;
  }
  .enrollment-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-actions {
    justify-content: center;
  }
  .cta-contact {
    justify-self: center;
  }
  .partner-license-card {
    grid-template-columns: 1fr;
  }
  .partner-license-card img {
    max-width: 420px;
    justify-self: center;
  }
  .scope-tags {
    justify-content: center;
  }
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
  }
  .nav-links.active {
    display: flex;
  }
  .btn-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .hero-carousel {
    min-height: 540px;
  }
  .hero-carousel-controls {
    gap: 10px;
  }
  .hero-arrow {
    width: 38px;
    height: 38px;
  }
  .study-hero {
    padding: 110px 0 70px;
  }
  .study-hero-copy h1 {
    font-size: 2.35rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .features-grid,
  .courses-grid,
  .teachers-grid,
  .enrollment-steps,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .study-services-grid,
  .study-flow-grid {
    grid-template-columns: 1fr;
  }
  .study-service-card,
  .study-flow-step {
    min-height: auto;
  }
  .partner-intro-card,
  .partner-license-card,
  .partner-scope-card,
  .case-list article {
    padding: 24px;
  }
  .partner-metrics {
    grid-template-columns: 1fr;
  }
  .case-map-card {
    min-height: 260px;
  }
  .case-grid,
  .summary-stat-grid {
    grid-template-columns: 1fr;
  }
  .case-card {
    min-height: auto;
    padding: 24px;
  }
  .flight-card {
    padding: 26px;
  }
  .testimonials-grid-img {
    columns: 1;
    max-width: 320px;
    margin: 0 auto;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
  .cta-content {
    gap: 32px;
  }
  .cta-contact {
    width: 210px;
  }
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback: ensure content is visible if JS animation fails to trigger */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
  }
}
