/* ============================================================
   Akademika Semesta Nusantara — Homepage Styles  v2 (Blue)
   ============================================================ */

/* == Hero Section == */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #0F172A 0%, #1E3A8A 45%, #1D4ED8 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(245,158,11,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 25%, rgba(29,78,216,0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 90%, rgba(30,58,138,0.2) 0%, transparent 40%);
  z-index: 1;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.025;
  background-image: radial-gradient(circle, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero__particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; }

.hero__particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
}

.hero__particle:nth-child(1) { width:4px;height:4px;background:rgba(245,158,11,0.4);left:10%;top:20%;animation-duration:12s; }
.hero__particle:nth-child(2) { width:6px;height:6px;background:rgba(37,99,235,0.3);left:30%;top:60%;animation-duration:15s;animation-delay:-3s; }
.hero__particle:nth-child(3) { width:4px;height:4px;background:rgba(245,158,11,0.3);left:50%;top:30%;animation-duration:18s;animation-delay:-6s; }
.hero__particle:nth-child(4) { width:5px;height:5px;background:rgba(147,197,253,0.3);left:70%;top:70%;animation-duration:14s;animation-delay:-9s; }
.hero__particle:nth-child(5) { width:3px;height:3px;background:rgba(29,78,216,0.3);left:85%;top:40%;animation-duration:16s;animation-delay:-2s; }
.hero__particle:nth-child(6) { width:3px;height:3px;background:rgba(245,158,11,0.2);left:20%;top:80%;animation-duration:13s;animation-delay:-5s; }
.hero__particle:nth-child(7) { width:4px;height:4px;background:rgba(147,197,253,0.4);left:60%;top:15%;animation-duration:17s;animation-delay:-8s; }
.hero__particle:nth-child(8) { width:5px;height:5px;background:rgba(245,158,11,0.2);left:90%;top:90%;animation-duration:11s;animation-delay:-1s; }

@keyframes float-particle {
  0%   { transform: translate(0,0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translate(-80px,-180px) scale(0); opacity: 0; }
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* ── Two-column hero layout ── */
.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: var(--space-16);
  align-items: center;
  padding-top: calc(80px + var(--space-16));
  padding-bottom: var(--space-24);
  width: 100%;
}

.hero__content { position: relative; z-index: 2; }

.hero__carousel-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--c-accent);
  font-weight: 600;
  margin-bottom: var(--space-8);
  animation: fadeInUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}

.hero__tag .pulse {
  width: 8px;
  height: 8px;
  background: var(--c-accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(1.6); box-shadow: 0 0 0 4px rgba(245,158,11,0.2); }
}

.hero__title {
  color: var(--c-white);
  font-size: var(--text-7xl);
  line-height: 1.05;
  margin-bottom: var(--space-6);
  max-width: 14ch;
  animation: fadeInUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.4s both;
}

.hero__title em { font-style: italic; color: var(--c-accent); }

.hero__text {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-lg);
  max-width: 48ch;
  margin-bottom: var(--space-10);
  animation: fadeInUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.6s both;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.8s both;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.3);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeInUp 0.8s cubic-bezier(0.16,1,0.3,1) 1s both;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scroll-pulse 2s ease infinite;
}

@keyframes scroll-pulse {
  0%,100% { transform:scaleY(1); opacity:1; }
  50%      { transform:scaleY(0.5); opacity:0.3; }
}

@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── Hero Carousel ── */
.hero-carousel {
  position: relative;
  width: 100%;
  z-index: 2;
  animation: fadeInUp 0.8s cubic-bezier(0.16,1,0.3,1) 1s both;
}

.hero-carousel__wrapper {
  position: relative;
  height: clamp(420px, 70vw, 480px);
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(60px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}

.hero-carousel__slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.hero-carousel__slide.prev {
  opacity: 0;
  transform: translateX(-60px) scale(0.95);
}

.hero-carousel__icon-wrap {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin-bottom: var(--space-5);
  position: relative;
  overflow: hidden;
}

.hero-carousel__icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-carousel__fallback,
.hero-carousel__loading {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-display);
  font-weight: 700;
}

.hero-carousel__fallback {
  font-size: var(--text-4xl);
  letter-spacing: 0.08em;
}

.hero-carousel__loading {
  gap: var(--space-4);
}

.hero-carousel__loading-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.18);
  border-top-color: var(--c-accent);
  animation: hero-spin 1s linear infinite;
}

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

.hero-carousel__slide--loading {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-carousel__icon-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.1), transparent 70%);
}

