/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.ez-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 900;
  padding-inline: 28px;
  background: transparent;
  transition:
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    padding 0.3s var(--ease);
  animation: anim-fadeDown 0.55s var(--ease-out) both;
}

/* Scrolled state — glass */
.ez-header.is-scrolled {
  background: rgba(7, 9, 13, 0.88);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow-nav);
}

/* ── Nav container ── */
.ez-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 74px;
  max-width: 1440px;
  margin-inline: auto;
}

/* ── Logo ── */
.ez-nav__logo {
  flex-shrink: 0;
}

.ez-logo-link {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  position: relative;
  /* padding-bottom: 14px; */
}

.ez-logo-ez {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 800;
  background: var(--ez-golden-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.ez-logo-way {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--ez-white);
  line-height: 1;
}

.ez-logo-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: "Poppins", sans-serif;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ez-golden-mid);
}

/* ── Center menu ── */
.ez-nav__menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.ez-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.ez-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 11px;
  font-family: "Poppins", sans-serif;
  font-size: var(--ez-fs-sm);
  font-weight: 500;
  color: var(--ez-muted);
  border-radius: var(--radius);
  white-space: nowrap;
  transition:
    color 0.22s var(--ease),
    background 0.22s var(--ease);
  position: relative;
}

.ez-nav__link i {
  font-size: 10px;
  transition: transform 0.25s var(--ease);
}

.ez-nav__link:hover,
.ez-nav__link.is-active {
  color: var(--ez-white);
}

/* Active underline dot */
.ez-nav__link.is-active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  translate: -50% 0;
  width: 14px;
  height: 2px;
  background: var(--ez-golden-shine);
  border-radius: 2px;
}

/* ── Dropdown ── */
.ez-nav__item--drop {
  position: relative;
}

.ez-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  translate: -50% 6px;
  min-width: 180px;
  background: var(--ez-mid);
  border: 1px solid var(--ez-golden-border);
  border-radius: var(--radius-lg);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s var(--ease),
    translate 0.22s var(--ease);
  box-shadow:
    var(--shadow-card),
    0 0 24px rgba(230, 193, 83, 0.08);
}

.ez-nav__item--drop.is-open .ez-dropdown {
  opacity: 1;
  pointer-events: all;
  translate: -50% 0;
}

.ez-nav__item--drop.is-open .ez-nav__link i {
  transform: rotate(180deg);
}

.ez-dropdown a {
  display: block;
  padding: 9px 14px;
  font-family: "Poppins", sans-serif;
  font-size: var(--ez-fs-sm);
  color: var(--ez-muted);
  border-radius: 6px;
  transition:
    color 0.18s,
    background 0.18s;
}

.ez-dropdown a:hover {
  color: var(--ez-golden-text);
  background: var(--ez-golden-glow);
}

/* ── Right actions ── */
.ez-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.ez-sites-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: transparent;
  border: 1px solid var(--ez-golden-border);
  border-radius: var(--radius);
  color: var(--ez-muted);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.ez-sites-btn i {
  font-size: 20px;
  display: block;
  color: #fff;
}

.ez-sites-btn:hover {
  color: var(--ez-golden-text);
  border-color: var(--ez-golden-border);
}

.ez-sites-btn.is-active {
  color: var(--ez-golden-text);
}

/* ── Site Switcher Panel ── */
.ez-sites-overlay {
  position: fixed;
  inset: 0;
  z-index: 1049;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.ez-sites-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.ez-sites-panel {
  position: fixed;
  top: 72px;
  right: 20px;
  z-index: 1050;
  width: 340px;
  background: rgba(16, 18, 27, 0.92);
  border: 1px solid rgba(230, 193, 83, 0.18);
  border-radius: 18px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 1px 0 rgba(255, 255, 255, 0.07) inset;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  overflow: hidden;

  /* Closed state */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px) scale(0.97);
  transform-origin: top right;
  transition:
    opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.ez-sites-panel.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

.ez-sites-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ez-sites-panel__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: var(--ez-fs-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ez-white);
  text-transform: uppercase;
}

.ez-sites-panel__title i {
  color: var(--ez-golden-text);
  font-size: 15px;
}

.ez-sites-panel__close {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  border-radius: 50%;
  color: var(--ez-muted);
  font-size: 13px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

/* ============================================================
   HOMEPAGE: TRUSTED LOGO MARQUEE
   ============================================================ */
.ez-logo-marquee {
  position: relative;
  padding: clamp(18px, 2.4vw, 30px) 0;
  background: #fff;
}

.ez-logo-marquee__head {
  margin-bottom: 12px;
}

.ez-logo-marquee__eyebrow {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: var(--ez-fs-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.ez-logo-marquee__viewport {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: var(--radius-lg);
  background: transparent;
  box-shadow: none;
}

.ez-logo-marquee__viewport::before,
.ez-logo-marquee__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  width: clamp(50px, 10vw, 120px);
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.ez-logo-marquee__viewport::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.ez-logo-marquee__viewport::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.ez-logo-marquee__track {
  display: flex;
  width: max-content;
  animation: ez-logo-marquee-scroll 34s linear infinite;
  will-change: transform;
}

.ez-logo-marquee__viewport:hover .ez-logo-marquee__track {
  animation-play-state: paused;
}

.ez-logo-marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(18px, 2.4vw, 34px);
  padding: clamp(14px, 1.9vw, 20px) clamp(14px, 2vw, 22px);
}

.ez-logo-marquee__item {
  width: clamp(120px, 13vw, 180px);
  height: clamp(52px, 6vw, 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: clamp(8px, 1vw, 14px);
}

.ez-logo-marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0) brightness(1) contrast(1);
  opacity: 1;
  transition:
    opacity 0.35s var(--ease),
    filter 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.ez-logo-marquee__item:hover img {
  opacity: 1;
  filter: grayscale(0) brightness(1.02) contrast(1.02);
  transform: translateY(-2px) scale(1.02);
}

@media (max-width: 767.98px) {
  .ez-logo-marquee__viewport {
    border-radius: var(--radius);
  }

  .ez-logo-marquee__group {
    gap: 16px;
    padding: 12px 12px;
  }

  .ez-logo-marquee__item {
    width: 110px;
    height: 48px;
    padding-inline: 6px;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .ez-logo-marquee__track {
    animation: none;
  }
}

.ez-sites-panel__close:hover {
  background: rgba(230, 193, 83, 0.15);
  color: var(--ez-golden-text);
  transform: rotate(90deg);
}

.ez-sites-panel__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 16px 12px;
}

.ez-site-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.ez-site-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: rgba(230, 193, 83, 0.06);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.ez-site-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

.ez-site-item:hover::before {
  opacity: 1;
}

.ez-site-item__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(230, 193, 83, 0.18) 0%,
    rgba(230, 193, 83, 0.06) 100%
  );
  border: 1px solid rgba(230, 193, 83, 0.22);
  border-radius: 12px;
  color: var(--ez-golden-text);
  font-size: 20px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.ez-site-item:hover .ez-site-item__icon {
  background: linear-gradient(
    135deg,
    rgba(230, 193, 83, 0.3) 0%,
    rgba(230, 193, 83, 0.12) 100%
  );
  border-color: rgba(230, 193, 83, 0.5);
  box-shadow: 0 4px 16px rgba(230, 193, 83, 0.25);
}

.ez-site-item__label {
  font-family: "Poppins", sans-serif;
  font-size: var(--ez-fs-xs);
  font-weight: 500;
  color: var(--ez-muted);
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.ez-site-item:hover .ez-site-item__label {
  color: var(--ez-white);
}

/* Staggered entrance for grid items */
.ez-sites-panel.is-open .ez-site-item {
  animation: ez-site-item-in 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.ez-sites-panel.is-open .ez-site-item:nth-child(1) {
  animation-delay: 0.04s;
}
.ez-sites-panel.is-open .ez-site-item:nth-child(2) {
  animation-delay: 0.07s;
}
.ez-sites-panel.is-open .ez-site-item:nth-child(3) {
  animation-delay: 0.1s;
}
.ez-sites-panel.is-open .ez-site-item:nth-child(4) {
  animation-delay: 0.13s;
}
.ez-sites-panel.is-open .ez-site-item:nth-child(5) {
  animation-delay: 0.16s;
}
.ez-sites-panel.is-open .ez-site-item:nth-child(6) {
  animation-delay: 0.19s;
}
.ez-sites-panel.is-open .ez-site-item:nth-child(7) {
  animation-delay: 0.22s;
}
.ez-sites-panel.is-open .ez-site-item:nth-child(8) {
  animation-delay: 0.25s;
}
.ez-sites-panel.is-open .ez-site-item:nth-child(9) {
  animation-delay: 0.28s;
}
.ez-sites-panel.is-open .ez-site-item:nth-child(10) {
  animation-delay: 0.31s;
}
.ez-sites-panel.is-open .ez-site-item:nth-child(11) {
  animation-delay: 0.34s;
}
.ez-sites-panel.is-open .ez-site-item:nth-child(12) {
  animation-delay: 0.37s;
}

@keyframes ez-site-item-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.ez-sites-panel__footer {
  padding: 10px 20px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.04em;
}

.ez-sites-panel__footer strong {
  color: rgba(230, 193, 83, 0.5);
}

/* CTA "Join Now" button */
.ez-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  font-family: "Poppins", sans-serif;
  font-size: var(--ez-fs-sm);
  font-weight: 700;
  color: #0d0f14;
  background: var(--ez-golden-shine);
  border-radius: var(--radius);
  box-shadow: 0 4px 22px rgba(230, 193, 83, 0.35);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s var(--ease-bounce),
    box-shadow 0.25s var(--ease);
}

.ez-btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
  translate: -100% 0;
  transition: translate 0.5s var(--ease);
}

.ez-btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(230, 193, 83, 0.5);
  color: #0d0f14;
}

.ez-btn-cta:hover::before {
  translate: 100% 0;
}

/* Hide Join Now inside nav list on desktop — shown only in mobile menu */
.ez-nav__joinnow-mobile {
  display: none;
}

/* ── Mobile hamburger ── */
.ez-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.ez-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ez-white);
  border-radius: 2px;
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s;
}

.ez-nav__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ez-nav__toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.ez-nav__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.ez-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--ez-dark);
  overflow: hidden;
}

/* ── Atmospheric background ── */
.ez-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Golden ambient glows */
.ez-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  will-change: transform, opacity;
}

.ez-glow--tl {
  width: 700px;
  height: 700px;
  top: -160px;
  left: -140px;
  background: radial-gradient(
    circle,
    rgba(200, 155, 30, 0.14) 0%,
    transparent 70%
  );
  animation: anim-glowPulse 7s ease-in-out infinite;
}

.ez-glow--br {
  width: 500px;
  height: 500px;
  bottom: -80px;
  right: -60px;
  background: radial-gradient(
    circle,
    rgba(230, 193, 83, 0.09) 0%,
    transparent 70%
  );
  animation: anim-glowPulse 9s ease-in-out 2s infinite reverse;
}

/* Subtle grid lines */
.ez-grid-overlay {
  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: 56px 56px;
  -webkit-mask-image: radial-gradient(
    ellipse 85% 70% at 50% 0%,
    black 10%,
    transparent 80%
  );
  mask-image: radial-gradient(
    ellipse 85% 70% at 50% 0%,
    black 10%,
    transparent 80%
  );
}

/* Film-grain noise texture */
.ez-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.4;
  mix-blend-mode: overlay;
}

/* ── Inner container (Bootstrap handles columns) ── */
.ez-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 130px;
  padding-bottom: 88px;
}

/* ── Left: Content column ── */
.ez-hero__content {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* Staggered reveal animations */
.ez-hero__content > * {
  animation: anim-slideUp 0.65s var(--ease-out) both;
}
.ez-hero__content > *:nth-child(1) {
  animation-delay: 0.1s;
}
.ez-hero__content > *:nth-child(2) {
  animation-delay: 0.2s;
}
.ez-hero__content > *:nth-child(3) {
  animation-delay: 0.3s;
}
.ez-hero__content > *:nth-child(4) {
  animation-delay: 0.42s;
}
.ez-hero__content > *:nth-child(5) {
  animation-delay: 0.55s;
}

/* Agency tag pill */
.ez-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--ez-golden-glow);
  border: 1px solid var(--ez-golden-border);
  border-radius: 100px;
  font-family: "Poppins", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ez-golden-text);
  width: fit-content;
}

.ez-pill-tag__dot {
  width: 7px;
  height: 7px;
  background: var(--ez-golden-mid);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--ez-golden-mid);
  animation: anim-blink 2.2s ease-in-out infinite;
}

/* Main heading — size & line-height driven by .ez-h-3 utility class */
.ez-hero__heading {
  font-family: "Poppins", sans-serif;
  font-weight: 800; /* keep strong hero weight */
  letter-spacing: -0.025em;
  color: var(--ez-white);
}

/* Bullet list */
.ez-hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ez-hero__bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--ez-fs-lg);
  font-weight: 400;
  color: var(--ez-muted);
}

.ez-hero__content ul {
  padding-left: 0 !important;
}

.ez-hero__bullets li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 2px;
  background: var(--ez-golden-shine);
  border-radius: 2px;
}

/* CTA buttons */
.ez-hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ez-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: "Poppins", sans-serif;
  font-size: var(--ez-fs-md);
  font-weight: 700;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s var(--ease-bounce),
    box-shadow 0.25s var(--ease),
    color 0.2s;
}

/* Gold filled */
.ez-btn--gold {
  background: var(--ez-golden-shine);
  color: #0c0e14;
  box-shadow: 0 4px 28px rgba(230, 193, 83, 0.38);
}

.ez-btn--gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  translate: -100% 0;
  transition: translate 0.5s var(--ease);
}

.ez-btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(230, 193, 83, 0.55);
  color: #0c0e14;
}

.ez-btn--gold:hover::before {
  translate: 100% 0;
}

.ez-btn--gold i {
  transition: transform 0.25s var(--ease-bounce);
}
.ez-btn--gold:hover i {
  transform: translateX(4px);
}

/* Outline ghost */
.ez-btn--outline {
  background: transparent;
  color: var(--ez-white);
  border: 1px solid var(--ez-border);
}

