@keyframes aboutFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes aboutReveal {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes aboutHeroBg {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: var(--about-hero-bg-opacity, 0.35); transform: translateY(0); }
}
@keyframes aboutHeroOverlay {
  from { opacity: 0; }
  to { opacity: 0.88; }
}
@keyframes aboutHeroIllus {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 0.25; transform: translateY(0); }
}

.about-page {
  padding: 0 0 3rem;
  max-width: 1400px;
  margin: 0 auto;
}
.about-hero-wrap {
  width: 100vw;
  max-width: 100%;
  margin-bottom: 2.5rem;
}
.about-hero {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--accent) 0%, color-mix(in srgb, var(--accent) 70%, #2a3a4a) 100%);
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--card);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  --about-hero-bg-opacity: 0.35;
  opacity: 0.35;
  transition: opacity 0.4s ease;
}
.about-hero--animate .about-hero__bg {
  opacity: 0;
  animation: aboutHeroBg 1s ease forwards;
  animation-delay: 0s;
}
.about-hero:hover .about-hero__bg {
  opacity: 0.5;
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, transparent 50%, color-mix(in srgb, var(--accent) 60%, #1a1d24) 100%);
  opacity: 0.88;
  pointer-events: none;
}
.about-hero--animate .about-hero__overlay {
  opacity: 0;
  animation: aboutHeroOverlay 0.9s ease forwards;
  animation-delay: 0.05s;
}
[data-theme="light"] .about-hero__overlay {
  background: linear-gradient(135deg, var(--accent) 0%, transparent 40%, color-mix(in srgb, var(--accent) 30%, #fff) 100%);
  opacity: 0.9;
}
.about-hero__illus-wrap {
  position: absolute;
  right: 12%;
  bottom: 0;
  width: 200px;
  height: 120px;
  opacity: 0.25;
  color: rgba(255,255,255,0.95);
  pointer-events: none;
}
.about-hero--animate .about-hero__illus-wrap {
  opacity: 0;
  animation: aboutHeroIllus 0.85s ease forwards;
  animation-delay: 0.15s;
}
.about-hero__illus {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
[data-theme="light"] .about-hero__illus-wrap {
  color: color-mix(in srgb, var(--text-on-accent) 35%, transparent);
}
.about-hero__content {
  position: relative;
  z-index: 1;
  padding: 56px 24px;
}
.about-hero--animate .about-hero__title {
  animation: aboutFadeIn 0.75s ease forwards;
  animation-delay: 0.25s;
  opacity: 0;
}
.about-hero--animate .about-hero__tagline {
  animation: aboutFadeIn 0.75s ease forwards;
  animation-delay: 0.45s;
  opacity: 0;
}
.about-hero__title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-on-overlay);
  margin: 0 0 10px 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
[data-theme="light"] .about-hero__title {
  color: var(--text-on-accent);
  text-shadow: none;
}
.about-hero__tagline {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.95);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.03em;
}
[data-theme="light"] .about-hero__tagline {
  color: color-mix(in srgb, var(--text-on-accent) 92%, transparent);
}
@media (max-width: 600px) {
  .about-hero__illus-wrap { width: 130px; height: 78px; right: 5%; opacity: 0.18; }
  .about-hero { min-height: 280px; }
  .about-hero__title { font-size: 2rem; }
  .about-hero__tagline { font-size: 1.05rem; }
  .about-hero__content { padding: 40px 20px; }
}
[data-theme="light"] .about-hero__bg {
  --about-hero-bg-opacity: 0.2;
  opacity: 0.2;
}
[data-theme="light"] .about-hero:hover .about-hero__bg {
  opacity: 0.28;
}

.about-intro {
  margin-bottom: 2.5rem;
  padding: 0 0.25rem;
}
.about-intro--animate {
  opacity: 0;
  animation: aboutReveal 0.6s ease forwards;
  animation-delay: 0.2s;
}
.about-intro__lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 1rem 0;
  max-width: 65ch;
}
.about-intro__text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  max-width: 65ch;
}

