/* 
 * Formations Universitaires - Catalog Page 
 * Style: Contemporary, Minimalist, Museum-like, No Glassmorphism
 */

:root {
  --uni-cat-bg: #fdfdfd;
  --uni-cat-text: #0a0a0a;
  --uni-cat-text-muted: #71717a;
  --uni-cat-border: #f1f1f1;
  --uni-cat-accent: #0047ff;
  --uni-cat-serif: "Cormorant Garamond", serif;
}

/* Base */
.sp-uni-catalog-main {
  background: var(--uni-cat-bg);
  color: var(--uni-cat-text);
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  padding-bottom: 8rem;
  padding-top: 120px; /* Prevent header overlap */
}

.sp-uni-catalog-container {
  max-width: 1400px;
  margin: 0 auto !important;
  padding: 0 4rem;
  width: 100%;
}

/* Hero Section - Light Soft Premium Corporate */
.sp-uni-catalog-hero-wrapper {
  width: 100%;
  padding: 0 2rem;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sp-uni-back-btn {
  align-self: flex-start;
  margin-left: max(0px, calc(50% - 700px));
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--uni-cat-text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border-radius: 100px;
  border: 1px solid var(--uni-cat-border);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.sp-uni-back-btn:hover {
  color: var(--uni-cat-text);
  transform: translateX(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.sp-uni-catalog-hero {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 250px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.02);
  border-radius: 2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 4rem;
}

/* Soft Animated Background Shapes */
.sp-uni-hero-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  background: radial-gradient(120% 120% at 50% 10%, #ffffff 40%, #f0f7ff 100%);
}

.sp-uni-soft-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: floatShape 12s ease-in-out infinite alternate;
}

.sp-uni-shape-1 {
  width: 300px;
  height: 300px;
  background: #e0f2fe;
  top: -100px;
  right: 10%;
  animation-delay: 0s;
}

.sp-uni-shape-2 {
  width: 400px;
  height: 400px;
  background: #fdf4ff;
  bottom: -200px;
  right: 30%;
  animation-delay: -5s;
}

.sp-uni-shape-3 {
  width: 250px;
  height: 250px;
  background: #f0fdf4;
  top: 20%;
  left: -50px;
  animation-delay: -2s;
}

@keyframes floatShape {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.05); }
  100% { transform: translate(-20px, 30px) scale(0.95); }
}

.sp-uni-catalog-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: left;
}

.sp-uni-catalog-title {
  font-family: var(--uni-cat-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: var(--uni-cat-text);
  margin: 0 0 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.sp-uni-catalog-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--uni-cat-text-muted);
  margin: 0;
  max-width: 600px;
}

/* ── Hero Layout ── */
.sp-uni-catalog-hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  width: 100%;
}

.sp-uni-catalog-hero-content {
  flex: 0 0 55%;
  max-width: 620px;
}

/* ── Breadcrumb ── */
.sp-uni-catalog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  color: var(--uni-cat-text-muted);
}

