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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  color: #333333;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

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

ul { list-style: none; }

img { max-width: 100%; display: block; }

/* ───────── Variables ───────── */
:root {
  --primary: #FF4069;
  --primary-dark: #E8355A;
  --secondary: #ad8d70;
  --text: #333333;
  --text-light: #666666;
  --bg-light: #FFF5F7;
  --bg-warm: #FDF8F5;
  --footer-bg: #2D2D3A;
  --max-width: 1400px;
  --radius: 16px;
}

/* ───────── Utilities ───────── */
.section-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
 
}

.innerpage .section-container {
  max-width: 1300px;
}

@media (max-width: 768px) {
  .section-container { padding: 0 24px; }
}

.section-label {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: #ad8d70;
    border-radius: 60px;
    display: inline-block;
    padding: 4px 20px;
}

.section-heading {
  font-weight: 800;
  font-size: 48px;
  color: var(--text);
  letter-spacing: -1.92px;
  line-height: 1.1;
  margin-top: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-light);
  margin-top: 16px;
  max-width: 560px;
}

.section-header-center {
  text-align: center;
}

.section-header-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.section-more {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .section-heading { font-size: 32px; letter-spacing: -1px; }
}

/* ───────── Buttons ───────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #FFFFFF;
  border-radius: 9999px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 64, 105, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--primary);
  border-radius: 9999px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 64, 105, 0.2);
}

.btn-secondary-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #FFFFFF;
  border-radius: 9999px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary-light:hover {
  background: #FFFFFF;
  color: var(--primary);
}

.btn-light {
  background: #FFFFFF;
  color: var(--primary);
  font-size: 16px;
  padding: 16px 40px;
}

.btn-light:hover {
  background: var(--bg-light);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ───────── Navbar ───────── */
.navbar {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 100;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 42px;
  width: auto;
  transition: filter 0.3s ease;
  filter: brightness(0) invert(1);
}

.navbar.scrolled .nav-logo img {
  filter: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.navbar.scrolled .nav-link {
  color: #333;
}

.navbar.scrolled .nav-link:hover {
  color: var(--primary);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 14px;
  margin-left: 2px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 24px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  padding: 8px;
  min-width: 130px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 100;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: #FFFFFF;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
  color: #444444;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dropdown-menu li a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #cccccc;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
  color: var(--primary);
  background: rgba(255, 64, 105, 0.06);
}

.dropdown-menu li a:hover::before {
  background: var(--primary);
  width: 6px;
  height: 6px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #FFFFFF;
  border-radius: 9999px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 64, 105, 0.3);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.nav-phone i {
  font-size: 18px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.navbar.scrolled .nav-phone {
  color: var(--primary);
}

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

.nav-phone:hover i {
  transform: rotate(15deg);
}

/* Nav Toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  transition: all 0.3s ease;
}

.navbar.scrolled .nav-toggle span {
  background: #333333;
}

@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px;
    gap: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu .nav-link {
    color: #333333;
    font-size: 18px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
  }

  .nav-menu .nav-link:hover {
    color: var(--primary);
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: var(--bg-light);
    margin-top: 8px;
    pointer-events: auto;
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu li a {
    padding: 12px 24px;
  }

  .nav-cta { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
}

/* ───────── Banner ───────── */
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 800px;
  overflow: hidden;
}

.banner-slides {
  position: absolute;
  inset: 0;
}

.banner-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.banner-slide.active {
  opacity: 1;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.banner-contents {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
}

.banner-content {
  position: absolute;
  inset: 0;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.banner-content.active {
  opacity: 1;
  visibility: visible;
}

.banner-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--secondary);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.banner-title {
  font-weight: 800;
  font-size: clamp(36px, 5vw, 72px);
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -2px;
  min-height: 1.2em;
}

.banner-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 20px;
  line-height: 1.6;
}

.banner-btns {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.banner-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  width: 32px;
  background: var(--primary);
}

.banner-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@media (max-width: 768px) {
  .banner-content { padding: 0 24px; }
  .banner-scroll-hint { display: none; }
}

/* ───────── Services ───────── */
.services {
  padding: 80px 0;
  background: #FFFFFF;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.service-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 40px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 64, 105, 0.1);
  border-color: rgba(255, 64, 105, 0.15);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 28px;
  color: #FFFFFF;
}

.service-card h3 {
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
  margin-top: 20px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin-top: 12px;
}

/* ───────── Stats ───────── */
.stats {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 64, 105, 0.88) 0%, rgba(232, 53, 90, 0.9) 100%);
}

.stats-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-around;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
}

