/* ==========================================================
   SENMASTER 2026 — Landing Page (index.html) Styles
   ========================================================== */

/* ── Hero ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px; /* navbar height */
  background: linear-gradient(135deg, #f0f5ff 0%, #ffffff 50%, #fefce8 100%);
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero.png');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.hero__content {
  max-width: 820px;
  padding-block: var(--space-4xl);
}

.hero__pretag {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-lg);
}

.hero__title-sm {
  display: block;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.hero__title-main {
  display: block;
}

.hero__theme {
  border-left: 4px solid var(--color-accent);
  padding-left: var(--space-lg);
  margin-bottom: var(--space-xl);
  color: var(--color-text-muted);
  font-size: 1.1rem;
  font-style: italic;
}

.hero__location {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-xl);
}

.hero__ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

/* Countdown */
.hero__countdown {
  background: rgba(0,63,138,0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  display: inline-flex;
  flex-direction: column;
  gap: var(--space-md);
  backdrop-filter: blur(8px);
}

.hero__countdown-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
}

.countdown {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
}

.countdown__num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  min-width: 64px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.countdown__label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.countdown__sep {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-top: -8px;
}

.countdown__live {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bounce 2s infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--color-primary), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Stats Bar ─────────────────────────────────────── */
.stats-bar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats-bar__grid .stat-card {
  padding: var(--space-xl) var(--space-lg);
  border-radius: 0;
  box-shadow: none;
  border: none;
  border-right: 1px solid var(--color-border);
  transition: background var(--transition-base);
}

.stats-bar__grid .stat-card:last-child { border-right: none; }
.stats-bar__grid .stat-card:hover { background: var(--color-bg-alt); transform: none; }

@media (max-width: 900px) {
  .stats-bar__grid { grid-template-columns: repeat(3, 1fr); }
  .stats-bar__grid .stat-card:nth-child(3) { border-right: none; }
}
@media (max-width: 560px) {
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── About ──────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about__text .section-label { margin-bottom: var(--space-md); }
.about__text h2 { margin-bottom: var(--space-lg); }
.about__text p { margin-bottom: var(--space-lg); color: var(--color-text-muted); }

.about__highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.about__highlight-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: 0.9rem;
  color: var(--color-text);
}

.about__highlight-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about__image {
  position: relative;
}

.about__img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about__image-badge {
  position: absolute;
  bottom: -1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

@media (max-width: 768px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__image { margin-top: var(--space-2xl); }
}

/* ── Speakers ────────────────────────────────────────── */

/* — Keynote Hero Block — */
.keynote-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
}

.keynote-block__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, var(--color-primary), #1a5bad);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: var(--space-xl);
  box-shadow: 0 4px 14px rgba(0, 63, 138, 0.3);
}

.keynote-block__card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-2xl) var(--space-3xl);
  background: linear-gradient(145deg, #f0f5ff, #ffffff);
  border: 2px solid rgba(0, 63, 138, 0.15);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0, 63, 138, 0.12), 0 2px 8px rgba(0, 63, 138, 0.06);
  max-width: 480px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.keynote-block__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
  background-size: 200% 100%;
}

.keynote-block__name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.keynote-block__title {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  max-width: 320px;
  margin: 0 auto;
}

.keynote-block__desc {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.6;
  max-width: 440px;
  margin: var(--space-md) auto 0;
  text-align: center;
}

/* — Panelists Section Divider — */
.panelists-section {
  margin-top: var(--space-3xl);
}

.panelists-section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
}

.panelists-section__header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  z-index: 0;
}

.panelists-section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 999px;
  position: relative;
  z-index: 1;
}

.panelists-section__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-top: var(--space-md);
}

/* — Speakers Grid — */
.speakers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-xl);
}

/* — Speaker Card — */
.speaker-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.speaker-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 63, 138, 0.14);
}

.speaker-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  width: 100%;
}