.about-gallery {
  margin-bottom: 2.5rem;
}
.about-gallery--animate {
  opacity: 0;
  animation: aboutReveal 0.6s ease forwards;
  animation-delay: 0.35s;
}
.about-gallery__title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 18px 0;
}
.about-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.about-gallery__item {
  border-radius: 14px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about-gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.about-gallery__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.about-gallery__caption {
  margin: 0;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  line-height: 1.35;
}
@media (max-width: 640px) {
  .about-gallery__grid { grid-template-columns: 1fr; }
  .about-gallery__img { height: 180px; }
}

.about-slider-wrap {
  margin-bottom: 2.5rem;
}
.about-slider-wrap--animate {
  opacity: 0;
  animation: aboutReveal 0.6s ease forwards;
  animation-delay: 0.4s;
}
.about-slider__heading {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 16px 0;
}
.about-slider {
  position: relative;
  background: var(--card);
  border-radius: 14px;
  padding: 10px 56px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  overflow: hidden;
}
.about-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.about-slider__btn:hover {
  background: var(--accent);
  color: var(--text-on-accent);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.05);
}
.about-slider__btn--prev { left: 12px; }
.about-slider__btn--next { right: 12px; }
.about-slider__viewport {
  overflow: hidden;
  position: relative;
}
.about-slider__track {
  display: flex;
  transition: transform 0.4s ease;
}
.about-slider__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 4px 12px 0;
  text-align: center;
}
.about-slider__slide-img-wrap {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
  background: var(--bg);
}
.about-slider__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-slider__slide-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}
.about-slider__slide-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-slider__slide-icon svg {
  width: 20px;
  height: 20px;
}
.about-slider__slide-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.about-slider__slide-text {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
  margin-left: auto;
  margin-right: auto;
}
.about-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.about-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.about-slider__dot:hover {
  background: var(--muted);
  transform: scale(1.15);
}
.about-slider__dot--active {
  background: var(--accent);
  transform: scale(1.2);
}

