/* ═══════════════════════════════════════════════════
   HERO — DARK
═══════════════════════════════════════════════════ */
.ev-hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding: 96px 0 80px;
}
.ev-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 90% at 65% 50%,
      rgba(200, 16, 46, 0.15) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 28% 38% at 4% 88%,
      rgba(200, 16, 46, 0.06) 0%,
      transparent 50%
    );
}
.ev-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 52px 52px;
}
.ev-line {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
}
.ev-line.l1 {
  right: 26%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(200, 16, 46, 0.24),
    transparent
  );
}
.ev-line.l2 {
  right: 44%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.04),
    transparent
  );
}
/* floating calendar icon top-right decoration */
.ev-deco {
  position: absolute;
  right: 4%;
  top: 12%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(200, 16, 46, 0.08);
  border-radius: 20px;
  transform: rotate(8deg);
  pointer-events: none;
}
.ev-deco::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(200, 16, 46, 0.12);
}

.ev-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}

/* label */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 16, 46, 0.14);
  border: 1px solid rgba(200, 16, 46, 0.28);
  color: #ff8090;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-label::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.6);
    opacity: 0.5;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-title em {
  color: var(--red);
  font-style: italic;
  display: block;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.56);
  max-width: 480px;
  line-height: 1.86;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* stats */
.hero-stats {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  overflow: hidden;
}
.hero-stat {
  flex: 1;
  padding: 14px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-stat:last-child {
  border-right: none;
}
.hs-num {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hs-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

/* hero visual — next event card */
.hero-visual {
  position: relative;
}
.ev-card-main {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 2;
}
.ev-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.ev-card-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.ev-live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 5px;
}
.ev-live-dot {
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  animation: dotPulse 1.4s infinite;
}

/* featured event inside card */
.ev-feat-img {
  height: 130px;
  background: linear-gradient(135deg, #1a0608, #2a0a10);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ev-feat-img-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    rgba(200, 16, 46, 0.3),
    transparent 70%
  );
}
.ev-feat-img-icon {
  font-size: 3rem;
  color: rgba(200, 16, 46, 0.6);
  position: relative;
  z-index: 1;
}
.ev-feat-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.ev-tag {
  display: inline-block;
  padding: 3px 9px;
  background: var(--red-light);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.3px;
}
.ev-tag-dark {
  display: inline-block;
  padding: 3px 9px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.55);
  font-size: 10.5px;
  font-weight: 600;
  border-radius: 4px;
}
.ev-feat-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.25;
}
.ev-feat-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 18px;
}
.ev-feat-info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}
.ev-feat-info-row i {
  color: var(--red);
  width: 14px;
}
.ev-feat-actions {
  display: flex;
  gap: 10px;
}

/* float cards */
.ev-float {
  position: absolute;
  background: var(--white);
  border-radius: 10px;
  padding: 13px 17px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  z-index: 3;
  animation: floatY 4s ease-in-out infinite;
}
.ev-float.f1 {
  top: -20px;
  right: -20px;
  animation-delay: 0s;
}
.ev-float.f2 {
  bottom: -80px;
  left: -16px;
  animation-delay: 1.8s;
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.ef-lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.ef-val {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.ef-val span {
  color: var(--red);
  font-size: 12px;
}
.ef-sub {
  font-size: 11px;
  color: var(--gray-500);
  margin-top: 3px;
}

/* ═══════════════════════════════════════════════════
   FILTER TABS
═══════════════════════════════════════════════════ */
.ev-filter {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
  position: sticky;
  top: 65px;
  z-index: 50;
}
.filter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--tr);
}
.filter-tab:hover {
  border-color: var(--red);
  color: var(--red);
}
.filter-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: white;
  box-shadow: 0 4px 14px rgba(200, 16, 46, 0.28);
}
.filter-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: 8px 16px;
  transition: var(--tr);
}
.filter-search:focus-within {
  border-color: var(--red);
}
.filter-search i {
  color: var(--gray-400);
  font-size: 14px;
}
.filter-search input {
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--gray-700);
  background: transparent;
  width: 200px;
}
.filter-search input::placeholder {
  color: var(--gray-400);
}