/* — Photo Frame (Universal) — */
.speaker-card__photo-wrap {
  position: relative;
  width: 112px;
  height: 112px;
  margin: 0 auto var(--space-lg);
}

.speaker-card__photo-frame {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--avatar-color, var(--color-primary)), rgba(255,255,255,0.4));
  box-shadow: 0 6px 20px rgba(0, 63, 138, 0.2), 0 0 0 4px rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.speaker-card__photo-frame--keynote {
  width: 148px;
  height: 148px;
  margin: 0 auto var(--space-xl);
  padding: 4px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent), #1a5bad);
  box-shadow: 0 10px 32px rgba(0, 63, 138, 0.3), 0 0 0 6px rgba(255,255,255,0.95), 0 0 0 8px rgba(0,63,138,0.12);
  animation: keynote-glow 3s ease-in-out infinite alternate;
}

@keyframes keynote-glow {
  from { box-shadow: 0 10px 32px rgba(0, 63, 138, 0.3), 0 0 0 6px rgba(255,255,255,0.95), 0 0 0 8px rgba(0,63,138,0.12); }
  to   { box-shadow: 0 14px 42px rgba(0, 63, 138, 0.45), 0 0 0 6px rgba(255,255,255,0.95), 0 0 0 8px rgba(0,63,138,0.2); }
}

.speaker-card__avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--avatar-color, var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  overflow: hidden;
}

.speaker-card__avatar--keynote {
  font-size: 2rem;
}

.speaker-card__avatar::before {
  content: attr(data-initials);
}

.speaker-card__avatar:has(img)::before {
  content: none;
}

.speaker-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.speaker-photo--ahy {
  object-position: center 15%;
}

.speaker-photo--syahrial {
  object-position: center 5%;
}

.speaker-photo--taufiq {
  object-position: center 18%;
}

.speaker-photo--junaedi {
  object-position: center 8%;
}

.speaker-photo--nurhayati {
  object-position: center 12%;
}

/* Badge pin on keynote frame */
.speaker-card__photo-frame--keynote::after {
  content: '⭐';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), #c9a000);
  border: 3px solid var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.speaker-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-xs);
}

.speaker-card__name--keynote {
  font-size: 1.4rem;
}

.speaker-card__title {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.speaker-card__title--keynote {
  font-size: 0.9rem;
  max-width: 300px;
  margin-inline: auto;
}

.speaker-card__desc {
  font-size: 0.815rem;
  color: var(--color-text);
  line-height: 1.55;
  margin-top: var(--space-md);
  text-align: center;
}

/* ── Schedule / Timeline ─────────────────────────────── */
.schedule__days {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-2xl);
  align-items: start;
}

.schedule__day-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.schedule__day-badge {
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  white-space: nowrap;
}

.schedule__day-badge--alt {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

.schedule__day-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
}

.timeline__item {
  position: relative;
}

.timeline__dot {
  position: absolute;
  left: -2rem;
  top: 14px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-border);
  flex-shrink: 0;
  z-index: 2;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.timeline__dot--primary {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 63, 138, 0.15);
}

.timeline__dot--accent {
  background: var(--color-accent);
  border-color: var(--color-accent-dark);
  box-shadow: 0 0 0 3px rgba(245, 196, 0, 0.3);
}

.timeline__item:hover .timeline__dot {
  transform: scale(1.25);
}

.timeline__card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.timeline__card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
  transition: background var(--transition-fast);
}

.timeline__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 63, 138, 0.25);
}

.timeline__card:hover::before {
  background: var(--color-primary);
}

.timeline__card--featured {
  background: linear-gradient(135deg, rgba(240, 245, 255, 0.95), #ffffff);
  border-color: rgba(0, 63, 138, 0.3);
  box-shadow: 0 4px 16px rgba(0, 63, 138, 0.08);
}

.timeline__card--featured::before {
  background: var(--color-accent);
}

.timeline__card--featured:hover::before {
  background: var(--color-accent-dark);
}

.timeline__date-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  background: rgba(0, 63, 138, 0.07);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 63, 138, 0.14);
  margin-bottom: 6px;
}

