/* ------------------------------------------------------------------
   1) New promo hero (2 columns) — text left, image right.
      Sits ABOVE the original Proton banner (which is now image-only).
   2) Profile intro section — redesigned: small photo left, intro right.
   ------------------------------------------------------------------ */

/* ============ 1. PM HERO SPLIT ============================= */
.pm-hero-split {
  position: relative;
  overflow: hidden;
  background: #000000;
  padding: clamp(48px, 6vw, 84px) 20px;
}

/* subtle animated background: slow-drifting colour glows */
.pm-hero-split::before {
  content: "";
  position: absolute;
  inset: -35% -22%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(closest-side, rgba(0, 170, 220, 0.34), rgba(0, 170, 220, 0) 70%) 20% 24% / 58% 58% no-repeat,
    radial-gradient(closest-side, rgba(228, 0, 43, 0.26), rgba(228, 0, 43, 0) 70%) 84% 76% / 62% 62% no-repeat,
    radial-gradient(closest-side, rgba(255, 212, 0, 0.12), rgba(255, 212, 0, 0) 70%) 64% 10% / 44% 44% no-repeat;
  filter: blur(12px);
  animation: pm-hero-glow 26s ease-in-out infinite alternate;
}

/* faint Proton lozenge texture, slowly drifting */
.pm-hero-split::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/source-protontopsales/668248de81-black_lozenge.png") repeat;
  opacity: 0.07;
  pointer-events: none;
  animation: pm-hero-drift 60s linear infinite;
}

@keyframes pm-hero-glow {
  from { transform: translate3d(-2%, -1.5%, 0) scale(1); }
  to   { transform: translate3d(2%, 2%, 0) scale(1.09); }
}

@keyframes pm-hero-drift {
  from { background-position: 0 0; }
  to   { background-position: 420px 260px; }
}

.pm-hero-split__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
}

.pm-hero-split__copy {
  color: #fff;
  min-width: 0;
}

.pm-hero-split__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", "Montserrat", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  padding: 8px 17px;
}

.pm-hero-split__title {
  margin: 18px 0 16px;
  font-family: "Plus Jakarta Sans", "Montserrat", sans-serif;
  font-size: clamp(1.95rem, 3.5vw, 3.15rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #fff;
}

.pm-hero-split__mark {
  display: inline-block;
  margin-top: 6px;
  padding: 0.04em 0.3em 0.1em;
  background: #ffd400;
  color: #10243a;
  border-radius: 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  box-shadow: 0 10px 26px -12px rgba(255, 212, 0, 0.75);
}

.pm-hero-split__note {
  margin: 0 0 30px;
  max-width: 48ch;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.pm-hero-split__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
}

.pm-hero-split__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  background: #e4002b;
  color: #ffffff !important;
  font-family: "Plus Jakarta Sans", "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 18px 38px -16px rgba(228, 0, 43, 0.9);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, background 0.35s ease;
}

.pm-hero-split__btn i {
  font-size: 1.15em;
}

@media (hover: hover) and (pointer: fine) {
  .pm-hero-split__btn:hover {
    background: #c20020;
    box-shadow: 0 24px 46px -18px rgba(228, 0, 43, 1);
  }
}

.pm-hero-split__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pm-hero-split__trust li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Plus Jakarta Sans", "Montserrat", sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
}

.pm-hero-split__check {
  width: 0.88em !important;
  height: 0.88em !important;
  fill: #39d98a !important;
  flex: 0 0 auto;
}

.pm-hero-split__media {
  position: relative;
  min-width: 0;
}

.pm-hero-split__media img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin-inline: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 44px 80px -34px rgba(0, 0, 0, 0.75);
}