.sp-uni-catalog-breadcrumb a {
  color: var(--uni-cat-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.sp-uni-catalog-breadcrumb a:hover {
  color: var(--uni-cat-accent);
}

.sp-uni-catalog-breadcrumb-sep {
  color: #94a3b8;
  font-size: 0.7rem;
}

.sp-uni-catalog-breadcrumb-current {
  color: var(--uni-cat-text);
  font-weight: 500;
}

/* ── Title Accent ── */
.sp-uni-catalog-title-accent {
  display: block;
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── CTA Buttons ── */
.sp-uni-catalog-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.sp-uni-catalog-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.85rem 1.8rem;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.sp-uni-catalog-btn--primary {
  background: #1e1b4b;
  color: #fff;
  box-shadow: 0 4px 14px rgba(30, 27, 75, 0.25);
}

.sp-uni-catalog-btn--primary:hover {
  background: #312e81;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 27, 75, 0.35);
  color: #fff;
}

.sp-uni-catalog-btn--primary .ph {
  transition: transform 0.2s;
}

.sp-uni-catalog-btn--primary:hover .ph {
  transform: translateX(3px);
}

.sp-uni-catalog-btn--outline {
  background: transparent;
  border: 1.5px solid #c4b5fd;
  color: #7c3aed;
}

.sp-uni-catalog-btn--outline:hover {
  border-color: #7c3aed;
  background: #f5f3ff;
  color: #6d28d9;
}

.sp-uni-catalog-btn--outline .ph {
  transition: transform 0.2s;
}

.sp-uni-catalog-btn--outline:hover .ph {
  transform: translateX(3px);
}

/* ── Hanging Banners ── */
.sp-uni-catalog-banners {
  flex: 0 0 35%;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  align-self: stretch;
}

.sp-uni-catalog-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 72px;
  padding: 1.5rem 0.5rem;
  background: linear-gradient(180deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(30, 27, 75, 0.25);
  transform-origin: top center;
  animation: spUniBannerSwing 6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.sp-uni-catalog-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.sp-uni-catalog-banner--1 { animation-delay: 0s; }
.sp-uni-catalog-banner--2 { animation-delay: 0.8s; }
.sp-uni-catalog-banner--3 { animation-delay: 1.6s; }
.sp-uni-catalog-banner--4 { animation-delay: 2.4s; }

@keyframes spUniBannerSwing {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(1.5deg); }
  75% { transform: rotate(-1.5deg); }
}

.sp-uni-catalog-banner-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.sp-uni-catalog-banner-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.2;
}

/* ── Floating Stat Bar ── */
.sp-uni-hero-stats {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: -3rem auto 3rem;
  padding: 0 2rem;
}

.sp-uni-hero-stats-inner {
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.sp-uni-hero-stat {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 1.5rem;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.sp-uni-hero-stat:last-child {
  border-right: none;
}

.sp-uni-hero-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f0f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sp-uni-hero-stat-icon .ph {
  font-size: 1.2rem;
  color: #7c3aed;
}

.sp-uni-hero-stat-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.sp-uni-hero-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.sp-uni-hero-stat-label {
  font-size: 0.7rem;
  color: #64748b;
  line-height: 1.3;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .sp-uni-catalog-hero {
    height: auto;
    min-height: 250px;
    padding: 3rem 2rem;
  }

  .sp-uni-catalog-hero-layout {
    flex-direction: column;
    gap: 1.5rem;
  }

  .sp-uni-catalog-hero-content {
    flex: none;
    max-width: 100%;
    text-align: center;
  }

  .sp-uni-catalog-breadcrumb {
    justify-content: center;
  }

  .sp-uni-catalog-cta-group {
    justify-content: center;
  }

  .sp-uni-catalog-banners {
    flex: none;
    justify-content: center;
    gap: 0.75rem;
  }

  .sp-uni-catalog-banner {
    width: 56px;
    padding: 1rem 0.3rem;
  }

  .sp-uni-catalog-banner-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .sp-uni-catalog-banner-label {
    font-size: 0.55rem;
  }

  .sp-uni-back-btn {
    margin-left: 0;
    align-self: center;
  }

  .sp-uni-hero-stats {
    margin-top: -2rem;
    padding: 0 1rem;
  }

  .sp-uni-hero-stats-inner {
    flex-wrap: wrap;
    border-radius: 12px;
  }

  .sp-uni-hero-stat {
    flex: 1 1 45%;
    padding: 0.8rem 1rem;
    border-right: none;
  }

  .sp-uni-hero-stat:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 0, 0.05);
  }

  .sp-uni-hero-stat:last-child {
    border-right: none;
  }

  .sp-uni-hero-stat-icon {
    width: 32px;
    height: 32px;
  }

  .sp-uni-hero-stat-icon .ph {
    font-size: 1rem;
  }

  .sp-uni-hero-stat-number {
    font-size: 1.1rem;
  }

  .sp-uni-hero-stat-label {
    font-size: 0.6rem;
  }
}

/* Layout */
.sp-uni-catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
}

/* Sidebar Filters */
.sp-uni-catalog-sidebar {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 120px;
  align-self: start;
  z-index: 5;
}

.sp-uni-filter-group {
  margin-bottom: 3rem;
}

.sp-uni-filter-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--uni-cat-text);
  border-bottom: 1px solid var(--uni-cat-border);
  padding-bottom: 0.5rem;
}