.ez-btn--outline:hover {
  border-color: var(--ez-golden-border);
  background: var(--ez-golden-glow);
  color: var(--ez-golden-text);
  transform: translateY(-2px);
}

/* Stats strip */
.ez-hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--ez-border);
}

.ez-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ez-stat__num {
  font-family: "Poppins", sans-serif;
  font-size: var(--ez-fs-xl);
  font-weight: 800;
  background: var(--ez-golden-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.ez-stat__plus {
  font-size: var(--ez-fs-h6);
}

.ez-stat__label {
  font-size: var(--ez-fs-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ez-muted2);
}

.ez-stat__sep {
  width: 1px;
  height: 34px;
  background: var(--ez-border);
  flex-shrink: 0;
}

/* ── Right: Video column ── */
.ez-hero__media {
  position: relative;
  display: flex;
  justify-content: center;
  animation: anim-slideUp 0.75s var(--ease-out) 0.35s both;
}

/* Video card */
.ez-video-card {
  position: relative;
  width: 100%;
  max-width: 540px;
  /* animation: anim-float 7s ease-in-out infinite; */
}

/* Aspect-ratio wrapper 16:9 */
.ez-video-card__wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ez-golden-border);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    var(--shadow-card),
    0 0 70px rgba(230, 193, 83, 0.13);
}

.ez-video-card__wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Label bar below video */
.ez-video-card__label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 16px;
  background: var(--ez-mid);
  border: 1px solid var(--ez-border);
  border-radius: var(--radius);
  font-family: "Poppins", sans-serif;
  font-size: var(--ez-fs-sm);
  font-weight: 500;
  color: var(--ez-muted);
}

.ez-video-card__label i {
  color: var(--ez-golden-text);
  font-size: 17px;
  flex-shrink: 0;
}

.ez-video-card__badge {
  margin-left: auto;
  padding: 2px 8px;
  background: var(--ez-golden-glow);
  border: 1px solid var(--ez-golden-border);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ez-golden-text);
}

/* Decorative rotating rings */
.ez-ring {
  position: absolute;
  border: 1px solid var(--ez-golden-border);
  border-radius: 50%;
  pointer-events: none;
  animation: anim-spin 24s linear infinite;
}

.ez-ring--lg {
  width: 220px;
  height: 220px;
  top: -50px;
  right: -50px;
  opacity: 0.45;
}

.ez-ring--lg::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--ez-golden-mid);
  border-radius: 50%;
  top: 50%;
  left: -4.5px;
  translate: 0 -50%;
  box-shadow:
    0 0 14px var(--ez-golden-mid),
    0 0 28px rgba(230, 193, 83, 0.4);
}

.ez-ring--sm {
  width: 70px;
  height: 70px;
  bottom: 50px;
  left: -35px;
  opacity: 0.35;
  animation-direction: reverse;
  animation-duration: 14s;
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes anim-fadeDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes anim-slideUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes anim-glowPulse {
  0%,
  100% {
    opacity: 1;
    scale: 1;
  }
  50% {
    opacity: 0.5;
    scale: 1.12;
  }
}

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

@keyframes anim-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes anim-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

/* ============================================================
   CTA / Button Components
   ============================================================ */

/*
  Base:     .ez-btn
  Variants: .ez-btn--gold     (filled golden shimmer)
            .ez-btn--outline  (ghost border)
            .ez-btn--dark     (dark surface)
            .ez-btn--sm       (compact size)
            .ez-btn--lg       (large size)
  Usage:    <a href="#" class="ez-btn ez-btn--gold">Label <i class="bi bi-arrow-right"></i></a>
*/

.ez-btn--dark {
  background: var(--ez-mid);
  color: var(--ez-white);
  border: 1px solid var(--ez-border);
}

.ez-btn--dark:hover {
  border-color: var(--ez-golden-border);
  background: var(--ez-mid2);
  color: var(--ez-golden-text);
  transform: translateY(-2px);
}

.ez-btn--sm {
  padding: 8px 18px;
  font-size: var(--ez-fs-sm);
}

.ez-btn--lg {
  padding: 16px 36px;
  font-size: var(--ez-fs-h6);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.ez-services {
  position: relative;
  padding: 110px 0 120px;
  background: var(--ez-dark2);
  overflow: hidden;
}

/* Background glows */
.ez-glow--services-tl {
  width: 600px;
  height: 600px;
  top: -100px;
  left: -200px;
  background: radial-gradient(
    circle,
    rgba(201, 147, 10, 0.1) 0%,
    transparent 70%
  );
  animation: anim-glowPulse 10s ease-in-out infinite;
}

.ez-glow--services-br {
  width: 400px;
  height: 400px;
  bottom: -80px;
  right: 0;
  background: radial-gradient(
    circle,
    rgba(230, 193, 83, 0.07) 0%,
    transparent 70%
  );
  animation: anim-glowPulse 12s ease-in-out 3s infinite reverse;
}

/* ── Section label ── */
.ez-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--ez-fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ez-golden-text);
  margin-bottom: 20px;
}

/* ── Eyebrow label (inline, above section headings) ── */
.ez-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: var(--ez-fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ez-golden-text);
  margin-bottom: 14px;
}

.ez-eyebrow i {
  font-size: 13px;
  opacity: 0.85;
}

.ez-section-label__line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--ez-golden-shine);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Left intro column ── */
.ez-services__intro {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-right: 32px;
}

.ez-services__title {
  line-height: 1.1;
}

.ez-services__desc {
  /* max-width: 320px; */
}

/* Decorative vertical golden rule */
.ez-services__rule {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--ez-golden-border) 20%,
    var(--ez-golden-border) 80%,
    transparent 100%
  );
}

/* ── Individual service card ── */
.ez-svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px 16px 28px;
  height: 100%;
  background: var(--ez-mid);
  border: 1px solid var(--ez-border);
  border-radius: var(--radius-lg);
  text-align: center;
  cursor: default;
  overflow: hidden;
  transition:
    transform 0.32s var(--ez-ease, cubic-bezier(0.4, 0, 0.2, 1)),
    border-color 0.32s var(--ez-ease, cubic-bezier(0.4, 0, 0.2, 1)),
    box-shadow 0.32s var(--ez-ease, cubic-bezier(0.4, 0, 0.2, 1)),
    background 0.32s var(--ez-ease, cubic-bezier(0.4, 0, 0.2, 1));

  /* Entrance animation (staggered via nth-child) */
  animation: anim-slideUp 0.6s var(--ease-out) both;
}

/* Stagger entrance */
.ez-services__grid .col-6:nth-child(1) .ez-svc-card {
  animation-delay: 0.05s;
}
.ez-services__grid .col-6:nth-child(2) .ez-svc-card {
  animation-delay: 0.1s;
}
.ez-services__grid .col-6:nth-child(3) .ez-svc-card {
  animation-delay: 0.15s;
}
.ez-services__grid .col-6:nth-child(4) .ez-svc-card {
  animation-delay: 0.2s;
}
.ez-services__grid .col-6:nth-child(5) .ez-svc-card {
  animation-delay: 0.25s;
}
.ez-services__grid .col-6:nth-child(6) .ez-svc-card {
  animation-delay: 0.3s;
}
.ez-services__grid .col-6:nth-child(7) .ez-svc-card {
  animation-delay: 0.35s;
}
.ez-services__grid .col-6:nth-child(8) .ez-svc-card {
  animation-delay: 0.4s;
}

/* Hover / focus state */
.ez-svc-card:hover,
.ez-svc-card:focus-visible {
  transform: translateY(-6px);
  background: var(--ez-mid2);
  border-color: var(--ez-golden-border);
  box-shadow:
    0 12px 44px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(230, 193, 83, 0.12),
    inset 0 0 0 1px rgba(230, 193, 83, 0.06);
  outline: none;
}

/* Shimmer overlay on hover */
.ez-svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(230, 193, 83, 0.06) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.ez-svc-card:hover::before,
.ez-svc-card:focus-visible::before {
  opacity: 1;
}

/* Card number badge */
.ez-svc-card__num {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ez-muted2);
  transition: color 0.25s;
}

.ez-svc-card:hover .ez-svc-card__num {
  color: var(--ez-golden-text);
}

/* Icon circle */
.ez-svc-card__icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 193, 83, 0.07);
  border: 1px solid var(--ez-golden-border);
  border-radius: 50%;
  font-size: 24px;
  color: var(--ez-golden-text);
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.35s var(--ease-bounce);
}

.ez-svc-card:hover .ez-svc-card__icon {
  background: rgba(230, 193, 83, 0.14);
  border-color: rgba(230, 193, 83, 0.5);
  color: var(--ez-golden-lt);
  transform: scale(1.12) rotate(-4deg);
}

/* Card name */
.ez-svc-card__name {
  font-size: var(--ez-fs-xs);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ez-muted);
  line-height: 1.35;
  transition: color 0.25s;
}

.ez-svc-card:hover .ez-svc-card__name,
.ez-svc-card:focus-visible .ez-svc-card__name {
  color: var(--ez-white);
}

/* Bottom golden hover bar */
.ez-svc-card__hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ez-golden-shine);
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  transition: transform 0.35s var(--ease-bounce);
}

.ez-svc-card:hover .ez-svc-card__hover-line,
.ez-svc-card:focus-visible .ez-svc-card__hover-line {
  transform: scaleX(1);
}

/* ============================================================
   OUR PROCESS SECTION
   ============================================================ */
.ez-process {
  position: relative;
  padding: 110px 0 120px;
  background: var(--ez-dark);
  overflow: hidden;
}

/* Background */
.ez-process__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ez-glow--process-c {
  position: absolute;
  width: 800px;
  height: 400px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: radial-gradient(
    ellipse,
    rgba(201, 147, 10, 0.07) 0%,
    transparent 65%
  );
  filter: blur(60px);
  animation: anim-glowPulse 11s ease-in-out infinite;
}

/* Dot-grid pattern overlay */
.ez-process__grid-lines {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 36px 36px;
  -webkit-mask-image: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    black 20%,
    transparent 80%
  );
  mask-image: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    black 20%,
    transparent 80%
  );
}

/* Section header */
.ez-process__header {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  animation: anim-slideUp 0.6s var(--ease-out) 0.05s both;
}

/* Center the section label lines */
.ez-process__header .ez-section-label {
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.ez-process__title {
  margin-bottom: 16px;
}

/* font-size handled by .ez-text-lg utility class */
.ez-process__sub {
  line-height: 1.8;
  color: var(--ez-muted);
}

/* ── Process cards ── */
.ez-process__grid {
  position: relative;
  z-index: 1;
}

.ez-proc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 40px 28px 36px;
  height: 100%;
  background: var(--ez-mid);
  border: 1px solid var(--ez-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease);
  animation: anim-slideUp 0.65s var(--ease-out) both;
}

/* Stagger */
.ez-process__grid .col-12:nth-child(1) .ez-proc-card {
  animation-delay: 0.08s;
}
.ez-process__grid .col-12:nth-child(2) .ez-proc-card {
  animation-delay: 0.16s;
}
.ez-process__grid .col-12:nth-child(3) .ez-proc-card {
  animation-delay: 0.24s;
}
.ez-process__grid .col-12:nth-child(4) .ez-proc-card {
  animation-delay: 0.32s;
}
.ez-process__grid .col-12:nth-child(5) .ez-proc-card {
  animation-delay: 0.4s;
}
.ez-process__grid .col-12:nth-child(6) .ez-proc-card {
  animation-delay: 0.48s;
}

/* Top-corner golden accent */
.ez-proc-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(
    circle at 100% 0%,
    rgba(230, 193, 83, 0.12) 0%,
    transparent 70%
  );
  transition: opacity 0.35s;
  opacity: 0;
}

.ez-proc-card:hover,
.ez-proc-card:focus-visible {
  transform: translateY(-8px);
  background: var(--ez-mid2);
  border-color: var(--ez-golden-border);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(230, 193, 83, 0.1),
    inset 0 1px 0 rgba(230, 193, 83, 0.08);
  outline: none;
}

.ez-proc-card:hover::after,
.ez-proc-card:focus-visible::after {
  opacity: 1;
}

/* Icon wrapper */
.ez-proc-card__icon-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--ez-golden-text);
  background: rgba(230, 193, 83, 0.07);
  border: 1px solid var(--ez-golden-border);
  border-radius: 20px;
  flex-shrink: 0;
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    color 0.35s var(--ease),
    transform 0.4s var(--ease-bounce);
}

/* Rotating outer ring */
.ez-proc-card__icon-ring {
  position: absolute;
  inset: -8px;
  border: 1px dashed rgba(230, 193, 83, 0.2);
  border-radius: 28px;
  transition:
    border-color 0.35s,
    transform 0.6s var(--ease);
}

.ez-proc-card:hover .ez-proc-card__icon-wrap,
.ez-proc-card:focus-visible .ez-proc-card__icon-wrap {
  background: rgba(230, 193, 83, 0.14);
  border-color: rgba(230, 193, 83, 0.5);
  color: var(--ez-golden-lt);
  transform: scale(1.08);
}

.ez-proc-card:hover .ez-proc-card__icon-ring,
.ez-proc-card:focus-visible .ez-proc-card__icon-ring {
  border-color: rgba(230, 193, 83, 0.45);
  transform: rotate(90deg);
}

/* Title */
.ez-proc-card__title {
  font-size: var(--ez-fs-xl);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ez-white);
  transition: color 0.25s;
}

.ez-proc-card:hover .ez-proc-card__title {
  color: var(--ez-golden-lt);
}

/* Description */
.ez-proc-card__desc {
  font-size: var(--ez-fs-md);
  font-weight: 400;
  line-height: 1.75;
  color: var(--ez-muted);
  flex: 1;
  transition: color 0.25s;
}

.ez-proc-card:hover .ez-proc-card__desc {
  color: rgba(255, 255, 255, 0.65);
}

/* Bottom golden slide-in bar */
.ez-proc-card__bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ez-golden-shine);
  transform: scaleX(0);
  transform-origin: center;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  transition: transform 0.4s var(--ease-bounce);
}