.hero-carousel__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: var(--space-1) var(--space-3);
  background: rgba(245,158,11,0.2);
  color: var(--c-accent);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.hero-carousel__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--c-white);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.hero-carousel__text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  flex: 1;
}

.hero-carousel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: var(--space-3);
}

.hero-carousel__meta {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}

.hero-carousel__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-accent);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--t);
}

.hero-carousel__link:hover { gap: var(--space-3); }

.hero-carousel__controls {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-5);
  justify-content: center;
}

.hero-carousel__dots { display: flex; gap: var(--space-2); }

.hero-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.2);
  transition: all var(--t);
  cursor: pointer;
}

.hero-carousel__dot.active { width: 28px; background: var(--c-accent); }

.hero-carousel__btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-carousel__btn:hover { background: rgba(255,255,255,0.18); }

@media (max-width: 1100px) {
  .hero__layout { grid-template-columns: 1fr; }
  .hero__layout { gap: var(--space-10); padding-bottom: var(--space-18); }
  .hero__content {
    text-align: center;
  }
  .hero__tag { margin-inline: auto; }
  .hero__title,
  .hero__text {
    margin-inline: auto;
    max-width: 100%;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__carousel-col {
    width: 100%;
    justify-content: stretch;
  }
  .hero__title { max-width: 100%; }
}

@media (max-width: 640px) {
  .hero__layout {
    padding-top: calc(76px + var(--space-10));
    gap: var(--space-8);
    padding-bottom: var(--space-16);
  }

  .hero__title {
    font-size: clamp(2.9rem, 12vw, 4rem);
  }

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

  .hero-carousel__wrapper {
    height: 440px;
  }

  .hero-carousel__slide {
    padding: var(--space-5);
  }

  .hero-carousel__icon-wrap {
    height: 160px;
    margin-bottom: var(--space-4);
  }

  .hero-carousel__footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .hero-carousel__controls {
    gap: var(--space-3);
    flex-wrap: wrap;
  }
}

/* ── Mobile carousel strip ── */
.mobile-carousel {
  display: none;
  padding: var(--space-10) 0;
  background: linear-gradient(to bottom, #1E3A8A, #0F172A);
}

.mobile-carousel__track {
  display: flex;
  gap: var(--space-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: var(--space-4) var(--container-padding);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.mobile-carousel__track::-webkit-scrollbar { display: none; }

.mobile-carousel__card {
  flex: 0 0 290px;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

.mobile-carousel__card-icon { font-size: 2.5rem; margin-bottom: var(--space-3); display: block; }

.mobile-carousel__card-tag {
  display: inline-block;
  padding: 2px var(--space-3);
  background: rgba(245,158,11,0.2);
  color: var(--c-accent);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-3);
}

.mobile-carousel__card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--c-white);
  margin-bottom: var(--space-2);
}

.mobile-carousel__card-text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

@media (max-width: 1100px) { .mobile-carousel { display: block; } }

/* ── Three Pillar Focus Cards ── */
.focus-areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.focus-card {
  position: relative;
  padding: var(--space-10) var(--space-8);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.focus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.focus-card--research { background: linear-gradient(160deg, var(--c-primary-900), var(--c-primary-dark)); }
.focus-card--advocacy { background: linear-gradient(160deg, #0F172A, #1E293B); }
.focus-card--alt      { background: linear-gradient(160deg, #172554, #1E3A8A); }

.focus-card__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle, rgba(255,255,255,0.6) 1px, transparent 1px);
  background-size: 24px 24px;
}

.focus-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  font-size: 28px;
}

.focus-card__number {
  font-family: var(--font-display);
  font-size: var(--text-7xl);
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: var(--space-6);
  right: var(--space-8);
  line-height: 1;
}

.focus-card__title { font-size: var(--text-2xl); color: var(--c-white); margin-bottom: var(--space-3); }
.focus-card__text  { color: rgba(255,255,255,0.65); font-size: var(--text-sm); margin-bottom: var(--space-6); max-width: 40ch; line-height: 1.8; }

.focus-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--c-accent);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: gap var(--t);
}

.focus-card__link:hover { gap: var(--space-3); }

@media (max-width: 900px) { .focus-areas { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .focus-areas { grid-template-columns: 1fr; } }

/* ── Sectors Showcase ── */
.sectors-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-12);
}

.sector-showcase-card {
  position: relative;
  padding: var(--space-8) var(--space-6);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--t-slow);
  cursor: default;
}

.sector-showcase-card__top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sector-color, var(--c-primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}

.sector-showcase-card:hover .sector-showcase-card__top-bar { transform: scaleX(1); }

