/* ============================================================
   Alena Technologies - Main Stylesheet
   Color Palette: Black / White / Light Grey / Purple
   Fonts: Plus Jakarta Sans (display) · IBM Plex Sans (body) · JetBrains Mono (code/numbers)
   ============================================================ */

/* ---- Google Fonts & Variables ---- */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --black:         #0B0B0F;
  --dark:          #111114;
  --dark-2:        #18181B;
  --dark-3:        #252529;
  --white:         #ffffff;
  --light:         #F8F9FC;
  --light-2:       #f1f2f7;
  --light-3:       #e8e9ef;
  --border:        #E5E7EB;
  --border-dark:   rgba(255,255,255,0.08);
  --purple:        #6D28D9;
  --purple-dark:   #5b21b6;
  --purple-light:  #9461fb;
  --purple-pale:   #f3eeff;
  --success:       #16A34A;
  --warning:       #F59E0B;
  --danger:        #DC2626;
  --info:          #3B82F6;
  --text:          #111827;
  --text-muted:    #6B7280;
  --text-light:    rgba(255,255,255,0.75);
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --shadow:        0 4px 24px rgba(0,0,0,0.08);
  --shadow-md:     0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg:     0 16px 60px rgba(0,0,0,0.18);
  --shadow-purple: 0 8px 30px rgba(109,40,217,0.28);
  --radius-sm:     6px;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --transition:    all 0.3s ease;
  --transition-fast: all 0.18s ease;
  --font-sans:     'IBM Plex Sans', sans-serif;
  --font-display:  'Plus Jakarta Sans', sans-serif;
  --font-mono:     'JetBrains Mono', monospace;
  --navbar-h:      70px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
a:hover { color: var(--purple); }
ul { list-style: none; padding: 0; margin: 0; }
p { margin-bottom: 0; }

.container { max-width: 1200px; }
section { position: relative; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
.text-purple    { color: var(--purple) !important; }
.text-muted-alt { color: var(--text-muted); }
.fw-800         { font-weight: 800; }
.fw-900         { font-weight: 900; }

/* ---- Section Labels ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-pale);
  color: var(--purple);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-label.dark {
  background: rgba(124,58,237,0.15);
  color: #c4a0ff;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
}
.section-subtitle.center { margin: 0 auto; }
.section-divider {
  width: 48px;
  height: 4px;
  background: var(--purple);
  border-radius: 2px;
  margin: 1.2rem 0;
}
.section-divider.mx-auto { margin: 1.2rem auto; }

/* ---- Buttons ---- */
.btn {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
  padding: 0.72rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
}
.btn-purple {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
  box-shadow: var(--shadow-purple);
}
.btn-purple:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124,58,237,0.35);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-outline-purple {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.btn-outline-purple:hover {
  background: var(--purple);
  color: var(--white);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover {
  background: var(--dark-2);
  border-color: var(--dark-2);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 0.9rem 2.4rem; font-size: 1rem; }
.btn-icon { padding: 0.65rem 0.9rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: rgba(11,11,15,0.75) !important;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  padding: 0;
  height: var(--navbar-h);
  position: sticky;
  top: 0;
  z-index: 1050;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(11,11,15,0.92) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}
/* Fallback when backdrop-filter is unsupported */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .navbar { background: var(--black) !important; }
}
.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white) !important;
  letter-spacing: -0.5px;
}
.navbar-brand span { color: var(--purple); }
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0 1.1rem !important;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
  line-height: var(--navbar-h);
  display: block;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.1rem;
  right: 1.1rem;
  height: 2px;
  background: var(--purple);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}