.ez-proc-card:hover .ez-proc-card__bottom-bar,
.ez-proc-card:focus-visible .ez-proc-card__bottom-bar {
  transform: scaleX(1);
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.ez-testimonials {
  position: relative;
  padding: 110px 0 120px;
  background: var(--ez-dark2);
  overflow: hidden;
}

.ez-testimonials__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ez-glow--testi-l {
  position: absolute;
  width: 480px;
  height: 480px;
  top: -60px;
  left: -80px;
  background: radial-gradient(
    circle,
    rgba(201, 147, 10, 0.09) 0%,
    transparent 70%
  );
  filter: blur(80px);
  animation: anim-glowPulse 9s ease-in-out infinite;
}

.ez-glow--testi-r {
  position: absolute;
  width: 380px;
  height: 380px;
  bottom: -40px;
  right: -60px;
  background: radial-gradient(
    circle,
    rgba(230, 193, 83, 0.07) 0%,
    transparent 70%
  );
  filter: blur(70px);
  animation: anim-glowPulse 12s ease-in-out 2s infinite reverse;
}

/* Section header */
.ez-testi__header {
  position: relative;
  z-index: 1;
  margin-bottom: 52px;
  animation: anim-slideUp 0.6s var(--ease-out) 0.05s both;
}

.ez-testi__title {
  margin-bottom: 12px;
}

.ez-testi__sub {
  color: var(--ez-muted);
}

/* ── Slider wrapper ── */
.ez-testi-slider {
  position: relative;
  z-index: 1;
  overflow: hidden;
  /* side fade masks */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
}

/* ── Track ── */
.ez-testi-track {
  display: flex;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

/* ── Individual slide ── */
.ez-testi-slide {
  flex: 0 0 calc(100% / 3);
  padding: 0 12px;
  box-sizing: border-box;
}

/* ── Testimonial card ── */
.ez-testi-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 28px 28px;
  height: 100%;
  background: var(--ez-mid);
  border: 1px solid var(--ez-border);
  border-radius: var(--radius-xl);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

/* Featured / center card */
.ez-testi-card--featured {
  background: var(--ez-mid2);
  border-color: var(--ez-golden-border);
  box-shadow:
    0 0 0 1px rgba(230, 193, 83, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.45);
}

.ez-testi-card:hover {
  transform: translateY(-6px);
  border-color: var(--ez-golden-border);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(230, 193, 83, 0.18);
}

/* Radial glow inside card (top-left) */
.ez-testi-card__glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 180px;
  overflow: hidden;
  border-radius: inherit;
  background: radial-gradient(
    circle at 0% 0%,
    rgba(230, 193, 83, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Top row: BBB + stars */
.ez-testi-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ez-testi-card__bbb {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(28, 96, 148, 0.15);
  border: 1px solid rgba(28, 96, 148, 0.3);
  border-radius: 6px;
  font-size: var(--ez-fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #5b9bd5;
}

.ez-testi-card__bbb i {
  font-size: 13px;
  color: #5b9bd5;
}

.ez-testi-card__stars {
  display: flex;
  gap: 3px;
  color: var(--ez-golden-text);
  font-size: var(--ez-fs-sm);
}

/* Quote text */
.ez-testi-card__quote {
  font-size: var(--ez-fs-md);
  font-weight: 400;
  line-height: 1.78;
  color: var(--ez-muted);
  flex: 1;
  quotes: none;
  border: none;
  padding: 0;
  margin: 0;
}

/* Decorative open-quote */
.ez-testi-card__quote::before {
  content: "\201C";
  display: block;
  font-size: 52px;
  line-height: 0.6;
  color: var(--ez-golden-border);
  margin-bottom: 12px;
  font-family: Georgia, serif;
}

/* Footer: avatar + name/date */
.ez-testi-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--ez-border);
}

.ez-testi-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ez-golden-glow);
  border: 1px solid var(--ez-golden-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ez-fs-h6);
  font-weight: 700;
  color: var(--ez-golden-text);
  flex-shrink: 0;
}

.ez-testi-card__name {
  font-size: var(--ez-fs-md);
  font-weight: 700;
  color: var(--ez-white);
}

.ez-testi-card__date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--ez-fs-xs);
  color: var(--ez-muted2);
  margin-top: 2px;
}

.ez-testi-card__date i {
  font-size: 11px;
  color: var(--ez-golden-text);
}

/* ── Arrow buttons ── */
.ez-testi-arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ez-mid);
  border: 1px solid var(--ez-border);
  border-radius: 50%;
  color: var(--ez-muted);
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease),
    transform 0.25s var(--ease-bounce);
}

.ez-testi-arrow--prev {
  left: -4px;
}
.ez-testi-arrow--next {
  right: -4px;
}

.ez-testi-arrow:hover {
  background: var(--ez-golden-glow);
  border-color: var(--ez-golden-border);
  color: var(--ez-golden-text);
  translate: 0 calc(-50% - 2px);
}

/* ── Dots ── */
.ez-testi-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}

.ez-testi-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--ez-muted2);
  cursor: pointer;
  transition:
    width 0.3s var(--ease-bounce),
    background 0.3s var(--ease),
    border-radius 0.3s var(--ease);
}

.ez-testi-dots button.is-active {
  width: 24px;
  border-radius: 4px;
  background: var(--ez-golden-shine);
  background: var(--ez-golden-mid);
}

/* ── Swiper equal-height slides ── */
.ez-testi-swiper .swiper-wrapper {
  align-items: stretch;
}

.ez-testi-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto;
  padding-top: 8px; /* space for hover lift so card top isn't clipped */
}

.ez-testi-swiper .swiper-slide .ez-testi-card {
  flex: 1;
}

/* ── Swiper nav arrows ── */
.ez-testi-nav-wrap {
  position: relative;
  padding: 0 56px;
}

.ez-testi-swiper {
  overflow: hidden;
}

.ez-swiper-prev,
.ez-swiper-next {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ez-mid);
  border: 1px solid var(--ez-border);
  border-radius: 50%;
  color: var(--ez-muted);
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease),
    translate 0.25s var(--ease-bounce);
}

.ez-swiper-prev {
  left: 0;
}

.ez-swiper-next {
  right: 0;
}

.ez-swiper-prev:hover,
.ez-swiper-next:hover {
  background: var(--ez-golden-glow);
  border-color: var(--ez-golden-border);
  color: var(--ez-golden-text);
  translate: 0 calc(-50% - 2px);
}

.ez-swiper-prev.swiper-button-disabled,
.ez-swiper-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Swiper pagination dots ── */
.ez-swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.ez-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ez-muted2);
  opacity: 1;
  transition:
    width 0.3s var(--ease-bounce),
    background 0.3s var(--ease),
    border-radius 0.3s var(--ease);
}

.ez-swiper-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 4px;
  background: var(--ez-golden-mid);
}

/* ============================================================
   Reusable / Component classes (add below as site grows)
   ============================================================ */

/* ============================================================
   PACKAGES SECTION
   ============================================================ */

.ez-packages {
  position: relative;
  padding: 120px 0 100px;
  background: var(--ez-dark2);
  overflow: hidden;
}

/* Decorative bg rings */
.ez-packages__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ez-packages__bg-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--ez-golden-border);
  opacity: 0.35;
}

.ez-packages__bg-ring--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
}

.ez-packages__bg-ring--2 {
  width: 400px;
  height: 400px;
  bottom: -120px;
  left: -80px;
  opacity: 0.2;
}

/* Section header */
.ez-packages__header {
  text-align: center;
  margin-bottom: 64px;
}

/* font-size handled by .ez-h-4 utility class */
.ez-packages__title {
  font-weight: 800;
  color: var(--ez-white);
  line-height: 1.15;
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
}

/* font-size handled by .ez-text-lg utility class */
.ez-packages__sub {
  color: var(--ez-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Package card ── */
.ez-pkg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ez-mid);
  border: 1px solid var(--ez-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.ez-pkg-card:hover {
  transform: translateY(-6px);
  border-color: var(--ez-golden-border);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(230, 193, 83, 0.15);
}

/* Featured card */
.ez-pkg-card--featured {
  background: var(--ez-mid2);
  border-color: var(--ez-golden-border);
  box-shadow:
    0 0 0 1px rgba(230, 193, 83, 0.12),
    0 24px 72px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(230, 193, 83, 0.06);
  transform: translateY(-8px);
}

.ez-pkg-card--featured:hover {
  transform: translateY(-14px);
  box-shadow:
    0 0 0 1px rgba(230, 193, 83, 0.25),
    0 24px 72px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(230, 193, 83, 0.1);
}

/* "Most Popular" badge */
.ez-pkg-card__badge {
  position: absolute;
  top: 0;
  right: 28px;
  background: var(--ez-golden);
  color: var(--ez-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px 6px;
  border-radius: 0 0 10px 10px;
  z-index: 2;
}

/* Card header band */
.ez-pkg-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 28px 28px 24px;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid var(--ez-border);
}

.ez-pkg-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--ez-golden-glow);
  border: 1px solid var(--ez-golden-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--ez-golden-text);
  flex-shrink: 0;
}

.ez-pkg-card__name {
  font-size: var(--ez-fs-lg);
  font-weight: 700;
  color: var(--ez-white);
  line-height: 1.4;
  margin: 0;
}

/* Price */
.ez-pkg-card__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 24px 28px 20px;
}

.ez-pkg-card__price {
  font-size: var(--ez-fs-h4);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--ez-golden);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.ez-pkg-card__period {
  font-size: var(--ez-fs-sm);
  color: var(--ez-muted);
  font-weight: 400;
}

/* Divider */
.ez-pkg-card__divider {
  height: 1px;
  background: var(--ez-border);
  margin: 0 28px;
}

/* Features list */
.ez-pkg-card__features {
  list-style: none;
  padding: 24px 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.ez-pkg-card__features li {
  font-size: var(--ez-fs-sm);
  color: var(--ez-muted);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.ez-pkg-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ez-golden-mid);
  opacity: 0.7;
}

.ez-pkg-card__features li strong {
  color: var(--ez-white);
  font-weight: 600;
}

/* AI Features row */
.ez-pkg-card__ai {
  color: var(--ez-golden-text) !important;
  padding-left: 0 !important;
}

.ez-pkg-card__ai::before {
  display: none !important;
}

.ez-pkg-card__ai i {
  margin-right: 5px;
  font-size: 13px;
}

.ez-pkg-card__ai strong {
  color: var(--ez-golden-text) !important;
}

/* Best For row */
.ez-pkg-card__best {
  color: var(--ez-muted) !important;
  padding-left: 0 !important;
  border-top: 1px solid var(--ez-border);
  padding-top: 10px !important;
  margin-top: 2px;
}

.ez-pkg-card__best::before {
  display: none !important;
}

.ez-pkg-card__best i {
  color: var(--ez-golden-text);
  margin-right: 5px;
  font-size: 12px;
}

.ez-pkg-card__best strong {
  color: var(--ez-golden-text) !important;
}

/* CTA button */
.ez-pkg-card__cta {
  display: block;
  text-align: center;
  margin: 0 28px 28px;
  padding: 13px 0;
  border-radius: var(--radius);
  font-size: var(--ez-fs-md);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    transform 0.2s var(--ease-bounce);
}

.ez-pkg-card__cta:hover {
  transform: translateY(-2px);
}

/* Outline variant */
.ez-pkg-card__cta--outline {
  color: var(--ez-golden-text);
  border: 1px solid var(--ez-golden-border);
  background: transparent;
}

.ez-pkg-card__cta--outline:hover {
  background: var(--ez-golden-glow);
  border-color: var(--ez-golden-mid);
  box-shadow: 0 0 20px rgba(230, 193, 83, 0.15);
}

/* Gold fill variant (featured) */
.ez-pkg-card__cta--gold {
  background: var(--ez-golden);
  color: var(--ez-dark);
  border: none;
  box-shadow: 0 4px 20px rgba(230, 193, 83, 0.25);
}

.ez-pkg-card__cta--gold:hover {
  box-shadow: 0 6px 32px rgba(230, 193, 83, 0.4);
}

/* Radial glow top-left */
.ez-pkg-card__glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle at 0% 0%,
    rgba(230, 193, 83, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ============================================================
   FOOTER
   ============================================================ */

.ez-footer {
  position: relative;
  background: var(--ez-dark);
  overflow: hidden;
}

/* Golden hairline at very top */
.ez-footer__top-rule {
  height: 1px;
  background: var(--ez-golden);
  opacity: 0.25;
}

/* Background atmosphere */
.ez-footer__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ez-footer__bg-glow {
  position: absolute;
  bottom: -120px;
  left: 50%;
  translate: -50% 0;
  width: 800px;
  height: 400px;
  background: radial-gradient(
    ellipse at center,
    rgba(230, 193, 83, 0.055) 0%,
    transparent 70%
  );
}

/* Subtle dot-grid texture */
.ez-footer__bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 40%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 40%,
    transparent 100%
  );
}

/* Main grid: brand | company | services | legal */
.ez-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px 40px;
  padding: 72px 0 56px;
}

/* ── Brand column ── */
.ez-footer__logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
  margin-bottom: 20px;
}

.ez-footer__tagline {
  font-size: var(--ez-fs-sm);
  line-height: 1.75;
  color: var(--ez-muted);
  max-width: 280px;
  margin: 0 0 28px;
}

/* Social icons */
.ez-footer__socials {
  display: flex;
  gap: 10px;
}

.ez-footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--ez-border);
  background: var(--ez-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ez-muted);
  font-size: 14px;
  text-decoration: none;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease),
    transform 0.2s var(--ease-bounce);
}

.ez-footer__social:hover {
  background: var(--ez-golden-glow);
  border-color: var(--ez-golden-border);
  color: var(--ez-golden-text);
  transform: translateY(-3px);
}

/* ── Link columns ── */
.ez-footer__col-title {
  font-size: var(--ez-fs-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ez-golden-text);
  margin: 0 0 20px;
}

.ez-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ez-footer__links a {
  font-size: var(--ez-fs-sm);
  color: var(--ez-muted);
  text-decoration: none;
  transition:
    color 0.2s var(--ease),
    padding-left 0.2s var(--ease);
  display: inline-block;
}

.ez-footer__links a:hover {
  color: var(--ez-white);
  padding-left: 6px;
}

/* ── CTA block (in legal col) ── */
.ez-footer__cta-block {
  margin-top: 32px;
  padding: 20px;
  background: var(--ez-mid);
  border: 1px solid var(--ez-golden-border);
  border-radius: var(--radius-lg);
}

