/* ── Primary Intelligence — Design System ─────────────────
   Modern gradient design inspired by VetIntel 360 AI
   Color scheme: Deep Blue with Purple accents
──────────────────────────────────────────────────────── */

:root {
  --bg-main: #020a1a;
  --bg-elevated: #041028;
  --bg-light: #f2f4f8;
  --ink: #0a1232;
  --text-main: #eef2f9;
  --text-muted: #9ab0d0;
  --accent: #4c6ef5;
  --accent-soft: #748ffc;
  --accent-dim: rgba(76, 110, 245, 0.22);
  --line: rgba(255, 255, 255, 0.1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
    color: var(--text-main);
}

.bgMain {
    background: var(--bg-main);
}

h1, h2, h3, h4 {
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: -0.01em;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero-wrap-pi {
  min-height: 75vh;
  position: relative;
  border-bottom: 1px solid var(--line);
  background: var(--bg-main);
  overflow: hidden;
  padding: 5rem 0 3rem;
}

.hero-bg-gradient-pi {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 25% 35%, rgba(76, 110, 245, 0.28), transparent 40%),
    linear-gradient(135deg, rgba(2, 10, 26, 0.95) 0%, rgba(4, 16, 40, 0.88) 50%, rgba(2, 10, 26, 0.75) 100%);
}

.hero-content-pi {
  position: relative;
  z-index: 3;
  padding: 2rem 0;
}

/* ── EYEBROW ─────────────────────────────────────────────── */
.eyebrow-pi {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  color: var(--accent-soft);
  font-weight: 700;
}

/* ── HERO TYPOGRAPHY ─────────────────────────────────────── */
.hero-content-pi h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.hero-copy-pi {
  max-width: 60ch;
  color: #c4d4e8;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ── HERO IMAGE ──────────────────────────────────────────── */
.hero-image-container-pi {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(76, 110, 245, 0.2);
  border: 1.5px solid rgba(76, 110, 245, 0.3);
  animation: float-pi 6s ease-in-out infinite;
}

.hero-image-container-pi img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 300px;
  max-height: 450px;
}

@keyframes float-pi {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-glow-pi {
  background: linear-gradient(135deg, #4c6ef5, #748ffc);
  border: 0;
  color: #fff;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 20px rgba(76, 110, 245, 0.35);
  transition: all 0.3s ease;
}

.btn-glow-pi:hover {
  background: linear-gradient(135deg, #5c7cfa, #91a7ff);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(76, 110, 245, 0.45);
}

/* ── SECTION SHARED ─────────────────────────────────────── */
.section-dark-pi,
.section-light-pi { 
  padding: 5rem 0; 
}

.section-dark-pi {
  background:
    radial-gradient(circle at 75% 25%, rgba(76, 110, 245, 0.15), transparent 40%),
    radial-gradient(circle at 25% 75%, rgba(30, 64, 175, 0.12), transparent 35%),
    #020a1a;
}

.section-light-pi { 
  background: var(--bg-light); 
  color: var(--ink);
}

.section-title-pi {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title-pi h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-title-pi p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 65ch;
  margin: 0 auto;
  line-height: 1.7;
}

.section-light-pi .section-title-pi h2,
.section-light-pi .section-title-pi p {
  color: var(--ink);
}

.section-light-pi .section-title-pi p {
  color: #4a5a6a;
}

/* ── CAPABILITIES CARDS ────────────────────────────────── */
.cap-card-pi {
  background: rgba(4, 16, 40, 0.7);
  border: 1px solid rgba(76, 110, 245, 0.2);
  border-top: 3px solid var(--accent);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cap-card-pi::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(76, 110, 245, 0.1), transparent);
  transition: left 0.6s ease;
}

.cap-card-pi:hover::before {
  left: 100%;
}

.cap-card-pi:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4), 
    0 0 30px rgba(76, 110, 245, 0.25);
  border-color: rgba(76, 110, 245, 0.5);
}

.cap-icon-pi {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4c6ef5, #748ffc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
  box-shadow: 0 8px 20px rgba(76, 110, 245, 0.3);
  transition: transform 0.3s ease;
}

.cap-card-pi:hover .cap-icon-pi {
  transform: scale(1.1) rotate(5deg);
}

.cap-card-pi h3 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: var(--accent-soft);
}