.stat-number {
  font-weight: 800;
  font-size: 72px;
  color: #FFFFFF;
  letter-spacing: -2px;
  line-height: 1;
}

.stat-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stat-number { font-size: 48px; }
}

/* ───────── Teachers ───────── */
.teachers {
  padding: 80px 0;
  background: var(--bg-warm);
}

.teachers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.teacher-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.4s ease;
}

.teacher-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.teacher-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255, 64, 105, 0.15);
}

.teacher-card:hover img {
  transform: scale(1.05);
}

.teacher-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 64, 105, 0.88) 0%, transparent 60%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.teacher-card:hover::before {
  opacity: 1;
}

.teacher-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  color: #FFFFFF;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.teacher-card:hover .teacher-info {
  transform: translateY(0);
  opacity: 1;
}

.teacher-name {
  font-weight: 700;
  font-size: 22px;
}

.teacher-title {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 4px;
}

.teacher-detail {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 10px;
  line-height: 1.6;
}

/* ───────── News ───────── */
.news {
  padding: 80px 0;
  background: #FFFFFF;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.news-card {
  background: #FFFFFF;
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.news-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.news-img-wrap {
  position: relative;
  overflow: hidden;
}

.news-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-img-wrap img {
  transform: scale(1.05);
}

.news-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.news-body {
  padding: 24px;
}

.news-date {
  font-size: 13px;
  color: var(--secondary);
  font-weight: 500;
}

.news-body h3 {
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin-top: 10px;
  line-height: 1.4;
}

.news-body p {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 10px;
  line-height: 1.6;
}

.news-more {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.2s ease;
}

.news-more:hover {
  color: var(--primary-dark);
  transform: translateX(4px);
}

/* ───────── Contact / CTA ───────── */
.contact {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: url(../images/bj_d.jpg) no-repeat top center; background-size: cover;
}

.contact-content {
  position: relative;
  z-index: 2;
}

.contact-title {
  font-weight: 800;
  font-size: 48px;
  color: #FFFFFF;
  letter-spacing: -2px;
}

.contact-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.contact-content .btn-light {
  margin-top: 40px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 56px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.contact-info > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info span {
  font-size: 20px;
}

/* ───────── Footer ───────── */
.footer {
  background: var(--footer-bg);
  padding: 70px 0 30px;
  padding-bottom: 25px;
}

.footer-grid {
 
  gap: 48px;
 	display: flex;
	justify-content: space-between;
}

.footer-logo {
  height: 50px;
  width: auto;
 
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 30px;
  line-height: 1.7;
}

.footer-col h4 {
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-col ul li a {
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #FFFFFF;
}

.footer-qrcode {
  text-align: center;
}

.footer-qrcode-img {
  width: 120px;
  height: 120px;
  border-radius: 4px;
  border: 4px solid rgba(255, 255, 255, 1);
  margin-top: 4px;
  display: inline-block;
}

.footer-qrcode p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 5px;
}

/* ───────── Scroll Reveal ───────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }
.reveal:nth-child(7) { transition-delay: 0.48s; }
.reveal:nth-child(8) { transition-delay: 0.56s; }

/* ───────── Reduced Motion ───────── */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .banner-slide {
    transition: none;
  }
  .scroll-line {
    animation: none;
  }
}

/* ═══════════════════════════════════════════
   INNER PAGES STYLES - Complex Naming
   ═══════════════════════════════════════════ */

/* ────── Inner Page Banner Hero ────── */
.yyby-innerpage-hero {
  position: relative;
  width: 100%;
  height: 380px;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.yyby-innerpage-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.yyby-innerpage-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 45, 58, 0.9) 0%, rgba(255, 64, 105, 0.7) 100%);
}

.yyby-innerpage-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

.yyby-innerpage-hero-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.yyby-innerpage-hero-title {
  font-size: 42px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -1px;
  line-height: 1.2;
}

.yyby-innerpage-hero-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
  max-width: 500px;
}

@media (max-width: 768px) {
  .yyby-innerpage-hero { height: 300px; }
  .yyby-innerpage-hero-title { font-size: 30px; }
  .yyby-innerpage-hero-content { padding: 0 24px; }
}

/* ────── Breadcrumb ────── */
.yyby-breadcrumb-nav {
  background: var(--bg-warm);
  padding: 16px 0;
  border-bottom: 1px solid #f0e6e0;
}

.yyby-breadcrumb-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  font-size: 13px;
  color: var(--text-light);
}

.yyby-breadcrumb-nav-inner a {
  color: var(--text-light);
  transition: color 0.2s ease;
}