.ez-footer__cta-block p {
  font-size: var(--ez-fs-md);
  color: var(--ez-muted);
  margin: 0 0 14px;
  line-height: 1.5;
}

.ez-footer__cta-block strong {
  color: var(--ez-white);
  font-weight: 700;
}

.ez-footer__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--ez-golden);
  color: var(--ez-dark);
  font-size: var(--ez-fs-sm);
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition:
    box-shadow 0.25s var(--ease),
    transform 0.2s var(--ease-bounce);
}

.ez-footer__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(230, 193, 83, 0.35);
}

/* ── Bottom bar ── */
.ez-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 28px;
  border-top: 1px solid var(--ez-border);
}

.ez-footer__copy,
.ez-footer__credit {
  font-size: var(--ez-fs-sm);
  color: var(--ez-muted2);
  margin: 0;
}

.ez-footer__credit a {
  color: var(--ez-golden-text);
  text-decoration: none;
}

.ez-footer__credit a:hover {
  text-decoration: underline;
}

/* ============================================================
   PODCAST SECTION
   ============================================================ */

.ez-podcast {
  position: relative;
  padding: 120px 0 110px;
  background: var(--ez-mid);
  overflow: hidden;
}

/* Background */
.ez-podcast__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ez-podcast__bg-wave {
  display: none;
}

.ez-podcast__bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(
    ellipse 60% 80% at 100% 50%,
    black 30%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 60% 80% at 100% 50%,
    black 30%,
    transparent 100%
  );
}

/* ── Left column ── */
/* font-size handled by .ez-h-4 utility class */
.ez-podcast__title {
  font-weight: 800;
  color: var(--ez-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 14px 0 16px;
}

/* font-size handled by .ez-text-xl utility class */
.ez-podcast__lead {
  color: var(--ez-muted);
  margin-bottom: 36px;
  line-height: 1.65;
}

/* Feature two-col grid */
.ez-podcast__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  margin-bottom: 32px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--ez-border);
  border-radius: var(--radius-lg);
}

.ez-podcast__feat-col {
  padding: 4px 0;
}

.ez-podcast__feat-col + .ez-podcast__feat-col {
  border-left: 1px solid var(--ez-border);
  padding-left: 28px;
}

.ez-podcast__feat-label {
  font-size: var(--ez-fs-sm);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ez-golden-text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.ez-podcast__feat-label i {
  font-size: 14px;
}

.ez-podcast__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ez-podcast__list li {
  font-size: var(--ez-fs-sm);
  color: var(--ez-muted);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.ez-podcast__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ez-golden-mid);
  opacity: 0.75;
}

/* FAQ accordion */
.ez-podcast__faq {
  margin-bottom: 36px;
  border: 1px solid var(--ez-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.ez-podcast__faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: none;
  color: var(--ez-white);
  font-size: var(--ez-fs-md);
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s var(--ease);
}

.ez-podcast__faq-toggle i:first-child {
  color: var(--ez-golden-text);
  font-size: 15px;
  flex-shrink: 0;
}

.ez-podcast__faq-chevron {
  margin-left: auto;
  font-size: 13px;
  color: var(--ez-muted);
  transition: rotate 0.3s var(--ease);
  flex-shrink: 0;
}

.ez-podcast__faq-toggle[aria-expanded="true"] .ez-podcast__faq-chevron {
  rotate: 180deg;
}

.ez-podcast__faq-toggle:hover {
  background: var(--ez-golden-glow);
}

.ez-podcast__faq-body {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--ez-border);
}

.ez-podcast__faq-body p {
  font-size: var(--ez-fs-sm);
  color: var(--ez-muted);
  line-height: 1.75;
  margin: 0;
}

/* CTA buttons */
.ez-podcast__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* second .ez-btn block (podcast section) — font-size via scale var */
.ez-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: var(--ez-fs-md);
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  transition:
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    transform 0.2s var(--ease-bounce),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease);
}

.ez-btn:hover {
  transform: translateY(-2px);
}

.ez-btn--gold {
  background: var(--ez-golden);
  color: var(--ez-dark);
  border: none;
  box-shadow: 0 4px 20px rgba(230, 193, 83, 0.25);
}

.ez-btn--gold:hover {
  box-shadow: 0 6px 32px rgba(230, 193, 83, 0.4);
  color: var(--ez-dark);
}

.ez-btn--outline {
  background: transparent;
  color: var(--ez-golden-text);
  border: 1px solid var(--ez-golden-border);
}

.ez-btn--outline:hover {
  background: var(--ez-golden-glow);
  border-color: var(--ez-golden-mid);
  box-shadow: 0 0 20px rgba(230, 193, 83, 0.15);
  color: var(--ez-golden-text);
}

/* ── Right: Preview card ── */
.ez-podcast__card {
  position: relative;
  background: var(--ez-mid2);
  border: 1px solid var(--ez-golden-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(230, 193, 83, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.5);
}

.ez-podcast__card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: rgba(230, 193, 83, 0.07);
  border-bottom: 1px solid var(--ez-golden-border);
  font-size: var(--ez-fs-md);
  font-weight: 600;
  color: var(--ez-white);
}

.ez-podcast__card-header i {
  color: var(--ez-golden-text);
  font-size: 16px;
}

.ez-podcast__card-link {
  margin-left: auto;
  font-size: var(--ez-fs-sm);
  color: var(--ez-golden-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  transition: gap 0.2s var(--ease);
}

.ez-podcast__card-link:hover {
  gap: 9px;
  color: var(--ez-golden-mid);
}

/* Mockup preview area */
.ez-podcast__preview {
  padding: 28px 24px;
  background: var(--ez-dark2);
}

.ez-podcast__mockup {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ez-border);
  background: var(--ez-dark);
}

.ez-podcast__mockup-bar {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 10px 14px;
  background: var(--ez-mid);
  border-bottom: 1px solid var(--ez-border);
}

.ez-podcast__mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ez-border);
}

.ez-podcast__mockup-bar span:nth-child(1) {
  background: rgba(255, 90, 80, 0.5);
}
.ez-podcast__mockup-bar span:nth-child(2) {
  background: rgba(255, 185, 0, 0.5);
}
.ez-podcast__mockup-bar span:nth-child(3) {
  background: rgba(0, 180, 80, 0.5);
}

.ez-podcast__mockup-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  min-height: 200px;
}

.ez-podcast__mockup-logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  font-size: 1.3rem;
}

.ez-mockup-tv {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ez-golden-text);
  margin-left: 2px;
}

/* Skeleton content lines */
.ez-podcast__mockup-lines {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ez-podcast__mockup-line {
  height: 8px;
  border-radius: 4px;
  background: var(--ez-border);
  width: 60%;
  animation: ez-shimmer 2s ease-in-out infinite alternate;
}

.ez-podcast__mockup-line--wide {
  width: 90%;
}
.ez-podcast__mockup-line--med {
  width: 75%;
}
.ez-podcast__mockup-line--sm {
  width: 45%;
}

@keyframes ez-shimmer {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

.ez-podcast__iframe-wrap {
  width: 100%;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.ez-podcast__iframe-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.ez-podcast__mockup-cta {
  margin-top: 4px;
  padding: 9px 22px;
  background: var(--ez-golden);
  color: var(--ez-dark);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition:
    box-shadow 0.25s var(--ease),
    transform 0.2s var(--ease-bounce);
}

.ez-podcast__mockup-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(230, 193, 83, 0.35);
}

/* Stats strip */
.ez-podcast__stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 20px 24px;
  border-top: 1px solid var(--ez-border);
}

.ez-podcast__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.ez-podcast__stat-num {
  font-size: var(--ez-fs-xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--ez-golden);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.ez-podcast__stat-label {
  font-size: var(--ez-fs-xs);
  color: var(--ez-muted2);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.ez-podcast__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--ez-border);
}

.ez-podcast__card-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 280px;
  height: 120px;
  background: radial-gradient(
    ellipse at center bottom,
    rgba(230, 193, 83, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ============================================================
   RESULTS SECTION — See How We Deliver Results
   ============================================================ */

.ez-results {
  position: relative;
  padding: 120px 0 110px;
  background: var(--ez-dark);
  overflow: hidden;
}

/* Background atmosphere */
.ez-results__bg {
  position: absolute;
  right: 0;
  top: 30%;
  pointer-events: none;
}

.ez-results__bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
}

.ez-results__bg-glow--l {
  top: -160px;
  left: -120px;
  background: radial-gradient(
    circle,
    rgba(230, 193, 83, 0.06) 0%,
    transparent 65%
  );
}

.ez-results__bg-glow--r {
  bottom: -160px;
  right: -120px;
  background: radial-gradient(
    circle,
    rgba(230, 193, 83, 0.05) 0%,
    transparent 65%
  );
}

.ez-results__bg-lines {
  position: absolute;
  inset: 0;
  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: 60px 60px;
  -webkit-mask-image: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    black 30%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    black 30%,
    transparent 100%
  );
}

/* ── Header ── */
.ez-results__header {
  text-align: center;
  margin-bottom: 48px;
}

/* font-size handled by .ez-h-4 utility class */
.ez-results__title {
  font-weight: 800;
  color: var(--ez-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 12px 0 14px;
}

/* font-size handled by .ez-text-lg utility class */
.ez-results__sub {
  color: var(--ez-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Case study story block ── */
.ez-results__story {
  max-width: 860px;
  margin: 0 auto 52px;
  padding: 32px 36px;
  background: var(--ez-mid);
  border: 1px solid var(--ez-border);
  border-top: 1px solid var(--ez-golden-mid);
  border-radius: var(--radius-lg);
  position: relative;
}

.ez-results__story-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(230, 193, 83, 0.1);
  border: 1px solid var(--ez-golden-border);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ez-golden-text);
  margin-bottom: 18px;
}

.ez-results__story-badge i {
  font-size: 13px;
}

.ez-results__story-text {
  font-size: var(--ez-fs-md);
  color: var(--ez-muted);
  line-height: 1.8;
  margin: 0 0 16px;
}

.ez-results__story-text strong {
  color: var(--ez-white);
  font-weight: 700;
}

.ez-results__story-credit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--ez-fs-sm);
  color: var(--ez-golden-text);
  font-style: italic;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--ez-border);
}

.ez-results__story-credit i {
  font-size: 15px;
  flex-shrink: 0;
}

/* ── Stats row ── */
.ez-results__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 60px;
  padding: 28px 40px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  background: var(--ez-mid);
  border: 1px solid var(--ez-golden-border);
  border-radius: var(--radius-xl);
  box-shadow: 0 0 40px rgba(230, 193, 83, 0.06);
}

.ez-results__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.ez-results__stat-num {
  font-size: var(--ez-fs-xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--ez-golden);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.ez-results__stat-label {
  font-size: var(--ez-fs-xs);
  color: var(--ez-muted2);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.ez-results__stat-sep {
  width: 1px;
  height: 48px;
  background: var(--ez-border);
  flex-shrink: 0;
  margin: 0 32px;
}

/* ── Videos ── */
.ez-results__videos {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.ez-results__video-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Before / After label pill */
.ez-results__video-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ez-results__video-label--before {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--ez-border);
  color: var(--ez-muted);
}

.ez-results__video-label--after {
  background: rgba(230, 193, 83, 0.12);
  border: 1px solid var(--ez-golden-border);
  color: var(--ez-golden-text);
}

/* Responsive 16:9 iframe wrapper */
.ez-results__embed-shell {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ez-border);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.ez-results__embed-shell:hover {
  border-color: var(--ez-golden-border);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(230, 193, 83, 0.15);
  transform: translateY(-4px);
}

.ez-results__embed-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.ez-results__video-caption {
  font-size: var(--ez-fs-sm);
  color: var(--ez-muted2);
  text-align: center;
  margin: 0;
  letter-spacing: 0.02em;
}

/* Center arrow between videos */
.ez-results__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 40px; /* align with video midpoint */
}

.ez-results__arrow-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--ez-golden-border));
}

.ez-results__arrow-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ez-golden-glow);
  border: 1px solid var(--ez-golden-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ez-golden-text);
  font-size: 18px;
  box-shadow: 0 0 20px rgba(230, 193, 83, 0.15);
}

/* ============================================================
   MOST VIEWED MEMBERS SECTION
   ============================================================ */

.ez-most-viewed {
  position: relative;
  padding: 96px 0 104px;
  background: var(--ez-dark);
  overflow: hidden;
}

.ez-most-viewed__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ez-glow--mv-tl {
  position: absolute;
  top: -140px;
  left: -120px;
  width: 680px;
  height: 680px;
  background: radial-gradient(
    circle,
    rgba(230, 193, 83, 0.07) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.ez-glow--mv-br {
  position: absolute;
  bottom: -140px;
  right: -120px;
  width: 580px;
  height: 580px;
  background: radial-gradient(
    circle,
    rgba(230, 193, 83, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.ez-most-viewed__header {
  margin-bottom: 12px;
}

.ez-most-viewed__title {
  margin-bottom: 12px;
}

.ez-most-viewed__sub {
  color: var(--ez-muted);
  margin: 0;
}

/* ── Card ── */

.ez-mv-card {
  display: block;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--ez-mid);
  border: 1px solid var(--ez-border);
  transition:
    transform 0.38s var(--ease-bounce),
    box-shadow 0.38s var(--ease);
  cursor: pointer;
  text-decoration: none;
}

.ez-mv-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.65),
    0 0 40px rgba(230, 193, 83, 0.12);
}

/* Golden border reveal on hover */
.ez-mv-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(230, 193, 83, 0);
  transition: border-color 0.35s var(--ease);
  pointer-events: none;
  z-index: 4;
}

.ez-mv-card:hover::after {
  border-color: rgba(230, 193, 83, 0.38);
}

/* ── Photo layer ── */

.ez-mv-card__photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ez-mv-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  z-index: 1;
  transition: transform 0.55s var(--ease);
}

.ez-mv-card:hover .ez-mv-card__img {
  transform: scale(1.06);
}

/* ── Initials placeholder (shown when no photo) ── */

.ez-mv-card__initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--ez-golden-text);
  background: linear-gradient(135deg, var(--ez-mid) 0%, var(--ez-mid2) 100%);
  z-index: 0;
  letter-spacing: 0.04em;
  user-select: none;
}

