@charset "utf-8";
/*
 * Copyright Ⓒ 2017-present Ⓒ Cutt.ly by Web Room Studio Patryk Ruminski
 * https://cutt.ly/terms
 * ctatemplate.css — Action Pages 4.0 — World Class Marketing UI
 */

/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  --blur-card: blur(32px);
  --blur-btn:  blur(14px);

  /* CTA gradient — vivid on dark */
  --cta-grad:      linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --cta-grad-h:    linear-gradient(135deg, #7c94f7 0%, #8f5fc4 100%);
  /* CTA gradient — deeper on light */
  --cta-grad-l:    linear-gradient(135deg, #5a67d8 0%, #6b3fa0 100%);
  --cta-grad-lh:   linear-gradient(135deg, #6875e8 0%, #7c4db5 100%);

  --r-xs:   8px;
  --r-sm:   12px;
  --r-md:   18px;
  --r-lg:   26px;
  --r-card: 28px;
  --r-full: 9999px;

  --ease:   cubic-bezier(0.4,0,0.2,1);
  --spring: cubic-bezier(0.34,1.56,0.64,1);
  --snap:   cubic-bezier(0,0.55,0.45,1);

  --sh-card: 0 32px 80px rgba(0,0,0,0.55), 0 2px 0 rgba(255,255,255,0.07) inset, 0 0 0 1px rgba(255,255,255,0.06);
  --sh-btn:  0 2px 12px rgba(0,0,0,0.28), 0 0 0 1px rgba(255,255,255,0.07) inset;
  --sh-bth:  0 8px 36px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.16) inset;
  --sh-cd:   0 4px 20px rgba(0,0,0,0.38), 0 1px 0 rgba(255,255,255,0.07) inset;
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

/* ═══════════════════════════════════════════
   BODY + OVERLAYS
═══════════════════════════════════════════ */
body.cta_template {
  margin: 0; padding: 0;
  min-height: 100vh;
  background-color: #0f0f1a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Dark overlay — fades on light bg */
body.cta_template::before {
  content: ''; position: fixed; inset: 0; z-index: 0;
  background: rgba(4,4,10,0.62);
  pointer-events: none;
  transition: background 0.55s ease;
}
/* Vignette */
body.cta_template::after {
  content: ''; position: fixed; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 0%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
  transition: opacity 0.55s ease;
}

/* LIGHT BG — JS adds .dark_txt when brightness > 175 */
body.cta_template.dark_txt::before { background: rgba(255,255,255,0.06); }
body.cta_template.dark_txt::after  { opacity: 0.12; }
/* MID-TONE — JS adds .grey_txt when brightness 95-175 */
body.cta_template.grey_txt::before { background: rgba(0,0,0,0.20); }
body.cta_template.grey_txt::after  { opacity: 0.40; }

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
main#content {
  position: relative; z-index: 1;
  padding-top: 0 !important;
  min-height: 100vh;
}
.all_w_h {
  position: relative; width: 100%; min-height: 100vh;
  background-attachment: inherit !important;
  display: flex; align-items: center; justify-content: center;
  padding: 48px 20px;
}
.all_w_h_2 { width: 100%; min-height: auto; background-attachment: inherit !important; }
.all_w_h .container, .all_w_h_2 .container {
  max-width: 520px !important; width: 100% !important;
  padding: 0 !important; margin: 0 auto !important;
  background: none !important; border: none !important;
  box-shadow: none !important; border-radius: 0 !important;
  position: relative; z-index: 2;
}

/* ═══════════════════════════════════════════
   THE STAGE CARD
═══════════════════════════════════════════ */
.col-12.flex_cta {
  background: rgba(10,10,18,0.52);
  backdrop-filter: var(--blur-card); -webkit-backdrop-filter: var(--blur-card);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-card);
  box-shadow: var(--sh-card);
  padding: 36px 32px 40px;
  position: relative; overflow: hidden;
  transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}
/* Top glow line */
.col-12.flex_cta::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  pointer-events: none; transition: background 0.5s ease;
}

/* LIGHT bg card — frosted white */
.dark_txt .col-12.flex_cta {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(40px) saturate(1.8); -webkit-backdrop-filter: blur(40px) saturate(1.8);
  border-color: rgba(255,255,255,0.90);
  box-shadow: 0 32px 80px rgba(0,0,0,0.18), 0 2px 0 rgba(255,255,255,0.95) inset, 0 0 0 1px rgba(255,255,255,0.6), 0 1px 40px rgba(0,0,0,0.08);
}
.dark_txt .col-12.flex_cta::before { background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent); }
/* MID-TONE card */
.grey_txt .col-12.flex_cta {
  background: rgba(255,255,255,0.40);
  backdrop-filter: blur(32px) saturate(1.2); -webkit-backdrop-filter: blur(32px) saturate(1.2);
  border-color: rgba(255,255,255,0.48);
  box-shadow: 0 32px 80px rgba(0,0,0,0.20), 0 2px 0 rgba(255,255,255,0.65) inset, 0 0 0 1px rgba(255,255,255,0.28);
}
.grey_txt .col-12.flex_cta::before { background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), transparent); }

/* ═══════════════════════════════════════════
   SHARE BUTTON — inside card, top right
═══════════════════════════════════════════ */
.share-button {
  position: fixed;
  top: 20px;
  right: 20px; /* default: center + left layouts */
  z-index: 1000;
  width: 40px; height: 40px;
  border-radius: var(--r-full);
  background: rgba(20,20,30,0.55);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 2px 12px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: transform 0.28s var(--spring), background 0.22s, box-shadow 0.22s;
}
.share-button svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.88); display: block; }
.share-button:hover {
  transform: scale(1.1);
  background: rgba(30,30,50,0.75);
  box-shadow: 0 6px 24px rgba(0,0,0,0.40);
}

/* head_right: share moves to LEFT side */
.head_right .share-button,
body.cta_template.head_right .share-button {
  right: auto;
  left: 20px;
}