.yyby-breadcrumb-nav-inner a:hover {
  color: var(--primary);
}

.yyby-breadcrumb-nav-sep {
  margin: 0 8px;
  color: #ccc;
}

.yyby-breadcrumb-nav-current {
  color: var(--primary);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   1. TEACHERS & ACHIEVEMENTS - List Page
   ═══════════════════════════════════════════ */

/* ───────── Products List Page ───────── */
.yyby-products-wrap {
  padding: 60px 0 80px;
  background: #FFFFFF;
}

.yyby-products-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.yyby-product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #FFFFFF;
  border: 1px solid #f0f0f0;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s ease;
}

.yyby-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(255, 64, 105, 0.1);
  border-color: rgba(255, 64, 105, 0.2);
}

.yyby-product-card.yyby-product-reverse {
  direction: rtl;
}

.yyby-product-card.yyby-product-reverse > * {
  direction: ltr;
}

.yyby-product-card-cover {
  position: relative;
  height: 100%;
  min-height: 280px;
  overflow: hidden;
}

.yyby-product-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.yyby-product-card:hover .yyby-product-card-cover img {
  transform: scale(1.06);
}

.yyby-product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
}

.yyby-product-card-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.yyby-product-card-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.yyby-product-card:hover .yyby-product-card-title {
  color: var(--primary);
}

.yyby-product-card-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.yyby-product-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--primary);
  border-radius: 9999px;
  padding: 8px 24px;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.yyby-product-card:hover .yyby-product-card-link {
  background: var(--primary);
  color: #FFFFFF;
}

.yyby-teacherlist-wrap {
  padding: 60px 0 80px;
  background: #FFFFFF;
}

.yyby-teacherlist-filterbar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.yyby-teacherlist-filter-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.yyby-teacherlist-tag-item {
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  color: var(--text-light);
  background: #FFFFFF;
}

.yyby-teacherlist-tag-item:hover,
.yyby-teacherlist-tag-item.yyby-active-state {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(255, 64, 105, 0.25);
}

.yyby-teacherlist-count {
  font-size: 14px;
  color: var(--text-light);
}

.yyby-teacherlist-count strong {
  color: var(--primary);
  font-weight: 700;
}

/* Teacher Grid Cards */
.yyby-teacherlist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.yyby-teacherlist-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: #FFFFFF;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #f0f0f0;
  transition: all 0.4s ease;
  cursor: pointer;
}

.yyby-teacherlist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(255, 64, 105, 0.1);
  border-color: rgba(255, 64, 105, 0.2);
}

.yyby-teacherlist-card-photo {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.yyby-teacherlist-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.yyby-teacherlist-card:hover .yyby-teacherlist-card-photo img {
  transform: scale(1.05);
}

.yyby-teacherlist-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ad8d70;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.yyby-teacherlist-card-info {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.yyby-teacherlist-card-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.yyby-teacherlist-card-role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 2px;
}

.yyby-teacherlist-card-school {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.yyby-teacherlist-card-school i {
  color: var(--primary);
  font-size: 14px;
}

.yyby-teacherlist-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.yyby-teacherlist-card-tag {
  font-size: 12px;
  color: var(--primary);
  background: rgba(255, 64, 105, 0.08);
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.yyby-teacherlist-card:hover .yyby-teacherlist-card-tag {
  background: rgba(255, 64, 105, 0.14);
}

.yyby-teacherlist-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed #e8e8e8;
}

.yyby-teacherlist-card-exp {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.yyby-teacherlist-card-exp::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
}

.yyby-teacherlist-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--primary);
  border-radius: 9999px;
  padding: 5px 16px;
}

.yyby-teacherlist-card-link:hover {
  background: var(--primary);
  color: #FFFFFF;
}

/* Stats Bar */
.yyby-teacherlist-statsbar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 48px 0;
  margin-bottom: 60px;
}

.yyby-teacherlist-statsgrid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.yyby-teacherlist-statitem {
  text-align: center;
  color: #FFFFFF;
}

.yyby-teacherlist-statnum {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.yyby-teacherlist-statlabel {
  font-size: 14px;
  margin-top: 8px;
  opacity: 0.9;
}

/* Pagination */
.yyby-pagination-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
}

.yyby-pagination-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  background: #FFFFFF;
  color: var(--text);
}