/* ── Gradient overlay ── */

.ez-mv-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 9, 13, 0.92) 0%,
    rgba(7, 9, 13, 0.42) 38%,
    transparent 62%
  );
  z-index: 2;
  pointer-events: none;
}

/* ── Info block (bottom) ── */

.ez-mv-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 24px;
  z-index: 3;
}

.ez-mv-card__name {
  font-family: "Poppins", sans-serif;
  font-size: var(--ez-fs-lg);
  font-weight: 700;
  color: var(--ez-white);
  margin: 0 0 5px;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.ez-mv-card__views {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Poppins", sans-serif;
  font-size: var(--ez-fs-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
}

.ez-mv-card__views i {
  color: var(--ez-golden-text);
  font-size: 12px;
}

/* ── Shine sweep on hover ── */

.ez-mv-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.045) 48%,
    transparent 52%
  );
  z-index: 3;
  opacity: 0;
  transform: translateX(-120%);
  transition:
    opacity 0.25s var(--ease),
    transform 0.6s var(--ease);
  pointer-events: none;
}

.ez-mv-card:hover .ez-mv-card__shine {
  opacity: 1;
  transform: translateX(120%);
}

/* ============================================================
   WHY EZWAY — Stats Section
   ============================================================ */

.ez-why {
  position: relative;
  padding: 110px 0 120px;
  background: var(--ez-dark);
  overflow: hidden;
}

.ez-why__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ez-glow--why-tl {
  width: 700px;
  height: 700px;
  top: -180px;
  left: -180px;
  background: radial-gradient(
    circle,
    rgba(201, 147, 10, 0.1) 0%,
    transparent 70%
  );
  animation: anim-glowPulse 10s ease-in-out infinite;
}

.ez-glow--why-br {
  width: 500px;
  height: 500px;
  bottom: -80px;
  right: -60px;
  background: radial-gradient(
    circle,
    rgba(230, 193, 83, 0.07) 0%,
    transparent 70%
  );
  animation: anim-glowPulse 13s ease-in-out 4s infinite reverse;
}

.ez-why__header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 52px;
}

.ez-why__header .ez-section-label {
  justify-content: center;
}

.ez-why__title {
  margin-top: 14px;
  line-height: 1.05;
  font-weight: 800;
}

.ez-why__desc {
  max-width: 560px;
  margin: 14px auto 0;
}

.ez-why__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ez-why-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 28px 28px;
  background: var(--ez-mid);
  border: 1px solid var(--ez-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    border-color 0.28s var(--ease),
    transform 0.28s var(--ease-bounce),
    box-shadow 0.28s var(--ease);
}

.ez-why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(
    ellipse 80% 60% at 15% 10%,
    rgba(230, 193, 83, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.32s var(--ease);
}

.ez-why-card:hover {
  border-color: var(--ez-golden-border);
  transform: translateY(-5px);
  box-shadow:
    0 22px 64px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(230, 193, 83, 0.09);
}

.ez-why-card:hover::after {
  opacity: 1;
}

.ez-why-card__icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(
    135deg,
    rgba(230, 193, 83, 0.18) 0%,
    rgba(230, 193, 83, 0.05) 100%
  );
  border: 1px solid var(--ez-golden-border);
  border-radius: 10px;
  color: var(--ez-golden-text);
  font-size: 19px;
  flex-shrink: 0;
  transition:
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.ez-why-card:hover .ez-why-card__icon-badge {
  background: linear-gradient(
    135deg,
    rgba(230, 193, 83, 0.28) 0%,
    rgba(230, 193, 83, 0.1) 100%
  );
  box-shadow: 0 4px 18px rgba(230, 193, 83, 0.22);
}

.ez-why-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ez-why-card__num {
  font-family: "Poppins", sans-serif;
  font-size: clamp(38px, 3.8vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--ez-golden-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ez-why-card__sup {
  font-size: 0.48em;
  vertical-align: super;
  letter-spacing: 0;
}

.ez-why-card__label {
  font-family: "Poppins", sans-serif;
  font-size: var(--ez-fs-md);
  font-weight: 700;
  color: var(--ez-white);
}

.ez-why-card__desc {
  font-family: "Poppins", sans-serif;
  font-size: var(--ez-fs-sm);
  font-weight: 400;
  color: var(--ez-muted);
  line-height: 1.6;
}

.ez-why-card__corner {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s var(--ease);
}

.ez-why-card:hover .ez-why-card__corner {
  opacity: 1;
}

.ez-why-card__corner--tl {
  top: 12px;
  left: 12px;
  border-top: 1.5px solid var(--ez-golden-mid);
  border-left: 1.5px solid var(--ez-golden-mid);
  border-radius: 3px 0 0 0;
}

.ez-why-card__corner--br {
  bottom: 12px;
  right: 12px;
  border-bottom: 1.5px solid var(--ez-golden-mid);
  border-right: 1.5px solid var(--ez-golden-mid);
  border-radius: 0 0 3px 0;
}

/* ============================================================
   MEET THE LEGENDS — Hall of Influence
   ============================================================ */

.ez-legends {
  position: relative;
  padding: 110px 0 120px;
  background: var(--ez-dark2);
  overflow: hidden;
}

.ez-legends__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ez-glow--legends-tl {
  width: 600px;
  height: 600px;
  top: -120px;
  left: -150px;
  background: radial-gradient(
    circle,
    rgba(201, 147, 10, 0.1) 0%,
    transparent 70%
  );
  animation: anim-glowPulse 11s ease-in-out infinite;
}

.ez-glow--legends-br {
  width: 500px;
  height: 500px;
  bottom: -80px;
  right: -80px;
  background: radial-gradient(
    circle,
    rgba(230, 193, 83, 0.07) 0%,
    transparent 70%
  );
  animation: anim-glowPulse 14s ease-in-out 3s infinite reverse;
}

.ez-legends__scan {
  position: absolute;
  inset-inline: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(230, 193, 83, 0.08) 30%,
    rgba(230, 193, 83, 0.14) 50%,
    rgba(230, 193, 83, 0.08) 70%,
    transparent 100%
  );
  pointer-events: none;
}

.ez-legends__header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 64px;
}

.ez-legends__header .ez-section-label {
  justify-content: center;
}

.ez-legends__title {
  margin-top: 14px;
  line-height: 1.05;
}

.ez-legends__desc {
  max-width: 700px;
  margin: 14px auto 0;
}

.ez-legends__row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: start;
  margin-bottom: 52px;
}

.ez-legend-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 16px 22px;
  background: var(--ez-mid);
  border: 1px solid var(--ez-border);
  border-radius: var(--radius-lg);
  cursor: default;
  transition:
    border-color 0.28s var(--ease),
    background 0.28s var(--ease),
    transform 0.3s var(--ease-bounce),
    box-shadow 0.3s var(--ease);
}

.ez-legend-card:hover,
.ez-legend-card.is-active {
  border-color: var(--ez-golden-border);
  background: var(--ez-mid2);
  transform: translateY(-8px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 44px rgba(230, 193, 83, 0.1);
}

.ez-legend-card__avatar {
  position: relative;
  width: 110px;
  height: 110px;
  flex-shrink: 0;
}

.ez-legend-card__avatar::before,
.ez-legend-card__avatar::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(230, 193, 83, 0.25);
  transition: border-color 0.28s var(--ease);
}

.ez-legend-card__avatar::after {
  inset: -9px;
  border-color: rgba(230, 193, 83, 0.1);
  transition:
    border-color 0.28s var(--ease),
    opacity 0.28s var(--ease);
}

.ez-legend-card:hover .ez-legend-card__avatar::before,
.ez-legend-card.is-active .ez-legend-card__avatar::before {
  border-color: rgba(230, 193, 83, 0.65);
}

.ez-legend-card:hover .ez-legend-card__avatar::after,
.ez-legend-card.is-active .ez-legend-card__avatar::after {
  border-color: rgba(230, 193, 83, 0.25);
}

.ez-legend-card__avatar-arc {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--ez-golden-mid);
  border-right-color: var(--ez-golden-dk);
  animation: anim-spin 6s linear infinite;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.ez-legend-card:hover .ez-legend-card__avatar-arc,
.ez-legend-card.is-active .ez-legend-card__avatar-arc {
  opacity: 1;
}

.ez-legend-card__img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid var(--ez-golden-border);
  transition: border-color 0.28s var(--ease);
  background: var(--ez-mid2);
}

.ez-legend-card:hover .ez-legend-card__img,
.ez-legend-card.is-active .ez-legend-card__img {
  border-color: var(--ez-golden-mid);
}

.ez-legend-card__initials {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  background: var(--ez-golden-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 1;
  pointer-events: none;
}

.ez-legend-card__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.ez-legend-card__name {
  font-family: "Poppins", sans-serif;
  font-size: var(--ez-fs-md);
  font-weight: 700;
  color: var(--ez-white);
  line-height: 1.25;
  transition: color 0.22s var(--ease);
}

.ez-legend-card:hover .ez-legend-card__name,
.ez-legend-card.is-active .ez-legend-card__name {
  background: var(--ez-golden-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ez-legend-card__role {
  font-family: "Poppins", sans-serif;
  font-size: var(--ez-fs-xs);
  font-weight: 400;
  color: var(--ez-muted2);
  line-height: 1.4;
}

.ez-legend-card__followers {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  padding: 4px 10px;
  background: var(--ez-golden-glow);
  border: 1px solid var(--ez-golden-border);
  border-radius: 100px;
  font-family: "Poppins", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ez-golden-text);
  letter-spacing: 0.03em;
  transition:
    background 0.22s var(--ease),
    box-shadow 0.22s var(--ease);
}

.ez-legend-card__followers i {
  font-size: 11px;
}

.ez-legend-card:hover .ez-legend-card__followers,
.ez-legend-card.is-active .ez-legend-card__followers {
  background: rgba(230, 193, 83, 0.2);
  box-shadow: 0 2px 12px rgba(230, 193, 83, 0.2);
}

.ez-legends__cta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

/* ============================================================
   WE PROMOTE — "How do we do this?" Section
   ============================================================ */

.ez-promote {
  position: relative;
  padding: 110px 0 120px;
  background: var(--ez-dark);
  overflow: hidden;
}

.ez-promote__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ez-glow--promote-tl {
  position: absolute;
  width: 800px;
  height: 800px;
  top: -220px;
  left: -200px;
  background: radial-gradient(
    circle,
    rgba(201, 147, 10, 0.12) 0%,
    transparent 65%
  );
  animation: anim-glowPulse 12s ease-in-out infinite;
}

.ez-glow--promote-br {
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -120px;
  right: -100px;
  background: radial-gradient(
    circle,
    rgba(230, 193, 83, 0.08) 0%,
    transparent 65%
  );
  animation: anim-glowPulse 15s ease-in-out 5s infinite reverse;
}

.ez-promote__scan {
  position: absolute;
  inset-inline: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(230, 193, 83, 0.07) 25%,
    rgba(230, 193, 83, 0.13) 50%,
    rgba(230, 193, 83, 0.07) 75%,
    transparent 100%
  );
  pointer-events: none;
}

/* ── Section Header ── */

.ez-promote__inner {
  position: relative;
  z-index: 1;
}

.ez-promote__header {
  text-align: center;
  margin-bottom: 64px;
}

.ez-promote__header .ez-section-label {
  justify-content: center;
}

.ez-promote__title {
  margin-top: 16px;
  font-weight: 800;
  line-height: 1.1;
}

.ez-promote__subtitle {
  max-width: 600px;
  margin: 14px auto 0;
  color: var(--ez-muted);
}

/* ── Spotlight layout ── */

.ez-promote__spotlight {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
}

.ez-promote__photo-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ez-promote__photo-wrap {
  position: relative;
}

.ez-promote__photo-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(
    ellipse 70% 60% at 50% 60%,
    rgba(230, 193, 83, 0.14) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
  animation: anim-glowPulse 8s ease-in-out infinite;
}

.ez-promote__photo-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--ez-golden-border);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 48px rgba(230, 193, 83, 0.08);
  aspect-ratio: 4 / 5;
}

.ez-promote__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s var(--ease);
}

.ez-promote__photo-frame:hover .ez-promote__photo {
  transform: scale(1.04);
}

/* Corner accent brackets on the photo frame */
.ez-promote__corner {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 2;
}

.ez-promote__corner--tl {
  top: 14px;
  left: 14px;
  border-top: 2px solid var(--ez-golden-mid);
  border-left: 2px solid var(--ez-golden-mid);
  border-radius: 4px 0 0 0;
}

.ez-promote__corner--br {
  bottom: 14px;
  right: 14px;
  border-bottom: 2px solid var(--ez-golden-mid);
  border-right: 2px solid var(--ez-golden-mid);
  border-radius: 0 0 4px 0;
}

/* Name badge */
.ez-promote__name-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  translate: -50% 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(14, 17, 24, 0.88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--ez-golden-border);
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.ez-promote__name-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ez-golden-text);
  flex-shrink: 0;
  animation: anim-blink 2.4s ease-in-out infinite;
}

.ez-promote__name-badge-name {
  font-family: "Poppins", sans-serif;
  font-size: var(--ez-fs-sm);
  font-weight: 700;
  color: var(--ez-white);
  line-height: 1.2;
}

.ez-promote__name-badge-role {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  color: var(--ez-golden-text);
  line-height: 1.2;
}

/* Pull-quote */
.ez-promote__quote {
  position: relative;
  padding: 20px 22px 20px 48px;
  background: var(--ez-mid);
  border: 1px solid var(--ez-golden-border);
  border-left: 3px solid var(--ez-golden-mid);
  border-radius: var(--radius-lg);
  font-family: "Poppins", sans-serif;
  font-size: var(--ez-fs-sm);
  font-style: italic;
  color: var(--ez-muted);
  line-height: 1.7;
}

.ez-promote__quote-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 22px;
  color: var(--ez-golden-text);
  opacity: 0.7;
  font-style: normal;
}

.ez-promote__impact {
  background: linear-gradient(
    145deg,
    rgba(22, 29, 43, 0.9) 0%,
    rgba(30, 39, 55, 0.72) 100%
  );
  border: 1px solid var(--ez-golden-border);
  border-radius: var(--radius-xl);
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ez-promote__impact-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ez-promote__impact-kicker {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--ez-golden-border);
  background: rgba(230, 193, 83, 0.08);
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ez-golden-lt);
}