/* ═══════════════════════════════════════════════════
   FEATURED / UPCOMING EVENTS
═══════════════════════════════════════════════════ */
.ev-upcoming {
  background: var(--white);
}

/* Featured event banner */
.ev-featured-banner {
  background: linear-gradient(135deg, var(--black), #1e0508);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr 380px;
}
.ev-fb-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 80% at 0% 50%,
      rgba(200, 16, 46, 0.18),
      transparent 60%
    ),
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='60' height='60' fill='none'/%3E%3Cpath d='M0 60L60 0M-10 10L10-10M50 70L70 50' stroke='rgba(255,255,255,.03)' stroke-width='1'/%3E%3C/svg%3E");
}
.ev-fb-content {
  padding: 48px;
  position: relative;
  z-index: 1;
}
.ev-fb-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 16, 46, 0.18);
  border: 1px solid rgba(200, 16, 46, 0.3);
  color: #ff8090;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.ev-fb-label::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: dotPulse 1.5s infinite;
}
.ev-fb-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: white;
  line-height: 1.18;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.ev-fb-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.54);
  line-height: 1.82;
  max-width: 480px;
  margin-bottom: 28px;
}
.ev-fb-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}
.ev-fb-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.ev-fb-meta-item i {
  color: var(--red);
  font-size: 14px;
}
.ev-fb-meta-item strong {
  color: rgba(255, 255, 255, 0.9);
}
.ev-fb-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ev-fb-visual {
  background: linear-gradient(
    135deg,
    rgba(200, 16, 46, 0.12),
    rgba(200, 16, 46, 0.04)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  z-index: 1;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}
.ev-fb-icon-wrap {
  width: 100px;
  height: 100px;
  border: 2px solid rgba(200, 16, 46, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: rgba(200, 16, 46, 0.1);
  animation: floatY 4s ease-in-out infinite;
}
.ev-fb-icon-wrap i {
  font-size: 3rem;
  color: rgba(200, 16, 46, 0.7);
}
.ev-fb-count {
  text-align: center;
  margin-bottom: 12px;
}
.ev-fb-count-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.ev-fb-count-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}
.ev-fb-spots {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(74, 222, 128, 0.1);
  color: #4ade80;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

/* Event cards grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ev-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--tr);
  cursor: default;
  display: flex;
  flex-direction: column;
}
.ev-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.ev-card-thumb {
  height: 168px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ev-card-thumb-icon {
  font-size: 2.5rem;
  color: rgba(200, 16, 46, 0.45);
  position: relative;
  z-index: 1;
  transition: var(--tr);
}
.ev-card:hover .ev-card-thumb-icon {
  color: rgba(200, 16, 46, 0.7);
  transform: scale(1.1);
}
.ev-thumb-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 60% at 50% 50%,
    rgba(200, 16, 46, 0.18),
    transparent 70%
  );
}
.ev-card-date-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: white;
  border-radius: 8px;
  padding: 6px 11px;
  text-align: center;
}
.ev-date-day {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.ev-date-mon {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 1px;
}
.ev-card-type-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-webinar {
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.2);
}
.badge-live {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.badge-workshop {
  background: rgba(245, 158, 11, 0.15);
  color: #fcd34d;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.badge-conference {
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.ev-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ev-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.ev-card-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.35;
  transition: color var(--tr);
}
.ev-card:hover .ev-card-title {
  color: var(--red);
}
.ev-card-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}
.ev-card-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 18px;
}
.ev-card-meta-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--gray-500);
}
.ev-card-meta-row i {
  color: var(--red);
  width: 13px;
  font-size: 11px;
}
.ev-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}
.ev-card-spots {
  font-size: 12px;
  color: var(--gray-400);
}
.ev-card-spots span {
  color: var(--red);
  font-weight: 700;
}
.ev-register-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--red);
  transition: gap var(--tr);
}
.ev-card:hover .ev-register-btn {
  gap: 10px;
  color: var(--red);
}

/* Past events small grid */
.past-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 16px;
}
.past-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--tr);
  cursor: default;
}
.past-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.past-card-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.past-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color var(--tr);
}
.past-card:hover .past-card-title {
  color: var(--red);
}
.past-card-meta {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 14px;
}
.past-card-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.past-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--red);
  transition: gap var(--tr);
}
.past-card:hover .past-card-link {
  gap: 8px;
  color: var(--red);
}