.navbar-cta { margin-left: 1rem; }
.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.35rem 0.6rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--dark);
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-dark);
    margin-top: 0;
  }
  .navbar-nav .nav-link {
    line-height: 1.5;
    padding: 0.65rem 0 !important;
    border-bottom: 1px solid var(--border-dark);
  }
  .navbar-nav .nav-link::after { display: none; }
  .navbar-cta { margin: 1rem 0 0; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: var(--black);
  min-height: calc(100vh - var(--navbar-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-accent-line {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: var(--purple);
  opacity: 0.15;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  color: #c4a0ff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--purple-light);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
}
.hero-title .accent {
  background: linear-gradient(100deg, #9461fb 0%, #6D28D9 60%, #c4a0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--purple);
}
/* Animated gradient glow orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(109,40,217,0.55), transparent 70%);
  top: -80px; left: -100px;
  animation: heroGlowFloat 12s ease-in-out infinite;
}
.hero-glow-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(148,97,251,0.4), transparent 70%);
  bottom: -120px; right: -60px;
  animation: heroGlowFloat 15s ease-in-out infinite reverse;
}
@keyframes heroGlowFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px,-20px) scale(1.12); }
}
/* Hero trust row */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.hero-trust-stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; }
.hero-trust span { color: rgba(255,255,255,0.55); font-size: 0.85rem; }
.hero-trust strong { color: #ffffff; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
}
.hero-stat-item strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -1px;
}
.hero-stat-item span { font-size: 0.82rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-tech-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}
.hero-tech-card:hover { border-color: rgba(124,58,237,0.4); transform: translateX(6px); }
.hero-tech-card .icon {
  width: 44px;
  height: 44px;
  background: rgba(124,58,237,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.hero-tech-card h5 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.hero-tech-card p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.hero-floating-badge {
  position: absolute;
  background: var(--purple);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 100px;
  box-shadow: var(--shadow-purple);
  animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--light-2);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.stats-bar .stat-item {
  text-align: center;
  padding: 0 1.5rem;
  border-right: 1px solid var(--border);
}
.stats-bar .stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number .accent { color: var(--purple); }
.stat-label { font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* ============================================================
   CARDS
   ============================================================ */
.alena-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  height: 100%;
}
.alena-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple);
}
.alena-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  background: var(--purple-pale);
  color: var(--purple);
  transition: var(--transition);
}
.alena-card:hover .card-icon {
  background: var(--purple);
  color: var(--white);
}
.alena-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.alena-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* Service cards */
.service-card { position: relative; overflow: hidden; }
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--purple);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleX(1); }

/* Project cards */
.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.project-card .project-img {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: var(--light-2);
}
.project-card .project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover .project-img img { transform: scale(1.06); }
.project-card .project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(124,58,237,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-card .project-body { padding: 1.5rem; }
.project-card .project-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--purple);
  margin-bottom: 0.5rem;
}
.project-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.project-card p { font-size: 0.875rem; color: var(--text-muted); }
.tech-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1rem; }
.tech-badge {
  background: var(--light-2);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* Staff cards */
.staff-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}
.staff-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.staff-card .staff-photo {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--light-2);
  position: relative;
}
.staff-card .staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.staff-card:hover .staff-photo img { transform: scale(1.05); }
.staff-card .staff-info { padding: 1.5rem; }
.staff-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.2rem; }
.staff-card .position {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.staff-card .expertise { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem; }
.staff-social { display: flex; justify-content: center; gap: 0.5rem; }
.staff-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--light-2);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.staff-social a:hover { background: var(--purple); color: var(--white); }

/* Event cards */
.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}
.event-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.event-card .event-img {
  height: 180px;
  background: var(--dark-3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-card .event-img img { width:100%; height:100%; object-fit:cover; }
.event-card .event-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--purple);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 100px;
}
.event-card .event-body { padding: 1.5rem; }
.event-card .event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.event-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.event-meta-item i { color: var(--purple); }
.event-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.event-card p { font-size: 0.875rem; color: var(--text-muted); }
.event-card .event-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.event-price { font-size: 1.05rem; font-weight: 800; color: var(--black); }
.event-seats { font-size: 0.78rem; color: var(--text-muted); }