.yyby-pagination-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.yyby-pagination-btn.yyby-active-state {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

.yyby-pagination-btn.yyby-disabled-state {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ═══════════════════════════════════════════
   2. TEACHERS - Detail Page
   ═══════════════════════════════════════════ */

.yyby-teacherdetail-wrap {
  padding: 60px 0 80px;
  background: #FFFFFF;
}

.yyby-teacherdetail-header {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.yyby-teacherdetail-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.yyby-teacherdetail-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.yyby-teacherdetail-info-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.yyby-teacherdetail-nameblock {
  margin-bottom: 24px;
}

.yyby-teacherdetail-name {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
}

.yyby-teacherdetail-role {
  font-size: 16px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 6px;
}

.yyby-teacherdetail-meta-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.yyby-teacherdetail-metaitem {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.yyby-teacherdetail-metaicon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

.yyby-teacherdetail-metatitle {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 2px;
}

.yyby-teacherdetail-metavalue {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.yyby-teacherdetail-bio {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

.yyby-teacherdetail-action-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Content Sections */
.yyby-teacherdetail-sections {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
}

.yyby-teacherdetail-main-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.yyby-teacherdetail-content-block {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 36px;
}

.yyby-teacherdetail-content-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.yyby-teacherdetail-content-body {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

.yyby-teacherdetail-content-body p {
  margin-bottom: 12px;
}

.yyby-teacherdetail-achievements-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.yyby-teacherdetail-achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #FFFFFF;
  border-radius: 12px;
  border-left: 3px solid var(--primary);
}

.yyby-teacherdetail-achievement-icon {
  width: 36px;
  height: 36px;
  background: var(--bg-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}

.yyby-teacherdetail-achievement-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

/* Sidebar */
.yyby-teacherdetail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.yyby-teacherdetail-sidebar-block {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 28px;
}

.yyby-teacherdetail-sidebar-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.yyby-teacherdetail-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.yyby-teacherdetail-sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.2s ease;
  cursor: pointer;
}

.yyby-teacherdetail-sidebar-item:last-child {
  border-bottom: none;
}

.yyby-teacherdetail-sidebar-item:hover {
  color: var(--primary);
}

.yyby-teacherdetail-sidebar-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.yyby-teacherdetail-sidebar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yyby-teacherdetail-sidebar-info {
  flex: 1;
}

.yyby-teacherdetail-sidebar-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.yyby-teacherdetail-sidebar-role {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

.yyby-teacherdetail-sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.yyby-teacherdetail-sidebar-tag {
  font-size: 13px;
  padding: 6px 14px;
  background: #FFFFFF;
  border-radius: 20px;
  color: var(--text-light);
  transition: all 0.2s ease;
  cursor: pointer;
}

.yyby-teacherdetail-sidebar-tag:hover {
  background: var(--primary);
  color: #FFFFFF;
}

@media (max-width: 1024px) {
  .yyby-teacherdetail-header {
    grid-template-columns: 1fr;
  }
  .yyby-teacherdetail-photo {
    max-width: 320px;
    margin: 0 auto;
  }
  .yyby-teacherdetail-sections {
    grid-template-columns: 1fr;
  }
  .yyby-teacherdetail-sidebar {
    order: -1;
  }
}

@media (max-width: 768px) {
  .yyby-teacherdetail-meta-list {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   3. NEWS - List Page (Left Image Right Text)
   ═══════════════════════════════════════════ */

.yyby-newslist-wrap {
  padding: 40px 0 80px;
  background: #FFFFFF;
}

/* Category Tabs */
.yyby-newslist-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.yyby-newslist-cattab {
  padding: 8px 22px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  color: var(--text-light);
  background: #FFFFFF;
}

.yyby-newslist-cattab:hover {
  background: var(--bg-light);
  color: var(--primary);
  border-color: rgba(255, 64, 105, 0.3);
}

.yyby-newslist-cattab.yyby-active-state {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(255, 64, 105, 0.25);
}

/* News List Layout - Left Image Right Text */
.yyby-newslist-listview {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.yyby-newslist-rowitem {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 32px;
  background: #FFFFFF;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #f0f0f0;
  transition: all 0.4s ease;
  cursor: pointer;
}

.yyby-newslist-rowitem:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 64, 105, 0.15);
}

.yyby-newslist-rowitem-imgwrap {
  position: relative;
  overflow: hidden;
  height: 265px;
}

.yyby-newslist-rowitem-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.yyby-newslist-rowitem:hover .yyby-newslist-rowitem-imgwrap img {
  transform: scale(1.05);
}

.yyby-newslist-rowitem-imgtag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
}

.yyby-newslist-rowitem-body {
  padding: 28px 28px 28px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.yyby-newslist-rowitem-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.yyby-newslist-rowitem-date {
  font-size: 13px;
  color: var(--secondary);
  font-weight: 500;
}

.yyby-newslist-rowitem-views {
  font-size: 13px;
  color: var(--text-light);
}

.yyby-newslist-rowitem-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.yyby-newslist-rowitem:hover .yyby-newslist-rowitem-title {
  color: var(--primary);
}

.yyby-newslist-rowitem-excerpt {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yyby-newslist-rowitem-footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.yyby-newslist-rowitem-readmore {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--primary);
  border-radius: 9999px;
  padding: 6px 18px;
}

.yyby-newslist-rowitem-readmore:hover {
  background: var(--primary);
  color: #FFFFFF;
}

.yyby-newslist-rowitem-share {
  display: flex;
  gap: 12px;
}

.yyby-newslist-rowitem-sharebtn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-light);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.yyby-newslist-rowitem-sharebtn:hover {
  background: var(--primary);
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .yyby-newslist-rowitem {
    grid-template-columns: 1fr;
  }
  .yyby-newslist-rowitem-imgwrap {
    min-height: 200px;
  }
  .yyby-newslist-rowitem-body {
    padding: 24px;
  }
}

/* ═══════════════════════════════════════════
   4. NEWS - Detail Page
   ═══════════════════════════════════════════ */

.yyby-newsdetail-wrap {
  padding: 60px 0 80px;
  background: #FFFFFF;
}

.yyby-newsdetail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
}

.yyby-newsdetail-main {
  background: #FFFFFF;
  border-radius: var(--radius);
}

.yyby-newsdetail-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.yyby-newsdetail-tag {
  display: inline-block;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.yyby-newsdetail-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.yyby-newsdetail-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.yyby-newsdetail-metaitem {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-light);
}

.yyby-newsdetail-metaitem i {
  color: var(--secondary);
}

.yyby-newsdetail-featureimg {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}

.yyby-newsdetail-featureimg img {
  width: 100%;
  object-fit: cover;
}

.yyby-newsdetail-content-body {
  font-size: 16px;
  color: var(--text);
  line-height: 1.9;
}

.yyby-newsdetail-content-body p {
  margin-bottom: 20px;
}

.yyby-newsdetail-content-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 16px;
  padding-left: 16px;
  border-left: 3px solid var(--primary);
}

.yyby-newsdetail-content-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 12px;
}

.yyby-newsdetail-content-body ul {
  margin-bottom: 20px;
  padding-left: 24px;
}

.yyby-newsdetail-content-body ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--text-light);
}

.yyby-newsdetail-content-body strong {
  color: var(--primary);
  font-weight: 600;
}

.yyby-newsdetail-prevnext {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #f0f0f0;
}

.yyby-newsdetail-pn-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.yyby-newsdetail-pn-item:hover {
  border-color: var(--primary);
  background: #FFF8FA;
}

.yyby-newsdetail-pn-item i {
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.yyby-newsdetail-pn-item.yyby-pn-right {
  text-align: right;
  flex-direction: row-reverse;
  justify-content: flex-start;
}

.yyby-newsdetail-pn-label {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.yyby-newsdetail-pn-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yyby-newsdetail-pn-item:hover .yyby-newsdetail-pn-title {
  color: var(--primary);
}

/* News Sidebar */
.yyby-newsdetail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.yyby-newsdetail-sidebar-block {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 28px;
}

.yyby-newsdetail-sidebar-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.yyby-newsdetail-related-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.yyby-newsdetail-related-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.yyby-newsdetail-related-item:hover .yyby-newsdetail-related-title {
  color: var(--primary);
}

.yyby-newsdetail-related-thumb {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
}

.yyby-newsdetail-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yyby-newsdetail-related-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yyby-newsdetail-related-date {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

.yyby-newsdetail-hot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.yyby-newsdetail-hot-tag {
  font-size: 13px;
  padding: 6px 14px;
  background: #FFFFFF;
  border-radius: 20px;
  color: var(--text-light);
  transition: all 0.2s ease;
  cursor: pointer;
}

.yyby-newsdetail-hot-tag:hover {
  background: var(--primary);
  color: #FFFFFF;
}

@media (max-width: 1024px) {
  .yyby-newsdetail-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .yyby-newsdetail-title {
    font-size: 24px;
  }
}

/* ═══════════════════════════════════════════
   5. CONTACT US - Redesigned Page
   ═══════════════════════════════════════════ */

.yyby-contact-wrap {
  padding: 60px 0 80px;
  background: #FFFFFF;
}

/* Contact Hero Cards */
.yyby-contact-infogrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
  margin-top: -80px;
  position: relative;
  z-index: 3;
}

.yyby-contact-infocard {
  background: #FFFFFF;
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.4s ease;
}

.yyby-contact-infocard:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255, 64, 105, 0.12);
  border-color: rgba(255, 64, 105, 0.15);
}

.yyby-contact-infocard-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #FFFFFF;
  font-size: 26px;
}

.yyby-contact-infocard-label {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.yyby-contact-infocard-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
}

/* Contact Main Content */
.yyby-contact-main-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Contact Form */
.yyby-contact-formblock {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 32px;
}

.yyby-contact-formtitle {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.yyby-contact-formsubtitle {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.yyby-contact-formgroup {
  margin-bottom: 14px;
}

.yyby-contact-formlabel {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.yyby-contact-forminput,
.yyby-contact-formtextarea,
.yyby-contact-formselect {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: #FFFFFF;
  transition: all 0.3s ease;
}

.yyby-contact-forminput:focus,
.yyby-contact-formtextarea:focus,
.yyby-contact-formselect:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 64, 105, 0.1);
}

.yyby-contact-formtextarea {
  min-height: 80px;
  resize: vertical;
}

.yyby-contact-formsubmit {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.yyby-contact-formsubmit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 64, 105, 0.35);
}

/* Contact Map & Info Side */
.yyby-contact-infoside {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 648px;
}

.yyby-contact-mapblock {
  background: var(--bg-warm);
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
  position: relative;
}

.yyby-contact-mapblock iframe,
.yyby-contact-mapplaceholder {
  width: 100%;
  height: 100%;
  border: none;
}

.yyby-contact-mapplaceholder {
  background: linear-gradient(135deg, #f5f0eb 0%, #ebe5de 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-light);
}

.yyby-contact-mapplaceholder i {
  font-size: 48px;
  color: var(--secondary);
}

.yyby-contact-qrcode-block {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.yyby-contact-qrcode-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.yyby-contact-qrcode-img {
  width: 160px;
  height: 160px;
  background: #FFFFFF;
  border-radius: 12px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f0f0f0;
}

.yyby-contact-qrcode-desc {
  font-size: 13px;
  color: var(--text-light);
}

.yyby-contact-worktime {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 28px;
}

.yyby-contact-worktime-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.yyby-contact-worktime-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.yyby-contact-worktime-item:last-child {
  border-bottom: none;
}

.yyby-contact-worktime-day {
  color: var(--text);
  font-weight: 500;
}

.yyby-contact-worktime-hours {
  color: var(--text-light);
}

@media (max-width: 1024px) {
  .yyby-contact-infogrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .yyby-contact-main-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .yyby-contact-infogrid {
    grid-template-columns: 1fr;
    margin-top: -40px;
  }
  .yyby-contact-infocard {
    padding: 28px 24px;
  }
}

/* ═══════════════════════════════════════════
   6. PRODUCT - University Companion Plan
   ═══════════════════════════════════════════ */

/* Product Hero */
.yyby-product-hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.yyby-product-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.yyby-product-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 45, 58, 0.9) 0%, rgba(255, 64, 105, 0.75) 100%);
}