.about-sections {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 2.5rem;
}
.about-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
  background: var(--card);
  border-radius: 14px;
  padding: 24px 26px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, border-left-color 0.3s ease, transform 0.25s ease;
}
.about-section--img-right {
  grid-template-columns: 1fr 280px;
}
.about-section__img-wrap {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
}
.about-section__img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}
.about-section:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border-left-color: color-mix(in srgb, var(--accent) 120%, white);
  transform: translateX(4px);
}
.about-section--animate {
  opacity: 0;
  animation: aboutReveal 0.55s ease forwards;
}
.about-section--animate:nth-child(1) { animation-delay: 0.45s; }
.about-section--animate:nth-child(2) { animation-delay: 0.55s; }
.about-section--animate:nth-child(3) { animation-delay: 0.65s; }
.about-section__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-section__icon svg {
  width: 26px;
  height: 26px;
}
.about-section__content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-width: 0;
}
.about-section__body {
  min-width: 0;
}
.about-section__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 10px 0;
}
.about-section__lead {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 8px 0;
  line-height: 1.5;
}
.about-section__text {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.about-values {
  padding: 0 0.25rem;
}
.about-values__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 20px 0;
}
.about-values__title--animate {
  opacity: 0;
  animation: aboutReveal 0.5s ease forwards;
  animation-delay: 0.42s;
}
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.about-value-card {
  background: var(--card);
  border-radius: 14px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, transform 0.25s ease, border-color 0.25s ease;
}
.about-value-card:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,0.12);
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 25%, var(--border));
}
.about-value-card__img-wrap {
  width: 100%;
  height: 140px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg);
}
.about-value-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-value-card--animate {
  opacity: 0;
  animation: aboutReveal 0.5s ease forwards;
}
.about-value-card--animate:nth-child(1) { animation-delay: 0.5s; }
.about-value-card--animate:nth-child(2) { animation-delay: 0.6s; }
.about-value-card--animate:nth-child(3) { animation-delay: 0.7s; }
.about-value-card--animate:nth-child(4) { animation-delay: 0.8s; }
.about-value-card__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 10px 0px;
}
.about-value-card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-value-card__icon svg {
  width: 20px;
  height: 20px;
}
.about-value-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.about-value-card__text {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 700px) {
  .about-hero__title { font-size: 1.75rem; }
  .about-hero__tagline { font-size: 1rem; }
  .about-hero__content { padding: 36px 20px; }
  .about-section {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .about-section__img-wrap { min-height: 180px; }
  .about-section__img { min-height: 180px; }
  .about-section__icon { width: 42px; height: 42px; }
  .about-slider__slide-img-wrap { height: 140px; }
  .about-value-card__img-wrap { height: 110px; }
  .about-values__grid { grid-template-columns: 1fr; }
}

.careers-page {
  padding: 0 0 3rem;
  max-width: 1400px;
  margin: 0 auto;
}
.careers-hero-wrap {
  width: 100vw;
  max-width: 100%;
  margin-bottom: 2rem;
}
.careers-hero {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--accent) 0%, color-mix(in srgb, var(--accent) 70%, #2a3a4a) 100%);
}
.careers-hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--card);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
}
.careers-hero--animate .careers-hero__bg {
  opacity: 0;
  animation: aboutHeroBg 1s ease forwards;
  animation-delay: 0s;
}
.careers-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, transparent 50%, color-mix(in srgb, var(--accent) 60%, #1a1d24) 100%);
  opacity: 0.88;
  pointer-events: none;
}
.careers-hero__content {
  position: relative;
  z-index: 1;
  padding: 48px 24px;
}
.careers-hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-on-overlay);
  margin: 0 0 8px 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.careers-hero__tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.95);
  margin: 0;
  font-weight: 500;
}
.careers-hero--animate .careers-hero__title {
  opacity: 0;
  animation: aboutFadeIn 0.75s ease forwards;
  animation-delay: 0.2s;
}
.careers-hero--animate .careers-hero__tagline {
  opacity: 0;
  animation: aboutFadeIn 0.75s ease forwards;
  animation-delay: 0.35s;
}
.careers-intro--animate {
  opacity: 0;
  animation: aboutReveal 0.6s ease forwards;
  animation-delay: 0.25s;
}
.careers-intro {
  margin-bottom: 2rem;
  padding: 0 0.25rem;
}
.careers-intro__text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  max-width: 65ch;
}
.careers-content {
  padding: 0 0.25rem;
}
.careers-loading {
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
}
.careers-loading--animate {
  opacity: 0;
  animation: aboutReveal 0.5s ease forwards;
  animation-delay: 0.2s;
}
.careers-empty {
  background: var(--card);
  border-radius: 14px;
  padding: 28px 26px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
  text-align: center;
}
.careers-empty--animate {
  opacity: 0;
  animation: aboutReveal 0.55s ease forwards;
  animation-delay: 0.3s;
}
.careers-list {
  margin-top: 0;
}
.careers-count {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 18px 0;
  font-weight: 500;
}
.careers-count--animate {
  opacity: 0;
  animation: aboutReveal 0.5s ease forwards;
  animation-delay: 0.35s;
}
.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.career-card--animate {
  opacity: 0;
  animation: aboutReveal 0.5s ease forwards;
}
.career-card--animate:nth-child(1) { animation-delay: 0.4s; }
.career-card--animate:nth-child(2) { animation-delay: 0.5s; }
.career-card--animate:nth-child(3) { animation-delay: 0.6s; }
.career-card--animate:nth-child(4) { animation-delay: 0.7s; }
.career-card--animate:nth-child(5) { animation-delay: 0.8s; }
.career-card--animate:nth-child(6) { animation-delay: 0.9s; }
.career-card--animate:nth-child(7) { animation-delay: 1s; }
.career-card--animate:nth-child(8) { animation-delay: 1.1s; }
.career-card--animate:nth-child(9) { animation-delay: 1.2s; }
.career-card--animate:nth-child(10) { animation-delay: 1.3s; }
.career-card--animate:nth-child(n+11) { animation-delay: 1.4s; }
.career-card {
  background: var(--card);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.career-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 25%, var(--border));
}
.career-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.career-card__img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--bg);
}
.career-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.career-card__body {
  padding: 18px 20px;
}
.career-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px 0;
}
.career-card__desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 640px) {
  .careers-hero__title { font-size: 1.75rem; }
  .careers-hero__tagline { font-size: 1rem; }
  .careers-grid { grid-template-columns: 1fr; }
  .career-card__img-wrap { height: 160px; }
}