/* ═══════════════════════════════════════════════════
   SPEAKERS
═══════════════════════════════════════════════════ */
.ev-speakers {
  background: var(--black);
}
.ev-speakers .section-title {
  color: white;
}
.ev-speakers .section-sub {
  color: rgba(255, 255, 255, 0.48);
}
.ev-speakers .section-label {
  color: var(--red);
}
.ev-speakers .section-label::before {
  background: var(--red);
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.speaker-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: var(--tr);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.speaker-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
.speaker-card:hover {
  border-color: rgba(200, 16, 46, 0.35);
  background: rgba(200, 16, 46, 0.05);
  transform: translateY(-4px);
}
.speaker-card:hover::before {
  transform: scaleX(1);
}
.speaker-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 16px;
  border: 3px solid rgba(200, 16, 46, 0.3);
  transition: var(--tr);
}
.speaker-card:hover .speaker-avatar {
  border-color: var(--red);
  box-shadow: 0 0 0 6px rgba(200, 16, 46, 0.12);
}
.speaker-name {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.speaker-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
  margin-bottom: 14px;
}
.speaker-topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}
.sp-tag {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(200, 16, 46, 0.12);
  color: rgba(200, 16, 46, 0.9);
  font-size: 10.5px;
  font-weight: 600;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════
   NEWSLETTER STRIP
═══════════════════════════════════════════════════ */
.ev-newsletter {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 60px 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.nl-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.nl-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  max-width: 500px;
}
.nl-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.nl-input {
  padding: 12px 18px;
  border-radius: 7px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-family: var(--font-body);
  font-size: 13.5px;
  width: 260px;
  outline: none;
  transition: border-color var(--tr);
}
.nl-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.nl-input:focus {
  border-color: rgba(255, 255, 255, 0.6);
}

/* ═══════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════ */
.ev-cta {
  background: linear-gradient(
    135deg,
    var(--black) 0%,
    #080a12 50%,
    var(--black) 100%
  );
  padding: 88px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(200, 16, 46, 0.16);
}
.ev-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.11), transparent 65%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 18px;
  line-height: 1.15;
}
.cta-title span {
  color: var(--red);
}
.cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.46);
  margin: 0 auto 38px;
  max-width: 520px;
  line-height: 1.82;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 38px;
}
.ct-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 13px;
}
.ct-item i {
  color: var(--red);
}

/* ═══════════════════════════════════════════════════
   RELATED
═══════════════════════════════════════════════════ */
.ev-related {
  background: var(--white);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.rel-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--tr);
  display: block;
  position: relative;
  overflow: hidden;
}
.rel-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--tr);
}
.rel-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.rel-card:hover::before {
  transform: scaleX(1);
}
.rc-icon {
  width: 44px;
  height: 44px;
  background: var(--red-light);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  margin-bottom: 14px;
  transition: var(--tr);
}
.rel-card:hover .rc-icon {
  background: var(--red);
  color: white;
}
.rel-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.rel-card p {
  font-size: 12.5px;
  color: var(--gray-500);
  line-height: 1.65;
}
.rc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--red);
  opacity: 0;
  transition: opacity var(--tr);
}
.rel-card:hover .rc-link {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.rd1 {
  transition-delay: 0.08s;
}
.rd2 {
  transition-delay: 0.16s;
}
.rd3 {
  transition-delay: 0.24s;
}
.rd4 {
  transition-delay: 0.32s;
}
.rd5 {
  transition-delay: 0.4s;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .ev-hero-inner {
    gap: 48px;
  }
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .past-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ev-featured-banner {
    grid-template-columns: 1fr;
  }
  .ev-fb-visual {
    display: none;
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  :root {
    --section-py: 72px;
  }
  .ev-hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .newsletter-inner {
    grid-template-columns: 1fr;
  }
  .ev-deco {
    display: none;
  }
}
@media (max-width: 640px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
  .past-grid {
    grid-template-columns: 1fr 1fr;
  }
  .speakers-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .filter-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
