/* ============================================
   ABOUT US PAGE — Premium Redesign
   ============================================ */

/* --- Hero Section --- */
/* Synced with .page-hero (Get in Touch) — same gradient, dot pattern, padding */
.about-hero {
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-12);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23ffffff' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Decorative radial glows (layered above the dot pattern) */
.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.about-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  z-index: 2;
}

.about-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
}

.about-hero .breadcrumb a:hover {
  color: #fff;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.about-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-6);
}

.about-hero__content h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}

.about-hero__content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--text-lg);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
}

/* Floating decorative shapes */
.about-hero__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.about-hero__shape--1 {
  width: 400px;
  height: 400px;
  top: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.about-hero__shape--2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -60px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
}

/* --- Our Story Section --- */
.about-story {
  padding: var(--space-20) 0;
}

.about-story__row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-12);
  align-items: center;
  margin-bottom: var(--space-16);
}

.about-story__text {
  text-align: left;
}

.about-story__text .badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.about-story__text h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: var(--space-6);
}

.about-story__text p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.about-story__image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  display: block;
  transition: var(--transition);
}

.about-story__image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(27, 111, 227, 0.2);
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  max-width: 1100px;
  margin: 0 auto;
}

.story-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.story-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 4px 0 0 4px;
}

.story-card--gap::before {
  background: linear-gradient(180deg, #3B82F6, #1D4ED8);
}

.story-card--system::before {
  background: linear-gradient(180deg, #10B981, #059669);
}

.story-card--scaling::before {
  background: linear-gradient(180deg, #8B5CF6, #6D28D9);
}

.story-card--today::before {
  background: linear-gradient(180deg, #F59E0B, #D97706);
}

.story-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: var(--space-5);
  color: #fff;
}

.story-card--gap .story-card__icon {
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
}

.story-card--system .story-card__icon {
  background: linear-gradient(135deg, #10B981, #059669);
}

.story-card--scaling .story-card__icon {
  background: linear-gradient(135deg, #8B5CF6, #6D28D9);
}

.story-card--today .story-card__icon {
  background: linear-gradient(135deg, #F59E0B, #D97706);
}

.story-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.story-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-3);
}

.story-card ul {
  margin-top: var(--space-3);
  padding-left: 0;
}

.story-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  padding: 5px 0;
}

.story-card ul li i {
  color: var(--primary);
  font-size: 12px;
  flex-shrink: 0;
}

/* Looking Ahead - Full Width */
.about-story__ahead {
  max-width: 820px;
  margin: var(--space-10) auto 0;
  text-align: center;
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.about-story__ahead::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.about-story__ahead h3 {
  font-size: var(--text-2xl);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.about-story__ahead p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
}

/* --- Timeline Section --- */
.about-timeline {
  padding: var(--space-20) 0;
  background: var(--bg-secondary);
}

.about-timeline .section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.about-timeline .section-header .badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.about-timeline .section-header h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--text-primary);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 42px;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--secondary), var(--accent));
  border-radius: 3px;
}

.timeline-item {
  display: flex;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  position: relative;
  align-items: flex-start;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.timeline-marker::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid;
  opacity: 0.25;
}

.tm-blue {
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
}

.tm-blue::after {
  border-color: #3B82F6;
}