/* Testimonial cards */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  position: relative;
}
.testimonial-card .quote-icon {
  font-size: 3rem;
  color: var(--purple);
  opacity: 0.15;
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  line-height: 1;
}
.testimonial-stars { color: #f59e0b; margin-bottom: 1rem; font-size: 0.85rem; }
.testimonial-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-pale);
  border: 2px solid var(--purple);
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--purple);
  overflow: hidden;
}
.testimonial-author-info strong { display: block; font-size: 0.92rem; font-weight: 700; }
.testimonial-author-info span { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   SECTIONS
   ============================================================ */

/* About Brief (Homepage) */
.about-brief { padding: 100px 0; background: var(--white); }
.about-brief .feature-list { margin-top: 1.5rem; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.feature-item .fi-icon {
  width: 40px;
  height: 40px;
  background: var(--purple-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-item p { font-size: 0.9rem; color: var(--text-muted); margin-top: 2px; }
.feature-item strong { font-weight: 700; font-size: 0.95rem; display: block; margin-bottom: 2px; }

/* Dark sections */
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5 { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }
.section-dark .alena-card {
  background: var(--dark-2);
  border-color: rgba(255,255,255,0.06);
  color: var(--white);
}
.section-dark .alena-card p { color: rgba(255,255,255,0.6); }
.section-dark .alena-card h4 { color: var(--white); }
.section-dark .alena-card .card-icon { background: rgba(124,58,237,0.2); }
.section-dark .alena-card:hover { border-color: var(--purple); }

/* CTA Section */
.cta-section {
  background: var(--purple);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 2rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  background: var(--black);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-dot-grid { opacity: 0.5; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 580px; }
.breadcrumb { background: transparent; padding: 0; margin-bottom: 1rem; }
.breadcrumb-item { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.breadcrumb-item a { color: rgba(255,255,255,0.5); }
.breadcrumb-item a:hover { color: var(--purple-light); }
.breadcrumb-item.active { color: var(--white); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* Mission/Vision */
.mv-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
}
.mv-card .mv-icon {
  width: 60px;
  height: 60px;
  background: rgba(124,58,237,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.mv-card h3 { color: var(--white); margin-bottom: 1rem; }
.mv-card p { color: rgba(255,255,255,0.65); line-height: 1.7; }

/* Values */
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
  border-left: 4px solid var(--purple);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

/* Timeline */
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 2rem;
}
.timeline-dot {
  position: absolute;
  left: 10px;
  top: 4px;
  width: 22px;
  height: 22px;
  background: var(--purple);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--purple);
}
.timeline-item h5 { font-weight: 700; margin-bottom: 0.25rem; }
.timeline-item span { font-size: 0.8rem; color: var(--purple); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.timeline-item p { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ============================================================
   PORTFOLIO FILTERS
   ============================================================ */
.filter-buttons { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.filter-btn {
  background: var(--light-2);
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.project-item { transition: opacity 0.3s ease, transform 0.3s ease; }
.project-item.hidden { opacity: 0; transform: scale(0.95); pointer-events: none; display: none; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card {
  background: var(--black);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 1.5rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.75);
}
.contact-item .ci-icon {
  width: 44px;
  height: 44px;
  background: rgba(124,58,237,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 2px; }
.contact-item span { font-size: 0.85rem; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--purple); color: var(--white); }
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form-label { font-weight: 600; font-size: 0.88rem; color: var(--text); margin-bottom: 0.4rem; }
.form-control, .form-select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: var(--white);
}
.form-control:focus, .form-select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
  outline: none;
}
.form-control.is-invalid { border-color: #dc3545; }
.invalid-feedback { font-size: 0.8rem; }
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 300px;
}
.map-wrapper iframe { width:100%; height:100%; border:0; }

/* ============================================================
   ADMIN
   ============================================================ */
.admin-wrapper { display: flex; min-height: 100vh; background: var(--light); }
.admin-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: var(--black);
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.admin-sidebar-brand {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-dark);
}
.admin-sidebar-brand a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}
.admin-sidebar-brand span { color: var(--purple); }
.admin-sidebar-brand small { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 2px; text-transform: uppercase; letter-spacing: 1px; }
.admin-nav { padding: 1rem 0; flex: 1; overflow-y: auto; }
.admin-nav-section { padding: 1rem 1.25rem 0.4rem; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.3); }
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 1.25rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
}
.admin-nav-link i { font-size: 1rem; width: 20px; text-align: center; }
.admin-nav-link .badge-count {
  margin-left: auto;
  background: var(--purple);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
}
.admin-nav-link:hover,
.admin-nav-link.active {
  color: var(--white);
  background: rgba(124,58,237,0.15);
}
.admin-nav-link.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: var(--purple);
  border-radius: 0 3px 3px 0;
}
.admin-main {
  margin-left: 260px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.admin-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.admin-topbar h5 { font-weight: 700; font-size: 1rem; margin: 0; }
.admin-content { padding: 2rem; flex: 1; }
.admin-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.admin-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.admin-card-header h5 { margin: 0; font-weight: 700; font-size: 1rem; }
.stat-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-widget::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--purple);
  opacity: 0;
  transition: var(--transition-fast);
}
.stat-widget:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--purple-pale); }
.stat-widget:hover::before { opacity: 1; }
.stat-widget .sw-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stat-widget .sw-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.stat-widget .sw-go {
  color: var(--text-muted);
  font-size: 0.95rem;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: var(--transition-fast);
}
.stat-widget:hover .sw-go { opacity: 0.7; transform: translate(0, 0); }
.sw-purple { background: var(--purple-pale); color: var(--purple); }
.sw-black  { background: var(--light-2); color: var(--black); }
.sw-green  { background: #d1fae5; color: #065f46; }
.sw-orange { background: #fff7ed; color: #c2410c; }
.stat-widget .sw-value {
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
  font-family: var(--font-display);
}
.stat-widget .sw-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
  overflow-wrap: break-word;
  word-break: break-word;
}
.admin-table { width: 100%; font-size: 0.88rem; }
.admin-table th {
  background: var(--light);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.admin-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--text);
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--light); }
.badge-status {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: capitalize;
}
.badge-active   { background: #d1fae5; color: #065f46; }
.badge-inactive { background: var(--light-2); color: var(--text-muted); }
.badge-unread   { background: #fef3c7; color: #92400e; }
.badge-read     { background: var(--light-2); color: var(--text-muted); }
.badge-upcoming { background: var(--purple-pale); color: var(--purple-dark); }
.badge-completed{ background: #d1fae5; color: #065f46; }
.badge-ongoing  { background: #dbeafe; color: #1e40af; }
.admin-login-page {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-login-card {
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 3rem;
  width: 100%;
  max-width: 420px;
}
.admin-login-card .brand {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.25rem;
}
.admin-login-card .brand span { color: var(--purple); }
.admin-login-card .subtitle {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.admin-form-control {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  width: 100%;
  transition: border-color 0.2s;
}
.admin-form-control:focus {
  border-color: var(--purple);
  outline: none;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
  background: rgba(255,255,255,0.07);
  color: var(--white);
}
.admin-form-control::placeholder { color: rgba(255,255,255,0.3); }
.admin-form-label { color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.65);
  padding: 70px 0 0;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}
.footer-brand span { color: var(--purple); }
.footer-desc { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-heading { color: var(--white); font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.25rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--purple-light); }
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
}
.footer-contact-item i { color: var(--purple); margin-top: 2px; flex-shrink: 0; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--purple); color: var(--white); }
.footer-bottom {
  margin-top: 3rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--purple-light); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.sr { opacity: 0; transition: opacity 0.65s ease, transform 0.65s ease; }
.sr.sr-up    { transform: translateY(40px); }
.sr.sr-left  { transform: translateX(-40px); }
.sr.sr-right { transform: translateX(40px); }
.sr.sr-scale { transform: scale(0.92); }
.sr.visible {
  opacity: 1;
  transform: none;
}
.sr-delay-1 { transition-delay: 0.1s; }
.sr-delay-2 { transition-delay: 0.2s; }
.sr-delay-3 { transition-delay: 0.3s; }
.sr-delay-4 { transition-delay: 0.4s; }
.sr-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   MISC / UTILITIES
   ============================================================ */
.py-section { padding: 100px 0; }
.py-section-sm { padding: 70px 0; }
.bg-light-alt { background: var(--light); }
.bg-light-2   { background: var(--light-2); }
.divider-line {
  height: 1px;
  background: var(--border);
  margin: 0;
}
.img-rounded { border-radius: var(--radius-lg); overflow: hidden; }
.img-shadow { box-shadow: var(--shadow-lg); }
.purple-pill {
  background: var(--purple-pale);
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--purple);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-purple);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 500;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--purple-dark); transform: translateY(-3px); }
.loading-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease;
}
.loading-overlay.hidden { opacity: 0; pointer-events: none; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  animation: loaderPulse 1.2s ease-in-out infinite;
}
.loader-logo span { color: var(--purple); }
@keyframes loaderPulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .admin-sidebar { width: 220px; }
  .admin-main { margin-left: 220px; }
}
@media (max-width: 991px) {
  .hero { padding: 60px 0; min-height: auto; }
  .hero-visual { margin-top: 3rem; }
  .hero-stats { gap: 1.5rem; }
  .stats-bar .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 1.25rem; }
  .stats-bar .stat-item:last-child { border-bottom: none; }
  .py-section { padding: 70px 0; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
}
@media (max-width: 767px) {
  .hero-title { letter-spacing: -0.5px; }
  .hero-stats { flex-wrap: wrap; gap: 1.25rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }
  .section-title { font-size: 1.6rem; }
  .footer { padding: 50px 0 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .admin-content { padding: 1rem; }
  .filter-buttons { gap: 0.35rem; }
  .filter-btn { padding: 0.4rem 0.9rem; font-size: 0.78rem; }
  .py-section { padding: 55px 0; }
}
@media (max-width: 575px) {
  .admin-login-card { padding: 2rem 1.5rem; margin: 1rem; }
  .hero-stat-item strong { font-size: 1.5rem; }
  .hero-badge { font-size: 0.68rem; }
  .container { padding-left: 1.1rem; padding-right: 1.1rem; }
  .alena-card, .contact-form-card, .testimonial-card { padding: 1.5rem; }
  .cta-section { padding: 56px 0; }
  .btn { padding: 0.75rem 1.5rem; }
  .otp-digit { width: 44px; height: 52px; font-size: 1.35rem; }
}

/* ---- Mobile UX polish ---- */
@media (max-width: 991px) {
  /* Comfortable tap targets */
  .navbar-nav .nav-link,
  .footer-links a,
  .staff-social a,
  .social-link { min-height: 44px; }
  .navbar-cta { display: flex; justify-content: center; padding: 0.85rem 1.5rem; }
  .back-to-top { bottom: 1.25rem; right: 1.25rem; }
}
/* Remove blue tap flash + honour reduced motion */
* { -webkit-tap-highlight-color: rgba(109,40,217,0.15); }
/* Accessible keyboard focus (does not affect mouse users) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.btn:focus-visible,
.filter-btn:focus-visible {
  outline: 3px solid var(--purple-light);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Respect device safe areas (notched phones) */
@supports (padding: max(0px)) {
  .footer, .navbar > .container {
    padding-left: max(0.75rem, env(safe-area-inset-left));
    padding-right: max(0.75rem, env(safe-area-inset-right));
  }
}

/* ============================================================
   TESTIMONIALS SWIPER
   ============================================================ */
.testimonials-swiper { padding: 0.5rem 0.25rem 3.5rem; }
.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.testimonials-swiper .testimonial-card { width: 100%; }
.testimonials-swiper .swiper-pagination { bottom: 0.5rem; }
.testimonials-swiper .swiper-pagination-bullet {
  background: var(--purple);
  opacity: 0.25;
  width: 8px; height: 8px;
  transition: opacity .2s, width .2s;
}
.testimonials-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 22px;
  border-radius: 5px;
}
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
  width: 42px; height: 42px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--purple);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  top: 42%;
}
.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after { font-size: 1rem; font-weight: 700; }
@media (max-width: 767px) {
  .testimonials-swiper .swiper-button-next,
  .testimonials-swiper .swiper-button-prev { display: none; }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-accordion .accordion-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 0.85rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-accordion .accordion-header { margin: 0; }
.faq-accordion .accordion-button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  padding: 1.15rem 1.35rem;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--purple);
  background: var(--purple-pale);
}
.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(109,40,217,0.15);
  border-color: transparent;
}
.faq-accordion .accordion-button::after {
  width: 1.1rem; height: 1.1rem;
  background-size: 1.1rem;
  filter: grayscale(1);
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%236D28D9' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-body {
  padding: 0 1.35rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