.sp-uni-filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sp-uni-filter-list li {
  margin-bottom: 0.8rem;
}

.sp-uni-filter-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--uni-cat-text-muted);
  transition: color 0.3s ease;
}

.sp-uni-filter-label input {
  display: none;
}

.sp-uni-filter-label span {
  position: relative;
  padding-left: 1.5rem;
}

.sp-uni-filter-label span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 1px;
  background: transparent;
  transition: background 0.3s ease;
}

.sp-uni-filter-label:hover {
  color: var(--uni-cat-text);
}

.sp-uni-filter-label input:checked + span {
  color: var(--uni-cat-text);
  font-weight: 500;
}

.sp-uni-filter-label input:checked + span::before {
  background: var(--uni-cat-accent);
}

/* Main Area & Grid */
.sp-uni-catalog-content-area {
  position: relative;
  min-height: 500px;
}

.sp-uni-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 3rem;
  transition: opacity 0.3s ease;
}

.sp-uni-catalog-grid.loading {
  opacity: 0.4;
  pointer-events: none;
}

/* Card Style */
.sp-uni-catalog-card {
  background: #ffffff;
  border: 1px solid var(--uni-cat-border);
  border-radius: 4px;
  transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
  overflow: hidden;
  position: relative;
}

.sp-uni-catalog-card:hover {
  transform: translateY(-5px);
  border-color: #d1d5db;
  box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.sp-uni-catalog-link {
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  z-index: 2;
  cursor: pointer;
  pointer-events: auto !important;
}

.sp-uni-catalog-image-wrap {
  margin: 0 0 1.2rem;
  padding: 0;
  overflow: hidden;
  border-radius: 8px; /* Slightly rounded */
  background: #f9fafb;
  aspect-ratio: 4/3;
}

.sp-uni-catalog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.sp-uni-catalog-link:hover .sp-uni-catalog-image {
  transform: scale(1.03);
}

.sp-uni-catalog-card-title {
  font-family: var(--uni-cat-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--uni-cat-text);
  margin: 0 0 1.2rem;
  line-height: 1.3;
  padding: 0 1.5rem; /* Inner padding for content */
}

.sp-uni-catalog-content {
  padding: 0 0 1.5rem;
}

.sp-uni-catalog-uni-name {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--uni-cat-accent);
  margin-bottom: 0.5rem;
  padding: 0 1.5rem;
}

.sp-uni-catalog-meta-divider {
  width: 20px;
  height: 2px;
  background-color: var(--uni-cat-accent);
  margin: 0 1.5rem 1rem;
  transition: width 0.3s ease;
}

.sp-uni-catalog-card:hover .sp-uni-catalog-meta-divider {
  width: 40px;
}