.ez-promote__impact-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(25px, 2.7vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ez-white);
}

.ez-promote__impact-text {
  font-family: "Poppins", sans-serif;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.75;
  color: var(--ez-light);
  max-width: 64ch;
}

.ez-promote__impact-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.ez-promote__impact-points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: var(--ez-fs-sm);
  color: var(--ez-muted);
  line-height: 1.55;
}

.ez-promote__impact-points i {
  font-size: 14px;
  line-height: 1.4;
  color: var(--ez-golden-text);
}

.ez-promote__impact-points li:last-child {
  grid-column: span 2;
}

.ez-promote__impact-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ez-promote__impact-stat {
  border: 1px solid var(--ez-border);
  border-radius: 12px;
  padding: 14px 12px;
  background: rgba(7, 9, 13, 0.34);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ez-promote__impact-num {
  font-family: "Poppins", sans-serif;
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 800;
  line-height: 1;
  background: var(--ez-golden-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ez-promote__impact-label {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ez-muted);
  text-transform: uppercase;
}

.ez-promote__impact-cta {
  align-self: flex-start;
}

.ez-promote__impact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ez-promote__impact-chip {
  padding: 6px 11px;
  border: 1px solid var(--ez-border);
  border-radius: 999px;
  background: rgba(7, 9, 13, 0.34);
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ez-muted);
}

/* ── Feature matrix ── */

.ez-promote__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

/* ── Feature card ── */

.ez-promote-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px 22px;
  background: var(--ez-mid);
  border: 1px solid var(--ez-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: default;
  /* entrance animation start state */
  opacity: 0;
  transform: translateY(22px);
  min-height: 188px;
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease-bounce),
    border-color 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.ez-promote-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ez-promote-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(
    ellipse 80% 60% at 10% 10%,
    rgba(230, 193, 83, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.32s var(--ease);
}

.ez-promote-card:hover {
  border-color: var(--ez-golden-border);
  transform: translateY(-4px);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.45),
    0 0 36px rgba(230, 193, 83, 0.09);
}

.ez-promote-card:hover::after {
  opacity: 1;
}

/* Card number badge */
.ez-promote-card__num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ez-muted2);
  transition: color 0.25s var(--ease);
}

.ez-promote-card:hover .ez-promote-card__num {
  color: var(--ez-golden-text);
}

/* Icon badge */
.ez-promote-card__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(
    135deg,
    rgba(230, 193, 83, 0.18) 0%,
    rgba(230, 193, 83, 0.05) 100%
  );
  border: 1px solid var(--ez-golden-border);
  border-radius: 10px;
  color: var(--ez-golden-text);
  font-size: 18px;
  flex-shrink: 0;
  transition:
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    transform 0.3s var(--ease-bounce);
}

.ez-promote-card:hover .ez-promote-card__icon-wrap {
  background: linear-gradient(
    135deg,
    rgba(230, 193, 83, 0.3) 0%,
    rgba(230, 193, 83, 0.12) 100%
  );
  box-shadow: 0 4px 20px rgba(230, 193, 83, 0.25);
  transform: scale(1.08) rotate(-3deg);
}

/* Card content */
.ez-promote-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.ez-promote-card__title {
  font-family: "Poppins", sans-serif;
  font-size: var(--ez-fs-md);
  font-weight: 700;
  color: var(--ez-white);
  line-height: 1.25;
  transition: color 0.22s var(--ease);
}

.ez-promote-card:hover .ez-promote-card__title {
  color: var(--ez-golden-lt);
}

.ez-promote-card__desc {
  font-family: "Poppins", sans-serif;
  font-size: var(--ez-fs-sm);
  font-weight: 400;
  color: var(--ez-muted);
  line-height: 1.6;
}

/* ============================================================
   Services Page — Hero / Heading Banner
   ============================================================ */

.ez-svc-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding-top: 100px;
  padding-bottom: 64px;
  overflow: hidden;
}

.ez-svc-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--ez-dark));
  pointer-events: none;
  z-index: 1;
}

.ez-svc-hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--ez-dark2);
  background-size: cover;
  background-position: center 75%;
  background-repeat: no-repeat;
}

.ez-svc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7, 9, 13, 0.88) 0%,
    rgba(7, 9, 13, 0.62) 55%,
    rgba(7, 9, 13, 0.28) 100%
  );
}

.ez-svc-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.ez-svc-hero__heading {
  font-weight: 800;
  max-width: 740px;
  line-height: 1.1;
}

.ez-svc-hero__sub {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

/* ============================================================
   Contact Page — Hero + Form Section
   ============================================================ */

.ez-contact-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding-top: 100px;
  padding-bottom: 64px;
  overflow: hidden;
}

.ez-contact-hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--ez-dark2);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.ez-contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7, 9, 13, 0.9) 0%,
    rgba(7, 9, 13, 0.66) 55%,
    rgba(7, 9, 13, 0.3) 100%
  );
}

.ez-contact-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.ez-contact-hero__heading {
  font-weight: 800;
  max-width: 760px;
  line-height: 1.1;
}

.ez-contact-hero__sub {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

/* Bottom fade into next section */
.ez-contact-hero__bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--ez-dark));
  pointer-events: none;
  z-index: 1;
}

.ez-contact-section {
  position: relative;
  padding: 80px 0 110px;
  background: var(--ez-dark2);
  overflow: hidden;
}

.ez-contact-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ez-glow--contact-tl {
  width: 520px;
  height: 520px;
  top: -120px;
  left: -120px;
  background: radial-gradient(
    circle,
    rgba(230, 193, 83, 0.11) 0%,
    transparent 72%
  );
  animation: anim-glowPulse 11s ease-in-out infinite;
}

.ez-glow--contact-br {
  width: 460px;
  height: 460px;
  right: -90px;
  bottom: -110px;
  background: radial-gradient(
    circle,
    rgba(201, 147, 10, 0.1) 0%,
    transparent 72%
  );
  animation: anim-glowPulse 13s ease-in-out 2s infinite reverse;
}

.ez-contact-section__inner {
  position: relative;
  z-index: 1;
}

.ez-contact-panel {
  height: 100%;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(30, 39, 55, 0.9) 0%,
    rgba(22, 29, 43, 0.96) 100%
  );
  border: 1px solid var(--ez-border);
  box-shadow: var(--shadow-card);
}

.ez-contact-panel__title {
  margin: 8px 0 14px;
  line-height: 1.2;
}

.ez-contact-panel__desc {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 20px;
}

.ez-contact-panel__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ez-contact-panel__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--ez-fs-sm);
  line-height: 1.6;
}

.ez-contact-panel__list i {
  color: var(--ez-golden-mid);
  margin-top: 3px;
  flex-shrink: 0;
}

.ez-contact-form-card {
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ez-golden-border);
  background: rgba(13, 17, 26, 0.9);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.ez-contact-form-card__header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  margin: 14px;
  border-radius: 100px;
  background: var(--ez-golden-glow);
  border: 1px solid var(--ez-golden-border);
  color: var(--ez-golden-text);
  font-size: var(--ez-fs-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ez-contact-form-embed {
  display: block;
  width: 100%;
  border: 0;
  background: #ffffff;
}

@media (max-width: 991.98px) {
  .ez-contact-section {
    padding-top: 56px;
    padding-bottom: 80px;
  }

  .ez-contact-panel {
    padding: 24px 20px;
  }

  .ez-contact-form-embed {
    min-height: 820px;
  }
}

@media (max-width: 575.98px) {
  .ez-contact-hero {
    min-height: 300px;
    padding-top: 86px;
    padding-bottom: 46px;
  }

  .ez-contact-hero__sub {
    max-width: 100%;
  }

  .ez-contact-form-embed {
    min-height: 920px;
  }
}

/* ============================================================
     CASE STUDIES — INLINE STYLES
============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.ez-cs-hero {
  position: relative;
  min-height: clamp(380px, 55vw, 620px);
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
}

.ez-cs-hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--ez-dark2);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* If no featured image: animated golden gradient */
.ez-cs-hero__bg:not([style]) {
  background:
    radial-gradient(
      ellipse 80% 60% at 30% 60%,
      rgba(201, 147, 10, 0.22) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 60% 50% at 80% 20%,
      rgba(245, 216, 112, 0.12) 0%,
      transparent 60%
    ),
    var(--ez-dark2);
}

.ez-cs-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(7, 9, 13, 0.9) 0%,
    rgba(7, 9, 13, 0.65) 55%,
    rgba(7, 9, 13, 0.3) 100%
  );
}

/* Floating particles canvas-like deco */
.ez-cs-hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ez-cs-hero__particles::before,
.ez-cs-hero__particles::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  animation: csParticleFloat 8s ease-in-out infinite alternate;
}

.ez-cs-hero__particles::before {
  width: 480px;
  height: 480px;
  top: -120px;
  right: 5%;
  background: radial-gradient(circle, var(--ez-golden-mid) 0%, transparent 70%);
}

.ez-cs-hero__particles::after {
  width: 320px;
  height: 320px;
  bottom: -80px;
  left: 10%;
  background: radial-gradient(circle, var(--ez-golden-dk) 0%, transparent 70%);
  animation-delay: -4s;
  opacity: 0.1;
}

@keyframes csParticleFloat {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-40px) scale(1.08);
  }
}

.ez-cs-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.ez-cs-hero__heading {
  font-weight: 800;
  max-width: 680px;
  line-height: 1.1;
}

.ez-cs-hero__sub {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* Scroll hint arrow */
.ez-cs-hero__scroll-hint {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.ez-cs-hero__scroll-hint span {
  display: block;
  width: 22px;
  height: 34px;
  border: 2px solid rgba(230, 193, 83, 0.45);
  border-radius: 11px;
  position: relative;
}

.ez-cs-hero__scroll-hint span::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  translate: -50% 0;
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--ez-golden-mid);
  animation: csScrollBounce 1.6s ease-in-out infinite;
}

@keyframes csScrollBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.4;
  }
}

/* ── Section ──────────────────────────────────────────────── */
.ez-cs-section {
  position: relative;
  padding-block: clamp(56px, 8vw, 100px);
  background: var(--ez-dark);
}

.ez-cs-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* ── Tab Filter Bar ───────────────────────────────────────── */
.ez-cs-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(36px, 5vw, 56px);
  padding: 6px;
  background: var(--ez-mid);
  border: 1px solid var(--ez-golden-border);
  border-radius: 50px;
  width: fit-content;
  max-width: 100%;
}

.ez-cs-tab {
  padding: 9px 20px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-family: "Poppins", sans-serif;
  font-size: var(--ez-fs-sm);
  font-weight: 500;
  color: var(--ez-muted);
  cursor: pointer;
  white-space: nowrap;
  transition:
    color 0.24s var(--ease),
    background 0.24s var(--ease),
    box-shadow 0.24s var(--ease);
  letter-spacing: 0.01em;
}

.ez-cs-tab:hover {
  color: var(--ez-white);
  background: rgba(255, 255, 255, 0.05);
}

.ez-cs-tab.is-active {
  background: var(--ez-golden);
  color: var(--ez-dark);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(201, 147, 10, 0.38);
}

/* ── Cards Grid ───────────────────────────────────────────── */
.ez-cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.2vw, 28px);
}

@media (max-width: 991px) {
  .ez-cs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .ez-cs-grid {
    grid-template-columns: 1fr;
  }
  .ez-cs-tabs {
    border-radius: var(--radius-lg);
  }
}

/* Individual card */
.ez-cs-card {
  background: var(--ez-mid);
  border: 1px solid var(--ez-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  /* staggered entrance */
  animation: csCardIn 0.5s var(--ease-out) both;
  animation-delay: calc(var(--i) * 60ms);
}

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

.ez-cs-card:hover {
  transform: translateY(-6px);
  border-color: var(--ez-golden-border);
  box-shadow:
    var(--shadow-card),
    0 0 32px rgba(230, 193, 83, 0.12);
}

/* Hidden / filtered-out state */
.ez-cs-card[hidden] {
  display: none !important;
}

/* Media area */
.ez-cs-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ez-dark2);
}

.ez-cs-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.45s var(--ease),
    filter 0.3s var(--ease);
}

.ez-cs-card__thumb--blank {
  background: var(--ez-mid2);
}

.ez-cs-card:hover .ez-cs-card__thumb {
  transform: scale(1.05);
  filter: brightness(0.75);
}

/* Play button */
.ez-cs-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ez-white);
  font-size: 32px;
  transition: transform 0.25s var(--ease-bounce);
}

.ez-cs-card__play-ring {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(230, 193, 83, 0.55);
  backdrop-filter: blur(4px);
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease-bounce);
}

.ez-cs-card__play i {
  position: relative;
  z-index: 1;
  font-size: 28px;
  translate: 3px 0; /* optical center for play icon */
}

.ez-cs-card__play:hover .ez-cs-card__play-ring,
.ez-cs-card:hover .ez-cs-card__play-ring {
  background: var(--ez-golden-dk);
  border-color: var(--ez-golden-mid);
  transform: scale(1.12);
}

/* Category badge */
.ez-cs-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(7, 9, 13, 0.72);
  border: 1px solid var(--ez-golden-border);
  backdrop-filter: blur(8px);
  color: var(--ez-golden-text);
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  pointer-events: none;
}

/* Info area */
.ez-cs-card__info {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.ez-cs-card__title {
  color: var(--ez-white);
  font-weight: 600;
  line-height: 1.45;
  flex: 1;
}

.ez-cs-card__watch {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: var(--ez-fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ez-golden-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition:
    gap 0.2s var(--ease),
    color 0.2s var(--ease);
}

.ez-cs-card__watch:hover {
  color: var(--ez-golden-lt);
  gap: 10px;
}

/* ── Empty state ──────────────────────────────────────────── */
.ez-cs-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 64px 0;
  color: var(--ez-muted);
  text-align: center;
}

.ez-cs-empty i {
  font-size: 42px;
  color: var(--ez-golden-border);
}

/* ── Modal ────────────────────────────────────────────────── */
.ez-cs-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ez-cs-modal[hidden] {
  display: none !important;
}

.ez-cs-modal.is-opening .ez-cs-modal__box {
  animation: csModalIn 0.32s var(--ease-bounce) both;
}

.ez-cs-modal.is-closing .ez-cs-modal__box {
  animation: csModalOut 0.22s var(--ease) both;
}

@keyframes csModalIn {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(24px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes csModalOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.92);
  }
}