.yyby-product-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 48px;
  width: 100%;
  text-align: center;
}

.yyby-product-hero-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.yyby-product-hero-title {
  font-size: 52px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -2px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.yyby-product-hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.yyby-product-hero-tags {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.yyby-product-hero-tag {
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 9999px;
  font-size: 14px;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

@media (max-width: 768px) {
  .yyby-product-hero { min-height: 420px; }
  .yyby-product-hero-title { font-size: 36px; }
  .yyby-product-hero-content { padding: 60px 24px; }
}

/* Product Anchor Nav */
.yyby-product-anchors {
  background: #FFFFFF;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.yyby-product-anchors-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.yyby-product-anchor-item {
  padding: 10px 24px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  background: transparent;
}

.yyby-product-anchor-item:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.yyby-product-anchor-item.yyby-active-state {
  background: var(--primary);
  color: #FFFFFF;
}

/* Product Sections */
.yyby-product-section {
  padding: 70px 0;
}

.yyby-product-section:nth-child(even) {
  background: var(--bg-warm);
}

.yyby-product-section:nth-child(odd) {
  background: #FFFFFF;
}

.yyby-product-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.yyby-product-section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.yyby-product-section-title {
  font-size: 45px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1.2;
}

.yyby-product-section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Product Intro */
.yyby-product-intro-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.yyby-product-intro-text {
  flex: 1.1;
}

.yyby-product-intro-heading {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 24px;
  position: relative;
  padding-left: 20px;
}

.yyby-product-intro-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 2px;
  background: var(--primary);
}

.yyby-product-intro-para {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 16px;
}

.yyby-product-intro-para:last-child {
  margin-bottom: 0;
}

.yyby-product-intro-img {
  flex: 0.9;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.yyby-product-intro-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.yyby-product-intro-full {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
  position: relative;
  overflow: hidden;
}

.yyby-product-intro-full::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 64, 105, 0.08);
}

.yyby-product-intro-full::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(173, 141, 112, 0.06);
}