.sector-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(29,78,216,0.12), 0 4px 8px rgba(29,78,216,0.06);
  border-color: rgba(29,78,216,0.2);
}

.sector-showcase-card__num {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 800;
  color: rgba(29,78,216,0.05);
  position: absolute;
  top: var(--space-2);
  right: var(--space-4);
  line-height: 1;
  user-select: none;
}

.sector-showcase-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--space-4);
  background: var(--sector-bg, var(--c-primary-light));
  transition: transform var(--t-slow);
}

.sector-showcase-card:hover .sector-showcase-card__icon { transform: scale(1.1) rotate(-5deg); }

.sector-showcase-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--space-2);
}

.sector-showcase-card__text {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  line-height: 1.7;
}

.sector-showcase-card__badge {
  display: inline-block;
  margin-top: var(--space-4);
  padding: 3px var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  background: var(--sector-bg, var(--c-primary-light));
  color: var(--sector-color, var(--c-primary));
  transition: all var(--t);
}

.sector-showcase-card:hover .sector-showcase-card__badge {
  background: var(--sector-color, var(--c-primary));
  color: white;
}

@media (max-width: 900px) { .sectors-showcase { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .sectors-showcase { grid-template-columns: 1fr; } }

/* ── Values Showcase ── */
.values-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-2);
}

.value-showcase-item {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  overflow: hidden;
  transition: all var(--t-slow);
  cursor: default;
}

.value-showcase-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29,78,216,0.12), transparent);
  opacity: 0;
  transition: opacity var(--t-slow);
  pointer-events: none;
}

.value-showcase-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-5px);
  border-color: rgba(37,99,235,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.value-showcase-item:hover::after { opacity: 1; }

.value-showcase-item__ghost-num {
  font-family: var(--font-display);
  font-size: 6.5rem;
  font-weight: 800;
  position: absolute;
  top: -15px;
  right: -8px;
  opacity: 0.05;
  color: var(--c-white);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.value-showcase-item__icon {
  font-size: 2.6rem;
  display: block;
  margin: 0 auto var(--space-4);
  position: relative;
  z-index: 1;
  transition: transform var(--t-slow);
}

.value-showcase-item:hover .value-showcase-item__icon { transform: scale(1.15) translateY(-4px); }

.value-showcase-item__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--c-white);
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-3);
}

.value-showcase-item__bar {
  width: 36px;
  height: 3px;
  background: rgba(37,99,235,0.5);
  border-radius: var(--radius-full);
  margin: 0 auto;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  z-index: 1;
}

.value-showcase-item:hover .value-showcase-item__bar {
  width: 72px;
  background: var(--c-accent);
}

@media (max-width: 1024px) { .values-showcase { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px)  { .values-showcase { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .values-showcase { grid-template-columns: 1fr; } }

/* ── Quote Premium Section ── */
.quote-premium-wrap { max-width: 900px; margin: 0 auto; }

.quote-premium {
  position: relative;
  padding: var(--space-16) var(--space-12);
  background: linear-gradient(145deg, #1E3A8A 0%, #172554 55%, #0F172A 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(37,99,235,0.25);
  overflow: hidden;
  text-align: center;
}

.quote-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(245,158,11,0.08), transparent 50%),
    radial-gradient(ellipse at 85% 50%, rgba(37,99,235,0.15), transparent 50%),
    radial-gradient(circle at 50% 0%, rgba(29,78,216,0.2), transparent 60%);
  pointer-events: none;
}

.quote-premium__ghost {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 24rem;
  line-height: 1;
  color: rgba(255,255,255,0.015);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.quote-premium__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 2;
}

.quote-premium__eyebrow::before,
.quote-premium__eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(245,158,11,0.5);
}

.quote-premium__mark {
  display: block;
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.65;
  color: var(--c-accent);
  opacity: 0.3;
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 2;
  animation: float-quote 4s ease-in-out infinite;
}

@keyframes float-quote {
  0%,100% { transform: translateY(0); opacity: 0.3; }
  50%      { transform: translateY(-6px); opacity: 0.5; }
}

.quote-premium__text {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-style: italic;
  color: var(--c-white);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto var(--space-8);
  position: relative;
  z-index: 2;
}

.quote-premium__divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
  margin: 0 auto var(--space-8);
  position: relative;
  z-index: 2;
  border-radius: var(--radius-full);
}

.quote-premium__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  position: relative;
  z-index: 2;
}

.quote-premium__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary-600), var(--c-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--c-white);
  border: 3px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(37,99,235,0.2);
}

.quote-premium__name {
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--c-white);
  text-align: left;
}

.quote-premium__role {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  text-align: left;
}