/* Light bg: still dark pill for visibility */
.dark_txt .share-button, .grey_txt .share-button {
  background: rgba(20,20,30,0.55);
  border-color: rgba(255,255,255,0.18);
}
.dark_txt .share-button svg, .grey_txt .share-button svg { fill: rgba(255,255,255,0.88); }

/* ═══════════════════════════════════════════
   FLEX_CTA
═══════════════════════════════════════════ */
.flex_cta { display: flex; flex-direction: column; align-items: center; gap: 0; padding: 0; }

/* ═══════════════════════════════════════════
   AVATAR
═══════════════════════════════════════════ */
.flex_cta i:not(.c_check_label span i,.ico_link_cta) {
  width: 80px; height: 80px; border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  font-style: normal; font-size: 1.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: #fff;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.22);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.06), 0 8px 32px rgba(0,0,0,0.5);
  margin: 0 auto 22px; position: relative; overflow: hidden; flex-shrink: 0;
  animation: avatar-pulse 5s ease-in-out infinite;
}
.flex_cta i:not(.c_check_label span i,.ico_link_cta)::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--r-full);
  background: linear-gradient(140deg, rgba(255,255,255,0.22) 0%, transparent 55%);
  pointer-events: none;
}
.flex_cta i img { width: 80px; height: 80px; border-radius: var(--r-full); object-fit: cover; display: block; }
.dark_txt .flex_cta i:not(.c_check_label span i,.ico_link_cta),
.grey_txt  .flex_cta i:not(.c_check_label span i,.ico_link_cta) {
  color: rgba(10,10,20,0.70); background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.12);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.12); animation: none;
}

/* ═══════════════════════════════════════════
   TITLE / DESC
═══════════════════════════════════════════ */
.cta_head { width: 100%; display: flex; flex-direction: column; }
.flex_f_ver_title { display: flex; justify-content: center; align-items: center; }

.flex_cta h1, .flex_cta h2 {
  width: 100%; font-size: clamp(1.5rem,4vw,2rem);
  font-weight: 700; line-height: 1.18; letter-spacing: -0.03em;
  text-align: center; color: #fff !important;
  margin: 0 !important; padding: 0 0 2px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.flex_cta p {
  width: 100%; font-size: 0.9375rem; font-weight: 400; line-height: 1.68;
  text-align: center; color: rgba(255,255,255,0.60) !important;
  margin: 0 !important; padding: 10px 0 0;
}
/* Decorative separator */
.cta_head::after {
  content: ''; display: block; width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.30), transparent);
  margin: 20px auto 22px;
}
.dark_txt .cta_head::after, .grey_txt .cta_head::after {
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.18), transparent);
}

/* ═══════════════════════════════════════════
   TEXT COLORS
═══════════════════════════════════════════ */
.cta_template a:not(.panel-open):not(.panel-close),
.cta_template a:hover:not(.panel-open):not(.panel-close),
.cta_template h1:not(.panel-open):not(.panel-close),
.cta_template h2:not(.panel-open):not(.panel-close),
.cta_template p:not(.panel-open):not(.panel-close) { color: #fff !important; }
.cta_template .cc_div a.cc-link, .cta_template .cc_div a.cc-link:hover,
.cta_template #c-txt a, .cta_template #c-txt a:hover { color: #000 !important; }

.light_txt .cta_head .head_desc h1, .light_txt .cta_head .head_desc h2,
.light_txt .flex_cta h1, .light_txt .flex_cta h2 { color: #fff !important; }
.light_txt .cta_head .head_desc p, .light_txt .flex_cta p { color: rgba(255,255,255,0.65) !important; }

.dark_txt .cta_head .head_desc h1, .dark_txt .cta_head .head_desc h2,
.dark_txt .flex_cta h1, .dark_txt .flex_cta h2 { color: rgba(8,8,16,0.92) !important; text-shadow: none; }
.dark_txt .cta_head .head_desc p, .dark_txt .flex_cta p { color: rgba(20,20,32,0.58) !important; text-shadow: none; }

.grey_txt .cta_head .head_desc h1, .grey_txt .cta_head .head_desc h2,
.grey_txt .flex_cta h1, .grey_txt .flex_cta h2 { color: rgba(35,35,45,0.90) !important; text-shadow: none; }
.grey_txt .cta_head .head_desc p, .grey_txt .flex_cta p { color: rgba(60,60,72,0.66) !important; text-shadow: none; }

/* ═══════════════════════════════════════════
   CTA BUTTON WRAPPER
═══════════════════════════════════════════ */
.cta_button {
  width: 100%; display: flex; flex-direction: column;
  align-items: stretch; gap: 10px; margin: 4px 0 0;
}

/* ═══════════════════════════════════════════
   ALL LINKS — BASE
═══════════════════════════════════════════ */
.flex_cta a:not(.panel-open,.panel-close) {
  position: relative; display: flex; align-items: center;
  width: 100%; padding: 14px 20px; margin: 0; overflow: hidden;
  text-decoration: none; color: #fff !important;
  font-size: 0.9375rem; font-weight: 500; letter-spacing: 0.01em;
  white-space: normal; overflow-wrap: break-word; word-break: break-word; hyphens: auto;
  background: rgba(0,0,0,0.38);
  backdrop-filter: var(--blur-btn); -webkit-backdrop-filter: var(--blur-btn);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--sh-btn);
  transform: translateY(0) scale(1);
  transition: transform 0.28s var(--spring), box-shadow 0.22s var(--ease),
              background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}
.flex_cta a:not(.panel-open,.panel-close)::before {
  content: ''; position: absolute; top: 0; left: -70%; width: 44%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transition: left 0.55s var(--ease); pointer-events: none;
}
.flex_cta a:not(.panel-open,.panel-close):hover { transform: translateY(-2px) scale(1.012); background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); box-shadow: var(--sh-bth); }
.flex_cta a:not(.panel-open,.panel-close):hover::before { left: 120%; }
.flex_cta a:not(.panel-open,.panel-close):active { transform: translateY(0) scale(0.988); transition-duration: 0.1s; }
.flex_cta a strong { flex: 1; padding-right: 12px; font-weight: 500; }