.yyby-product-intro-hero {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.yyby-product-intro-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 6px 20px;
  border: 1px solid rgba(173, 141, 112, 0.3);
  border-radius: 9999px;
}

.yyby-product-intro-maintitle {
  font-size: 44px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.yyby-product-intro-summary {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 2;
  max-width: 800px;
  margin: 0 auto;
}

.yyby-product-intro-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.yyby-product-intro-stat {
  text-align: center;
}

.yyby-product-intro-stat-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.yyby-product-intro-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.yyby-product-content-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.yyby-product-content-item {
  display: flex;
  align-items: center;
  gap: 48px;
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  padding: 24px;
  transition: all 0.4s ease;
}

.yyby-product-content-item:hover {
  box-shadow: 0 20px 50px rgba(255, 64, 105, 0.08);
  border-color: rgba(255, 64, 105, 0.12);
}

.yyby-product-content-item.yyby-product-content-reverse {
  flex-direction: row-reverse;
}

.yyby-product-content-img {
  flex: 0 0 380px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.yyby-product-content-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.6s ease;
}

.yyby-product-content-item:hover .yyby-product-content-img img {
  transform: scale(1.05);
}

.yyby-product-content-body {
  flex: 1;
  min-width: 0;
}

.yyby-product-content-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 22px;
  margin-bottom: 16px;
}
.yyby-content-body-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.yyby-content-body-row .yyby-product-content-icon {
  margin-bottom: 0;
}