.tm-green {
  background: linear-gradient(135deg, #10B981, #059669);
}

.tm-green::after {
  border-color: #10B981;
}

.tm-purple {
  background: linear-gradient(135deg, #8B5CF6, #6D28D9);
}

.tm-purple::after {
  border-color: #8B5CF6;
}

.tm-amber {
  background: linear-gradient(135deg, #F59E0B, #D97706);
}

.tm-amber::after {
  border-color: #F59E0B;
}

.tm-teal {
  background: linear-gradient(135deg, #14B8A6, #0D9488);
}

.tm-teal::after {
  border-color: #14B8A6;
}

.tm-sky {
  background: linear-gradient(135deg, #0EA5E9, #0284C7);
}

.tm-sky::after {
  border-color: #0EA5E9;
}

.tm-rose {
  background: linear-gradient(135deg, #F43F5E, #E11D48);
}

.tm-rose::after {
  border-color: #F43F5E;
}

.timeline-content {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  flex: 1;
  transition: var(--transition);
}

.timeline-content:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.timeline-year {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-2);
}

.timeline-content h4 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

/* --- Mission & Vision Cards --- */
.about-mv {
  padding: var(--space-20) 0;
}

.about-mv .section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.about-mv .section-header .badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.about-mv .section-header h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--text-primary);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  max-width: 960px;
  margin: 0 auto;
}

.mv-card {
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.mv-card--mission {
  background: linear-gradient(135deg, rgba(27, 111, 227, 0.04) 0%, rgba(27, 111, 227, 0.01) 100%);
  border-color: rgba(27, 111, 227, 0.15);
}

.mv-card--vision {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.04) 0%, rgba(16, 185, 129, 0.01) 100%);
  border-color: rgba(16, 185, 129, 0.15);
}

.mv-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin-bottom: var(--space-6);
}

.mv-card--mission .mv-card__icon {
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.mv-card--vision .mv-card__icon {
  background: linear-gradient(135deg, #10B981, #059669);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.mv-card h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.mv-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.8;
}

/* --- Values Section --- */
.about-values {
  padding: var(--space-20) 0;
  background: var(--bg-secondary);
}

.about-values .section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.about-values .section-header .badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.about-values .section-header h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--text-primary);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 1060px;
  margin: 0 auto;
}

.value-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.value-card__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin: 0 auto var(--space-5);
}

.vc-blue .value-card__icon {
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.25);
}

.vc-green .value-card__icon {
  background: linear-gradient(135deg, #10B981, #059669);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.25);
}

.vc-amber .value-card__icon {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.25);
}

.vc-purple .value-card__icon {
  background: linear-gradient(135deg, #8B5CF6, #6D28D9);
  box-shadow: 0 6px 18px rgba(139, 92, 246, 0.25);
}

.vc-teal .value-card__icon {
  background: linear-gradient(135deg, #14B8A6, #0D9488);
  box-shadow: 0 6px 18px rgba(20, 184, 166, 0.25);
}

.vc-rose .value-card__icon {
  background: linear-gradient(135deg, #F43F5E, #E11D48);
  box-shadow: 0 6px 18px rgba(244, 63, 94, 0.25);
}

.value-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.value-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- CTA Section --- */
/* Synced with .page-hero (Get in Touch) — same gradient, dot pattern, padding */
.about-cta {
  padding: var(--space-20) 0;
}

.about-cta__banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-16) var(--space-12) var(--space-12);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-cta__banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23ffffff' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
}

.about-cta__banner h2 {
  color: #fff;
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 1;
}

.about-cta__banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-lg);
  max-width: 560px;
  margin: 0 auto var(--space-8);
  position: relative;
  z-index: 1;
}

.about-cta__banner .btn-group {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================
   DARK MODE
   ============================================ */
[data-theme='dark'] .about-hero {
  background: linear-gradient(135deg, #0A1929 0%, #0F2744 100%);
}

[data-theme='dark'] .story-card {
  background: var(--bg-secondary);
  border-color: var(--border);
}

[data-theme='dark'] .about-story__ahead {
  background: var(--bg-secondary);
  border-color: var(--border);
}

[data-theme='dark'] .timeline-content {
  background: var(--bg-secondary);
  border-color: var(--border);
}

[data-theme='dark'] .mv-card--mission {
  background: linear-gradient(135deg, rgba(27, 111, 227, 0.08) 0%, rgba(27, 111, 227, 0.02) 100%);
  border-color: rgba(27, 111, 227, 0.2);
}

[data-theme='dark'] .mv-card--vision {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.02) 100%);
  border-color: rgba(16, 185, 129, 0.2);
}