.flex_cta a .ico_link_cta { width: 22px; height: 22px; background-size: 22px; background-position: 0 -22px; background-repeat: no-repeat; background-color: transparent; flex-shrink: 0; }
.fill_white .flex_cta a .ico_link_cta          { background-position: 0 -66px; }
.fill_outline_dark .flex_cta a .ico_link_cta   { background-position: 0 -44px; }
.fill_outline_white .flex_cta a .ico_link_cta  { background-position: 0 -22px; }
.fill_outline_grey .flex_cta a .ico_link_cta   { background-position: 0 -66px; }

/* ═══════════════════════════════════════════
   SHAPES
═══════════════════════════════════════════ */
.shape_rounded .flex_cta a:not(.rounded-50):not(.panel-open):not(.panel-close) { border-radius: var(--r-sm) !important; }
.shape_square  .flex_cta a:not(.rounded-50):not(.panel-open):not(.panel-close) { border-radius: 0 !important; }
.shape_oval    .flex_cta a:not(.rounded-50):not(.panel-open):not(.panel-close) { border-radius: var(--r-full) !important; }

/* ═══════════════════════════════════════════
   FILL VARIANTS — secondary buttons only
   (primary always gets gradient hero treatment)
═══════════════════════════════════════════ */
.fill_dark_transparent .flex_cta a:not(.rounded-50):not(.panel-open):not(.panel-close) {
  color: #fff !important; background: rgba(0,0,0,0.42); border: 1px solid rgba(255,255,255,0.11); }
.fill_white .flex_cta a:not(.rounded-50):not(.panel-open):not(.panel-close) {
  color: rgba(10,10,20,0.85) !important; background: rgba(255,255,255,0.92); border: 1px solid rgba(255,255,255,0.7); backdrop-filter: none; -webkit-backdrop-filter: none; }
.fill_white .flex_cta a:not(.rounded-50):not(.panel-open):not(.panel-close):hover { background: #fff; color: rgba(10,10,20,0.9) !important; }
.fill_outline_dark  .flex_cta a:not(.rounded-50):not(.panel-open):not(.panel-close) { color: rgba(10,10,20,0.88) !important; background: transparent; border: 1.5px solid rgba(0,0,0,0.72); box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
.fill_outline_white .flex_cta a:not(.rounded-50):not(.panel-open):not(.panel-close) { color: #fff !important; background: transparent; border: 1.5px solid rgba(255,255,255,0.72); box-shadow: none; }
.fill_outline_grey  .flex_cta a:not(.rounded-50):not(.panel-open):not(.panel-close) { color: rgba(100,100,110,0.9) !important; background: transparent; border: 1.5px solid rgba(120,120,130,0.62); box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }

/* ═══════════════════════════════════════════
   LIGHT BG — secondary link override
═══════════════════════════════════════════ */
.dark_txt .flex_cta a:not(.panel-open,.panel-close),
.grey_txt  .flex_cta a:not(.panel-open,.panel-close) {
  background: rgba(0,0,0,0.07); border-color: rgba(0,0,0,0.12); color: rgba(10,10,20,0.78) !important;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08); backdrop-filter: none; -webkit-backdrop-filter: none;
}
.dark_txt .flex_cta a:not(.panel-open,.panel-close):hover,
.grey_txt  .flex_cta a:not(.panel-open,.panel-close):hover {
  background: rgba(0,0,0,0.13) !important; border-color: rgba(0,0,0,0.20) !important;
  color: rgba(10,10,20,0.94) !important;
}

/* ═══════════════════════════════════════════
   ★ PRIMARY CTA BUTTON — HERO MARKETING TREATMENT ★
   Always gradient, always glowing, always pulsing.
   Overrides ALL fill variants. Non-negotiable.
═══════════════════════════════════════════ */
.cta_button > a:first-child,
.cta_button > a:only-child {
  background: var(--cta-grad) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  text-align: center !important;
  justify-content: center !important;
  padding: 17px 32px !important;
  border-radius: var(--r-sm) !important;
  box-shadow: 0 0 0 0 rgba(102,126,234,0.55), 0 10px 36px rgba(102,126,234,0.50), 0 2px 8px rgba(0,0,0,0.2) !important;
  animation: cta-glow 2.6s ease-in-out infinite, slide-up 0.55s cubic-bezier(0.34,1.56,0.64,1) both !important;
  animation-delay: 0s, 0.47s !important;
  backdrop-filter: none !important; -webkit-backdrop-filter: none !important;
  position: relative !important; overflow: hidden !important;
}
/* Top shine */
.cta_button > a:first-child::after,
.cta_button > a:only-child::after {
  content: '' !important; position: absolute !important;
  top: 0 !important; left: 0 !important; right: 0 !important; height: 50% !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.16) 0%, transparent 100%) !important;
  pointer-events: none !important; border-radius: var(--r-sm) var(--r-sm) 0 0 !important;
}
.cta_button > a:first-child:hover,
.cta_button > a:only-child:hover {
  /* Keep same gradient — only lift + brighten via shine overlay */
  background: var(--cta-grad) !important;
  transform: translateY(-3px) scale(1.016) !important;
  box-shadow: 0 0 0 0 rgba(102,126,234,0), 0 18px 52px rgba(0,0,0,0.35), 0 4px 16px rgba(0,0,0,0.28) !important;
  animation-play-state: paused !important; color: #fff !important;
  filter: brightness(1.12) !important;
}
.cta_button > a:first-child:active,
.cta_button > a:only-child:active { transform: translateY(0) scale(0.987) !important; transition-duration: 0.1s !important; }

/* PRIMARY on light bg — deeper to contrast white card */
.dark_txt .cta_button > a:first-child,
.dark_txt .cta_button > a:only-child,
.grey_txt  .cta_button > a:first-child,
.grey_txt  .cta_button > a:only-child {
  background: var(--cta-grad-l) !important;
  box-shadow: 0 0 0 0 rgba(90,103,216,0.45), 0 10px 36px rgba(90,103,216,0.42), 0 2px 8px rgba(0,0,0,0.14) !important;
  color: #fff !important;
}
.dark_txt .cta_button > a:first-child:hover,
.dark_txt .cta_button > a:only-child:hover,
.grey_txt  .cta_button > a:first-child:hover,
.grey_txt  .cta_button > a:only-child:hover {
  background: var(--cta-grad-l) !important;
  filter: brightness(1.12) !important;
  box-shadow: 0 0 0 0 rgba(0,0,0,0), 0 18px 52px rgba(0,0,0,0.20), 0 4px 16px rgba(0,0,0,0.14) !important;
  animation-play-state: paused !important;
}

/* ═══════════════════════════════════════════
   HEAD ALIGNMENT
═══════════════════════════════════════════ */
.head_center .cta_head { flex-direction: column; align-items: center; text-align: center; }
/* ══════════════════════════════════════════════════════════
   HEAD LEFT — HTML structure:
   .cta_head
     <i>avatar</i>
     .head_desc
       .flex_f_ver_title → <h2>
       <p>

   Visual goal: [avatar][title] on one row, [desc] full width below
   Solution: .cta_head = CSS grid 2 cols, avatar row-span 1, desc spans both
   ══════════════════════════════════════════════════════════ */
.head_left .cta_head {
  display: grid !important;
  grid-template-columns: 56px 1fr !important;
  grid-template-rows: auto auto !important;
  column-gap: 14px !important;
  row-gap: 0 !important;
  align-items: start !important;
  margin: 0 0 24px !important;
  width: 100% !important;
  text-align: left !important;
}

/* Avatar: row 1, col 1 */
.head_left .cta_head > i {
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 56px !important; height: 56px !important;
  font-size: 1.2rem !important;
  margin: 0 !important; flex-shrink: 0 !important;
  animation: none !important;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08), 0 4px 20px rgba(0,0,0,0.28) !important;
  border-width: 1.5px !important;
  align-self: center !important;
}