.yyby-content-body-row .yyby-product-content-title {
  margin: 0;
}

.yyby-content-body-row .yyby-product-content-desc,
.yyby-content-body-row .yyby-product-content-tags {
  flex-basis: 100%;
}

.yyby-product-content-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.yyby-product-content-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.yyby-product-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.yyby-product-content-card {
  background: #FFFFFF;
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid #f0f0f0;
  text-align: center;
  transition: all 0.4s ease;
}

.yyby-product-content-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 64, 105, 0.1);
  border-color: rgba(255, 64, 105, 0.15);
}

.yyby-product-content-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 64, 105, 0.1) 0%, rgba(255, 64, 105, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--primary);
}

.yyby-product-content-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.yyby-product-content-card-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.yyby-product-timeline-horizontal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.yyby-product-timeline-h-item {
  background: #FFFFFF;
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid #f0f0f0;
  position: relative;
  transition: all 0.4s ease;
}

.yyby-product-timeline-h-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 64, 105, 0.1);
  border-color: rgba(255, 64, 105, 0.15);
}

.yyby-product-timeline-h-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 12px;
}

.yyby-product-timeline-h-phase {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(255, 64, 105, 0.08);
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 12px;
}

.yyby-product-timeline-h-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.yyby-product-timeline-h-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.yyby-product-audience-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
 
  margin: 0 auto;
}

.yyby-product-audience-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #FFFFFF;
  border-radius: var(--radius);
  padding: 24px 28px;
  border: 1px solid #f0f0f0;
  transition: all 0.4s ease;
}

.yyby-product-audience-row:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border-color: rgba(255, 64, 105, 0.15);
}

.yyby-product-audience-row-icon {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 12px;
  background: rgba(255, 64, 105, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: var(--primary);
}

.yyby-product-audience-row-body {
  flex: 1;
}

.yyby-product-audience-row-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.yyby-product-audience-row-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
}

.yyby-product-audience-row-need {
  color: var(--primary);
  font-weight: 600;
}

.yyby-product-content-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.yyby-product-content-item {
  display: flex;
  align-items: center;
  gap: 48px;
}

.yyby-product-content-item.yyby-product-content-reverse {
  flex-direction: row-reverse;
}

.yyby-product-content-img {
  flex: 0 0 420px;
  border-radius: 12px;
  overflow: hidden;
}

.yyby-product-content-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.yyby-product-content-item:hover .yyby-product-content-img img {
  transform: scale(1.05);
}

.yyby-product-content-body {
  flex: 1;
  padding: 12px 0;
}

.yyby-product-content-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 22px;
  margin-bottom: 20px;
}