.sp-uni-catalog-meta {
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: var(--uni-cat-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sp-uni-catalog-price {
  color: var(--uni-cat-text);
  font-weight: 600;
}

/* Loader */
.sp-uni-catalog-loader {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.sp-uni-spinner {
  width: 40px;
  height: 40px;
  border: 2px solid var(--uni-cat-border);
  border-top-color: var(--uni-cat-text);
  border-radius: 50%;
  animation: sp-spin 0.8s linear infinite;
}

@keyframes sp-spin {
  to { transform: rotate(360deg); }
}

/* Pagination (Discreet Lines) */
.sp-uni-catalog-pagination {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--uni-cat-border);
}

.sp-uni-catalog-pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.sp-uni-catalog-pagination li a,
.sp-uni-catalog-pagination li span.current {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 35px;
  height: 35px;
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--uni-cat-text-muted);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.sp-uni-catalog-pagination li a:hover {
  color: var(--uni-cat-text);
  border-bottom-color: var(--uni-cat-border);
}

.sp-uni-catalog-pagination li span.current {
  color: var(--uni-cat-text);
  font-weight: 600;
  border-bottom-color: var(--uni-cat-text);
}

/* Mobile & Tablet */
@media (max-width: 1100px) {
  .sp-uni-catalog-layout {
    grid-template-columns: 240px 1fr;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .sp-uni-catalog-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sp-uni-catalog-sidebar {
    width: 100%;
    position: relative;
    top: 0;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--uni-cat-border);
  }

  .sp-uni-filter-group {
    margin-bottom: 1.5rem;
  }
}
/* ====================================================================
   SL UNIVERSITY EXCELLENCE SECTIONS
==================================================================== */

.studies-p-uni-why {
    padding: 8rem 0;
    background: #ffffff;
}

.studies-p-uni-why-shell {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.studies-p-uni-why-kicker {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #0047ff;
    margin-bottom: 1rem;
    display: block;
}

.studies-p-uni-why-heading h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 850;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 4rem;
    max-width: 800px;
    letter-spacing: -0.03em;
}

.studies-p-uni-why-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
}

.studies-p-uni-card {
    background: #f8fafc;
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.studies-p-uni-card:hover {
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    border-color: #e2e8f0;
    transform: translateY(-5px);
}

.studies-p-uni-card-vision {
    grid-row: span 2;
    background: #0f172a;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.studies-p-uni-card-vision h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.studies-p-uni-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.studies-p-uni-card-vision p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.studies-p-uni-vision-points {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.studies-p-uni-vision-points span {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1rem;
}

.studies-p-uni-vision-points i {
    color: #00f2ff;
    font-size: 1.4rem;
}

.studies-p-uni-card-topline {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    color: #0047ff;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.studies-p-uni-card-topline i {
    font-size: 1.5rem;
}

@media (max-width: 992px) {
    .studies-p-uni-why-layout {
        grid-template-columns: 1fr;
    }
    .studies-p-uni-card-vision {
        grid-row: auto;
    }
}

/* Accordion Section */
.studies-p-uni-accordion-section {
    padding: 8rem 0;
    background: #0f172a;
    color: #ffffff;
}

.studies-p-uni-section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.studies-p-uni-section-header h2 {
    font-size: 3rem;
    font-weight: 850;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.studies-p-uni-header-divider {
    width: 60px;
    height: 4px;
    background: #0047ff;
    margin: 1.5rem auto;
}

.studies-p-uni-accordion {
    display: flex;
    height: 500px;
    gap: 1rem;
}

.studies-p-uni-accordion-item {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: all 0.7s cubic-bezier(0.2, 1, 0.3, 1);
    cursor: pointer;
}

.studies-p-uni-accordion-item:hover {
    flex: 3;
}

.studies-p-uni-accordion-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.9));
    transition: opacity 0.5s;
}

.studies-p-uni-accordion-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 3rem;
    width: 100%;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s 0.2s;
}

.studies-p-uni-accordion-item:hover .studies-p-uni-accordion-content {
    transform: translateY(0);
    opacity: 1;
}

.studies-p-uni-accordion-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #00f2ff;
}

/* FAQ Elite */
.studies-p-uni-faq {
    padding: 8rem 0;
    background: #ffffff;
}

.studies-p-uni-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.studies-p-uni-faq-item {
    border-bottom: 1px solid #f1f5f9;
    padding: 1.5rem 0;
}

.studies-p-uni-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    padding: 1rem 0;
}

.studies-p-uni-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    opacity: 0;
}

.studies-p-uni-faq-item.active .studies-p-uni-faq-answer {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 1.5rem;
}

/* CTA Elite */
.sp-uni-cta-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    border-radius: 40px;
    padding: 6rem;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
}

.sp-uni-cta-content h2 {
    font-size: 3.5rem;
    font-weight: 850;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.sp-uni-cta-content p {
    font-size: 1.25rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.sp-uni-btn-accent {
    padding: 1.2rem 3.5rem;
    background: #00f2ff;
    color: #0f172a;
    font-weight: 800;
    border-radius: 100px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.sp-uni-btn-accent:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 242, 255, 0.3);
}