[data-theme='dark'] .value-card {
  background: var(--bg-secondary);
  border-color: var(--border);
}

[data-theme='dark'] .about-cta__banner {
  background: linear-gradient(135deg, #0A1929 0%, #0F2744 100%);
}

[data-theme='dark'] .timeline-year {
  background: rgba(27, 111, 227, 0.15);
  color: #60A5FA;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .about-hero {
    padding: calc(var(--header-height) + var(--space-10)) var(--space-5) var(--space-10);
  }

  .about-hero__content h1 {
    font-size: var(--text-3xl);
  }

  .about-hero__content p {
    font-size: var(--text-base);
  }

  .about-hero__shape {
    display: none;
  }

  .about-story,
  .about-timeline,
  .about-mv,
  .about-values,
  .about-cta {
    padding: var(--space-12) 0;
  }

  .about-story__row {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-10);
  }

  .about-story__image {
    order: -1;
  }

  .about-story__text {
    text-align: center;
  }

  .about-story__text h2,
  .about-timeline .section-header h2,
  .about-mv .section-header h2,
  .about-values .section-header h2 {
    font-size: var(--text-3xl);
  }

  .about-story__text p {
    font-size: var(--text-base);
  }

  .about-story__grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .story-card {
    padding: var(--space-6);
  }

  .timeline::before {
    left: 22px;
  }

  .timeline-marker {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 14px;
  }

  .timeline-marker::after {
    inset: -3px;
  }

  .timeline-content {
    padding: var(--space-5);
  }

  .timeline-content h4 {
    font-size: var(--text-sm);
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .mv-card {
    padding: var(--space-8) var(--space-6);
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }

  .value-card {
    padding: var(--space-6);
  }

  .value-card__icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .about-cta__banner {
    padding: var(--space-10) var(--space-5);
    border-radius: var(--radius-lg);
  }

  .about-cta__banner h2 {
    font-size: var(--text-2xl);
  }

  .about-cta__banner p {
    font-size: var(--text-sm);
  }

  .about-cta__banner .btn-group {
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
  }

  .about-cta__banner .btn-group .btn {
    width: 100%;
    max-width: 280px;
  }

  .about-story__ahead {
    padding: var(--space-8) var(--space-6);
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .about-story__grid {
    gap: var(--space-6);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cta__banner {
    padding: var(--space-12) var(--space-8);
  }
}

/* ============================================
   RECOGNITION & ACHIEVEMENT
   ============================================ */
.about-recognition {
  padding: var(--space-20) 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.recognition-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-12);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.recognition-image {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 8px;
  background: var(--bg-primary);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.recognition-image::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-xl) + 2px);
  background: linear-gradient(135deg, var(--primary), #F59E0B);
  z-index: -1;
  opacity: 0.3;
}

.recognition-image:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow-xl);
}

.enhanced-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

.recognition-content {
  display: flex;
  flex-direction: column;
}

.recognition-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
  width: fit-content;
  margin-bottom: var(--space-4);
}

.recognition-content h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.gold-accent-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #F59E0B, #FCD34D);
  border-radius: 3px;
  margin: var(--space-5) 0;
}

.recognition-desc {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.recognition-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.highlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--text-primary);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.highlight-tag i {
  color: var(--primary);
}

/* Dark Mode Overrides */
[data-theme='dark'] .about-recognition {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

[data-theme='dark'] .recognition-image {
  background: var(--bg-secondary);
}

[data-theme='dark'] .highlight-tag {
  background: var(--bg-secondary);
  border-color: var(--border);
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .recognition-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .recognition-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .about-recognition {
    padding: var(--space-12) 0;
  }

  .recognition-content h2 {
    font-size: var(--text-3xl);
  }

  .recognition-desc {
    font-size: var(--text-base);
  }

  .gold-accent-line {
    margin: var(--space-4) 0;
  }
}