/* ============================================================
   Campaign Microsite — Centered cinematic scroll hero
   Copy top → phone rises from bottom → cards orbit in
   ============================================================ */

.service-page--campaign {
  background: #071a33;
  color: #ffffff;
  overflow-x: clip;
}

.campaign-hero {
  --ch-navy: #071a33;
  --ch-navy-mid: #0b1f3a;
  --ch-gold: #f2a11b;
  --ch-white: #ffffff;
  --ch-muted: rgba(255, 255, 255, 0.7);
  --ch-ease: cubic-bezier(0.22, 1, 0.36, 1);

  position: relative;
  background: var(--ch-navy);
  color: var(--ch-white);
  overflow: visible;
}

.campaign-hero__pin {
  position: relative;
}

.campaign-hero__sticky {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.campaign-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 45% at 50% 70%, rgba(11, 31, 58, 0.9), transparent 72%),
    var(--ch-navy);
}

.campaign-hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 55%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 55%, #000 30%, transparent 80%);
}

.campaign-hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 80% at 50% 50%, transparent 45%, rgba(7, 26, 51, 0.5) 100%);
}

.campaign-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 88px 16px 0;
  box-sizing: border-box;
}

/* ---- Centered copy (no paragraph) ---- */

.campaign-hero__content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  flex: 0 0 auto;
}

.campaign-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 14px;
  font-family: var(--font-display, "Bricolage Grotesque", sans-serif);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(203, 213, 225, 0.88);
}

.campaign-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ch-gold);
  box-shadow: 0 0 0 4px rgba(242, 161, 27, 0.18);
  flex-shrink: 0;
}

.campaign-hero__title {
  margin: 0 0 18px;
  font-family: var(--font-display, "Bricolage Grotesque", sans-serif);
  font-weight: 800;
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--ch-white);
}


.campaign-hero__title-line--accent {
  color: var(--ch-gold);
}

.campaign-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.campaign-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s var(--ch-ease),
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.campaign-hero__btn--primary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ch-white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.campaign-hero__btn--primary:hover,
.campaign-hero__btn--primary:focus-visible {
  transform: translateY(-2px);
  background: rgba(242, 161, 27, 0.14);
  border-color: rgba(242, 161, 27, 0.75);
  box-shadow: 0 10px 28px rgba(242, 161, 27, 0.16);
  outline: none;
}

.campaign-hero__btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
}

.campaign-hero__btn--ghost:hover,
.campaign-hero__btn--ghost:focus-visible {
  color: var(--ch-white);
  border-color: rgba(255, 255, 255, 0.5);
  outline: none;
}

.campaign-hero__btn-arrow {
  display: inline-block;
  transition: transform 0.25s var(--ch-ease);
}

.campaign-hero__btn--primary:hover .campaign-hero__btn-arrow {
  transform: translateX(3px);
}

/* ---- Visual stage: phone bottom-center + orbiting cards ---- */

.campaign-hero__visual {
  position: relative;
  z-index: 2;
  width: min(100%, 920px);
  flex: 1 1 auto;
  min-height: clamp(380px, 58vh, 520px);
}

.campaign-hero__glow {
  position: absolute;
  left: 50%;
  bottom: 12%;
  width: min(70%, 480px);
  height: min(70%, 480px);
  transform: translate(-50%, 10%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(242, 161, 27, 0.32) 0%,
    rgba(242, 161, 27, 0.14) 32%,
    rgba(242, 161, 27, 0.04) 55%,
    transparent 72%
  );
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

/* Larger phone — CSS position (no JS transform required) */
.campaign-hero__phone-anchor {
  position: absolute;
  left: 50%;
  bottom: -22%;
  z-index: 5;
  width: min(42%, 300px);
  transform: translateX(-50%);
}

.campaign-hero__phone {
  position: relative;
  width: 100%;
  opacity: 1;
  transform: translate(12px, -5px);
}

.campaign-hero__phone-img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.48));
}

.campaign-hero__card {
  position: absolute;
  z-index: 4;
  margin: 0;
  width: clamp(88px, 12%, 128px);
  border-radius: 12px;
  will-change: transform, opacity;
}

.campaign-hero__card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

/* Smaller orbit cards around the phone */
.campaign-hero__card--branded {
    top: 16%;
    left: 26%;
    width: 100%;
    max-width: 100px;
}

.campaign-hero__card--qr {
    top: 42%;
    left: 11%;
    width: 100%;
    max-width: 90px;
}

.campaign-hero__card--lead {
    top: 11%;
    right: 25%;
    width: 100%;
    max-width: 100px;
}

.campaign-hero__card--lang {
    top: 52%;
    right: 13%;
    width: 100%;
    max-width: 100px;
}

.campaign-hero__card--photo {
    top: -2%;
    right: 13%;
    width: 100%;
    max-width: 100px;
}

.campaign-hero__card--contest {
    top: -6%;
    left: 14%;
    width: 100%;
    max-width: 100px;
}

.campaign-hero__card--analytics {
    top: 53%;
    left: 23%;
    width: 100%;
    max-width: 100px;
}

.campaign-hero.is-static .campaign-hero__glow {
  opacity: 1;
}

.campaign-hero.is-static .campaign-hero__card,
.campaign-hero.is-static .campaign-hero__eyebrow,
.campaign-hero.is-static .campaign-hero__title,
.campaign-hero.is-static .campaign-hero__actions {
  opacity: 1 !important;
  visibility: visible !important;
}

.campaign-hero.is-static .campaign-hero__phone {
  opacity: 1 !important;
  visibility: visible !important;
}

@media (prefers-reduced-motion: reduce) {
  .campaign-hero__card,
  .campaign-hero__glow,
  .campaign-hero__eyebrow,
  .campaign-hero__title,
  .campaign-hero__actions {
    transition: none !important;
  }
}