/* head_desc: row 1, col 2 — title sits here */
.head_left .cta_head .head_desc {
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: flex !important; flex-direction: column !important;
  padding: 0 !important; justify-content: center !important;
}
.head_left .cta_head .head_desc h1,
.head_left .cta_head .head_desc h2 {
  text-align: left !important;
  font-size: clamp(1.15rem, 3vw, 1.6rem) !important;
  padding: 0 !important; margin: 0 !important;
  line-height: 1.2 !important;
}
/* Description: row 2, spans both columns */
.head_left .cta_head .head_desc p {
  grid-column: 1 / -1 !important;
  text-align: left !important;
  padding: 10px 0 0 !important;
  display: block !important;
}
/* Move p outside head_desc visually — make it span full row */
.head_left .cta_head .head_desc {
  display: contents !important; /* flatten into grid */
}
.head_left .cta_head .flex_f_ver_title {
  grid-column: 2 !important; grid-row: 1 !important;
  display: flex !important; align-items: center !important;
  justify-content: flex-start !important;
}
.head_left .cta_head .head_desc p {
  grid-column: 1 / -1 !important; grid-row: 2 !important;
}

/* Separator under the whole head */
.head_left .cta_head::after {
  grid-column: 1 / -1 !important; grid-row: 3 !important;
  width: 36px; height: 1px; content: '' !important; display: block !important;
  margin: 16px 0 16px 0 !important;
  background: linear-gradient(90deg, rgba(255,255,255,0.30), transparent) !important;
}
.dark_txt .head_left .cta_head::after,
.grey_txt  .head_left .cta_head::after {
  background: linear-gradient(90deg, rgba(0,0,0,0.18), transparent) !important;
}

/* ══════════════════════════════════════════════════════════
   HEAD RIGHT — mirror: avatar col 2, title col 1
   ══════════════════════════════════════════════════════════ */
.head_right .cta_head {
  display: grid !important;
  grid-template-columns: 1fr 56px !important;
  grid-template-rows: auto auto !important;
  column-gap: 14px !important;
  row-gap: 0 !important;
  align-items: start !important;
  margin: 0 0 24px !important;
  width: 100% !important;
  text-align: right !important;
}

/* Avatar: row 1, col 2 */
.head_right .cta_head > i {
  grid-column: 2 !important; grid-row: 1 !important;
  width: 56px !important; height: 56px !important;
  font-size: 1.2rem !important;
  margin: 0 !important; flex-shrink: 0 !important;
  animation: none !important;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08), 0 4px 20px rgba(0,0,0,0.28) !important;
  border-width: 1.5px !important;
  align-self: center !important;
}

/* head_desc: row 1, col 1 */
.head_right .cta_head .head_desc {
  grid-column: 1 !important; grid-row: 1 !important;
  display: contents !important;
}
.head_right .cta_head .flex_f_ver_title {
  grid-column: 1 !important; grid-row: 1 !important;
  display: flex !important; align-items: center !important;
  justify-content: flex-end !important;
}
.head_right .cta_head .head_desc h1,
.head_right .cta_head .head_desc h2 {
  text-align: right !important;
  font-size: clamp(1.15rem, 3vw, 1.6rem) !important;
  padding: 0 !important; margin: 0 !important;
  line-height: 1.2 !important;
}
.head_right .cta_head .head_desc p {
  grid-column: 1 / -1 !important; grid-row: 2 !important;
  text-align: right !important;
  padding: 10px 0 0 !important;
}