.ez-cs-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.ez-cs-modal__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  background: var(--ez-mid);
  border: 1px solid var(--ez-golden-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    var(--shadow-card),
    0 0 60px rgba(230, 193, 83, 0.14);
}

.ez-cs-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--ez-border);
  gap: 12px;
}

.ez-cs-modal__title {
  color: var(--ez-muted);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.ez-cs-modal__close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--ez-border);
  border-radius: 50%;
  color: var(--ez-muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.ez-cs-modal__close:hover {
  background: rgba(230, 193, 83, 0.12);
  color: var(--ez-golden-text);
  border-color: var(--ez-golden-border);
}

.ez-cs-modal__frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.ez-cs-modal__frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   ABOUT PAGE — All Sections
   ============================================================ */

/* ── About Hero ── */
.ez-about-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding-top: 110px;
  padding-bottom: 80px;
  overflow: hidden;
}

.ez-about-hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--ez-dark2);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.ez-about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(7, 9, 13, 0.92) 0%,
    rgba(7, 9, 13, 0.65) 50%,
    rgba(7, 9, 13, 0.25) 100%
  );
}

.ez-about-hero__scan {
  position: absolute;
  inset-inline: 0;
  top: 55%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(230, 193, 83, 0.1) 30%,
    rgba(230, 193, 83, 0.18) 50%,
    rgba(230, 193, 83, 0.1) 70%,
    transparent 100%
  );
  pointer-events: none;
}

.ez-about-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  animation: anim-slideUp 0.7s var(--ease-out) both;
}

.ez-about-hero__heading {
  font-weight: 800;
  max-width: 680px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.ez-about-hero__sub {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

/* Scroll indicator */
.ez-about-hero__scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  cursor: default;
  opacity: 0.6;
}

.ez-about-hero__scroll-track {
  width: 2px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.ez-about-hero__scroll-thumb {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--ez-golden-mid);
  border-radius: 2px;
  animation: ez-scroll-thumb 2s ease-in-out infinite;
}

@keyframes ez-scroll-thumb {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

.ez-about-hero__scroll-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ez-muted);
}

/* Bottom fade into next section */
.ez-about-hero__bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--ez-dark));
  pointer-events: none;
  z-index: 1;
}

/* ── Bio Section ── */
.ez-about-bio {
  position: relative;
  padding: 110px 0 120px;
  background: var(--ez-dark);
  overflow: hidden;
}

.ez-about-bio__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ez-glow--about-bio-tl {
  width: 700px;
  height: 700px;
  top: -160px;
  left: -180px;
  background: radial-gradient(
    circle,
    rgba(201, 147, 10, 0.11) 0%,
    transparent 70%
  );
  animation: anim-glowPulse 9s ease-in-out infinite;
}

.ez-glow--about-bio-br {
  width: 500px;
  height: 500px;
  bottom: -80px;
  right: -60px;
  background: radial-gradient(
    circle,
    rgba(230, 193, 83, 0.07) 0%,
    transparent 70%
  );
  animation: anim-glowPulse 12s ease-in-out 3s infinite reverse;
}

/* Portrait card */
.ez-about-portrait {
  position: relative;
  animation: anim-slideUp 0.7s var(--ease-out) 0.15s both;
}

.ez-about-portrait__glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    ellipse 70% 60% at 50% 60%,
    rgba(230, 193, 83, 0.13) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
  animation: anim-glowPulse 8s ease-in-out infinite;
}

.ez-about-portrait__frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: visible;
  border: 1px solid var(--ez-golden-border);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(230, 193, 83, 0.08);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.ez-about-portrait__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s var(--ease);
}

.ez-about-portrait__frame:hover .ez-about-portrait__img {
  transform: scale(1.04);
}

.ez-about-portrait__initials {
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  font-weight: 800;
  background: var(--ez-golden-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: var(--ez-mid2);
}

/* Corner accent brackets */
.ez-about-portrait__corner {
  position: absolute;
  width: 24px;
  height: 24px;
  z-index: 3;
  pointer-events: none;
}

.ez-about-portrait__corner--tl {
  top: 16px;
  left: 16px;
  border-top: 2px solid var(--ez-golden-mid);
  border-left: 2px solid var(--ez-golden-mid);
  border-radius: 4px 0 0 0;
}

.ez-about-portrait__corner--br {
  bottom: 16px;
  right: 16px;
  border-bottom: 2px solid var(--ez-golden-mid);
  border-right: 2px solid var(--ez-golden-mid);
  border-radius: 0 0 4px 0;
}

/* Name badge floating at bottom */
.ez-about-portrait__badge {
  position: absolute;
  bottom: 22px;
  left: 50%;
  translate: -50% 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(10, 13, 20, 0.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid var(--ez-golden-border);
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  min-width: 200px;
}

.ez-about-portrait__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ez-golden-mid);
  box-shadow: 0 0 8px var(--ez-golden-mid);
  flex-shrink: 0;
  animation: anim-blink 2.2s ease-in-out infinite;
}

.ez-about-portrait__badge-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.ez-about-portrait__badge-name {
  font-size: var(--ez-fs-sm);
  font-weight: 700;
  color: var(--ez-white);
  line-height: 1.2;
}

.ez-about-portrait__badge-role {
  font-size: 11px;
  color: var(--ez-golden-text);
  line-height: 1.2;
}

.ez-about-portrait__badge-check {
  font-size: 18px;
  color: var(--ez-golden-text);
  flex-shrink: 0;
}

/* Award badge below photo */
.ez-about-portrait__award {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--ez-mid);
  border: 1px solid var(--ez-golden-border);
  border-radius: var(--radius-lg);
}

.ez-about-portrait__award i {
  font-size: 24px;
  color: var(--ez-golden-text);
  flex-shrink: 0;
}

.ez-about-portrait__award-title {
  display: block;
  font-size: var(--ez-fs-sm);
  font-weight: 700;
  color: var(--ez-white);
  line-height: 1.3;
}

.ez-about-portrait__award-sub {
  display: block;
  font-size: var(--ez-fs-xs);
  color: var(--ez-golden-text);
  letter-spacing: 0.04em;
}

/* Bio content column */
.ez-about-bio__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: anim-slideUp 0.7s var(--ease-out) 0.25s both;
}

.ez-about-bio__heading {
  line-height: 1.1;
}

.ez-about-bio__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ez-about-bio__body .ez-text-lg {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.ez-about-bio__body em {
  color: var(--ez-golden-text);
  font-style: italic;
}

.ez-about-bio__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Stats strip */
.ez-about-bio__stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--ez-border);
}

.ez-about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ez-about-stat__num {
  font-size: var(--ez-fs-h5);
  font-weight: 800;
  line-height: 1;
  background: var(--ez-golden-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.ez-about-stat__plus {
  font-size: 0.6em;
  vertical-align: super;
}

.ez-about-stat__label {
  font-size: var(--ez-fs-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ez-muted2);
}

.ez-about-stat__sep {
  width: 1px;
  height: 36px;
  background: var(--ez-border);
  flex-shrink: 0;
  align-self: center;
}

/* ── Impact Numbers Section ── */
.ez-about-impact {
  position: relative;
  padding: 110px 0 120px;
  background: var(--ez-dark2);
  overflow: hidden;
}

.ez-about-impact__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ez-glow--impact-c {
  position: absolute;
  width: 900px;
  height: 500px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: radial-gradient(
    ellipse,
    rgba(201, 147, 10, 0.08) 0%,
    transparent 65%
  );
  filter: blur(60px);
  animation: anim-glowPulse 11s ease-in-out infinite;
}

.ez-about-impact__grid-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 36px 36px;
  -webkit-mask-image: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    black 20%,
    transparent 80%
  );
  mask-image: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    black 20%,
    transparent 80%
  );
}

.ez-about-impact__header {
  position: relative;
  z-index: 1;
  margin-bottom: 52px;
  animation: anim-slideUp 0.6s var(--ease-out) 0.05s both;
}

.ez-about-impact__title {
  margin-top: 14px;
  font-weight: 800;
}

/* Impact cards grid */
.ez-about-impact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ez-impact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 24px 36px;
  background: var(--ez-mid);
  border: 1px solid var(--ez-border);
  border-radius: var(--radius-xl);
  text-align: center;
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.35s var(--ease-bounce),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease);
  animation: anim-slideUp 0.65s var(--ease-out) both;
}

.ez-about-impact__grid .ez-impact-card:nth-child(1) {
  animation-delay: 0.08s;
}
.ez-about-impact__grid .ez-impact-card:nth-child(2) {
  animation-delay: 0.16s;
}
.ez-about-impact__grid .ez-impact-card:nth-child(3) {
  animation-delay: 0.24s;
}
.ez-about-impact__grid .ez-impact-card:nth-child(4) {
  animation-delay: 0.32s;
}

.ez-impact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(230, 193, 83, 0.07) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.ez-impact-card:hover {
  transform: translateY(-8px);
  background: var(--ez-mid2);
  border-color: var(--ez-golden-border);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(230, 193, 83, 0.1),
    inset 0 1px 0 rgba(230, 193, 83, 0.08);
}

.ez-impact-card:hover::before {
  opacity: 1;
}

/* Icon wrap */
.ez-impact-card__icon-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--ez-golden-text);
  background: rgba(230, 193, 83, 0.07);
  border: 1px solid var(--ez-golden-border);
  border-radius: 20px;
  flex-shrink: 0;
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    transform 0.4s var(--ease-bounce);
}

.ez-impact-card__icon-ring {
  position: absolute;
  inset: -8px;
  border: 1px dashed rgba(230, 193, 83, 0.2);
  border-radius: 28px;
  transition:
    border-color 0.35s,
    transform 0.6s var(--ease);
}

.ez-impact-card:hover .ez-impact-card__icon-wrap {
  background: rgba(230, 193, 83, 0.14);
  border-color: rgba(230, 193, 83, 0.5);
  transform: scale(1.08);
}

.ez-impact-card:hover .ez-impact-card__icon-ring {
  border-color: rgba(230, 193, 83, 0.45);
  transform: rotate(90deg);
}

/* Number */
.ez-impact-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ez-impact-card__num {
  font-size: var(--ez-fs-h3);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--ez-golden-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ez-impact-card__suffix {
  font-size: 0.55em;
  letter-spacing: 0;
  vertical-align: super;
}

.ez-impact-card__label {
  font-size: var(--ez-fs-sm);
  font-weight: 500;
  color: var(--ez-muted);
  line-height: 1.4;
  letter-spacing: 0.03em;
}

/* Bottom bar */
.ez-impact-card__bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ez-golden-shine);
  transform: scaleX(0);
  transform-origin: center;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  transition: transform 0.4s var(--ease-bounce);
}

.ez-impact-card:hover .ez-impact-card__bottom-bar {
  transform: scaleX(1);
}

/* ── Endorsements Section ── */
.ez-about-endorsements {
  position: relative;
  padding: 110px 0 120px;
  background: var(--ez-dark);
  overflow: hidden;
}

.ez-about-endorsements__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ez-glow--endorse-tl {
  width: 600px;
  height: 600px;
  top: -120px;
  left: -150px;
  background: radial-gradient(
    circle,
    rgba(201, 147, 10, 0.1) 0%,
    transparent 70%
  );
  animation: anim-glowPulse 10s ease-in-out infinite;
}

.ez-glow--endorse-br {
  width: 500px;
  height: 500px;
  bottom: -80px;
  right: -80px;
  background: radial-gradient(
    circle,
    rgba(230, 193, 83, 0.07) 0%,
    transparent 70%
  );
  animation: anim-glowPulse 13s ease-in-out 4s infinite reverse;
}

.ez-about-endorsements__header {
  position: relative;
  z-index: 1;
  margin-bottom: 52px;
}

.ez-about-endorsements__title {
  margin-top: 14px;
  font-weight: 800;
}

.ez-about-endorsements__sub {
  margin-top: 14px;
}

/* Endorsements grid */
.ez-about-endorse-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ez-endorse-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--ez-mid);
  border: 1px solid var(--ez-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.32s var(--ease-bounce),
    border-color 0.32s var(--ease),
    box-shadow 0.32s var(--ease),
    background 0.32s var(--ease);
  animation: anim-slideUp 0.6s var(--ease-out) var(--delay, 0s) both;
}

.ez-endorse-card:hover {
  transform: translateY(-5px);
  background: var(--ez-mid2);
  border-color: var(--ez-golden-border);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(230, 193, 83, 0.1);
}

.ez-endorse-card__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(230, 193, 83, 0.15) 0%,
    rgba(230, 193, 83, 0.05) 100%
  );
  border: 1px solid var(--ez-golden-border);
  border-radius: 10px;
  color: var(--ez-golden-text);
  font-size: 18px;
  transition:
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    transform 0.3s var(--ease-bounce);
}

.ez-endorse-card:hover .ez-endorse-card__icon {
  background: linear-gradient(
    135deg,
    rgba(230, 193, 83, 0.28) 0%,
    rgba(230, 193, 83, 0.1) 100%
  );
  box-shadow: 0 4px 18px rgba(230, 193, 83, 0.22);
  transform: scale(1.1) rotate(-4deg);
}

.ez-endorse-card__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.ez-endorse-card__name {
  font-size: var(--ez-fs-sm);
  font-weight: 700;
  color: var(--ez-white);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.22s var(--ease);
}

.ez-endorse-card:hover .ez-endorse-card__name {
  background: var(--ez-golden-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ez-endorse-card__org {
  font-size: var(--ez-fs-xs);
  color: var(--ez-muted2);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Bottom slide-in bar */
.ez-endorse-card__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ez-golden-shine);
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  transition: transform 0.35s var(--ease-bounce);
}

.ez-endorse-card:hover .ez-endorse-card__bar {
  transform: scaleX(1);
}

/* ── Affiliations Section ── */
.ez-about-affiliations {
  position: relative;
  padding: 110px 0 120px;
  background: var(--ez-dark2);
  overflow: hidden;
}

.ez-about-affiliations__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ez-glow--affil-c {
  position: absolute;
  width: 800px;
  height: 400px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: radial-gradient(
    ellipse,
    rgba(201, 147, 10, 0.08) 0%,
    transparent 65%
  );
  filter: blur(60px);
  animation: anim-glowPulse 11s ease-in-out 2s infinite;
}

.ez-about-affiliations__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(
    ellipse 85% 75% at 50% 50%,
    black 20%,
    transparent 80%
  );
  mask-image: radial-gradient(
    ellipse 85% 75% at 50% 50%,
    black 20%,
    transparent 80%
  );
}