@media (max-width: 768px) {
  .quote-premium { padding: var(--space-10) var(--space-6); }
  .quote-premium__text { font-size: var(--text-xl); }
  .quote-premium__mark { font-size: 5.5rem; }
  .quote-premium__ghost { font-size: 12rem; }
}

/* ── CTA Section ── */
.cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #172554 0%, #1E3A8A 50%, #1D4ED8 100%);
}

.cta__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(245,158,11,0.07), transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(37,99,235,0.2), transparent 50%);
}

.cta__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta__content { position: relative; z-index: 2; }

.cta h2 { color: var(--c-white); margin-bottom: var(--space-4); }

.cta p {
  color: rgba(255,255,255,0.65);
  max-width: 55ch;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  font-size: var(--text-lg);
}

.cta__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Marquee ── */
.marquee {
  background: var(--c-primary-dark);
  padding: var(--space-4) 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__inner {
  display: inline-flex;
  animation: marquee 35s linear infinite;
}

.marquee__item {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  padding: 0 var(--space-6);
  text-transform: uppercase;
}

.marquee__item .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--c-accent);
  border-radius: 50%;
  vertical-align: middle;
  margin-left: var(--space-6);
  opacity: 0.6;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Utilities ── */
.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  border-radius: var(--radius-full);
  margin: var(--space-5) 0;
}

.section--alt  { background: var(--c-gray-50); }
.section--dark { background: #0F172A; }

.section--dark .section-label       { color: var(--c-accent); }
.section--dark .section-label::before { background: var(--c-accent); }
.section--dark h2 { color: var(--c-white); }

/* ── Impact Stats Bar ── */
.impact-bar {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-600));
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

.impact-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--c-primary-dark), transparent 40%, transparent 60%, var(--c-primary-dark));
}

.impact-bar__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.stat__number {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat__label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) { .impact-bar__grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Focus Utama (Gender & Islam) ── */
.focus-highlight__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-8);
}

.focus-hl-card {
  position: relative;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--t-slow), box-shadow var(--t-slow), border-color var(--t);
  transform-style: preserve-3d;
}

.focus-hl-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,0.45) 45%, transparent 60%);
  transform: translateX(-130%);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.focus-hl-card:hover {
  transform: translateY(-8px) rotateX(1deg) rotateY(-1deg);
  box-shadow: var(--shadow-xl);
}

.focus-hl-card:hover::before {
  transform: translateX(130%);
}

.focus-hl-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.focus-hl-card--gender .focus-hl-card__accent {
  background: linear-gradient(90deg, #DB2777, #F472B6);
}

.focus-hl-card--islam .focus-hl-card__accent {
  background: linear-gradient(90deg, #1D4ED8, #0EA5E9);
}

.focus-hl-card__top {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin: var(--space-3) 0 var(--space-5);
}

.focus-hl-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  animation: focus-float 4.2s ease-in-out infinite;
}

.focus-hl-card--gender .focus-hl-card__icon-wrap {
  background: linear-gradient(135deg, #FCE7F3, #FBCFE8);
}

.focus-hl-card--islam .focus-hl-card__icon-wrap {
  background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
}

.focus-hl-card__tag {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.focus-hl-card--gender .focus-hl-card__tag { background: #FCE7F3; color: #BE185D; }
.focus-hl-card--islam .focus-hl-card__tag { background: #DBEAFE; color: #1D4ED8; }

.focus-hl-card h3 {
  font-size: var(--text-2xl);
  line-height: 1.2;
  margin-bottom: var(--space-3);
}

.focus-hl-card > p {
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-6);
}

.focus-hl-card__list {
  list-style: none;
  display: grid;
  gap: var(--space-2);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
}

.focus-hl-card--gender .focus-hl-card__list { background: #FDF2F8; }
.focus-hl-card--islam .focus-hl-card__list { background: #EFF6FF; }

.focus-hl-card__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--c-text-muted);
}

.focus-hl-card--gender .focus-hl-card__list li::before {
  content: '•';
  color: #DB2777;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 2px;
}

.focus-hl-card--islam .focus-hl-card__list li::before {
  content: '✦';
  color: #1D4ED8;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 4px;
}

.focus-hl-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
}

.focus-hl-card--gender .focus-hl-card__link {
  background: #DB2777;
  color: #fff;
}

.focus-hl-card--islam .focus-hl-card__link {
  background: var(--c-primary);
  color: #fff;
}

.focus-hl-card__link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

@keyframes focus-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (max-width: 900px) {
  .focus-highlight__grid {
    grid-template-columns: 1fr;
  }
}