/* Separator */
.head_right .cta_head::after {
  grid-column: 1 / -1 !important; grid-row: 3 !important;
  width: 36px; height: 1px; content: '' !important; display: block !important;
  margin: 16px auto 16px auto !important;
  margin-right: 0 !important;
  background: linear-gradient(270deg, rgba(255,255,255,0.30), transparent) !important;
}
.dark_txt .head_right .cta_head::after,
.grey_txt  .head_right .cta_head::after {
  background: linear-gradient(270deg, rgba(0,0,0,0.18), transparent) !important;
}

/* Light bg rings */
.dark_txt .head_left  .cta_head > i,
.dark_txt .head_right .cta_head > i,
.grey_txt  .head_left  .cta_head > i,
.grey_txt  .head_right .cta_head > i {
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.12) !important;
}

/* ═══════════════════════════════════════════
   FONTS
═══════════════════════════════════════════ */
.font_Ubuntu       { font-family: 'Ubuntu',       sans-serif; }
.font_Open_Sans    { font-family: 'Open Sans',     sans-serif; }
.font_FuzzyBubbles { font-family: 'Fuzzy Bubbles', cursive;    }
.font_Signika      { font-family: 'Signika',        sans-serif; }
.font_Inconsolata  { font-family: 'Inconsolata',   monospace;  }

/* ═══════════════════════════════════════════
   SOCIAL ICON LINKS
═══════════════════════════════════════════ */
.flex_cta .only_i_links { display:flex; justify-content:center; flex-wrap:wrap; gap:10px; margin:20px 0 0; width:100%; }
.flex_cta .only_i_links a:not(.panel-open,.panel-close) { width:50px !important; height:50px !important; padding:0 !important; margin:0 !important; border-radius:var(--r-full) !important; background:rgba(255,255,255,0.88); border:1px solid rgba(255,255,255,0.4); box-shadow:0 4px 14px rgba(0,0,0,0.22); backdrop-filter:none; display:flex; justify-content:center; align-items:center; }
.flex_cta .only_i_links a:not(.panel-open,.panel-close):hover { transform:translateY(-3px) scale(1.12) !important; box-shadow:0 10px 28px rgba(0,0,0,0.3) !important; }
.only_i_links a .ico_link_cta { width:26px; height:26px; background-size:26px; background-position:0 0 !important; }
.flex_cta a.rounded-50 { padding: 13px !important; }

/* ═══════════════════════════════════════════
   VIDEO
═══════════════════════════════════════════ */
video { width:100% !important; height:auto !important; border-radius:var(--r-md); }
.i_video { position:relative; padding-bottom:56.25%; height:0; border-radius:var(--r-md); overflow:hidden; width:100%; margin:0 0 28px; box-shadow:0 6px 24px rgba(0,0,0,0.22); border:1px solid rgba(255,255,255,0.10); }
.i_video iframe { position:absolute; inset:0; width:100%; height:100%; }

/* ═══════════════════════════════════════════
   COUNTDOWN
═══════════════════════════════════════════ */
.cta_countdown {
  display:flex; align-items:flex-end; justify-content:center;
  gap:8px; width:100%; margin:4px 0 28px;
  font-variant-numeric: tabular-nums;
}
.ap-countdown-block { display:flex; flex-direction:column; align-items:center; flex:1; min-width:0; }
.ap-countdown-num {
  width:100%; aspect-ratio:1/1.05; max-height:76px;
  border-radius:var(--r-sm);
  background:rgba(0,0,0,0.38);
  backdrop-filter:blur(20px) saturate(1.4); -webkit-backdrop-filter:blur(20px) saturate(1.4);
  /* accent-tinted border from JS --avatar-ring */
  border:1px solid var(--avatar-ring, rgba(255,255,255,0.18));
  box-shadow:
    var(--sh-cd),
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 8px 24px var(--avatar-ring, rgba(0,0,0,0.25));
  display:flex; align-items:center; justify-content:center;
  font-size:clamp(1.4rem,4vw,2rem); font-weight:700; color:#fff; letter-spacing:-0.04em;
  position:relative; overflow:hidden;
  transition:border-color 0.4s, box-shadow 0.4s;
}
/* Top shine */
.ap-countdown-num::before {
  content:''; position:absolute; top:0; left:0; right:0; height:45%;
  background:linear-gradient(180deg,rgba(255,255,255,0.14) 0%,transparent 100%);
  pointer-events:none;
}
/* Bottom accent line — tinted with --avatar-ring */
.ap-countdown-num::after  {
  content:''; position:absolute; bottom:0; left:10%; right:10%; height:2px;
  background:linear-gradient(90deg,transparent,var(--avatar-ring,rgba(255,255,255,0.35)),transparent);
  border-radius:var(--r-full);
}
.ap-countdown-num.tick { animation:cd-tick 0.26s var(--snap) both; }
.ap-countdown-label {
  margin-top:7px; font-size:0.55rem; font-weight:700;
  letter-spacing:0.20em; text-transform:uppercase;
  color:rgba(255,255,255,0.40);
}
.ap-countdown-sep {
  font-size:clamp(1.2rem,3.5vw,1.75rem); font-weight:300;
  color:var(--avatar-ring, rgba(255,255,255,0.30));
  padding-bottom:20px; line-height:1; user-select:none; flex-shrink:0;
  text-shadow:0 0 12px var(--avatar-ring, rgba(255,255,255,0.20));
}
.ap-countdown-done  { width:100%; padding:16px 20px; border-radius:var(--r-sm); background:rgba(0,0,0,0.28); border:1px solid rgba(255,255,255,0.10); text-align:center; font-size:0.72rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:rgba(255,255,255,0.40); }
.cta_countdown.expired { opacity:0.38; filter:grayscale(0.9); }