.news-page {
  padding: 0 0 3rem;
  max-width: 1400px;
  margin: 0 auto;
}
.news-hero-wrap {
  width: 100vw;
  max-width: 100%;
  margin-bottom: 2rem;
}
.news-hero {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--accent) 0%, color-mix(in srgb, var(--accent) 70%, #2a3a4a) 100%);
}
.news-hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--card);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
}
.news-hero--animate .news-hero__bg {
  opacity: 0;
  animation: aboutHeroBg 1s ease forwards;
  animation-delay: 0s;
}
.news-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, transparent 50%, color-mix(in srgb, var(--accent) 60%, #1a1d24) 100%);
  opacity: 0.88;
  pointer-events: none;
}
.news-hero__content {
  position: relative;
  z-index: 1;
  padding: 48px 24px;
}
.news-hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-on-overlay);
  margin: 0 0 8px 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.news-hero__tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.95);
  margin: 0;
  font-weight: 500;
}
.news-hero--animate .news-hero__title {
  opacity: 0;
  animation: aboutFadeIn 0.75s ease forwards;
  animation-delay: 0.2s;
}
.news-hero--animate .news-hero__tagline {
  opacity: 0;
  animation: aboutFadeIn 0.75s ease forwards;
  animation-delay: 0.35s;
}
.news-intro--animate {
  opacity: 0;
  animation: aboutReveal 0.6s ease forwards;
  animation-delay: 0.25s;
}
.news-intro {
  margin-bottom: 2rem;
  padding: 0 0.25rem;
}
.news-intro__text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  max-width: 65ch;
}
.news-content {
  padding: 0 0.25rem;
}
.news-loading {
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
}
.news-loading--animate {
  opacity: 0;
  animation: aboutReveal 0.5s ease forwards;
  animation-delay: 0.2s;
}
.news-empty {
  background: var(--card);
  border-radius: 14px;
  padding: 28px 26px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
  text-align: center;
}
.news-empty--animate {
  opacity: 0;
  animation: aboutReveal 0.55s ease forwards;
  animation-delay: 0.3s;
}
.news-slider-wrap--animate {
  opacity: 0;
  animation: aboutReveal 0.6s ease forwards;
  animation-delay: 0.35s;
}
.news-slider-wrap {
  margin-bottom: 2.5rem;
}
.news-slider__heading {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 16px 0;
}
.news-slider {
  position: relative;
  background: var(--card);
  border-radius: 14px;
  padding: 24px 56px 32px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  overflow: hidden;
}
.news-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.news-slider__btn:hover {
  background: var(--accent);
  color: var(--text-on-accent);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.05);
}
.news-slider__btn--prev { left: 12px; }
.news-slider__btn--next { right: 12px; }
.news-slider__viewport {
  overflow: hidden;
  position: relative;
}
.news-slider__track {
  display: flex;
  transition: transform 0.4s ease;
}
.news-slider__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 8px;
}
.news-slider__slide-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
  transition: box-shadow 0.25s ease;
}
.news-slider__slide-link:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.news-slider__slide-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--bg);
}
.news-slider__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-slider__slide-body {
  padding: 16px 18px;
}
.news-slider__slide-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px 0;
}
.news-slider__slide-text {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 10px 0;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-slider__slide-cta {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
}
.news-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.news-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.news-slider__dot:hover {
  background: var(--muted);
  transform: scale(1.15);
}
.news-slider__dot--active {
  background: var(--accent);
  transform: scale(1.2);
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.news-article--animate {
  opacity: 0;
  animation: aboutReveal 0.55s ease forwards;
}
.news-article--animate:nth-child(1) { animation-delay: 0.45s; }
.news-article--animate:nth-child(2) { animation-delay: 0.55s; }
.news-article--animate:nth-child(3) { animation-delay: 0.65s; }
.news-article--animate:nth-child(4) { animation-delay: 0.75s; }
.news-article--animate:nth-child(5) { animation-delay: 0.85s; }
.news-article--animate:nth-child(6) { animation-delay: 0.95s; }
.news-article--animate:nth-child(7) { animation-delay: 1.05s; }
.news-article--animate:nth-child(8) { animation-delay: 1.15s; }
.news-article--animate:nth-child(9) { animation-delay: 1.25s; }
.news-article--animate:nth-child(10) { animation-delay: 1.35s; }
.news-article--animate:nth-child(n+11) { animation-delay: 1.45s; }
.news-article {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
  background: var(--card);
  border-radius: 14px;
  padding: 24px 26px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, transform 0.25s ease, border-color 0.25s ease;
}
.news-article:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateX(4px);
  border-color: color-mix(in srgb, var(--accent) 25%, var(--border));
}
.news-article--img-right {
  grid-template-columns: 1fr 280px;
}
.news-article__img-wrap {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
}
.news-article__img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
}
.news-article__content {
  min-width: 0;
}
.news-article__link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.news-article__date {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 6px;
}
.news-article__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 10px 0;
}
.news-article__text {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 12px 0;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-article__cta {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
}
@media (max-width: 700px) {
  .news-hero__title { font-size: 1.75rem; }
  .news-hero__tagline { font-size: 1rem; }
  .news-slider__slide-img-wrap { height: 160px; }
  .news-article {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .news-article--img-right {
    grid-template-columns: 1fr;
  }
  .news-article__img-wrap { min-height: 180px; }
  .news-article__img { min-height: 180px; }
}

.company-page {
  padding: 0 0 2rem;
}
.company-page__header {
  margin-bottom: 28px;
}
.company-page__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px 0;
}
.company-page__subtitle {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}
.company-page__meta {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 20px 0;
}
.company-sections {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.company-section {
  background: var(--card);
  border-radius: 14px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  position: relative;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
}
.company-section__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px 0;
}
.company-section__text {
  font-size: 14px;
  color: var(--text);
  margin: 0;
  line-height: 1.5;
}
.company-page__empty {
  background: var(--card);
  border-radius: 14px;
  padding: 28px 26px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}
.company-page__list {
  display: grid;
  gap: 20px;
  margin-top: 0;
}
.company-card {
  background: var(--card);
  border-radius: 14px;
  padding: 0;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.company-card:hover {
  background: var(--muted-bg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.company-card__link {
  display: block;
  padding: 20px 24px;
  text-decoration: none;
  color: inherit;
}
.company-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px 0;
}
.company-card__desc {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
}
.company-card__date {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}
.company-page__back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 8px 0;
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.company-page__back:hover {
  text-decoration: underline;
}
.company-page--detail .company-page__header {
  margin-bottom: 20px;
}
.company-detail {
  background: var(--card);
  border-radius: 14px;
  padding: 26px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  max-width: none;
}
.company-detail__title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px 0;
}
.company-detail__date,
.company-detail__meta {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 12px 0;
}
.company-detail__body {
  margin-top: 16px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}
.company-detail__body p {
  margin: 0 0 12px 0;
}
.company-detail__body p:last-child {
  margin-bottom: 0;
}
.company-detail__message {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 16px 0;
}
[data-theme="light"] .about-section,
[data-theme="light"] .about-value-card {
  background: var(--card);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  border-color: var(--border);
}
[data-theme="light"] .company-section,
[data-theme="light"] .careers-hero__bg {
  --about-hero-bg-opacity: 0.2;
  opacity: 0.2;
}
[data-theme="light"] .careers-hero__title {
  color: var(--text-on-accent);
  text-shadow: none;
}
[data-theme="light"] .careers-hero__tagline {
  color: color-mix(in srgb, var(--text-on-accent) 92%, transparent);
}
[data-theme="light"] .careers-empty,
[data-theme="light"] .career-card {
  background: var(--card);
  border-color: var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
}
[data-theme="light"] .career-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
[data-theme="light"] .news-hero__bg {
  --about-hero-bg-opacity: 0.2;
  opacity: 0.2;
}
[data-theme="light"] .news-hero__title {
  color: var(--text-on-accent);
  text-shadow: none;
}
[data-theme="light"] .news-hero__tagline {
  color: color-mix(in srgb, var(--text-on-accent) 92%, transparent);
}
[data-theme="light"] .news-empty,
[data-theme="light"] .news-slider,
[data-theme="light"] .news-article {
  background: var(--card);
  border-color: var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
}
[data-theme="light"] .news-article:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
[data-theme="light"] .company-page__empty,
[data-theme="light"] .company-card,
[data-theme="light"] .company-detail {
  background: var(--card);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  border-color: var(--border);
}
[data-theme="light"] .company-card:hover {
  background: var(--muted-bg);
}