.cap-card-pi p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* ── INSIGHT SECTION (Light) ────────────────────────────── */
.intro-card-pi {
    background: rgba(4, 16, 40, 0.7);
    border: 1px solid rgba(76, 110, 245, 0.25);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .intro-card-pi::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(76, 110, 245, 0.08), transparent);
        transition: left 0.6s ease;
    }

    .intro-card-pi:hover::before {
        left: 100%;
    }

    .intro-card-pi:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-3px);
    }

.intro-icon-badge-pi {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #4c6ef5, #748ffc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(76, 110, 245, 0.3);
    transition: all 0.3s ease;
    color: white;
}

.intro-card-pi:hover .intro-icon-badge-pi {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 28px rgba(76, 110, 245, 0.4);
}

/* ── SERVICES IMAGE CONTAINER ───────────────────────────── */
.services-image-container-pi {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1.5px solid rgba(76, 110, 245, 0.3);
    height: 100%;
    min-height: 400px;
}

    .services-image-container-pi img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .services-image-container-pi:hover img {
        transform: scale(1.08);
    }

.image-overlay-badge-pi {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(4, 16, 40, 0.85);
    border: 1px solid rgba(76, 110, 245, 0.4);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .image-overlay-badge-pi i {
        font-size: 1.5rem;
        color: var(--accent-soft);
    }

    .image-overlay-badge-pi span {
        font-weight: 700;
        font-size: 1.05rem;
        color: var(--text-main);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

/* ── SERVICES LIST ──────────────────────────────────────── */
.services-list-pi {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.service-item-pi {
    background: rgba(4, 16, 40, 0.6);
    border: 1px solid rgba(76, 110, 245, 0.2);
    border-left: 3px solid var(--accent);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: start;
    gap: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .service-item-pi::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(76, 110, 245, 0.08), transparent);
        transition: left 0.6s ease;
    }

    .service-item-pi:hover::before {
        left: 100%;
    }

    .service-item-pi:hover {
        transform: translateX(8px);
        border-left-color: var(--accent-soft);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

.service-icon-pi {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4c6ef5, #748ffc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 12px rgba(76, 110, 245, 0.3);
    transition: transform 0.3s ease;
}

.service-item-pi:hover .service-icon-pi {
    transform: scale(1.1) rotate(5deg);
}

.service-content-pi h5 {
    color: var(--accent-soft);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.service-content-pi p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ── INSIGHT SECTION (Light) ────────────────────────────── */
.insight-card-pi {
  background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
  border: 2px solid rgba(76, 110, 245, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.insight-card-pi:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  border-color: rgba(76, 110, 245, 0.4);
}

.insight-list-pi {
  list-style: none;
  padding: 0;
  margin: 0;
}

.insight-list-pi li {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(76, 110, 245, 0.15);
  display: flex;
  align-items: start;
  gap: 1rem;
}

.insight-list-pi li:last-child {
  border-bottom: none;
}

.insight-icon-pi {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #4c6ef5, #748ffc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(76, 110, 245, 0.3);
}

.insight-content-pi h4 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-weight: 700;
}

.insight-content-pi p {
  font-size: 0.95rem;
  color: #4a5a6a;
  margin: 0;
  line-height: 1.7;
}

/* ── CTA SECTION ────────────────────────────────────────── */
.section-cta-pi {
  background:
    radial-gradient(circle at 50% 50%, rgba(76, 110, 245, 0.18), transparent 50%),
    #020a1a;
  padding: 5rem 0;
}

.cta-panel-pi {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: rgba(4, 16, 40, 0.6);
  border: 1.5px solid rgba(76, 110, 245, 0.3);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cta-panel-pi h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--text-main);
  margin-bottom: 1rem;
}

.cta-panel-pi p {
  color: #8aa0c8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ── STATS BAR ──────────────────────────────────────────── */
.stats-bar-pi {
  background: linear-gradient(90deg, #031020 0%, #041530 50%, #031020 100%);
  border-top: 1px solid rgba(76, 110, 245, 0.2);
  border-bottom: 1px solid rgba(76, 110, 245, 0.2);
  padding: 2.5rem 0;
}

.stats-strip-pi {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item-pi {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 0 1rem;
}

.stat-num-pi {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  background: linear-gradient(120deg, #748ffc, #d0d9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label-pi {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  max-width: 180px;
}

.stat-divider-pi {
  width: 1px;
  height: 3.5rem;
  background: rgba(76, 110, 245, 0.25);
  flex-shrink: 0;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-wrap-pi { 
    min-height: auto; 
    padding: 3.5rem 0 2.5rem;
  }
  
  .section-dark-pi,
  .section-light-pi,
  .section-cta-pi { 
    padding: 3.5rem 0; 
  }
  
  .stat-divider-pi { display: none; }
  .stats-strip-pi { gap: 1.5rem; }
}

@media (max-width: 767px) {
  .hero-copy-pi { font-size: 1rem; }
  
  .cap-card-pi { padding: 1.5rem 1.25rem; }
  
  .insight-card-pi { padding: 1.75rem; }
  
  .cta-panel-pi { 
    padding: 2rem 1.5rem;
    border-radius: 18px;
  }
  
  .hero-image-container-pi img {
    min-height: 250px;
  }
}

@media (max-width: 575px) {
  .cap-icon-pi {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .insight-icon-pi {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-image-container-pi,
  .cap-card-pi::before { 
    animation: none; 
  }
}

/* ── POINTER GRID (Methodology) ─────────────────────────── */
.pointer-grid-pi {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  position: relative;
}

.pointer-card-pi {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.68rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(76, 110, 245, 0.32);
  background: linear-gradient(145deg, rgba(76, 110, 245, 0.12), rgba(76, 110, 245, 0.03));
  box-shadow: 0 10px 20px rgba(10, 26, 50, 0.08);
  min-height: 56px;
  transition: transform 180ms ease, border-color 200ms ease, box-shadow 220ms ease;
}

.pointer-card-pi:hover {
  transform: translateY(-2px);
  border-color: rgba(76, 110, 245, 0.55);
  box-shadow: 0 14px 24px rgba(10, 26, 50, 0.13);
}

.pointer-id-pi {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #748ffc, #4c6ef5);
  box-shadow: 0 0 0 4px rgba(76, 110, 245, 0.14);
}

.pointer-card-pi p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.35;
  color: var(--text-main);
  font-weight: 600;
}

/* ── SPLIT IMAGE ─────────────────────────────────────────── */
.split-image-pi {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  min-height: 330px;
  box-shadow: 0 24px 42px rgba(2, 10, 26, 0.3);
  border: 1px solid rgba(76, 110, 245, 0.2);
}

/* ── SUCCESS STORY / BIOMARKER CARDS ────────────────────── */
.story-lead-pi {
  color: #4a5a6a;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 70ch;
  margin: 0 auto;
}

.biomarker-card-pi {
  background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
  border: 1px solid rgba(76, 110, 245, 0.2);
  border-radius: 16px;
  padding: 1.75rem 1.4rem;
  position: relative;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 260ms ease;
  text-align: center;
  height: 100%;
}

.biomarker-card-pi::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 20%, rgba(76, 110, 245, 0.1), transparent 60%);
  pointer-events: none;
}

.biomarker-card-pi:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15), 0 0 20px rgba(76, 110, 245, 0.2);
}

.biomarker-card-pi h3 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1;
  margin: 0 0 0.5rem;
  background: linear-gradient(120deg, #4c6ef5, #91a7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.biomarker-card-pi p {
  font-size: 0.88rem;
  color: #4a5a6a;
  margin: 0;
  line-height: 1.5;
}

/* ── FAQ SECTION ────────────────────────────────────────── */
.section-faq-pi {
  background:
    radial-gradient(circle at 75% 25%, rgba(76, 110, 245, 0.12), transparent 40%),
    #020a1a;
  padding: 5rem 0;
}

.faq-intro-pi {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 52ch;
  margin: 0 auto;
}

.faq-accordion-pi {
  border: none;
}

.faq-item-pi {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item-pi:first-child { 
  border-top: 1px solid rgba(255, 255, 255, 0.08); 
}

.faq-btn-pi {
  background: transparent;
  color: #ccd9ea;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 1.25rem 0.25rem;
  box-shadow: none !important;
  transition: color 200ms ease;
  border: none;
}

.faq-btn-pi:not(.collapsed) {
  color: var(--accent-soft);
  background: transparent;
}

.faq-btn-pi:hover { 
  color: #fff; 
}

.faq-btn-pi::after { 
  filter: invert(1) brightness(1.4); 
  flex-shrink: 0; 
}

.faq-body-pi {
  color: #7a9ab0;
  font-size: 0.97rem;
  line-height: 1.75;
  padding: 0 0.25rem 1.25rem;
}

/* ── RESPONSIVE UPDATES ─────────────────────────────────── */
@media (max-width: 767px) {
  .pointer-grid-pi { 
    grid-template-columns: 1fr; 
  }

  .pointer-card-pi { 
    min-height: 54px; 
    padding: 0.62rem 0.72rem; 
  }

  .pointer-card-pi p { 
    font-size: 0.86rem; 
  }

  .faq-btn-pi { 
    font-size: 0.95rem; 
  }

  .biomarker-card-pi { 
    padding: 1.3rem 1.1rem; 
  }
}

/* ── AWARD TIMELINE (Prestigious Awards Page) ───────────── */
.award-timeline-item-pi {
  margin-bottom: 2.5rem;
  position: relative;
}

.award-year-badge-pi {
  position: relative;
}

.year-circle-pi {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4c6ef5, #748ffc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 8px 25px rgba(76, 110, 245, 0.4);
  position: relative;
  z-index: 2;
}

.award-icon-large-pi {
  width: 50px;
  height: 50px;
  background: rgba(4, 16, 40, 0.8);
  border: 2px solid rgba(76, 110, 245, 0.5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.5rem;
  color: var(--accent-soft);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.award-content-card-pi {
  background: rgba(4, 16, 40, 0.7);
  border: 1px solid rgba(76, 110, 245, 0.25);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.award-content-card-pi::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(76, 110, 245, 0.1), transparent);
  transition: left 0.6s ease;
}

.award-content-card-pi:hover::before {
  left: 100%;
}

.award-content-card-pi:hover {
  transform: translateY(-5px);
  border-color: rgba(76, 110, 245, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 30px rgba(76, 110, 245, 0.2);
}

.award-ribbon-pi {
  display: inline-block;
  background: linear-gradient(135deg, #4c6ef5, #748ffc);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(76, 110, 245, 0.3);
}

.award-content-card-pi h3 {
  color: var(--accent-soft);
  font-size: 1.35rem;
  line-height: 1.4;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.award-details-pi {
  position: relative;
  z-index: 1;
}

.award-meta-pi {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(76, 110, 245, 0.15);
}

.award-meta-pi span {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.award-meta-pi i {
  color: var(--accent);
}

.award-desc-pi {
  color: #c4d4e8;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .award-timeline-item-pi {
    margin-bottom: 2rem;
  }

  .year-circle-pi {
    width: 70px;
    height: 70px;
    font-size: 1.1rem;
  }

  .award-icon-large-pi {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .award-content-card-pi {
    padding: 1.5rem;
  }

  .award-content-card-pi h3 {
    font-size: 1.15rem;
  }

  .award-meta-pi {
    flex-direction: column;
    gap: 0.5rem;
  }
}