/* Light bg countdown */
.dark_txt .ap-countdown-num,
.grey_txt  .ap-countdown-num {
  background: rgba(10,10,25,0.10);
  border-color: var(--avatar-ring, rgba(10,10,25,0.22));
  color: rgba(8,8,18,0.90);
  box-shadow: 0 4px 18px rgba(0,0,0,0.12),
              0 0 0 1px rgba(255,255,255,0.60) inset,
              0 8px 24px var(--avatar-ring, rgba(0,0,0,0.08));
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.dark_txt .ap-countdown-num::before,
.grey_txt  .ap-countdown-num::before { background:linear-gradient(180deg,rgba(255,255,255,0.55) 0%,transparent 100%); }
.dark_txt .ap-countdown-num::after,
.grey_txt  .ap-countdown-num::after  {
  background:linear-gradient(90deg,transparent,var(--avatar-ring,rgba(10,10,25,0.25)),transparent);
}
.dark_txt .ap-countdown-label,
.grey_txt  .ap-countdown-label { color:rgba(0,0,0,0.38); }
.dark_txt .ap-countdown-sep,
.grey_txt  .ap-countdown-sep   {
  color:var(--avatar-ring, rgba(0,0,0,0.25));
  text-shadow:none;
}
.dark_txt .ap-countdown-done,
.grey_txt  .ap-countdown-done  { background:rgba(0,0,0,0.06); border-color:rgba(0,0,0,0.10); color:rgba(0,0,0,0.35); }

/* ═══════════════════════════════════════════
   DISABLED
═══════════════════════════════════════════ */
a.disabled,.disabled { pointer-events:none !important; opacity:0.30 !important; filter:grayscale(1) !important; cursor:default !important; }

/* ═══════════════════════════════════════════
   PRIVACY / TERMS — ELEGANT FOOTER
═══════════════════════════════════════════ */
.row > div:not(.flex_cta):not(.foot_cta_cook, .err_new) {
  display:flex !important; align-items:center !important; justify-content:center !important;
  flex-wrap:wrap !important; gap:0 !important;
  margin:16px auto 4px !important; width:100% !important; padding:0 20px !important;
}
.row > div:not(.flex_cta):not(.foot_cta_cook) br { display:none !important; }
.row > div:not(.flex_cta):not(.foot_cta_cook) a {
  font-size: 0.68rem !important; font-weight: 600 !important;
  letter-spacing: 0.10em !important; text-transform: uppercase !important;
  color: rgba(255,255,255,0.38) !important; text-decoration: none !important;
  padding: 5px 10px !important; border-radius: 6px !important;
  transition: color 0.2s, background 0.2s !important;
  background: none !important; border: none !important; box-shadow: none !important;
  transform: none !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important;
  width: auto !important; max-width: none !important; margin: 0 !important;
  display: inline-flex !important; align-items: center !important; gap: 4px !important;
}
.row > div:not(.flex_cta):not(.foot_cta_cook) a:hover {
  color: rgba(255,255,255,0.75) !important; background: rgba(255,255,255,0.07) !important;
  transform: none !important;
}
/* Dot separator */
.row > div:not(.flex_cta):not(.foot_cta_cook) a + a::before {
  content: '·' !important; color: rgba(255,255,255,0.18) !important;
  font-size: 1rem !important; margin-right: 2px !important; display: inline-block !important;
}
/* Light bg */
.dark_txt .row > div:not(.flex_cta):not(.foot_cta_cook) a,
.grey_txt  .row > div:not(.flex_cta):not(.foot_cta_cook) a { color: rgba(10,10,20,0.36) !important; }
.dark_txt .row > div:not(.flex_cta):not(.foot_cta_cook) a:hover,
.grey_txt  .row > div:not(.flex_cta):not(.foot_cta_cook) a:hover { color: rgba(10,10,20,0.70) !important; background: rgba(0,0,0,0.05) !important; }
.dark_txt .row > div:not(.flex_cta):not(.foot_cta_cook) a + a::before,
.grey_txt  .row > div:not(.flex_cta):not(.foot_cta_cook) a + a::before { color: rgba(0,0,0,0.16) !important; }

/* ═══════════════════════════════════════════
   COOKIE PREFERENCES — WITH COOKIE ICON
═══════════════════════════════════════════ */
.foot_cta_cook { text-align: center; }
.cook_set {
  display: inline-flex !important; align-items: center !important; gap: 6px !important;
  margin: 4px auto 36px !important; padding: 7px 16px !important;
  border-radius: var(--r-full) !important;
  font-size: 0.65rem !important; font-weight: 600 !important;
  letter-spacing: 0.10em !important; text-transform: uppercase !important;
  color: rgba(255,255,255,0.30) !important;
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  cursor: pointer !important;
  transition: color 0.22s, border-color 0.22s, background 0.22s !important;
}
/* Cookie icon via CSS */
.cook_set::before {
  content: '🍪' !important;
  font-size: 0.75rem !important;
  line-height: 1 !important;
  filter: grayscale(0.5) !important;
  transition: filter 0.22s !important;
}
.cook_set:hover {
  color: rgba(255,255,255,0.68) !important;
  border-color: rgba(255,255,255,0.26) !important;
  background: rgba(255,255,255,0.06) !important;
}
.cook_set:hover::before { filter: grayscale(0) !important; }
.dark_txt .cook_set, .grey_txt .cook_set { color: rgba(10,10,20,0.28) !important; border-color: rgba(0,0,0,0.09) !important; }
.dark_txt .cook_set:hover, .grey_txt .cook_set:hover { color: rgba(10,10,20,0.55) !important; border-color: rgba(0,0,0,0.18) !important; background: rgba(0,0,0,0.05) !important; }

/* ═══════════════════════════════════════════
   CUTTLY BADGE
═══════════════════════════════════════════ */
.c_sign_ { display:inline-flex; align-items:center; gap:6px; margin:20px auto 0; padding:5px 12px; border-radius:var(--r-full); background:rgba(0,0,0,0.20); border:1px solid rgba(255,255,255,0.09); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px); }
.c_sign_,.c_sign_ a { font-size:0.70rem !important; color:rgba(255,255,255,0.48) !important; text-decoration:none; }
.c_sign_ img { width:44px; display:block; }
.verified_m_c { width:15px !important; height:15px !important; margin-left:5px !important; vertical-align:middle; }