.timeline__date-badge--accent {
  color: #8A6D00;
  background: rgba(245, 196, 0, 0.18);
  border-color: rgba(245, 196, 0, 0.4);
}

.timeline__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 4px 0;
  line-height: 1.35;
}

.timeline__subtitle {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin: 0;
}

/* Day 2 Clinic Card */
.schedule__clinic-card {
  text-align: center;
  padding: var(--space-2xl);
}

.schedule__clinic-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.schedule__clinic-card h4 {
  font-size: 1.3rem;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-md);
}

.schedule__clinic-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-xl);
}

.schedule__clinic-details {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

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

/* ── Sub-themes ──────────────────────────────────────── */
.subthemes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

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

.subtheme-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  background: var(--color-white);
  border: 1.5px solid rgba(0, 63, 138, 0.08);
  box-shadow: 0 4px 20px rgba(0, 63, 138, 0.06);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.subtheme-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0.9;
}

.subtheme-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 63, 138, 0.25);
  box-shadow: 0 16px 36px rgba(0, 63, 138, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.subtheme-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.subtheme-card__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.subtheme-card__num {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  background: rgba(0, 63, 138, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.subtheme-card__tag {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.subtheme-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 63, 138, 0.08), rgba(245, 196, 0, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 63, 138, 0.08);
  transition: transform 0.3s ease;
}

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

.subtheme-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1.4;
  margin-bottom: var(--space-md);
}

.subtheme-card__desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

.subtheme-card__footer {
  border-top: 1px dashed var(--color-border);
  padding-top: var(--space-md);
  margin-top: auto;
}

.subtheme-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.subtheme-card__link:hover {
  color: var(--color-primary-dark);
  transform: translateX(4px);
}

/* ── Gelar Hasil Highlight ───────────────────────────── */
.gh-highlight__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-3xl);
  align-items: center;
}

.gh-highlight__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.gh-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid rgba(255,255,255,0.1);
}

.gh-highlight__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.gh-stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: background var(--transition-base);
}

.gh-stat-card:hover {
  background: rgba(255,255,255,0.15);
}

.gh-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.gh-stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

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

/* ── Sponsors ────────────────────────────────────────── */
.sponsors__grid {
  display: flex;
  gap: var(--space-xl);
  justify-content: center;
  flex-wrap: wrap;
}

.sponsor-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  min-width: 200px;
}

.sponsor-card__logo {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--s-color, var(--color-primary));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  box-shadow: var(--shadow-sm);
}
.sponsor-card__logo::before { content: attr(data-initials); }

/* ── CTA Section ─────────────────────────────────────── */
.section-cta {
  background: linear-gradient(135deg, #f0f5ff 0%, #fefce8 100%);
  padding-block: var(--space-4xl);
}

.cta__inner {
  text-align: center;
}

.cta__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: var(--space-xl);
  max-width: 1120px;
  margin-inline: auto;
  margin-top: var(--space-3xl);
}

.cta-card {
  flex: 1 1 230px;
  max-width: 260px;
  min-width: 220px;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  text-decoration: none;
  color: var(--color-text);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.cta-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 15px 35px rgba(15, 76, 129, 0.12);
  transform: translateY(-6px);
  color: var(--color-text);
}

.cta-card--featured {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, #f0f5ff, #ffffff);
  box-shadow: var(--shadow-md);
}

.cta-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  white-space: nowrap;
}

.cta-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.cta-card h3 {
  font-size: 1.1rem;
  color: var(--color-primary-dark);
}

.cta-card__free {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-top: var(--space-sm);
}

@media (max-width: 600px) {
  .cta-card { max-width: 360px; width: 100%; }
}