.yyby-product-content-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.yyby-product-content-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

.yyby-product-content-img-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 9999px;
}

.yyby-product-content-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.yyby-product-content-tags span {
  font-size: 12px;
  padding: 4px 14px;
  background: rgba(255, 64, 105, 0.06);
  color: var(--primary);
  border-radius: 9999px;
  font-weight: 500;
}

.yyby-product-audiencegrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.yyby-product-audiencecard {
  background: #FFFFFF;
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  border: 1px solid #f0f0f0;
  transition: all 0.4s ease;
}

.yyby-product-audiencecard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 64, 105, 0.15);
}

.yyby-product-audiencecard-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: var(--primary);
}

.yyby-product-audiencecard-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.yyby-product-audiencecard-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

.yyby-product-highlightgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.yyby-product-highlightcard {
  background: #FFFFFF;
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid #f0f0f0;
  transition: all 0.4s ease;
}

.yyby-product-highlightcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 64, 105, 0.1);
  border-color: rgba(255, 64, 105, 0.15);
}

.yyby-product-highlightcard-num {
  font-size: 40px;
  font-weight: 800;
  color: #ff4069;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.8;
}

.yyby-product-highlightcard-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.yyby-product-highlightcard-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Service Process */
.yyby-product-processflow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.yyby-product-processstep {
  flex: 1;
  min-width: 160px;
  text-align: center;
  position: relative;
}

.yyby-product-processstep:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
}

.yyby-product-processstep-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #FFFFFF;
  font-size: 24px;
}

.yyby-product-processstep-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.yyby-product-processstep-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* FAQ */
.yyby-product-faqlist {
 
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.yyby-product-faqitem {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.yyby-product-faqitem.yyby-active-state {
  border-color: rgba(255, 64, 105, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.yyby-product-faqquestion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.yyby-product-faqquestion-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  padding-right: 16px;
}

.yyby-product-faqquestion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--primary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.yyby-product-faqitem.yyby-active-state .yyby-product-faqquestion-icon {
  background: var(--primary);
  color: #FFFFFF;
  transform: rotate(180deg);
}

.yyby-product-faqanswer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.yyby-product-faqitem.yyby-active-state .yyby-product-faqanswer {
  max-height: 2000px;
}

.yyby-product-faqanswer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

/* CTA Section */
.yyby-product-cta {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.yyby-product-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/1205651/pexels-photo-1205651.jpeg?auto=compress&cs=tinysrgb&w=1400');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.yyby-product-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 64, 105, 0.92) 0%, rgba(200, 30, 70, 0.88) 100%);
  z-index: 1;
}

.yyby-product-cta .section-container {
  position: relative;
  z-index: 2;
}

.yyby-product-cta-title {
  font-size: 36px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.yyby-product-cta-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.yyby-product-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 48px;
  background: #FFFFFF;
  color: var(--primary);
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.yyby-product-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .yyby-product-intro-row {
    flex-direction: column;
    gap: 32px;
  }
  .yyby-product-intro-img {
    flex: none;
    width: 100%;
  }
  .yyby-product-intro-img img {
    height: 260px;
  }
  .yyby-product-content-item,
  .yyby-product-content-item.yyby-product-content-reverse {
    flex-direction: column;
  }
  .yyby-product-content-img {
    flex: none;
    width: 100%;
  }
  .yyby-product-content-img img {
    height: 200px;
  }
  .yyby-product-content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .yyby-product-timeline-horizontal {
    grid-template-columns: repeat(2, 1fr);
  }
  .yyby-product-highlightgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .yyby-product-processstep:not(:last-child)::after {
    display: none;
  }
  .yyby-product-processflow {
    flex-direction: column;
    align-items: center;
  }
  .yyby-product-processstep {
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .yyby-product-hero-title { font-size: 32px; }
  .yyby-product-section-title { font-size: 28px; }
  .yyby-product-intro-heading { font-size: 24px; }
  .yyby-product-intro-img img { height: 220px; }
  .yyby-product-content-grid {
    grid-template-columns: 1fr;
  }
  .yyby-product-timeline-horizontal {
    grid-template-columns: 1fr;
  }
  .yyby-product-highlightgrid {
    grid-template-columns: 1fr;
  }
  .yyby-product-anchors-inner {
    padding: 0 24px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .yyby-product-anchor-item {
    white-space: nowrap;
  }
}

/* ────── Utility Animations ────── */
.yyby-fadein-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.yyby-fadein-up.yyby-visible-state {
  opacity: 1;
  transform: translateY(0);
}