/* ═══════════════════════════════════════════
   BG GRADIENTS
═══════════════════════════════════════════ */
.bg_cta_1  { background-image:linear-gradient(19deg,  #21D4FD 0%,#B721FF 100%); background-attachment:fixed; }
.bg_cta_2  { background-image:linear-gradient(225deg, #FF3CAC 0%,#784BA0 50%,#2B86C5 100%); background-attachment:fixed; }
.bg_cta_3  { background-image:linear-gradient(43deg,  #4158D0 0%,#C850C0 46%,#FFCC70 100%); background-attachment:fixed; }
.bg_cta_4  { background-image:linear-gradient(147deg, #FFE53B 0%,#FF2525 74%); background-attachment:fixed; }
.bg_cta_5  { background-image:radial-gradient(circle farthest-corner at 10% 20%,#FFD143 0%,#FF9153 90%); background-attachment:fixed; }
.bg_cta_6  { background-image:linear-gradient(120deg, #4FD681 0%,#8fd3f4 100%); background-attachment:fixed; }
.bg_cta_7  { background-image:radial-gradient(circle farthest-corner at 10% 20%,#F75700 0%,#F90000 90%); background-attachment:fixed; }
.bg_cta_8  { background-image:linear-gradient(90deg,  #f78ca0 0%,#f9748f 19%,#fd868c 60%,#fe9a8b 100%); background-attachment:fixed; }
.bg_cta_9  { background-image:linear-gradient(180deg, #00c6fb 0%,#005bea 100%); background-attachment:fixed; }
.bg_cta_10 { background-image:linear-gradient(180deg, #ff0844 0%,#ffb199 100%); background-attachment:fixed; }

/* BG IMAGES */
.bg_001{background-image:url(../../bioIcons/bg/001.jpg)}
.bg_002{background-image:url(../../bioIcons/bg/002.jpg)}
.bg_003{background-image:url(../../bioIcons/bg/003.jpg)}
.bg_004{background-image:url(../../bioIcons/bg/004.jpg)}
.bg_005{background-image:url(../../bioIcons/bg/005.jpg)}
.bg_006{background-image:url(../../bioIcons/bg/006.jpg)}
.bg_007{background-image:url(../../bioIcons/bg/007.jpg)}
.bg_008{background-image:url(../../bioIcons/bg/008.jpg)}
.bg_009{background-image:url(../../bioIcons/bg/009.jpg)}
.bg_010{background-image:url(../../bioIcons/bg/010.jpg)}

/* BG MODIFIERS */
.bg_a_inherit{background-attachment:inherit}.bg_a_fixed{background-attachment:fixed}.bg_a_local{background-attachment:local}
.bg_p_top{background-position:top}.bg_p_left{background-position:left}.bg_p_center{background-position:center}.bg_p_bottom{background-position:bottom}
.bg_r_no{background-repeat:no-repeat}.bg_r_r{background-repeat:repeat}.bg_r_rx{background-repeat:repeat-x}.bg_r_ry{background-repeat:repeat-y}.bg_r_space{background-repeat:space}.bg_r_round{background-repeat:round}
.bg_s_contain{background-size:contain}.bg_s_cover{background-size:cover}

/* ═══════════════════════════════════════════
   COOKIE CONSENT
═══════════════════════════════════════════ */
#cm.bar{padding:15px 0 !important}#cm.bar #c-inr{max-width:800px !important}
#cm.cloud{background:rgba(255,255,255,0.97);border-radius:20px;backdrop-filter:var(--blur-card);-webkit-backdrop-filter:var(--blur-card);box-shadow:0 24px 80px rgba(0,0,0,0.28)}
#cm.bar #c-bns{margin:15px auto 5px;padding:0 15px}#c-ttl,#c-txt{text-align:center}

/* ═══════════════════════════════════════════
   FOCUS / A11Y
═══════════════════════════════════════════ */
a:focus-visible,button:focus-visible,.only_i_links a:focus-visible {
  outline:3px solid #4d9fff !important; outline-offset:3px !important;
  border-radius:var(--r-xs) !important; z-index:999 !important;
}

/* ═══════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════ */
@keyframes avatar-pulse {
  0%,100% { box-shadow:0 0 0 4px rgba(255,255,255,0.06),  0 8px 32px rgba(0,0,0,0.5); }
  50%      { box-shadow:0 0 0 10px rgba(255,255,255,0.03), 0 8px 32px rgba(0,0,0,0.5); }
}
@keyframes cd-tick {
  0%  { transform:scaleY(1);    opacity:1;   }
  38% { transform:scaleY(0.80); opacity:0.6; }
  100%{ transform:scaleY(1);    opacity:1;   }
}
@keyframes cta-glow {
  0%   { box-shadow:0 0 0 0    rgba(102,126,234,0.55), 0 10px 36px rgba(102,126,234,0.50), 0 2px 8px rgba(0,0,0,0.2); }
  55%  { box-shadow:0 0 0 14px rgba(102,126,234,0),    0 10px 36px rgba(102,126,234,0.50), 0 2px 8px rgba(0,0,0,0.2); }
  100% { box-shadow:0 0 0 0    rgba(102,126,234,0),    0 10px 36px rgba(102,126,234,0.50), 0 2px 8px rgba(0,0,0,0.2); }
}

/* Staggered entrance */
.flex_cta > * { animation:slide-up 0.55s cubic-bezier(0.34,1.56,0.64,1) both; }
.flex_cta > *:nth-child(1){animation-delay:0.05s}.flex_cta > *:nth-child(2){animation-delay:0.11s}
.flex_cta > *:nth-child(3){animation-delay:0.17s}.flex_cta > *:nth-child(4){animation-delay:0.23s}
.flex_cta > *:nth-child(5){animation-delay:0.29s}.flex_cta > *:nth-child(6){animation-delay:0.35s}
.flex_cta > *:nth-child(7){animation-delay:0.41s}.flex_cta > *:nth-child(8){animation-delay:0.47s}
@keyframes slide-up {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width:540px) {
  .all_w_h { padding:24px 14px 40px; }
  .col-12.flex_cta { padding:30px 20px 28px; border-radius:var(--r-lg); }
  .flex_cta h1,.flex_cta h2 { font-size:1.4rem; }
  .flex_cta p { font-size:0.9rem; padding:9px 0 0; }
  .flex_cta a:not(.panel-open,.panel-close) { padding:12px 16px; font-size:0.875rem; }
  .cta_button > a:first-child,.cta_button > a:only-child { padding:15px 24px !important; font-size:0.9rem !important; }
  .ap-countdown-num { font-size:1.4rem; border-radius:9px; }
  .ap-countdown-sep { font-size:1.2rem; padding-bottom:16px; }
  .ap-countdown-label { font-size:0.5rem; }
  .flex_cta i:not(.c_check_label span i,.ico_link_cta) { width:70px; height:70px; font-size:1.6rem; margin:0 auto 18px; }
}

/* ═══════════════════════════════════════════════════════════
   FINAL POLISH — spacing, details, micro-interactions
═══════════════════════════════════════════════════════════ */

/* ── Video softer on light bg ──────────────────────────── */
.dark_txt .i_video,
.grey_txt  .i_video {
  box-shadow: 0 4px 18px rgba(0,0,0,0.14);
  border-color: rgba(0,0,0,0.08);
}

/* ── Section micro-gap between video and countdown ──────── */
.i_video + .cta_countdown {
  margin-top: 8px;
}

/* ── When no video: countdown gets top margin ───────────── */
.cta_button + .cta_countdown,
.cta_head + .cta_countdown {
  margin-top: 8px;
}

/* ── Avatar ring tinted with accent color (set by JS) ───── */
.flex_cta i:not(.c_check_label span i,.ico_link_cta) {
  border-color: var(--avatar-ring, rgba(255,255,255,0.22));
}

/* ── Countdown blocks — light bg separator line ────────── */
.dark_txt .ap-countdown-sep,
.grey_txt  .ap-countdown-sep {
  color: rgba(0,0,0,0.18);
}

/* ── Primary button: ensure transition is smooth on leave ── */
.cta_button > a:first-child,
.cta_button > a:only-child {
  transition:
    transform 0.32s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.28s cubic-bezier(0.4,0,0.2,1),
    background 0.28s cubic-bezier(0.4,0,0.2,1) !important;
}

/* ── Privacy/Terms — dot separator color fix ─────────────── */
.row > div:not(.flex_cta):not(.foot_cta_cook, .err_new) {
  padding-bottom: 2px;
}

/* ── Cookie row spacing ──────────────────────────────────── */
.foot_cta_cook {
  padding-bottom: 0;
  margin-top: 2px;
}

/* ── Avatar accent ring updated by JS (CSS custom prop) ─── */
:root { --avatar-ring: rgba(255,255,255,0.22); }

/* ── Entrance: card itself fades in ─────────────────────── */
.col-12.flex_cta {
  animation: card-in 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes card-in {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Subtle inner scroll shadow at card bottom ──────────── */
.col-12.flex_cta::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 40px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.04) 100%);
  border-radius: 0 0 var(--r-card) var(--r-card);
  pointer-events: none;
  z-index: 0;
}
.dark_txt .col-12.flex_cta::after,
.grey_txt  .col-12.flex_cta::after {
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.02) 100%);
}

/* ── All content above the ::after overlay ──────────────── */
.col-12.flex_cta > * { position: relative; z-index: 1; }

/* ── Responsive tweaks ───────────────────────────────────── */
@media (max-width: 540px) {
  .head_left .cta_head i,
  .head_right .cta_head i { width: 52px !important; height: 52px !important; font-size: 1.1rem !important; }
  .head_left  .cta_head .head_desc { padding: 0 0 0 12px; }
  .head_right .cta_head .head_desc { padding: 0 12px 0 0; }
}

/* ═══════════════════════════════════════════════════════════
   HEAD LEFT/RIGHT — EXTRA POLISH
═══════════════════════════════════════════════════════════ */

/* Kill the HTML dash separator that appears between avatar and text
   (it's a Bootstrap col separator artifact on some setups) */
.head_left  .cta_head > span,
.head_right .cta_head > span { display: none !important; }

/* Avatar image fills properly at side size */
.head_left  .cta_head > i img,
.head_right .cta_head > i img {
  width: 64px !important; height: 64px !important;
}

/* No gap pseudo on center layout re-check */
.head_center .cta_head::after {
  width: 40px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  margin: 18px auto 20px;
}
.dark_txt .head_center .cta_head::after,
.grey_txt  .head_center .cta_head::after {
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.16), transparent);
}

/* ── Share button tooltip on hover ───────────────────────── */
.share-button::after {
  content: 'Share';
  position: absolute;
  right: 48px; top: 50%;
  transform: translateY(-50%);
  background: rgba(10,10,20,0.85);
  color: rgba(255,255,255,0.9);
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px; border-radius: 5px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.18s ease;
}
.share-button:hover::after { opacity: 1; }

/* ── Card: remove conflicting ::after from previous patch ── */
/* We only want the top glow line on ::before */
/* The bottom gradient ::after was added in polish but conflicts with z-index */
/* Override to be safe */
.col-12.flex_cta > * { position: relative; z-index: 1; }

/* ── Share button: LEFT when head_right (JS adds .share-left to body) ── */
body.cta_template.share-left .share-button {
  right: auto;
  left: 20px;
}
/* Tooltip flips too */
body.cta_template.share-left .share-button::after {
  right: auto;
  left: 48px;
}