@media (max-width: 900px) {
  .pm-hero-split__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .pm-hero-split__media {
    order: 2;
  }

  .pm-hero-split__media img {
    max-width: 420px;
  }

  .pm-hero-split__title {
    font-size: clamp(1.7rem, 7.4vw, 2.3rem);
  }

  .pm-hero-split__actions {
    gap: 16px 20px;
  }

  .pm-hero-split__trust {
    gap: 10px 18px;
  }

  .pm-hero-split__trust li {
    font-size: 0.88rem;
  }

  .pm-hero-split__btn {
    padding: 12px 22px;
    font-size: 0.94rem;
    box-shadow: 0 14px 30px -16px rgba(228, 0, 43, 0.85);
  }
}

/* ============ 2. INTRO / PROFILE SECTION (redesign) ======== */
.elementor-8 .elementor-element.elementor-element-1cfaa469 {
  --min-height: auto !important;
  padding: clamp(44px, 6vw, 86px) 20px;
  background: linear-gradient(180deg, #ffffff 0%, #edf6fc 100%) !important;
  position: relative;
  overflow: hidden;
}

.elementor-element-1cfaa469 .e-con-inner {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: clamp(22px, 3.6vw, 54px) !important;
  max-width: 1140px;
  margin-inline: auto;
}

.elementor-element-1cfaa469 .e-con-inner > .e-con {
  width: auto !important;
  min-width: 0 !important;
}

/* left: profile photo card */
.elementor-8 .elementor-element.elementor-element-90ed1d5 {
  flex: 0 0 clamp(228px, 30%, 350px) !important;
  --margin-top: 0px !important;
  --margin-bottom: 0px !important;
  --margin-left: 0px !important;
  --margin-right: 0px !important;
  align-items: center;
  z-index: 2;
}

.elementor-element-90ed1d5 img {
  width: 100% !important;
  max-width: 350px !important;
  height: auto !important;
  border-radius: 28px !important;
  box-shadow: 0 34px 64px -26px rgba(8, 45, 68, 0.55), 0 0 0 7px #ffffff !important;
}

/* right: intro card */
.elementor-8 .elementor-element.elementor-element-4010586 {
  flex: 1 1 auto !important;
  background-color: #ffffff !important;
  border: 1px solid #e1eef6 !important;
  border-radius: 28px !important;
  box-shadow: 0 34px 74px -46px rgba(8, 45, 68, 0.6) !important;
  --padding-top: clamp(26px, 3vw, 44px) !important;
  --padding-bottom: clamp(26px, 3vw, 44px) !important;
  --padding-left: clamp(24px, 3vw, 46px) !important;
  --padding-right: clamp(24px, 3vw, 46px) !important;
  --margin-top: 0px !important;
  --margin-bottom: 0px !important;
  --margin-left: 0px !important;
  --margin-right: 0px !important;
  z-index: 1;
}

.elementor-element-4010586::before {
  background-image: none !important;
  opacity: 0 !important;
}

/* name badge -> clean eyebrow + title */
.elementor-element-e098163 {
  background-color: transparent !important;
  box-shadow: none !important;
  --width: 100% !important;
  --padding-top: 0px;
  --padding-bottom: 0px;
  --padding-left: 0px;
  --padding-right: 0px;
  --gap: 0px 0px;
  --row-gap: 0px;
  --column-gap: 0px;
  align-items: flex-start !important;
}

.elementor-element-761585f .elementor-heading-title {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: #0e7da3 !important;
  line-height: 1.4 !important;
}

.elementor-element-0b93ed3 .elementor-heading-title {
  font-family: "Plus Jakarta Sans", "Montserrat", sans-serif !important;
  font-size: clamp(1.45rem, 2.3vw, 2.02rem) !important;
  font-weight: 800 !important;
  color: #08283a !important;
  line-height: 1.2 !important;
  letter-spacing: -0.01em !important;
  margin-top: 2px;
}

.elementor-element-9dd5dd2 .elementor-heading-title {
  font-size: 0.98rem !important;
  font-weight: 600 !important;
  color: #5b7387 !important;
  line-height: 1.4 !important;
}

.elementor-element-2b0fff0 p {
  color: #3c5568 !important;
  font-size: 1.02rem !important;
  line-height: 1.72 !important;
  margin-bottom: 14px !important;
}

/* trust points -> pill grid */
.elementor-element-b30eb48 > .elementor-widget-container {
  padding: 0 !important;
  margin: 0 0 18px !important;
}

.elementor-element-b30eb48 .elementor-icon-list-items {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.elementor-element-b30eb48 .elementor-icon-list-item {
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px;
  padding: 9px 13px;
  background: #f2f9fd;
  border: 1px solid #dcecf5;
  border-radius: 12px;
}

.elementor-element-b30eb48 .elementor-icon-list-item > .elementor-icon-list-text {
  font-family: "Plus Jakarta Sans", "Montserrat", sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  color: #1d455b !important;
  padding-inline-start: 0 !important;
}

.elementor-element-b30eb48 .elementor-icon-list-icon i,
.elementor-element-b30eb48 .elementor-icon-list-icon svg {
  color: #0e9fd0 !important;
  fill: #0e9fd0 !important;
}

.elementor-element-b30eb48 .elementor-icon-list-item:nth-child(5) {
  grid-column: 1 / -1;
}

/* CTA row */
.elementor-element-b276f79 {
  flex-direction: row !important;
  flex-wrap: wrap !important;
  --gap: 12px 12px;
}

.elementor-element-9b76124 .elementor-button,
.elementor-element-ece0d98 .elementor-button {
  border-radius: 999px !important;
  padding: 13px 24px !important;
  font-weight: 700 !important;
}

@media (max-width: 921px) {
  .elementor-element-1cfaa469 .e-con-inner {
    flex-direction: column !important;
    gap: 24px !important;
  }

  .elementor-element-90ed1d5 {
    flex: 0 0 auto !important;
    order: 1;
    width: 100% !important;
  }

  .elementor-element-90ed1d5 img {
    max-width: 250px !important;
    border-radius: 24px !important;
  }

  .elementor-element-4010586 {
    order: 2;
    width: 100% !important;
    text-align: left !important;
  }

  .elementor-element-4010586 .elementor-heading-title,
  .elementor-element-4010586 p,
  .elementor-element-4010586 .elementor-icon-list-text,
  .elementor-element-4010586 .elementor-icon-list-item {
    text-align: left !important;
  }

  .elementor-element-b30eb48 .elementor-icon-list-items {
    grid-template-columns: 1fr;
  }

  .elementor-element-b30eb48 .elementor-icon-list-item:nth-child(5) {
    grid-column: auto;
  }
}

/* ============ 3. BANNER — current Proton offer artwork =========
   Artwork swapped to the live proton.com/offers/current-promotion
   campaign banner (desktop 1920x650 + mobile 750x750 square).
   ------------------------------------------------------------- */
.elementor-8 .elementor-element.elementor-element-8ba1bc5 {
  --min-height: clamp(340px, 33.9vw, 650px) !important;
}

.elementor-8 .elementor-element.elementor-element-8ba1bc5:not(.elementor-motion-effects-element-type-background) {
  background-image: image-set(
    url("/assets/promo/proton-offerbanner-desktop.webp?v=20260913") type("image/webp"),
    url("/assets/promo/proton-offerbanner-desktop-1920x650.jpg?v=20260913") type("image/jpeg")
  ) !important;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

@media (max-width: 767px) {
  .elementor-8 .elementor-element.elementor-element-8ba1bc5 {
    --min-height: 100vw !important;
  }

  .elementor-8 .elementor-element.elementor-element-8ba1bc5:not(.elementor-motion-effects-element-type-background) {
    background-image: image-set(
      url("/assets/promo/proton-offerbanner-mobile.webp?v=20260913") type("image/webp"),
      url("/assets/promo/proton-offerbanner-mobile-750x750.jpg?v=20260913") type("image/jpeg")
    ) !important;
    background-position: center center !important;
    background-size: cover !important;
  }
}

/* hero CTA icon (inline SVG, not the icon font) */
.pm-hero-split__icon {
  width: 1.15em !important;
  height: 1.15em !important;
  fill: currentColor !important;
  flex: 0 0 auto;
}