.ez-about-affiliations__header {
  position: relative;
  z-index: 1;
  margin-bottom: 52px;
}

.ez-about-affiliations__title {
  margin-top: 14px;
  font-weight: 800;
}

.ez-about-affiliations__sub {
  margin-top: 14px;
}

/* Affiliations grid */
.ez-about-affil-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ez-affil-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 36px 20px 30px;
  background: var(--ez-mid);
  border: 1px solid var(--ez-border);
  border-radius: var(--radius-xl);
  text-align: center;
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.35s var(--ease-bounce),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease);
  animation: anim-slideUp 0.65s var(--ease-out) var(--delay, 0s) both;
}

.ez-affil-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(230, 193, 83, 0.07) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.ez-affil-card:hover {
  transform: translateY(-6px);
  background: var(--ez-mid2);
  border-color: var(--ez-golden-border);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(230, 193, 83, 0.1);
}

.ez-affil-card:hover::before {
  opacity: 1;
}

.ez-affil-card__icon-wrap {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(230, 193, 83, 0.15) 0%,
    rgba(230, 193, 83, 0.05) 100%
  );
  border: 1px solid var(--ez-golden-border);
  border-radius: 16px;
  color: var(--ez-golden-text);
  font-size: 24px;
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    transform 0.4s var(--ease-bounce);
}

.ez-affil-card:hover .ez-affil-card__icon-wrap {
  background: linear-gradient(
    135deg,
    rgba(230, 193, 83, 0.28) 0%,
    rgba(230, 193, 83, 0.1) 100%
  );
  border-color: rgba(230, 193, 83, 0.5);
  box-shadow: 0 6px 24px rgba(230, 193, 83, 0.22);
  transform: scale(1.12) rotate(-4deg);
}

.ez-affil-card__name {
  font-size: var(--ez-fs-sm);
  font-weight: 600;
  color: var(--ez-muted);
  line-height: 1.45;
  transition: color 0.25s var(--ease);
}

.ez-affil-card:hover .ez-affil-card__name {
  color: var(--ez-white);
}

.ez-affil-card__hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ez-golden-shine);
  transform: scaleX(0);
  transform-origin: center;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  transition: transform 0.4s var(--ease-bounce);
}

.ez-affil-card:hover .ez-affil-card__hover-line {
  transform: scaleX(1);
}

/* ── About CTA Section ── */
.ez-about-cta {
  position: relative;
  padding: 120px 0 130px;
  background: var(--ez-dark);
  overflow: hidden;
}

.ez-about-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ez-glow--cta-c {
  position: absolute;
  width: 1000px;
  height: 600px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: radial-gradient(
    ellipse,
    rgba(201, 147, 10, 0.1) 0%,
    transparent 60%
  );
  filter: blur(60px);
  animation: anim-glowPulse 9s ease-in-out infinite;
}

/* Decorative rotating rings */
.ez-about-cta__ring {
  position: absolute;
  border: 1px solid var(--ez-golden-border);
  border-radius: 50%;
  pointer-events: none;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  animation: anim-spin 28s linear infinite;
}

.ez-about-cta__ring--lg {
  width: 600px;
  height: 600px;
  opacity: 0.2;
}

.ez-about-cta__ring--sm {
  width: 340px;
  height: 340px;
  opacity: 0.15;
  animation-direction: reverse;
  animation-duration: 18s;
}

.ez-about-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  animation: anim-slideUp 0.7s var(--ease-out) both;
}

.ez-about-cta__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--ez-golden-glow);
  border: 1px solid var(--ez-golden-border);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ez-golden-text);
}

.ez-about-cta__heading {
  font-weight: 800;
  max-width: 640px;
  line-height: 1.1;
}

.ez-about-cta__sub {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

.ez-about-cta__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ============================================================
   ABOUT PAGE — Responsive
   ============================================================ */
@media (max-width: 1199.98px) {
  .ez-about-impact__grid,
  .ez-about-endorse-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .ez-about-hero {
    min-height: 460px;
    padding-bottom: 60px;
  }

  .ez-about-hero__heading {
    font-size: clamp(32px, 7vw, 60px);
  }

  .ez-about-bio {
    padding: 80px 0 90px;
  }

  .ez-about-portrait__frame {
    aspect-ratio: 4 / 5;
    max-width: 400px;
    margin: 0 auto;
  }

  .ez-about-impact__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ez-about-endorse-grid,
  .ez-about-affil-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ez-about-bio__stats {
    gap: 14px;
  }
}

@media (max-width: 767.98px) {
  .ez-about-hero {
    min-height: 400px;
    padding-bottom: 48px;
  }

  .ez-about-bio__stats {
    flex-wrap: wrap;
    gap: 12px;
  }

  .ez-about-stat__sep {
    display: none;
  }

  .ez-about-impact__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .ez-impact-card {
    padding: 28px 16px 24px;
  }

  .ez-impact-card__num {
    font-size: var(--ez-fs-h4);
  }

  .ez-about-endorse-grid,
  .ez-about-affil-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .ez-about-portrait__badge {
    min-width: 160px;
  }
}

@media (max-width: 575.98px) {
  .ez-about-cta__ring--lg {
    width: 320px;
    height: 320px;
  }
  .ez-about-cta__ring--sm {
    width: 200px;
    height: 200px;
  }
}

/* ============================================================
   OUR PLATFORM — Stacked Cards (Scroll-Driven)
   ============================================================ */

/* ── Section ── */
.ez-platform {
  background: var(--ez-dark); /* #07090d — matches site dark bg */
  padding-block-start: 120px;
  padding-block-end: 0;
  overflow: visible;
}

/* ── Section Header ── */
.ez-platform__head {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
}

.ez-platform__head-left {
  display: flex;
  flex-direction: column;
}

.ez-platform__subtitle {
  color: var(--ez-muted);
  max-width: 520px;
  margin-top: 12px;
  margin-bottom: 0;
}

/* Scroll hint */
.ez-platform__scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--ez-fs-xs);
  font-weight: 600;
  color: var(--ez-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
  padding-bottom: 6px;
}

.ez-platform__scroll-hint i {
  color: var(--ez-golden-text);
  animation: ez-plt-bounce 1.8s var(--ease) infinite;
}

@keyframes ez-plt-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* ── Scroll track ── */
.ez-platform__track {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 40px;
  padding-bottom: 200px;
}

/* ── Each sticky pin ── */
.ez-platform__pin {
  position: sticky;
  top: calc(150px + var(--i, 0) * 14px);
  margin-bottom: 16px;
}

/* ── Card shell ── */
.ez-platform__card {
  position: relative;
  border-radius: 20px;
  background: var(--ez-dark2); /* #0e1118 — one step above pure black */
  border: 1px solid var(--ez-border);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
  transition:
    transform 0.12s linear,
    filter 0.12s linear;
  will-change: transform, filter;
  transform-origin: top center;
}

/* Top accent line */
.ez-platform__card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent, var(--ez-golden-mid)) 40%,
    var(--accent, var(--ez-golden-mid)) 60%,
    transparent
  );
  z-index: 3;
}

/* ── Two-column inner layout ── */
.ez-platform__card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr; /* LEFT: content | RIGHT: image */
  min-height: 460px;
  align-items: stretch;
}

/* ── LEFT: text content ── */
.ez-platform__card-text {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

/* meta row: number + tag pill */
.ez-platform__card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ez-platform__num {
  font-size: var(--ez-fs-h5);
  font-weight: 800;
  line-height: 1;
  background: var(--ez-golden-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ez-platform__tag {
  font-size: var(--ez-fs-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent, var(--ez-golden-text));
  padding: 4px 14px;
  border-radius: 100px;
  border: 1px solid
    color-mix(in srgb, var(--accent, var(--ez-golden-mid)) 45%, transparent);
  background: color-mix(
    in srgb,
    var(--accent, var(--ez-golden-mid)) 10%,
    transparent
  );
}

/* Title */
.ez-platform__name {
  margin: 0;
  color: var(--ez-white);
}

/* Body text */
.ez-platform__desc {
  margin: 0;
  color: var(--ez-muted);
  line-height: 1.75;
}

/* ── RIGHT: image panel ── */
.ez-platform__card-visual {
  position: relative;
  overflow: hidden;
  /* no border-radius on left — only right matches the card's radius */
  border-radius: 0 20px 20px 0;
}

.ez-platform__card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
}

.ez-platform__card:hover .ez-platform__card-visual img {
  transform: scale(1.05);
}

/* Vertical fade from dark on the left edge of the image */
.ez-platform__card-visual::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 80px;
  background: linear-gradient(90deg, var(--ez-dark2), transparent);
  z-index: 1;
}

/* Hover border accent */
.ez-platform__card:hover {
  border-color: color-mix(
    in srgb,
    var(--accent, var(--ez-golden-mid)) 40%,
    transparent
  );
}

/* ──────────────────────────────────
   RESPONSIVE
────────────────────────────────── */

/* Tablet — stack image below text */
@media (max-width: 1024px) {
  .ez-platform__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .ez-platform__card-inner {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .ez-platform__card-text {
    padding: 40px 36px 32px;
    gap: 20px;
  }

  .ez-platform__card-visual {
    min-height: 280px;
    border-radius: 0 0 20px 20px;
  }

  .ez-platform__card-visual::before {
    /* Switch fade to top on mobile stacked layout */
    inset-inline: 0;
    top: 0;
    left: auto;
    width: auto;
    height: 60px;
    background: linear-gradient(180deg, var(--ez-dark2), transparent);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .ez-platform {
    padding-block-start: 72px;
  }

  .ez-platform__head,
  .ez-platform__track {
    padding-inline: 20px;
  }

  .ez-platform__pin {
    top: calc(150px + var(--i, 0) * 10px);
  }

  .ez-platform__card-text {
    padding: 32px 24px 24px;
    gap: 16px;
  }

  .ez-platform__card-visual {
    min-height: 220px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .ez-platform__track {
    padding-bottom: 140px;
  }

  .ez-platform__card-visual {
    min-height: 180px;
  }

  .ez-platform__img-badge {
    padding: 12px 16px;
    bottom: 16px;
    right: 16px;
  }
}

/* ============================================================
   PP Thank-You Page - Page-Scoped Styles
   ============================================================ */

.pp-ty {
  background: var(--ez-dark);
  padding-top: 130px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.pp-ty__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.pp-ty__glow-top {
  position: absolute;
  top: -120px;
  left: 50%;
  translate: -50% 0;
  width: 800px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(230, 193, 83, 0.13) 0%,
    transparent 68%
  );
  animation: anim-glowPulse 10s ease-in-out infinite;
}

.pp-ty__glow-vip-l {
  position: absolute;
  bottom: 0;
  left: -100px;
  width: 520px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(230, 193, 83, 0.09) 0%,
    transparent 70%
  );
  animation: anim-glowPulse 13s ease-in-out 2s infinite reverse;
}

.pp-ty__glow-vip-r {
  position: absolute;
  bottom: 0;
  right: -80px;
  width: 480px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(230, 193, 83, 0.07) 0%,
    transparent 70%
  );
  animation: anim-glowPulse 15s ease-in-out 5s infinite;
}

.pp-ty__hero {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 48px;
  animation: anim-slideUp 0.6s var(--ease-out) both;
}

.pp-ty__hero-heading {
  font-size: var(--ez-fs-h3);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  background: var(--ez-golden);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}

.pp-ty__hero-sub {
  font-size: var(--ez-fs-lg);
  color: var(--ez-muted);
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.75;
}

.pp-ty__video-wrap {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 30px;
  animation: anim-slideUp 0.65s var(--ease-out) 0.15s both;
}

.pp-ty__video-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ez-golden-border);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    var(--shadow-card),
    0 0 70px rgba(230, 193, 83, 0.14);
}

.pp-ty__video-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.pp-ty__cta-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
  animation: anim-slideUp 0.6s var(--ease-out) 0.3s both;
}

.pp-ty__vip {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin-inline: auto;
  animation: anim-slideUp 0.7s var(--ease-out) 0.1s both;
}

.pp-ty__vip-card {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 52px;
  align-items: center;
  background: var(--ez-mid);
  border: 1px solid var(--ez-golden-border);
  border-radius: var(--radius-xl);
  padding: 52px 56px;
  box-shadow:
    var(--shadow-card),
    0 0 60px rgba(230, 193, 83, 0.08);
  position: relative;
  overflow: hidden;
}

.pp-ty__vip-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(230, 193, 83, 0.07) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.pp-ty__vip-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ez-golden-shine);
  opacity: 0.6;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.pp-ty__vip-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-ty__vip-logo img {
  width: 100%;
  max-width: 230px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  filter: drop-shadow(0 8px 36px rgba(230, 193, 83, 0.25));
}

.pp-ty__vip-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.pp-ty__vip-heading {
  font-size: var(--ez-fs-h5);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ez-white);
  line-height: 1.2;
}

.pp-ty__vip-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0;
  padding: 0;
  align-items: flex-start;
}

.pp-ty__vip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--ez-fs-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ez-white);
}

.pp-ty__vip-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(230, 193, 83, 0.12);
  border: 1px solid var(--ez-golden-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ez-golden-text);
  font-size: 11px;
}

@media (max-width: 767px) {
  .pp-ty {
    padding-top: 110px;
    padding-bottom: 72px;
  }

  .pp-ty__vip-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 24px;
    text-align: center;
  }

  .pp-ty__vip-logo {
    max-width: 160px;
    margin-inline: auto;
  }

  .pp-ty__vip-item {
    justify-content: center;
  }

  .pp-ty__hero-heading {
    font-size: var(--ez-fs-h4);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pp-ty__vip-card {
    grid-template-columns: 200px 1fr;
    gap: 36px;
    padding: 40px 36px;
  }
}
