/*
 * UreTech Design System V12
 * CSS con fix urgenti per orbs e layout
 */

/* Google Fonts loaded via functions.php — no @import needed here */

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  --bg: #060510;
  --bg2: #0B0A1A;
  --pk: #EA88DE;
  --pk2: #F5B0EC;
  --pk3: #B066A7;
  --lav: #C1BFE6;
  --cream: #F5F2EE;
  --white: #FAFAFA;
  --muted: rgba(250,250,250,.5);
  --dk: #1A1730;
  --dkm: rgba(26,23,48,.5);
  --rl: 24px;
  --pill: 100px;
  --ease: cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

/* Desktop: hide native scrollbar (matrix scrollbar replaces it) */
@media (min-width:1025px) {
  html { scrollbar-width: none !important; }
  html::-webkit-scrollbar { display: none !important; }
}
/* Mobile/Tablet: brand-colored overlay scrollbar
   NOTE: Only standard API (scrollbar-width/scrollbar-color).
   ::-webkit-scrollbar creates a classic non-overlay scrollbar that
   steals 11px of layout width, breaking position:fixed 100vw elements. */
@media (max-width:1024px) {
  html { scrollbar-width: thin; scrollbar-color: var(--pk) var(--bg); }
}

/* ========================================
   MATRIX SCROLLBAR
   ======================================== */
.matrix-scrollbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 18px;
  height: 100vh;
  z-index: 99999;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding: 2px 0;
  background: rgba(6,5,16,.55);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border-left: 1px solid rgba(234,136,222,.12);
  box-shadow: -2px 0 12px rgba(6,5,16,.3);
}
.matrix-scrollbar__digit {
  font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
  font-size: 7px;
  line-height: 1.35;
  color: rgba(234,136,222,.6);
  text-align: center;
  width: 100%;
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity .3s ease, transform .3s ease, color .5s ease;
  text-shadow: 0 0 6px rgba(234,136,222,.35);
}
.matrix-scrollbar__digit.vis {
  opacity: 1;
  transform: translateY(0);
}
.matrix-scrollbar__digit.new {
  color: rgba(234,136,222,.95);
  text-shadow: 0 0 10px rgba(234,136,222,.7);
}
/* Thumb indicator — glowing dot showing current scroll position */
.matrix-scrollbar__thumb {
  position: absolute;
  right: 2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pk);
  box-shadow: 0 0 8px var(--pk), 0 0 16px rgba(234,136,222,.4);
  pointer-events: none;
  transition: top .1s linear;
  z-index: 1;
}
/* Mobile: hide matrix scrollbar (native scrollbar used instead) */
@media (max-width:1024px) {
  .matrix-scrollbar { display: none !important; }
}
/* Hide in Elementor editor */
.elementor-editor-active .matrix-scrollbar { display: none !important; }

/* ── Keyboard focus indicators (a11y) ── */
:focus:not(:focus-visible) { outline: none; }
:focus-visible { outline: 2px solid var(--pk); outline-offset: 3px; }

/* ========================================
   LENIS SMOOTH SCROLL
   ======================================== */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
  overflow-x: clip;
}

body { font-family: 'DM Sans', system-ui, sans-serif; background: var(--bg); color: var(--white); overflow-x: hidden; font-size: 16px; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
em { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; }
.accent { color: var(--pk); }
.container { max-width: 1340px; margin: 0 auto; padding: 0 24px; }

/* ========================================
   SEZIONI MATRIOSKA - Stacking Effect
   ======================================== */

/* Main wrapper per sezioni - stacking invertito */
.ure-section,
.elementor-section.ure-section,
.e-con.ure-section,
[data-ure-section] {
  position: relative;
  will-change: auto;
  overflow: hidden;
  background: var(--bg);
}

/* Ogni sezione successiva va SOPRA la precedente con bordi arrotondati */
.ure-section + .ure-section,
.elementor-section.ure-section + .elementor-section.ure-section,
.e-con.ure-section + .e-con.ure-section,
[data-ure-section] + [data-ure-section] {
  margin-top: -60px;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -24px 80px rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Z-index incrementale per stacking corretto */
.ure-section:nth-child(1) { z-index: 1; }
.ure-section:nth-child(2) { z-index: 2; }
.ure-section:nth-child(3) { z-index: 3; }
.ure-section:nth-child(4) { z-index: 4; }
.ure-section:nth-child(5) { z-index: 5; }
.ure-section:nth-child(6) { z-index: 6; }
.ure-section:nth-child(7) { z-index: 7; }
.ure-section:nth-child(8) { z-index: 8; }
.ure-section:nth-child(9) { z-index: 9; }
.ure-section:nth-child(10) { z-index: 10; }

/* Variante cream/light */
.ure-section.sec-cream,
.ure-section[data-theme="light"] {
  background: var(--cream);
}

/* Prima sezione (hero) - nessun margin negativo */
.ure-section:first-child {
  margin-top: 0;
  border-radius: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .ure-section + .ure-section,
  [data-ure-section] + [data-ure-section] {
    margin-top: -40px;
    border-radius: 24px 24px 0 0;
  }
}

/* ========================================
   GLASS MORPHISM GLOBALE
   ======================================== */
   
.ure-glass {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border-radius: var(--rl);
}

.ure-glass-accent {
  background: linear-gradient(135deg, rgba(234, 136, 222, 0.08), rgba(193, 191, 230, 0.06));
  border: 1px solid rgba(234, 136, 222, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(234, 136, 222, 0.12);
  border-radius: var(--rl);
}

/* ========================================
   ORBS - Animated Light Points
   Contained within parent section.
   Parent MUST have position:relative + overflow:hidden.
   ======================================== */
.orbs,
div.orbs,
.hero .orbs,
.sec .orbs {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
  z-index: 0 !important;
  opacity: .35 !important;
  overflow: visible !important;
}

.orb,
div.orb {
  display: block !important;
  position: absolute !important;
  border-radius: 50% !important;
  /* NO filter:blur — radial-gradient set by JS for zero GPU cost */
  opacity: 0.35 !important;
  animation: orbFloat 25s ease-in-out infinite !important;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.9); }
  75% { transform: translate(40px, 30px) scale(1.05); }
}

/* Mobile: smaller orbs */
@media (max-width: 767px) {
  .orb, div.orb {
    max-width: 500px !important;
    max-height: 500px !important;
  }
}

/* ========================================
   CRITICAL FIX: SCROLL HINT
   ======================================== */
.scroll-hint,
.scrollh,
[class*="scroll-h"] {
  position: fixed !important;
  bottom: 28px !important;
  left: 50% !important;
  top: auto !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 6px !important;
  z-index: 50 !important;
  pointer-events: none !important;
}

.scroll-line,
.scrollln {
  width: 1px !important;
  height: 32px !important;
  background: linear-gradient(to bottom, var(--pk), transparent) !important;
}

.scroll-text,
.scrollt {
  font-size: 9px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--muted) !important;
}

/* ========================================
   HIDE PAGE TITLE
   ======================================== */
.page-title,
.entry-title,
.site-main > .entry-title,
header .entry-title {
  display: none !important;
}

/* Don't hide hero H1 */
.hero h1,
.hero .elementor-heading-title,
.sec h1,
.sec .elementor-heading-title,
h1.hero-h1,
.hero-h1 {
  display: block !important;
}

/* ========================================
   SECTIONS BASE
   ======================================== */
.sec,
[class*="sec-"] {
  position: relative !important;
  overflow: hidden !important;
  background: var(--bg) !important;
  /* MATRIOSKA EFFECT - JS handles borderRadius via rAF, no CSS transition needed */
  will-change: auto;
}

/* MATRIOSKA STACKING - Ogni sezione successiva va SOPRA con bordi arrotondati */
.sec + .sec,
[class*="sec-"] + [class*="sec-"],
.e-con.sec + .e-con.sec,
.elementor-section.sec + .elementor-section.sec {
  margin-top: -50px !important;
  border-radius: 32px 32px 0 0 !important;
  box-shadow: 
    0 -20px 60px rgba(0, 0, 0, 0.4),
    0 -5px 20px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

/* Z-index incrementale per stacking */
.sec:nth-of-type(1), [class*="sec-"]:nth-of-type(1) { z-index: 1 !important; }
.sec:nth-of-type(2), [class*="sec-"]:nth-of-type(2) { z-index: 2 !important; }
.sec:nth-of-type(3), [class*="sec-"]:nth-of-type(3) { z-index: 3 !important; }
.sec:nth-of-type(4), [class*="sec-"]:nth-of-type(4) { z-index: 4 !important; }
.sec:nth-of-type(5), [class*="sec-"]:nth-of-type(5) { z-index: 5 !important; }
.sec:nth-of-type(6), [class*="sec-"]:nth-of-type(6) { z-index: 6 !important; }
.sec:nth-of-type(7), [class*="sec-"]:nth-of-type(7) { z-index: 7 !important; }
.sec:nth-of-type(8), [class*="sec-"]:nth-of-type(8) { z-index: 8 !important; }
.sec:nth-of-type(9), [class*="sec-"]:nth-of-type(9) { z-index: 9 !important; }
.sec:nth-of-type(10), [class*="sec-"]:nth-of-type(10) { z-index: 10 !important; }

/* Prima sezione (hero) - nessun margin/radius */
.sec:first-of-type,
[class*="sec-"]:first-of-type,
.sec.hero,
.sec-hero {
  margin-top: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Responsive - meno overlap su mobile */
@media (max-width: 1024px) {
  .sec + .sec,
  [class*="sec-"] + [class*="sec-"] {
    margin-top: -40px !important;
    border-radius: 28px 28px 0 0 !important;
  }
}

@media (max-width: 768px) {
  .sec + .sec,
  [class*="sec-"] + [class*="sec-"] {
    margin-top: -30px !important;
    border-radius: 24px 24px 0 0 !important;
  }
}

.sec-cream,
[class*="sec-cream"],
[class*="sec-why"] {
  background: var(--cream) !important;
}

/* Cream section — full typography override */
.sec-cream .elementor-heading-title,
.sec-cream h1, .sec-cream h2, .sec-cream h3, .sec-cream h4 {
  color: #060510 !important;
}
.sec-cream .elementor-heading-title em,
.sec-cream h1 em, .sec-cream h2 em, .sec-cream h3 em {
  color: var(--pk3) !important;
}
.sec-cream .elementor-text-editor,
.sec-cream .elementor-text-editor p,
.sec-cream .elementor-widget-text-editor {
  color: #2D2A3E !important;
}
.sec-cream .elementor-icon i,
.sec-cream .elementor-icon svg {
  color: var(--pk3) !important;
  fill: var(--pk3) !important;
}
.sec-cream .elementor-accordion .elementor-tab-title,
.sec-cream .elementor-accordion .elementor-tab-title a {
  color: #060510 !important;
}
.sec-cream .elementor-accordion .elementor-tab-content,
.sec-cream .elementor-accordion .elementor-tab-content p {
  color: #2D2A3E !important;
}
.sec-cream .elementor-accordion .elementor-accordion-item {
  border-color: rgba(6,5,16,0.08) !important;
}

/* Alt section bg (#0A0919) */
.sec-alt {
  background: #0A0919 !important;
}


/* ========================================
   GLASS EFFECTS
   ======================================== */
.glass {
  background: rgba(255,255,255,.035) !important;
  border: 1px solid rgba(255,255,255,.07) !important;
  backdrop-filter: blur(16px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(140%) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.05) !important;
  border-radius: var(--rl) !important;
}

.glass-lt {
  background: rgba(255,255,255,.55) !important;
  border: 1px solid rgba(255,255,255,.3) !important;
  backdrop-filter: blur(20px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.5) !important;
  border-radius: var(--rl) !important;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-p,
.elementor-button.btn-p,
a.btn-p,
.elementor-button[href*="contatti"],
.elementor-button[href*="progetto"],
.elementor-button[href*="contact"],
.elementor-button[href*="project"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 14px 32px !important;
  border-radius: var(--pill) !important;
  background: linear-gradient(135deg, var(--pk), var(--pk3)) !important;
  color: #fff !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border: none !important;
  cursor: pointer !important;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, filter 0.3s !important;
  box-shadow: 0 4px 20px rgba(234,136,222,.25) !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}

.btn-p:hover,
.elementor-button.btn-p:hover,
.elementor-button[href*="contatti"]:hover,
.elementor-button[href*="progetto"]:hover,
.elementor-button[href*="contact"]:hover,
.elementor-button[href*="project"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(234,136,222,.4) !important;
  filter: brightness(1.08) !important;
}

/* Subtle attention pulse on primary CTA in hero sections */
.sec:first-child .btn-p,
.ure-hero .btn-p {
  animation: ctaGlow 3s ease-in-out 2s infinite;
}
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(234,136,222,.25); }
  50%      { box-shadow: 0 4px 28px rgba(234,136,222,.4); }
}

.btn-ghost,
.elementor-button.btn-ghost,
a.btn-ghost,
.elementor-button[href*="servizi"]:not([href*="contatti"]),
.elementor-button[href*="services"]:not([href*="contact"]) {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 14px 32px !important;
  border-radius: var(--pill) !important;
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  color: var(--white) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

.btn-ghost:hover,
.elementor-button.btn-ghost:hover,
.elementor-button[href*="servizi"]:not([href*="contatti"]):hover,
.elementor-button[href*="services"]:not([href*="contact"]):hover {
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(255,255,255,.25) !important;
  transform: none !important;
  box-shadow: none !important;
}

.btn-lg { padding: 16px 36px !important; font-size: 15px !important; }
.btn-sm { padding: 10px 22px !important; font-size: 13px !important; }

.btn-white {
  background: var(--white) !important;
  color: var(--dk) !important;
  box-shadow: 0 4px 20px rgba(255,255,255,.15) !important;
}

/* Elementor button reset */
.elementor-button-content-wrapper { display: contents !important; }

/* ── Nuclear Elementor button reset ─────────────────────────── */
/* Ogni livello del widget: wrapper → container → button-wrapper → button */
.elementor-widget-button,
.elementor-widget-button > .elementor-widget-container,
.elementor-widget-button .elementor-button-wrapper {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  outline: none !important;
}
.elementor-button-link.btn-p,
.elementor-button-link.btn-ghost {
  outline: none !important;
}
/* Kill ALL Elementor default button states */
.elementor-button,
.elementor-button:hover,
.elementor-button:focus,
.elementor-button:active,
.elementor-button:visited {
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  filter: none !important;
  text-decoration: none !important;
}
/* Re-apply SOLO le hover del design system */
.elementor-button.btn-p:hover {
  background: linear-gradient(135deg, var(--pk), var(--pk3)) !important;
  box-shadow: 0 8px 30px rgba(234,136,222,.4) !important;
  filter: brightness(1.08) !important;
}
.elementor-button.btn-ghost:hover {
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(255,255,255,.25) !important;
}

/* ========================================
   SECTION HEADERS - CENTERED
   ======================================== */
.sh {
  text-align: center !important;
  margin-bottom: 44px !important;
  position: relative !important;
  z-index: 2 !important;
}

.sh-left { text-align: left !important; }

/* TAG - Badge */
.tag {
  display: inline-block !important;
  font-size: 10.5px !important;
  font-weight: 600 !important;
  letter-spacing: .11em !important;
  text-transform: uppercase !important;
  color: var(--pk) !important;
  padding: 5px 14px !important;
  border-radius: var(--pill) !important;
  background: rgba(234,136,222,.06) !important;
  border: 1px solid rgba(234,136,222,.1) !important;
  margin-bottom: 14px !important;
}

.tagdk {
  background: rgba(234,136,222,.04) !important;
  border-color: rgba(234,136,222,.08) !important;
  color: var(--pk3) !important;
}

/* Service page badge — identical to inline tag style used in Elementor text-editor */
.srv-badge {
  display: inline-block !important;
  background: rgba(234,136,222,0.12) !important;
  border: 1px solid rgba(234,136,222,0.3) !important;
  color: #EA88DE !important;
  padding: 8px 20px !important;
  border-radius: 100px !important;
  font-size: 11px !important;
  font-weight: bold !important;
  letter-spacing: 0.12em !important;
}

/* Section title */
.stit,
.elementor-heading-title {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 900 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.02em !important;
}

.stit em,
.elementor-heading-title em,
.elementor-heading-title i {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-style: italic !important;
  color: var(--pk2) !important;
}

.stit.dk,
.sec-cream .stit,
.sec-why .stit {
  color: var(--dk) !important;
}

.stit.dk em,
.sec-cream .stit em,
.sec-why .stit em,
.sec-cream .elementor-heading-title em {
  color: var(--pk3) !important;
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.sc {
  position: relative !important;
  padding: 28px 24px !important;
  border-radius: var(--rl) !important;
  overflow: hidden !important;
  cursor: pointer !important;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), border-color 0.6s var(--ease), background 0.6s var(--ease), box-shadow 0.6s var(--ease) !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
}

.sc:hover {
  border-color: rgba(234,136,222,.18) !important;
  background: rgba(255,255,255,.06) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.06) !important;
}

/* Service icon - NO BACKGROUND! */
.scic,
.sc .elementor-icon,
.sc .elementor-widget-icon,
.sc svg {
  font-size: 26px !important;
  margin-bottom: 14px !important;
  opacity: 0.65 !important;
  color: var(--pk) !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.sct {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  font-size: 17px !important;
  margin-bottom: 9px !important;
}

.scd {
  font-size: 13.5px !important;
  color: var(--muted) !important;
  line-height: 1.6 !important;
  margin-bottom: 14px !important;
}

.sclk {
  font-size: 12.5px !important;
  font-weight: 600 !important;
  color: var(--pk) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  transition: gap 0.3s var(--ease) !important;
}

.sclk:hover { gap: 9px !important; }

/* Services grid */
.sg {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
}

/* Last card alone in row → full width */
.sg > :last-child:nth-child(3n+1) { grid-column: 1 / -1; }

@media (max-width: 1024px) {
  .sg { grid-template-columns: repeat(2, 1fr) !important; }
  .sg > :last-child:nth-child(3n+1) { grid-column: auto; }
  .sg > :last-child:nth-child(2n+1) { grid-column: 1 / -1; }
}
@media (max-width: 600px) { .sg { grid-template-columns: 1fr !important; } }

/* ========================================
   WHY SECTION
   ======================================== */
.wc {
  padding: 36px 32px !important;
  border-radius: var(--rl) !important;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), border-color 0.6s var(--ease), background 0.6s var(--ease), box-shadow 0.6s var(--ease) !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
}

.wc:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 36px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.6) !important;
}

.wn {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  color: var(--pk3) !important;
  letter-spacing: 0.04em !important;
}

.wtt, .wt {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  color: var(--dk) !important;
  margin: 10px 0 6px !important;
}

.wdd, .wd {
  font-size: 14px !important;
  color: var(--dkm) !important;
  line-height: 1.65 !important;
  font-weight: 400 !important;
}

/* Why grid */
.wg {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  margin-bottom: 64px !important;
}

@media (max-width: 768px) { .wg { grid-template-columns: 1fr !important; gap: 16px !important; } }

/* ========================================
   STATS - NO CARD BACKGROUND!
   ======================================== */
.sr, .srow {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 18px !important;
  padding-top: 48px !important;
  border-top: 1px solid rgba(26,23,48,.08) !important;
}

@media (max-width: 640px) { .sr, .srow { grid-template-columns: repeat(2, 1fr) !important; gap: 24px !important; } }

.st { text-align: center !important; }

.st, .stat-item, .elementor-counter {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.sv, .elementor-counter-number-wrapper, .elementor-counter-number,
.elementor-counter-number-prefix,
.elementor-counter-number-suffix {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(30px, 4.2vw, 46px) !important;
  background: linear-gradient(135deg, #EA88DE, #C1BFE6) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  line-height: 1 !important;
}

.sl, .elementor-counter-title {
  font-size: 12.5px !important;
  color: rgba(250,250,250,0.55) !important;
  margin-top: 5px !important;
  font-weight: 400 !important;
}

/* ========================================
   CTA SECTION
   ======================================== */
.sec-cta { text-align: center !important; padding: 80px 0 !important; }

.ctt {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(28px, 4.5vw, 52px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 16px !important;
}

.ctt em { color: var(--pk2) !important; }

.cts {
  font-size: 15px !important;
  color: var(--muted) !important;
  margin-bottom: 28px !important;
  line-height: 1.6 !important;
}

.ctb {
  display: flex !important;
  gap: 12px !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  margin-bottom: 32px !important;
}

.cti {
  display: flex !important;
  gap: 8px !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
}

.cti a {
  font-size: 13px !important;
  color: var(--muted) !important;
  transition: color 0.3s !important;
  padding: 4px !important;
}

.cti a:hover { color: var(--pk) !important; }

.ctdot { color: rgba(255,255,255,.1) !important; font-size: 8px !important; }

/* ========================================
   TESTIMONIALS
   ======================================== */
.tc {
  max-width: 660px !important;
  margin: 0 auto !important;
  position: relative !important;
  padding: 42px 36px 34px !important;
  border-radius: var(--rl) !important;
  min-height: 240px !important;
  overflow: hidden !important;
}

.ttx {
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
  font-size: clamp(15px, 1.9vw, 19px) !important;
  line-height: 1.6 !important;
  color: rgba(250,250,250,.85) !important;
  margin-bottom: 22px !important;
}

.tau { display: flex !important; align-items: center !important; gap: 11px !important; }

.tav {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, var(--pk), var(--lav)) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  color: #fff !important;
}

.tnm { font-weight: 600 !important; font-size: 13px !important; }
.trl { font-size: 12px !important; color: var(--muted) !important; margin-top: 1px !important; }

.tdo { display: flex !important; gap: 0 !important; margin-top: 22px !important; justify-content: center !important; }

.tdb {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.1) !important;
  background-clip: content-box !important;
  box-sizing: content-box !important;
  padding: 17px !important;
  transition: all 0.3s !important;
  cursor: pointer !important;
  border: none !important;
}

.tdb.act { background: var(--pk) !important; background-clip: content-box !important; transform: scale(1.1) !important; }

/* ========================================
   BLOG / STORIES
   ======================================== */
.story-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
}

@media (max-width: 640px) {
  .story-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 14px !important;
  }
  .story-grid::-webkit-scrollbar { display: none !important; }
}

.story-card {
  position: relative !important;
  aspect-ratio: 9/16 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  cursor: pointer !important;
  transition: all 0.6s var(--ease) !important;
}

@media (max-width: 640px) {
  .story-card { flex: 0 0 280px !important; scroll-snap-align: center !important; }
}

.story-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.4) !important;
}

.story-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  transition: transform 0.6s var(--ease) !important;
}

.story-card:hover .story-bg { transform: scale(1.05) !important; }

.story-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.7) 100%) !important;
}

.story-content {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  padding: 20px 18px !important;
}

.story-top { display: flex !important; align-items: center !important; justify-content: space-between !important; }

.story-cat {
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  padding: 4px 10px !important;
  border-radius: var(--pill) !important;
  background: rgba(255,255,255,.15) !important;
}

.story-date { font-size: 10px !important; color: rgba(255,255,255,.5) !important; }

.story-bottom { margin-top: auto !important; }

.story-title {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(13px, 1.6vw, 17px) !important;
  line-height: 1.25 !important;
  color: #fff !important;
  margin-bottom: 8px !important;
}

.story-ex {
  font-size: clamp(10px, 1.1vw, 12.5px) !important;
  color: rgba(255,255,255,.6) !important;
  line-height: 1.5 !important;
  margin-bottom: 12px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.story-link {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: var(--pk2) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.story-bar {
  position: absolute !important;
  top: 10px !important;
  left: 18px !important;
  right: 18px !important;
  height: 2px !important;
  border-radius: 2px !important;
  background: rgba(255,255,255,.15) !important;
  z-index: 3 !important;
  overflow: hidden !important;
}

.story-bar-fill {
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, var(--pk), var(--pk2)) !important;
  transform: scaleX(0) !important;
  transform-origin: left !important;
  animation: storyFill 5.5s ease-in-out infinite !important;
}

@keyframes storyFill { 0% { transform: scaleX(0); } 80%, 100% { transform: scaleX(1); } }

/* ========================================
   DOVE SIAMO
   ======================================== */
.dove-layout {
  display: grid !important;
  grid-template-columns: 1fr 1.2fr !important;
  gap: 48px !important;
  align-items: center !important;
}

@media (max-width: 900px) { .dove-layout { grid-template-columns: 1fr !important; gap: 32px !important; } }

.dove-cities { display: flex !important; flex-direction: column !important; gap: 16px !important; margin-bottom: 28px !important; }

.dove-city-row {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 14px 18px !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,.03) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  transition: all 0.3s var(--ease) !important;
}

.dove-city-row:hover {
  background: rgba(234,136,222,.04) !important;
  border-color: rgba(234,136,222,.12) !important;
  transform: translateX(4px) !important;
}

.dove-dot-sm {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: var(--pk) !important;
  flex-shrink: 0 !important;
  box-shadow: 0 0 0 3px rgba(234,136,222,.15) !important;
}

.dove-name { font-family: 'Outfit', sans-serif !important; font-weight: 700 !important; font-size: 16px !important; display: block !important; }
.dove-role { font-size: 12.5px !important; color: rgba(250,250,250,.65) !important; display: block !important; margin-top: 1px !important; }
.dove-txt { font-size: 14px !important; color: var(--muted) !important; line-height: 1.7 !important; max-width: 400px !important; }

/* Dove Siamo Layout - Grid like v10 */
.dove-layout {
  display: grid !important;
  grid-template-columns: 1fr 1.2fr !important;
  gap: 48px !important;
  align-items: center !important;
  width: 100% !important;
}

@media (max-width: 900px) {
  .dove-layout {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

.dove-left {
  display: flex !important;
  flex-direction: column !important;
}

.dove-cities {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  margin-bottom: 28px !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Force Elementor widget containing dove-cities to be full width */
.dove-left .elementor-widget-html,
.dove-left .elementor-widget {
  width: 100% !important;
}

.dove-city-row {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 16px 22px !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,.03) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  transition: all .3s var(--ease) !important;
  width: 100% !important;
  max-width: 100% !important;
}

.dove-city-row:hover {
  background: rgba(234,136,222,.04) !important;
  border-color: rgba(234,136,222,.12) !important;
  transform: translateX(4px) !important;
}

.dove-dot-sm {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: var(--pk) !important;
  flex-shrink: 0 !important;
  box-shadow: 0 0 0 3px rgba(234,136,222,.15) !important;
}

.dove-name {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  display: block !important;
  color: var(--white) !important;
}

.dove-role {
  font-size: 12.5px !important;
  color: rgba(250,250,250,.65) !important;
  display: block !important;
  margin-top: 1px !important;
}

/* Globe Wrapper */
.dove-globe-wrap {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1 !important;
  max-width: 480px !important;
  margin: 0 auto !important;
  min-height: 400px !important;
}

/* Make the inner container not affect label positioning */
.dove-globe-wrap > .e-con-inner {
  position: static !important;
}

.dove-globe-wrap .elementor-widget-html {
  position: static !important;
}

/* Globe Labels - positioned AROUND the globe */
.globe-label {
  position: absolute !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  color: var(--pk) !important;
  padding: 4px 12px !important;
  border-radius: var(--pill) !important;
  background: rgba(234,136,222,.08) !important;
  border: 1px solid rgba(234,136,222,.15) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  white-space: nowrap !important;
  pointer-events: none !important;
  animation: glFloat 4s ease-in-out infinite !important;
  z-index: 10 !important;
}

/* MILANO - top right of globe */
.gl-mi {
  top: 15% !important;
  right: 5% !important;
  left: auto !important;
  bottom: auto !important;
  animation-delay: 0s !important;
}

/* BOLOGNA - middle right of globe */
.gl-bo {
  top: 40% !important;
  right: -5% !important;
  left: auto !important;
  bottom: auto !important;
  animation-delay: 0.8s !important;
}

/* ROMA - bottom right of globe */
.gl-ro {
  top: auto !important;
  bottom: 25% !important;
  right: 0% !important;
  left: auto !important;
  animation-delay: 1.6s !important;
}

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

@media (max-width: 600px) {
  .globe-label {
    font-size: 10px !important;
    padding: 3px 10px !important;
  }
  .gl-mi { right: 0% !important; }
  .gl-bo { right: -2% !important; }
  .gl-ro { right: 2% !important; }
}

/* ========================================
   DESKTOP HEADER - COMPLETE
   ======================================== */
/* Header wrapper: zero height so fixed header doesn't push content down */
.elementor-location-header { position: absolute !important; top: 0 !important; left: 0 !important; right: 0 !important; z-index: 9999 !important; height: 0 !important; overflow: visible !important; }

/* Base header with high specificity */
body header.hdr,
body .hdr.elementor-element,
body .elementor .hdr,
.elementor-location-header .hdr,
header.hdr,
.hdr {
  position: fixed !important;
  top: 12px !important;
  left: 24px !important;
  right: 24px !important;
  z-index: 9999 !important;
  border-radius: var(--rl) !important;
  background: rgba(6,5,16,.6) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,.3) !important;
  transition: top .45s var(--ease), left .45s var(--ease), right .45s var(--ease), transform .45s var(--ease), max-width .45s var(--ease), width .45s var(--ease), border-radius .45s var(--ease), background .45s var(--ease), box-shadow .45s var(--ease) !important;
  overflow: hidden !important;
  max-width: none !important;
  width: auto !important;
}

.hdr-in {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 12px 20px !important;
  max-width: 1340px !important;
  margin: 0 auto !important;
}

/* Island Mode (scrolled) - ULTRA SPECIFIC */
body header.hdr.island,
body .hdr.island.elementor-element,
body .elementor .hdr.island,
.elementor-location-header .hdr.island,
header.hdr.island,
.hdr.island {
  top: 10px !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  max-width: 680px !important;
  width: auto !important;
  border-radius: var(--pill) !important;
  background: rgba(6,5,16,.88) !important;
}

body .hdr.island .hdr-in,
.hdr.island .hdr-in {
  padding: 6px 14px !important;
  gap: 12px !important;
}

body .hdr.island .logo-t,
.hdr.island .logo-t {
  opacity: 0 !important;
  width: 0 !important;
  max-width: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Island: SHOW the .hr section with compact CTA */
body .hdr.island .hr,
.hdr.island .hr {
  display: flex !important;
  opacity: 1 !important;
  gap: 0 !important;
}

/* Island: Hide language switcher */
body .hdr.island .lsw,
.hdr.island .lsw {
  display: none !important;
}

/* Island CTA - very compact */
body .hdr.island .hr .btn-p,
.hdr.island .hr .btn-p {
  padding: 6px 12px !important;
  font-size: 10px !important;
  white-space: nowrap !important;
}

/* Island: Navigation should be centered */
body .hdr.island .nd,
.hdr.island .nd {
  margin: 0 8px !important;
  gap: 14px !important;
}

/* Mega Menu Open States */
body .hdr.hdr-mega,
.hdr.hdr-mega {
  left: 24px !important;
  right: 24px !important;
  max-width: none !important;
  transform: none !important;
  border-radius: var(--rl) !important;
  background: rgba(6,5,16,.95) !important;
}

body .hdr.island.hdr-mega,
.hdr.island.hdr-mega {
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  max-width: 900px !important;
  border-radius: var(--rl) !important;
}

body .hdr.island.hdr-mega .logo-t,
.hdr.island.hdr-mega .logo-t {
  opacity: 1 !important;
  width: auto !important;
  max-width: 120px !important;
  margin-left: 0 !important;
}

body .hdr.island.hdr-mega .hr,
.hdr.island.hdr-mega .hr {
  display: flex !important;
}

/* Logo */
.logo { display: flex !important; align-items: center !important; gap: 6px !important; z-index: 151 !important; flex-shrink: 0 !important; }
.logo-t { font-family: 'Outfit', sans-serif !important; font-weight: 900 !important; letter-spacing: .09em !important; transition: all .35s var(--ease) !important; max-width: 120px !important; overflow: hidden !important; white-space: nowrap !important; }

/* Navigation Links */
.nd { display: flex !important; gap: 20px !important; transition: gap .3s var(--ease) !important; }
.nd-mega { gap: 16px !important; }
.hdr.island .nd { margin: 0 24px !important; }

.nl-wrap { position: relative !important; display: flex !important; align-items: center !important; }
.nl { font-size: 13px !important; font-weight: 500 !important; color: var(--muted) !important; letter-spacing: .02em !important; position: relative !important; transition: color .25s !important; white-space: nowrap !important; padding: 6px 0 !important; display: inline-flex !important; align-items: center !important; gap: 3px !important; cursor: pointer !important; }
.nl:hover, .nl-act { color: var(--white) !important; }
.nl-dim { opacity: .4 !important; }
.nl-chev { transition: transform .3s var(--ease) !important; opacity: .5 !important; }
.nl-act .nl-chev { transform: rotate(180deg) !important; opacity: 1 !important; }

/* Header Right Section */
.hr { display: flex !important; align-items: center !important; gap: 12px !important; flex-shrink: 0 !important; transition: opacity .3s, transform .3s var(--ease) !important; }
.lsw { font-size: 11px !important; color: var(--muted) !important; font-weight: 500 !important; letter-spacing: .05em !important; }
.lsw-opt { color: rgba(250,250,250,0.4) !important; text-decoration: none !important; font-weight: 600 !important; transition: color 0.3s !important; cursor: pointer !important; }
.lsw-opt:hover { color: rgba(250,250,250,0.7) !important; }
.lsw-opt.lsw-active { color: #FAFAFA !important; }

/* ========================================
   MEGA MENU - HIDDEN BY DEFAULT
   ======================================== */
.mega-body {
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height .4s var(--ease), opacity .3s, padding .4s var(--ease) !important;
  opacity: 0 !important;
  padding: 0 20px !important;
}

.mega-body.mega-vis {
  max-height: 70vh !important;
  overflow-y: auto !important;
  opacity: 1 !important;
  padding: 0 20px 20px !important;
}

/* Servizi Grid - HIDDEN BY DEFAULT */
.mega-srv {
  display: none !important;
  gap: 24px !important;
  align-items: flex-start !important;
  max-width: 1300px !important;
  margin: 0 auto !important;
}

/* Soluzioni Grid - HIDDEN BY DEFAULT */
.mega-sol {
  display: none !important;
  gap: 24px !important;
  align-items: flex-start !important;
  max-width: 1300px !important;
  margin: 0 auto !important;
  justify-content: center !important;
}

/* Show with class */
.mega-srv.mega-active { display: flex !important; }
.mega-sol.mega-active { display: flex !important; }

.mega-grid-srv {
  flex: 1 !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px 32px !important;
  align-items: start !important;
}

/* Category */
.mega-cat { display: flex !important; flex-direction: column !important; }
.mega-cat-h { display: flex !important; align-items: center !important; gap: 6px !important; margin-bottom: 8px !important; padding-bottom: 6px !important; border-bottom: 1px solid rgba(255,255,255,.06) !important; text-decoration: none !important; transition: opacity 0.2s !important; }
a.mega-cat-h:hover { opacity: 0.75 !important; }
.mega-cat-ic { font-size: 14px !important; opacity: .6 !important; color: var(--pk) !important; }
.mega-cat-t { font-family: 'Outfit', sans-serif !important; font-weight: 700 !important; font-size: 11px !important; letter-spacing: .06em !important; text-transform: uppercase !important; color: var(--pk) !important; }

/* Menu Items */
.mega-item { display: block !important; font-size: 12.5px !important; color: var(--muted) !important; padding: 4px 0 4px 20px !important; transition: color .2s, transform .2s var(--ease) !important; position: relative !important; }
.mega-item::before { content: '' !important; position: absolute !important; left: 8px !important; top: 50% !important; width: 4px !important; height: 4px !important; border-radius: 50% !important; background: var(--pk) !important; transform: translateY(-50%) scale(0) !important; transition: transform .2s var(--ease) !important; opacity: .5 !important; }
.mega-item:hover { color: var(--white) !important; transform: translateX(3px) !important; }
.mega-item:hover::before { transform: translateY(-50%) scale(1) !important; }

/* Sidebar CTA */
.mega-side { 
  width: 200px !important; 
  flex-shrink: 0 !important; 
  padding: 16px !important; 
  border-radius: 14px !important; 
  background: rgba(234,136,222,.04) !important; 
  border: 1px solid rgba(234,136,222,.1) !important; 
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 10px !important;
}
.mega-side-tag { font-size: 10px !important; font-weight: 700 !important; letter-spacing: .08em !important; text-transform: uppercase !important; color: var(--pk) !important; display: block !important; }
.mega-side-p { font-size: 11.5px !important; color: var(--muted) !important; line-height: 1.55 !important; margin: 0 !important; }
.mega-side .btn-p { 
  padding: 8px 16px !important; 
  font-size: 11px !important; 
  margin-top: 4px !important;
  white-space: nowrap !important;
}

/* Soluzioni Cards Grid */
.mega-grid-sol { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 12px !important; }

.mega-sol-card { padding: 16px 14px !important; border-radius: 14px !important; display: flex !important; flex-direction: column !important; align-items: center !important; gap: 6px !important; transition: all .25s var(--ease) !important; cursor: pointer !important; text-align: center !important; background: rgba(255,255,255,.02) !important; border: 1px solid rgba(255,255,255,.04) !important; }
.mega-sol-card:hover { background: rgba(234,136,222,.06) !important; border-color: rgba(234,136,222,.15) !important; transform: translateY(-2px) !important; }
.mega-sol-ic { color: var(--pk) !important; opacity: .7 !important; transition: opacity .25s !important; }
.mega-sol-card:hover .mega-sol-ic { opacity: 1 !important; }
.mega-sol-t { font-family: 'Outfit', sans-serif !important; font-weight: 700 !important; font-size: 13px !important; }
.mega-sol-d { font-size: 11px !important; color: var(--muted) !important; line-height: 1.45 !important; }

/* ========================================
   MOBILE BUBBLES
   ======================================== */
.mob-l, .mob-r { display: none !important; }

@media (max-width: 900px) {
  /* Hide desktop header on mobile */
  .hdr { display: none !important; }
  
  /* Show mobile bubbles */
  .mob-l {
    display: flex !important;
    position: fixed !important;
    top: 12px !important;
    left: 16px !important;
    z-index: 9998 !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(6,5,16,.85) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 24px rgba(0,0,0,.4) !important;
    transition: all .3s var(--ease) !important;
  }
  
  /* Center logo inside bubble */
  .mob-l a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    text-decoration: none !important;
  }
  
  .mob-r {
    display: flex !important;
    position: fixed !important;
    top: 12px !important;
    right: 16px !important;
    z-index: 9998 !important;
    border-radius: var(--pill) !important;
    background: rgba(6,5,16,.85) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    align-items: center !important;
    box-shadow: 0 4px 24px rgba(0,0,0,.4) !important;
    overflow: hidden !important;
    transition: all .3s var(--ease) !important;
  }
  
  .mob-hide { opacity: 0 !important; transform: scale(.8) !important; pointer-events: none !important; }
  
  .mob-cta { 
    font-size: 12px !important; 
    font-weight: 600 !important; 
    color: var(--white) !important; 
    padding: 11px 16px !important; 
    white-space: nowrap !important;
    text-decoration: none !important;
  }
  
  .mob-burg {
    display: flex !important;
    width: 44px !important;
    height: 44px !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 6px !important;
    align-items: center !important;
    border-left: 1px solid rgba(255,255,255,.06) !important;
    cursor: pointer !important;
    background: none !important;
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
  }
  
  .mob-burg .bl { width: 16px !important; }
}

/* Burger Lines */
.bl { display: block !important; width: 100% !important; height: 1.5px !important; background: var(--white) !important; border-radius: 2px !important; transition: transform .4s var(--ease) !important; }

/* ========================================
   MOBILE MAIN MENU
   ======================================== */
.mm {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  background: rgba(6,5,16,.97) !important;
  backdrop-filter: blur(40px) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 18px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity .35s var(--ease), visibility 0s .35s !important;
}

.mm.vis { opacity: 1 !important; visibility: visible !important; pointer-events: all !important; transition: opacity .35s var(--ease), visibility 0s !important; }

.mmx {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  color: var(--white) !important;
  font-size: 24px !important;
  z-index: 10001 !important;
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  background: none !important;
  border: none !important;
}

.mm-brand { position: absolute !important; top: 20px !important; left: 20px !important; }

.mml {
  font-family: 'Outfit', sans-serif !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  color: var(--white) !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  opacity: 0 !important;
  transform: translateY(16px) !important;
  transition: all .45s var(--ease) !important;
  padding: 6px 0 !important;
  text-decoration: none !important;
}

.mm.vis .mml { opacity: 1 !important; transform: translateY(0) !important; }
.mm.vis .mml:nth-child(1) { transition-delay: .05s !important; }
.mm.vis .mml:nth-child(2) { transition-delay: .1s !important; }
.mm.vis .mml:nth-child(3) { transition-delay: .15s !important; }
.mm.vis .mml:nth-child(4) { transition-delay: .2s !important; }
.mm.vis .mml:nth-child(5) { transition-delay: .25s !important; }

.mml-arr { color: var(--pk) !important; opacity: .6 !important; }
.mm-lang { margin-top: 20px !important; padding-top: 16px !important; border-top: 1px solid rgba(255,255,255,.06) !important; text-align: center !important; }
.mm-lsw { font-size: 14px !important; letter-spacing: .08em !important; }
.mm-lsw .lsw-opt { font-size: 14px !important; padding: 6px 14px !important; border-radius: var(--pill) !important; transition: all 0.3s !important; }
.mm-lsw .lsw-opt.lsw-active { background: rgba(234,136,222,0.12) !important; color: var(--pk) !important; }
.mm-cta { margin-top: 16px !important; width: auto !important; padding: 14px 36px !important; text-decoration: none !important; }

/* ========================================
   MOBILE SUBMENU
   ======================================== */
.msub {
  position: fixed !important;
  inset: 0 !important;
  z-index: 10002 !important;
  background: rgba(6,5,16,.98) !important;
  backdrop-filter: blur(40px) !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 20px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateX(30%) !important;
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility 0s .4s !important;
}

.msub.vis { opacity: 1 !important; visibility: visible !important; pointer-events: all !important; transform: translateX(0) !important; transition: opacity .4s var(--ease), transform .4s var(--ease), visibility 0s !important; }

.msub-back { display: flex !important; align-items: center !important; gap: 6px !important; color: var(--muted) !important; font-size: 14px !important; font-weight: 500 !important; margin-bottom: 16px !important; transition: color .3s !important; cursor: pointer !important; background: none !important; border: none !important; }
.msub-back:hover { color: var(--white) !important; }

.msub-title { font-family: 'Outfit', sans-serif !important; font-size: 32px !important; font-weight: 900 !important; margin-bottom: 24px !important; color: var(--pk) !important; text-decoration: none !important; display: block !important; }
.msub-scroll { flex: 1 !important; overflow-y: auto !important; padding-right: 10px !important; }
.msub-cat { margin-bottom: 20px !important; }
.msub-cat-h { display: flex !important; align-items: center !important; gap: 8px !important; font-family: 'Outfit', sans-serif !important; font-size: 12px !important; font-weight: 700 !important; letter-spacing: .06em !important; text-transform: uppercase !important; color: var(--pk) !important; margin-bottom: 8px !important; opacity: .7 !important; text-decoration: none !important; }
a.msub-cat-h:hover, a.msub-title:hover { opacity: .85 !important; }
.msub-cat-ic { opacity: .5 !important; color: var(--pk) !important; display: inline-flex !important; }
.msub-cat-ic svg { width: 14px !important; height: 14px !important; }

.msub-item { display: block !important; font-size: 15px !important; color: var(--muted) !important; padding: 8px 0 8px 20px !important; border-left: 2px solid rgba(255,255,255,.06) !important; transition: all .25s var(--ease) !important; text-decoration: none !important; }
.msub-item:hover { color: var(--white) !important; border-left-color: var(--pk) !important; padding-left: 24px !important; }

.msub-sol-grid { display: grid !important; grid-template-columns: 1fr !important; gap: 12px !important; }
.msub-sol-card { display: flex !important; align-items: center !important; gap: 14px !important; padding: 16px !important; border-radius: 16px !important; background: rgba(255,255,255,.03) !important; border: 1px solid rgba(255,255,255,.06) !important; transition: all .25s var(--ease) !important; text-decoration: none !important; }
.msub-sol-card:hover { background: rgba(234,136,222,.06) !important; border-color: rgba(234,136,222,.15) !important; }
.msub-sol-ic { color: var(--pk) !important; flex-shrink: 0 !important; display: inline-flex !important; }
.msub-sol-ic svg { width: 20px !important; height: 20px !important; }
.msub-sol-t { font-family: 'Outfit', sans-serif !important; font-weight: 700 !important; font-size: 15px !important; display: block !important; color: var(--white) !important; }
.msub-sol-d { font-size: 12px !important; color: var(--muted) !important; display: block !important; margin-top: 2px !important; }

/* ========================================
   MEGA MENU RESPONSIVE
   ======================================== */
@media (max-width: 1100px) {
  .mega-grid-srv { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero, .sec-hero, [data-id="hero"] {
  position: relative !important;
  min-height: 100vh !important;
  overflow: hidden !important;
}

/* Grid Background */
.gridbg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-image: 
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px) !important;
  background-size: 60px 60px !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

/* Force the widget containing gridbg to cover the entire section */
.sec .elementor-widget-html:has(.gridbg),
.sec .elementor-widget:has(.gridbg) {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.hero::before,
.sec-hero::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background-image: 
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px) !important;
  background-size: 60px 60px !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

/* Orbs Container (hero-specific opacity override) */
.orbs {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
  z-index: 0 !important;
  opacity: .7 !important;
  overflow: visible !important;
}

/* Hero section base - minimal CSS, let Elementor handle layout */
.hero,
.sec.hero {
  position: relative !important;
  min-height: 100vh !important;
  overflow: hidden !important;
}

/* Hero Tag */
.hero-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  color: var(--pk) !important;
  margin-bottom: 22px !important;
}

.pdot,
span.pdot {
  display: inline-block !important;
  width: 6px !important;
  height: 6px !important;
  min-width: 6px !important;
  min-height: 6px !important;
  border-radius: 50% !important;
  background: var(--pk) !important;
  background-color: #EA88DE !important;
  animation: pulse 2s ease-in-out infinite !important;
  flex-shrink: 0 !important;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

/* Hero H1 */
.hero-h1 {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(34px, 5.8vw, 70px) !important;
  line-height: 1.04 !important;
  letter-spacing: -.025em !important;
  margin-bottom: 22px !important;
  color: var(--white) !important;
}

.hero-h1 em {
  font-style: italic !important;
  color: var(--pk2) !important;
}

/* Hero Subtitle */
.hero-sub {
  font-size: clamp(14px, 1.6vw, 16.5px) !important;
  color: var(--muted) !important;
  line-height: 1.65 !important;
  margin-bottom: 30px !important;
  max-width: 480px !important;
}

/* Hero CTAs */
.hero-ctas {
  display: flex !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

/* Trust Bar / Partners */
.hero-trust {
  margin-top: 48px !important;
}

.pt-label {
  font-size: 9px !important;
  font-weight: 600 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  color: rgba(250,250,250,.2) !important;
  display: block !important;
  margin-bottom: 14px !important;
}

.pt-row {
  display: flex !important;
  gap: 24px !important;
  align-items: baseline !important;
  flex-wrap: wrap !important;
}

.pt {
  font-family: 'Outfit', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: rgba(250,250,250,.13) !important;
  letter-spacing: .03em !important;
  transition: color .4s !important;
  cursor: default !important;
  white-space: nowrap !important;
}

.pt:hover { color: rgba(250,250,250,.35) !important; }

/* Individual Partner Styles */
.pt-wordpress { font-family: Georgia, 'Times New Roman', serif !important; font-weight: 700 !important; font-size: 14.5px !important; letter-spacing: .01em !important; }
.pt-wix { font-weight: 900 !important; font-size: 17px !important; letter-spacing: -.03em !important; }
.pt-odoo { font-weight: 500 !important; font-size: 14px !important; letter-spacing: .08em !important; text-transform: lowercase !important; }
.pt-google { font-weight: 400 !important; font-size: 15px !important; letter-spacing: 0 !important; }
.pt-cloudflare { font-weight: 700 !important; font-size: 12px !important; letter-spacing: .05em !important; text-transform: uppercase !important; }
.pt-adobe { font-weight: 600 !important; font-size: 14px !important; letter-spacing: .03em !important; }
.pt-aruba { font-weight: 800 !important; font-size: 13.5px !important; letter-spacing: .04em !important; text-transform: uppercase !important; }

@media (max-width: 600px) {
  .pt-row { gap: 18px 20px !important; }
  .pt { font-size: 11.5px !important; }
}

/* Scroll Hint */
.scroll-hint, .scrollh {
  position: fixed !important;
  bottom: 28px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 6px !important;
  animation: scrollBounce 2.5s ease-in-out infinite !important;
  z-index: 50 !important;
  pointer-events: none !important;
  opacity: 1 !important;
  transition: opacity .4s !important;
}

.scroll-hint.hide, .scrollh-hide { opacity: 0 !important; }

.scroll-line, .scrollln {
  width: 1px !important;
  height: 32px !important;
  background: linear-gradient(to bottom, var(--pk), transparent) !important;
}

.scroll-text, .scrollt {
  font-size: 9px !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  color: var(--muted) !important;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 768px) {
  .scroll-hint, .scrollh { bottom: 20px !important; }
}

/* ========================================
   FOOTER
   ======================================== */
.ftr {
  position: relative !important;
  z-index: 100 !important;
  background: var(--bg2) !important;
  border-top: 1px solid rgba(255,255,255,.04) !important;
}

.ftrg {
  padding: 50px 24px 40px !important;
  display: grid !important;
  grid-template-columns: 1.5fr 1fr 1fr 1fr !important;
  gap: 40px !important;
  max-width: 1340px !important;
  margin: 0 auto !important;
}

@media (max-width: 900px) { .ftrg { grid-template-columns: 1fr 1fr !important; gap: 28px !important; } }
@media (max-width: 520px) { .ftrg { grid-template-columns: 1fr !important; } }

.ftrtl { font-size: 13px !important; color: var(--muted) !important; line-height: 1.6 !important; margin-bottom: 16px !important; }
.ftrs { display: flex !important; gap: 8px !important; }

.sbb {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--muted) !important;
  transition: all 0.3s !important;
}

.sbb:hover { border-color: var(--pk) !important; color: var(--pk) !important; background: rgba(234,136,222,.06) !important; }

.fcc h4 {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  font-size: 11.5px !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  margin-bottom: 12px !important;
}

.fcc a, .fcc span {
  display: block !important;
  font-size: 13px !important;
  color: var(--muted) !important;
  margin-bottom: 8px !important;
  transition: color 0.3s !important;
}

.fcc a:hover { color: var(--white) !important; }

.ftrbt {
  padding: 16px 24px !important;
  border-top: 1px solid rgba(255,255,255,.04) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  font-size: 12px !important;
  color: var(--muted) !important;
  max-width: 1340px !important;
  margin: 0 auto !important;
}

.ftrlk { display: flex !important; gap: 16px !important; flex-wrap: wrap !important; }
.ftrlk a { color: var(--muted) !important; transition: color 0.3s !important; }
.ftrlk a:hover { color: var(--white) !important; }

/* ========================================
   HERO
   ======================================== */
.hero { min-height: 100vh !important; padding: 120px 0 60px !important; }
.hero-ct { position: relative !important; z-index: 3 !important; max-width: 640px !important; }

.hero-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  color: var(--pk) !important;
  margin-bottom: 22px !important;
}

.hero-h1 {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(34px, 5.8vw, 70px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.025em !important;
  margin-bottom: 22px !important;
}

.hero-h1 em { color: var(--pk2) !important; }

.hero-sub {
  font-size: clamp(14px, 1.6vw, 16.5px) !important;
  color: var(--muted) !important;
  line-height: 1.65 !important;
  margin-bottom: 30px !important;
  max-width: 480px !important;
}

.hero-ctas { display: flex !important; gap: 12px !important; flex-wrap: wrap !important; }
.hero-trust { margin-top: 48px !important; }

/* Partner row */
.pt-label {
  font-size: 9px !important;
  font-weight: 600 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  color: rgba(250,250,250,.2) !important;
  display: block !important;
  margin-bottom: 14px !important;
}

.pt-row { display: flex !important; gap: 24px !important; align-items: baseline !important; flex-wrap: wrap !important; }

.pt {
  font-family: 'Outfit', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: rgba(250,250,250,.13) !important;
  letter-spacing: .03em !important;
  transition: color 0.4s !important;
  cursor: default !important;
  white-space: nowrap !important;
}

.pt:hover { color: rgba(250,250,250,.35) !important; }

/* PDOT - see above */

/* ========================================
   THREE.JS CANVAS
   ======================================== */
.three-canvas {
  position: fixed !important;
  inset: 0 !important;
  z-index: 50 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

.three-canvas canvas {
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Reveal variants (auto-applied by JS) ── */
.reveal-up    { opacity: 0; transform: translateY(24px);  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-left  { opacity: 0; transform: translateX(-24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(24px);  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-scale { opacity: 0; transform: scale(0.94);       transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal-blur  { opacity: 0; filter: blur(6px);            transition: opacity 0.7s var(--ease), filter 0.7s var(--ease); }

.reveal-up.in,
.reveal-left.in,
.reveal-right.in  { opacity: 1; transform: none; }
.reveal-scale.in  { opacity: 1; transform: none; }
.reveal-blur.in   { opacity: 1; filter: none; }

/* ── Stagger delays (auto-applied by JS) ── */
[data-reveal-d] { transition-delay: calc(var(--rd, 0) * 1ms) !important; }

/* ========================================
   BLOG SECTION - STORY CARDS (like v10)
   ======================================== */

/* Fix Elementor shortcode widget width */
.sec-blog .elementor-shortcode,
.sec-blog .elementor-widget-shortcode {
  width: 100% !important;
}

.story-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  width: 100% !important;
}

@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
}

@media (max-width: 640px) {
  .story-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 14px !important;
    padding-bottom: 16px !important;
  }
  .story-grid::-webkit-scrollbar {
    display: none !important;
  }
}

.story-card {
  position: relative !important;
  aspect-ratio: 9/16 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  cursor: pointer !important;
  transition: all .6s var(--ease) !important;
  display: block !important;
  text-decoration: none !important;
}

a.story-card {
  color: inherit !important;
  text-decoration: none !important;
}

@media (max-width: 640px) {
  .story-card {
    flex: 0 0 280px !important;
    scroll-snap-align: center !important;
    aspect-ratio: 9/15 !important;
    border-radius: 14px !important;
  }
}

.story-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.4) !important;
}

.story-card:hover .story-overlay {
  opacity: 0.3 !important;
}

.story-card:hover .story-bg {
  transform: scale(1.05) !important;
}

.story-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  transition: transform .6s var(--ease) !important;
}

.story-bg-img {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.story-gradient {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  opacity: 0.6 !important;
  transition: opacity .4s ease !important;
}

.story-card:hover .story-gradient {
  opacity: 0.4 !important;
}

.story-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.7) 100%) !important;
  transition: opacity .4s !important;
}

.story-content {
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  padding: 20px 18px !important;
}

@media (max-width: 640px) {
  .story-content {
    padding: 14px 12px !important;
  }
}

.story-top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.story-cat {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  padding: 4px 10px !important;
  border-radius: var(--pill) !important;
  background: rgba(255,255,255,.15) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

.story-date {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 10px !important;
  color: rgba(255,255,255,.5) !important;
}

.story-bottom {
  margin-top: auto !important;
}

.story-title {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(13px, 1.6vw, 17px) !important;
  line-height: 1.25 !important;
  color: #fff !important;
  margin-bottom: 8px !important;
}

.story-ex {
  font-family: 'DM Sans', sans-serif !important;
  font-size: clamp(10px, 1.1vw, 12.5px) !important;
  color: rgba(255,255,255,.6) !important;
  line-height: 1.5 !important;
  margin-bottom: 12px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.story-link {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  color: var(--pk2) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  text-decoration: none !important;
  transition: gap .3s var(--ease) !important;
}

.story-link:hover {
  gap: 8px !important;
  color: var(--pk) !important;
}

.story-bar {
  position: absolute !important;
  top: 10px !important;
  left: 18px !important;
  right: 18px !important;
  height: 2px !important;
  border-radius: 2px !important;
  background: rgba(255,255,255,.15) !important;
  z-index: 3 !important;
  overflow: hidden !important;
}

.story-bar-fill {
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, var(--pk), var(--pk2)) !important;
  transform: scaleX(0) !important;
  transform-origin: left !important;
  animation: storyFill 5.5s ease-in-out infinite !important;
}

.story-card:nth-child(2) .story-bar-fill {
  animation-delay: 1.8s !important;
}

.story-card:nth-child(3) .story-bar-fill {
  animation-delay: 3.6s !important;
}

@keyframes storyFill {
  0% { transform: scaleX(0); }
  45% { transform: scaleX(1); }
  55% { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}

/* ========================================
   WHY SECTION - CARD ACCENT (05)
   ======================================== */
.wc-acc {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  flex-basis: 100% !important;
}

.wc-acc:hover {
  border-color: rgba(234,136,222,.25) !important;
  box-shadow: 0 12px 36px rgba(234,136,222,.08), inset 0 1px 0 rgba(234,136,222,.15) !important;
}

.glass-acc {
  background: rgba(234,136,222,0.06) !important;
  border: 1px solid rgba(234,136,222,0.12) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

/* Blog CTA Button - centered and styled */
.sec-blog .elementor-widget-button {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
}

.sec-blog .elementor-button-wrapper {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
}

.sec-blog .elementor-button,
.sec-blog .btn-ghost {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 100px !important;
  color: #FAFAFA !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 14px 28px !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.sec-blog .elementor-button:hover,
.sec-blog .btn-ghost:hover {
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(255,255,255,0.25) !important;
  transform: translateY(-2px) !important;
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */
.btn-wa {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 100px !important;
  color: #FAFAFA !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 14px 28px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
}

.btn-wa svg {
  width: 18px !important;
  height: 18px !important;
  fill: currentColor !important;
  transition: all 0.3s ease !important;
}

.btn-wa:hover {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3) !important;
}

.btn-wa:hover svg {
  transform: scale(1.1) !important;
}

/* ========================================
   BLOG ARCHIVE GRID
   ======================================== */

.ure-blog-grid .elementor-post {
  background: rgba(255,255,255,0.02) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 20px !important;
  overflow: hidden;
  transition: all 0.4s ease !important;
}
.ure-blog-grid .elementor-post:hover {
  border-color: rgba(234,136,222,0.2) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(234,136,222,0.08);
}
.ure-blog-grid .elementor-post__thumbnail {
  border-radius: 20px 20px 0 0 !important;
}
.ure-blog-grid .elementor-post__text {
  padding: 24px !important;
}
.ure-blog-grid .elementor-post__title {
  margin-bottom: 8px !important;
}
.ure-blog-grid .elementor-post__title a {
  color: #FAFAFA !important;
  text-decoration: none !important;
  transition: color 0.3s;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  font-size: 20px !important;
  line-height: 1.3 !important;
}
.ure-blog-grid .elementor-post__title a:hover {
  color: #EA88DE !important;
}
.ure-blog-grid .elementor-post__excerpt p {
  color: rgba(250,250,250,0.6) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}
.ure-blog-grid .elementor-post__meta-data {
  color: rgba(250,250,250,0.4) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  margin-bottom: 12px !important;
}
.ure-blog-grid .elementor-post__meta-data a {
  color: rgba(250,250,250,0.4) !important;
  text-decoration: none !important;
}
.ure-blog-grid .elementor-post__badge {
  background: rgba(234,136,222,0.15) !important;
  color: #EA88DE !important;
  border-radius: 100px !important;
  padding: 4px 12px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
}
.ure-blog-grid .elementor-post__read-more {
  color: #EA88DE !important;
  text-decoration: none !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: color 0.3s;
  margin-top: 12px !important;
  display: inline-block !important;
}
.ure-blog-grid .elementor-post__read-more:hover {
  color: #C1BFE6 !important;
}

/* Pagination */
.ure-blog-grid .elementor-pagination {
  margin-top: 40px !important;
  gap: 8px !important;
  display: flex !important;
  justify-content: center !important;
}
.ure-blog-grid .elementor-pagination .page-numbers {
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 10px !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  background: rgba(255,255,255,0.02) !important;
  color: rgba(250,250,250,0.5) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  text-decoration: none !important;
  transition: all 0.3s !important;
}
.ure-blog-grid .elementor-pagination .page-numbers:hover,
.ure-blog-grid .elementor-pagination .page-numbers.current {
  border-color: rgba(234,136,222,0.3) !important;
  background: rgba(234,136,222,0.1) !important;
  color: #EA88DE !important;
}

/* Blog categories filter bar */
.blog-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.blog-cats a {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: rgba(250,250,250,0.7);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}
.blog-cats a:hover,
.blog-cats a.active {
  border-color: rgba(234,136,222,0.4);
  background: rgba(234,136,222,0.1);
  color: #EA88DE;
}

/* ========================================
   SINGLE BLOG POST
   ======================================== */

/* Breadcrumbs */
.sp-bread {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(250,250,250,0.4);
}
.sp-bread a {
  color: rgba(250,250,250,0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.sp-bread a:hover {
  color: #EA88DE;
}
.sp-bread .sep {
  color: rgba(250,250,250,0.2);
}

/* Category badge single post */
.sp-cat-badge a {
  color: #EA88DE !important;
  text-decoration: none !important;
  padding: 4px 14px;
  border-radius: 100px;
  background: rgba(234,136,222,0.1);
  border: 1px solid rgba(234,136,222,0.2);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
}

/* Post content typography */
.sp-content h2 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 30px !important;
  font-weight: 700 !important;
  color: #FAFAFA !important;
  margin: 48px 0 16px !important;
  line-height: 1.3 !important;
}
.sp-content h3 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  color: #FAFAFA !important;
  margin: 36px 0 12px !important;
  line-height: 1.3 !important;
}
.sp-content h4 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #FAFAFA !important;
  margin: 28px 0 10px !important;
  line-height: 1.4 !important;
}
.sp-content p {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 17px !important;
  line-height: 1.8 !important;
  color: rgba(250,250,250,0.7) !important;
  margin-bottom: 20px !important;
}
.sp-content a {
  color: #EA88DE !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(234,136,222,0.3);
  transition: border-color 0.3s;
}
.sp-content a:hover {
  border-color: #EA88DE;
}
.sp-content ul,
.sp-content ol {
  padding-left: 24px !important;
  margin-bottom: 20px !important;
}
.sp-content li {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 17px !important;
  line-height: 1.8 !important;
  color: rgba(250,250,250,0.7) !important;
  margin-bottom: 8px !important;
}
.sp-content li::marker {
  color: #EA88DE !important;
}
.sp-content blockquote {
  border-left: 3px solid #EA88DE !important;
  padding: 20px 24px !important;
  margin: 32px 0 !important;
  background: rgba(234,136,222,0.05) !important;
  border-radius: 0 12px 12px 0 !important;
}
.sp-content blockquote p {
  font-size: 18px !important;
  font-style: italic !important;
  color: rgba(250,250,250,0.8) !important;
  margin: 0 !important;
}
.sp-content img {
  border-radius: 16px !important;
  margin: 24px 0 !important;
  max-width: 100% !important;
  height: auto !important;
}
.sp-content code {
  background: rgba(255,255,255,0.06) !important;
  padding: 2px 8px !important;
  border-radius: 6px !important;
  font-size: 15px !important;
  color: #EA88DE !important;
}
.sp-content pre {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 12px !important;
  padding: 24px !important;
  overflow-x: auto !important;
  margin: 24px 0 !important;
}
.sp-content pre code {
  background: none !important;
  padding: 0 !important;
  color: rgba(250,250,250,0.8) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}
.sp-content table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 24px 0 !important;
}
.sp-content th {
  background: rgba(255,255,255,0.04) !important;
  padding: 12px 16px !important;
  text-align: left !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #FAFAFA !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}
.sp-content td {
  padding: 12px 16px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  color: rgba(250,250,250,0.6) !important;
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
}
.sp-content hr {
  border: none !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  margin: 40px 0 !important;
}

/* Share buttons */
.sp-share {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sp-share span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(250,250,250,0.5);
}
.sp-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(250,250,250,0.6);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px;
}
.sp-share a:hover {
  border-color: rgba(234,136,222,0.4);
  color: #EA88DE;
  background: rgba(234,136,222,0.08);
}

/* ========================================
   SOLUTION PAGES
   ======================================== */

.sol-card-hover {
  transition: all 0.4s ease !important;
}
.sol-card-hover:hover {
  border-color: rgba(234,136,222,0.2) !important;
  background: rgba(234,136,222,0.03) !important;
  transform: translateY(-4px);
}

/* Challenges grid */
.ch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .ch-grid { grid-template-columns: 1fr; }
}
.ch-card {
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  transition: all 0.3s;
}
.ch-card:hover {
  border-color: rgba(234,136,222,0.15);
}
.ch-card .ch-n {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #FAFAFA;
  margin-bottom: 8px;
}
.ch-card .ch-d {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(250,250,250,0.5);
}

/* Services grid */
.sv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .sv-grid { grid-template-columns: 1fr; }
}
.sv-card {
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  text-align: center;
  transition: all 0.3s;
}
.sv-card:hover {
  border-color: rgba(234,136,222,0.15);
  transform: translateY(-2px);
}
.sv-card .sv-ic {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: rgba(234,136,222,0.08);
  border: 1px solid rgba(234,136,222,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EA88DE;
  font-size: 22px;
}
.sv-card .sv-t {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #FAFAFA;
  margin-bottom: 6px;
}
.sv-card .sv-d {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(250,250,250,0.5);
}

/* Process steps */
.pr-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pr-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  transition: all 0.3s;
}
.pr-step:hover {
  border-color: rgba(234,136,222,0.12);
}
.pr-step .pr-n {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(234,136,222,0.1);
  border: 1px solid rgba(234,136,222,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #EA88DE;
  flex-shrink: 0;
}
.pr-step .pr-t {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #FAFAFA;
  margin-bottom: 4px;
}
.pr-step .pr-d {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(250,250,250,0.5);
}

/* Solution features list */
.sol-feat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sol-feat span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(250,250,250,0.5);
}
.sol-feat span::before {
  content: '✓';
  color: #EA88DE;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

/* "Why" section on solutions hub */
.sol-why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .sol-why { grid-template-columns: 1fr; }
}
.sol-why-card {
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  transition: all 0.3s;
}
.sol-why-card:hover {
  border-color: rgba(234,136,222,0.15);
}
.sol-why-n {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #EA88DE;
  font-weight: 600;
  margin-bottom: 12px;
}
.sol-why-t {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #FAFAFA;
  margin-bottom: 8px;
}
.sol-why-d {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(250,250,250,0.5);
}

/* ========================================
   UNIFORM CARD SYSTEM (global override)
   ======================================== */

/* Standard service card — uniform across all pages */
.ure-card {
  padding: 32px 28px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.ure-card:hover {
  border-color: rgba(234,136,222,0.18);
  transform: translateY(-3px);
  background: rgba(234,136,222,0.04);
  box-shadow: 0 8px 32px rgba(234,136,222,0.08);
}

/* Card link — arrow + hover */
.card-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--pk) !important;
  text-decoration: none !important;
  transition: gap 0.3s var(--ease), opacity 0.3s !important;
  margin-top: 12px !important;
}
.card-link:hover {
  gap: 10px !important;
  opacity: 0.85 !important;
}
.card-link::after {
  content: '\2192' !important;
  transition: transform 0.3s var(--ease) !important;
}
.card-link:hover::after {
  transform: translateX(2px) !important;
}

/* Card grid layouts */
.ure-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ure-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ure-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card on cream sections */
.sec-cream .ure-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}
.sec-cream .ure-card:hover {
  background: rgba(255,255,255,0.7);
  border-color: rgba(176,102,167,0.2);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

/* Card text on cream */
.sec-cream .ure-card h3,
.sec-cream .ure-card .elementor-heading-title {
  color: #1A1730 !important;
}
.sec-cream .ure-card p,
.sec-cream .ure-card .elementor-text-editor p {
  color: rgba(26,23,48,0.6) !important;
}

/* Standardize boxed widths */
.ure-boxed {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section with orbs + grid background (reusable) */
.ure-sec-bg {
  position: relative;
  overflow: hidden;
}
.ure-sec-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Responsive grid overrides */
@media (max-width: 1024px) {
  .ure-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .ure-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .ure-grid-2,
  .ure-grid-3,
  .ure-grid-4 { grid-template-columns: 1fr; gap: 16px; }
}

/* ========================================
   FAQ REDESIGN — Two Column Layout
   ======================================== */

/* Main FAQ container: 2 columns */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.85fr;
  gap: 48px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Left CTA sticky */
.faq-cta {
  position: sticky;
  top: 120px;
  background: linear-gradient(135deg, rgba(234,136,222,0.08), rgba(193,191,230,0.06));
  border: 1px solid rgba(234,136,222,0.15);
  border-radius: 32px;
  padding: 48px 36px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), inset 0 1px 0 rgba(234,136,222,0.12);
}
.faq-cta__title {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #FAFAFA;
  line-height: 1.2;
  margin-bottom: 16px;
}
.faq-cta__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(250,250,250,0.6);
  margin-bottom: 28px;
}
.faq-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--pk), var(--pk3));
  color: #060510;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(234,136,222,0.25);
  margin-bottom: 24px;
}
.faq-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(234,136,222,0.4);
  filter: brightness(1.08);
  color: #060510;
}
.faq-cta__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.faq-cta__contact a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(250,250,250,0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.faq-cta__contact a:hover {
  color: #EA88DE;
}

/* Right FAQ accordion area */
.faq-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.faq-category__title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #EA88DE;
  margin-bottom: 20px;
}

/* Accordion items — rounded */
.faq-content .elementor-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-content .elementor-accordion .elementor-accordion-item {
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 16px !important;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s;
}
.faq-content .elementor-accordion .elementor-accordion-item:hover {
  border-color: rgba(234,136,222,0.12) !important;
}
.faq-content .elementor-accordion .elementor-tab-title {
  padding: 20px 24px !important;
  background: transparent !important;
  border: none !important;
  color: #FAFAFA !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}
.faq-content .elementor-accordion .elementor-tab-title .elementor-accordion-icon {
  color: #EA88DE !important;
}
.faq-content .elementor-accordion .elementor-tab-content {
  padding: 0 24px 20px !important;
  border-top: none !important;
  color: rgba(250,250,250,0.7) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

/* FAQ responsive */
@media (max-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-cta {
    position: static;
    order: -1;
  }
}
@media (max-width: 767px) {
  .faq-cta {
    padding: 32px 24px;
    border-radius: 24px;
  }
  .faq-cta__title { font-size: 24px; }
  .faq-layout { padding: 0 16px; }
}

/* ========================================
   WORDPRESS DEFAULT OVERRIDES (blog)
   ======================================== */

/* Archive/category pages inheriting dark theme */
body.blog,
body.archive,
body.single-post {
  background-color: #060510 !important;
}

/* Comments section dark theme */
.comments-area {
  background: transparent !important;
}
.comments-area .comment-respond {
  padding: 32px !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 20px !important;
  background: rgba(255,255,255,0.02) !important;
}
.comments-area label {
  color: rgba(250,250,250,0.6) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
}
.comments-area input[type="text"],
.comments-area input[type="email"],
.comments-area input[type="url"],
.comments-area textarea {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 12px !important;
  color: #FAFAFA !important;
  padding: 12px 16px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  transition: border-color 0.3s !important;
}
.comments-area input:focus,
.comments-area textarea:focus {
  border-color: rgba(234,136,222,0.4) !important;
  outline: none !important;
}
.comments-area .submit {
  background: #EA88DE !important;
  color: #060510 !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 14px 32px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
}
.comments-area .submit:hover {
  background: #d66fc8 !important;
  transform: translateY(-2px) !important;
}
.comments-area .comment-reply-title {
  color: #FAFAFA !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
}

/* Navigation post links */
.post-navigation {
  padding: 30px 0 !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
}
.post-navigation a {
  color: rgba(250,250,250,0.6) !important;
  text-decoration: none !important;
  font-family: 'DM Sans', sans-serif !important;
  transition: color 0.3s !important;
}
.post-navigation a:hover {
  color: #EA88DE !important;
}

/* ========================================
   SEARCH FORM
   ======================================== */

.ure-search-form .elementor-search-form__container {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  border-radius: 100px !important;
  overflow: hidden !important;
  transition: border-color 0.3s !important;
}
.ure-search-form .elementor-search-form__container:focus-within {
  border-color: rgba(234,136,222,0.4) !important;
  box-shadow: 0 0 0 3px rgba(234,136,222,0.08) !important;
}
.ure-search-form .elementor-search-form__input {
  background: transparent !important;
  color: #FAFAFA !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  padding: 14px 24px !important;
  border: none !important;
}
.ure-search-form .elementor-search-form__input::placeholder {
  color: rgba(250,250,250,0.35) !important;
}
.ure-search-form .elementor-search-form__submit {
  background: transparent !important;
  border: none !important;
  color: rgba(250,250,250,0.5) !important;
  padding: 0 20px !important;
  cursor: pointer !important;
  transition: color 0.3s !important;
}
.ure-search-form .elementor-search-form__submit:hover {
  color: #EA88DE !important;
}
.ure-search-form .elementor-search-form__icon {
  font-size: 16px !important;
}

/* ========================================
   DYNAMIC CATEGORY FILTERS
   ======================================== */

.blog-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.ure-cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: rgba(250,250,250,0.7);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}
.ure-cat-link:hover {
  border-color: rgba(234,136,222,0.4);
  background: rgba(234,136,222,0.08);
  color: #EA88DE;
}
.ure-cat-link.active {
  border-color: rgba(234,136,222,0.5);
  background: rgba(234,136,222,0.12);
  color: #EA88DE;
  font-weight: 600;
}
.ure-cat-link.loading {
  pointer-events: none;
  opacity: 0.5;
}
.ure-cat-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  font-size: 11px;
  font-weight: 600;
  color: rgba(250,250,250,0.4);
  line-height: 1;
}
.ure-cat-link.active .ure-cat-count {
  background: rgba(234,136,222,0.2);
  color: #EA88DE;
}

/* WordPress search results page dark theme */
body.search-results {
  background-color: #060510 !important;
}
body.search-results .page-header {
  color: #FAFAFA !important;
}
body.search-results .page-header h1 {
  font-family: 'Outfit', sans-serif !important;
  color: #FAFAFA !important;
}

/* ========================================
   BLOG PJAX TRANSITIONS + CARD STYLES
   ======================================== */
.ure-pjax-loading {
  opacity: 0.3;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  pointer-events: none;
}
.ure-pjax-enter {
  animation: pjaxFadeIn 0.5s var(--ease) both;
}
@keyframes pjaxFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ure-blog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgba(250,250,250,0.4);
}

/* ========================================
   NEWSLETTER — CARD-AS-LETTER
   The card IS the letter. It shrinks and moves
   UP while the envelope slides UP from below.
   They meet; card slides DOWN into envelope;
   flap closes; envelope flies away.
   ======================================== */
.ure-newsletter {
  position: relative;
  perspective: 1200px;
  margin-left: auto;
  margin-right: auto;
  transition: max-width 0.7s var(--ease), height 0.7s var(--ease);
}
.ure-newsletter.is-shrinking {
  overflow: hidden;
}

/* --- The card IS the letter --- */
.ure-newsletter__card {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--rl);
  padding: 48px 40px;
  text-align: center;
  z-index: 2;
  will-change: transform, opacity;
  transition: transform 0.7s var(--ease), opacity 0.5s var(--ease);
}

/* --- Phase 1: Content --- */
.ure-newsletter__content {
  transform-style: preserve-3d;
}
.ure-newsletter__heading {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #FAFAFA;
  margin: 0 0 12px;
}
.ure-newsletter__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgba(250,250,250,0.6);
  line-height: 1.7;
  margin: 0 auto 24px;
  max-width: 480px;
}
.ure-newsletter__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--pill);
  background: linear-gradient(135deg, var(--pk), #B066A7);
  color: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(234,136,222,0.25);
}
.ure-newsletter__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(234,136,222,0.4);
}

/* --- Fold animation (CTA → form) --- */
.ure-newsletter.is-folding .ure-newsletter__heading,
.ure-newsletter.is-folding .ure-newsletter__desc,
.ure-newsletter.is-folding .ure-newsletter__cta {
  transform-origin: center bottom;
}
.ure-newsletter.is-folding .ure-newsletter__heading {
  animation: nlFoldUp 0.5s var(--ease) forwards;
}
.ure-newsletter.is-folding .ure-newsletter__desc {
  animation: nlFoldUp 0.5s var(--ease) 0.08s forwards;
}
.ure-newsletter.is-folding .ure-newsletter__cta {
  animation: nlFoldUp 0.5s var(--ease) 0.16s forwards;
}
@keyframes nlFoldUp {
  0%   { opacity: 1; transform: rotateX(0) scale(1); }
  100% { opacity: 0; transform: rotateX(-90deg) scale(0.85); }
}

/* --- Phase 2: Form --- */
.ure-newsletter__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  max-height: 0;
  overflow: hidden;
}
.ure-newsletter.is-form .ure-newsletter__form {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  max-height: 300px;
  overflow: visible;
}

.ure-newsletter__field-email {
  width: 100%;
  max-width: 360px;
}
.ure-newsletter__input {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--pill);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #FAFAFA;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
}
.ure-newsletter__input::placeholder {
  color: rgba(250,250,250,0.35);
}
.ure-newsletter__input:focus {
  border-color: rgba(234,136,222,0.4);
  box-shadow: 0 0 0 3px rgba(234,136,222,0.08);
}

.ure-newsletter__privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(250,250,250,0.5);
  cursor: pointer;
  max-width: 360px;
  text-align: left;
}
.ure-newsletter__privacy a {
  color: var(--pk);
  text-decoration: underline;
}
.ure-newsletter__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.ure-newsletter__checkmark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.ure-newsletter__checkbox:checked + .ure-newsletter__checkmark {
  border-color: var(--pk);
  background: rgba(234,136,222,0.15);
}
.ure-newsletter__checkbox:checked + .ure-newsletter__checkmark::after {
  content: '';
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--pk);
  border-bottom: 2px solid var(--pk);
  transform: rotate(-45deg) translateY(-1px);
}

.ure-newsletter__submit {
  padding: 12px 32px;
  border-radius: var(--pill);
  background: linear-gradient(135deg, var(--pk), #B066A7);
  color: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: opacity 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(234,136,222,0.25);
}
.ure-newsletter__submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.ure-newsletter__submit:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(234,136,222,0.4);
}

/* --- Email text (shown when card becomes letter) --- */
.ure-newsletter__env-email {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--pk);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s var(--ease) 0.3s;
}

/* --- Form → letter: card shrinks + moves UP, envelope slides UP from below --- */
.ure-newsletter.is-to-letter .ure-newsletter__card {
  transform: scale(0.55) translateY(-30%);
  border-color: transparent;
}
.ure-newsletter.is-to-letter .ure-newsletter__envelope {
  opacity: 1;
  transform: translate(-50%, -15%);
}
.ure-newsletter.is-to-letter .ure-newsletter__form {
  pointer-events: none;
  max-height: 300px;
  overflow: visible;
  opacity: 1;
}
.ure-newsletter.is-to-letter .ure-newsletter__field-email,
.ure-newsletter.is-to-letter .ure-newsletter__privacy,
.ure-newsletter.is-to-letter .ure-newsletter__submit {
  animation: nlFieldOut 0.4s var(--ease) forwards;
}
.ure-newsletter.is-to-letter .ure-newsletter__env-email {
  opacity: 1;
}
@keyframes nlFieldOut {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* --- Envelope: starts BELOW center, slides UP when is-to-letter --- */
.ure-newsletter__envelope {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 80%);
  width: 260px;
  height: 170px;
  z-index: 1;
  color: var(--pk);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  transition: opacity 0.5s var(--ease), transform 0.7s var(--ease);
  transform-style: preserve-3d;
  perspective: 800px;
}

/* Body: rectangle that fills the envelope container */
.ure-newsletter__env-body {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Flap: triangle ABOVE the body, folds DOWN to close */
.ure-newsletter__env-flap {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 48%;
  transform-origin: bottom center;
  transform: rotateX(0deg);
  z-index: 4;
  will-change: transform;
  transition: transform 0.8s cubic-bezier(.16,1,.3,1);
}
.ure-newsletter__env-flap svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Card slides DOWN into envelope position, fades out */
.ure-newsletter.is-inserting .ure-newsletter__card {
  transform: scale(0.55) translateY(60%);
  opacity: 0;
}

/* Flap closes (folds forward over opening) */
.ure-newsletter.is-closing .ure-newsletter__env-flap {
  transform: rotateX(180deg);
}

/* Envelope flies away */
.ure-newsletter.is-flying .ure-newsletter__envelope {
  animation: nlFlyAway 1s var(--ease) forwards;
}
@keyframes nlFlyAway {
  0%   { opacity: 1; transform: translate(-50%, -15%) rotate(0deg); }
  20%  { opacity: 1; transform: translate(-40%, -15%) rotate(2deg); }
  100% { opacity: 0; transform: translate(120vw, -15%) rotate(15deg); }
}

/* --- Hide card + envelope on success/fail --- */
.ure-newsletter.is-success .ure-newsletter__card,
.ure-newsletter.is-fail .ure-newsletter__card,
.ure-newsletter.is-success .ure-newsletter__envelope,
.ure-newsletter.is-fail .ure-newsletter__envelope {
  opacity: 0;
  pointer-events: none;
}

/* --- SVG draw animation (shared) --- */
.nl-svg-circle { fill: none; stroke-dasharray: 164; stroke-dashoffset: 164; }
.nl-svg-check  { fill: none; stroke-dasharray: 40;  stroke-dashoffset: 40; }
.nl-svg-x1     { fill: none; stroke-dasharray: 23;  stroke-dashoffset: 23; }
.nl-svg-x2     { fill: none; stroke-dasharray: 23;  stroke-dashoffset: 23; }

.ure-newsletter.is-success .nl-svg-circle { animation: nlDrawCircle 0.6s ease 0.15s forwards; }
.ure-newsletter.is-success .nl-svg-check  { animation: nlDrawCheck  0.4s ease 0.6s  forwards; }
.ure-newsletter.is-fail .nl-svg-circle    { animation: nlDrawCircle 0.6s ease 0.15s forwards; }
.ure-newsletter.is-fail .nl-svg-x1        { animation: nlDrawX      0.3s ease 0.55s forwards; }
.ure-newsletter.is-fail .nl-svg-x2        { animation: nlDrawX      0.3s ease 0.75s forwards; }

@keyframes nlDrawCircle { to { stroke-dashoffset: 0; } }
@keyframes nlDrawCheck  { to { stroke-dashoffset: 0; } }
@keyframes nlDrawX      { to { stroke-dashoffset: 0; } }

/* --- Phase 4a: Success --- */
.ure-newsletter__success {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.ure-newsletter.is-success .ure-newsletter__success {
  opacity: 1;
  pointer-events: auto;
}
.ure-newsletter__check-icon,
.ure-newsletter__fail-icon {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.ure-newsletter.is-success .ure-newsletter__check-icon,
.ure-newsletter.is-fail .ure-newsletter__fail-icon {
  opacity: 1;
  transform: scale(1);
}
.ure-newsletter__success-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: rgba(250,250,250,0.85);
  margin: 0;
}
.ure-newsletter__success-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(250,250,250,0.4);
  margin: 0;
}
.ure-newsletter__resend {
  margin-top: 8px;
  padding: 10px 24px;
  border-radius: var(--pill);
  background: transparent;
  border: 1px solid rgba(234,136,222,0.3);
  color: var(--pk);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s;
}
.ure-newsletter__resend:hover {
  background: rgba(234,136,222,0.08);
  border-color: rgba(234,136,222,0.5);
}

/* --- Phase 4b: Fail --- */
.ure-newsletter__fail {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.ure-newsletter.is-fail .ure-newsletter__fail {
  opacity: 1;
  pointer-events: auto;
}
.ure-newsletter.is-fail .ure-newsletter__fail-icon {
  animation: nlIconPop 0.5s var(--ease) both;
}
.ure-newsletter__fail-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: rgba(250,250,250,0.85);
  margin: 0;
  text-align: center;
}
.ure-newsletter__retry {
  margin-top: 8px;
  padding: 10px 24px;
  border-radius: var(--pill);
  background: transparent;
  border: 1px solid rgba(255,107,107,0.3);
  color: #ff6b6b;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s;
}
.ure-newsletter__retry:hover {
  background: rgba(255,107,107,0.08);
  border-color: rgba(255,107,107,0.5);
}

/* --- Inline error (field-level) --- */
.ure-newsletter__error {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #ff6b6b;
  margin: 8px 0 0;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.ure-newsletter__error.visible {
  opacity: 1;
}

/* --- Newsletter tablet --- */
@media (max-width: 1024px) {
  .ure-newsletter__card {
    padding: 40px 28px;
  }
  .ure-newsletter__desc {
    max-width: 100%;
  }
  .ure-newsletter__field-email,
  .ure-newsletter__privacy {
    max-width: 100%;
  }
}

/* --- Newsletter mobile --- */
@media (max-width: 767px) {
  /* Full-bleed — escape Elementor column padding */
  .ure-newsletter {
    margin-left: -16px !important;
    margin-right: -16px !important;
    width: calc(100% + 32px) !important;
  }
  .ure-newsletter__card {
    padding: 32px 20px !important;
    border-radius: 12px !important;
  }
  .ure-newsletter__heading {
    font-size: 22px !important;
    margin-bottom: 10px !important;
  }
  .ure-newsletter__desc {
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    max-width: 100% !important;
  }
  .ure-newsletter__cta {
    padding: 12px 24px !important;
    font-size: 14px !important;
    width: 100% !important;
    justify-content: center;
    box-sizing: border-box;
  }
  .ure-newsletter__form {
    width: 100% !important;
    padding: 0 4px !important;
    box-sizing: border-box;
  }
  .ure-newsletter__field-email {
    max-width: 100% !important;
    width: 100% !important;
  }
  .ure-newsletter__privacy {
    max-width: 100% !important;
    font-size: 12px !important;
  }
  .ure-newsletter__input {
    padding: 12px 16px !important;
    font-size: 14px !important;
    width: 100% !important;
    box-sizing: border-box;
  }
  .ure-newsletter__submit {
    padding: 12px 24px !important;
    font-size: 14px !important;
    width: 100% !important;
    box-sizing: border-box;
  }
  .ure-newsletter__envelope {
    width: 180px;
    height: 118px;
  }
  .ure-newsletter__success,
  .ure-newsletter__fail {
    padding: 24px 20px;
    gap: 12px;
  }
  .ure-newsletter__check-icon,
  .ure-newsletter__fail-icon {
    width: 44px;
    height: 44px;
  }
  .ure-newsletter__success-text,
  .ure-newsletter__fail-text {
    font-size: 15px;
  }
  .ure-newsletter__success-sub {
    font-size: 13px;
  }
  .ure-newsletter__resend,
  .ure-newsletter__retry {
    padding: 10px 20px;
    font-size: 13px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
  /* Hide env-email text on mobile — too small to read */
  .ure-newsletter__env-email {
    font-size: 12px;
  }
}

/* --- Newsletter small mobile --- */
@media (max-width: 400px) {
  .ure-newsletter {
    margin-left: -10px !important;
    margin-right: -10px !important;
    width: calc(100% + 20px) !important;
  }
  .ure-newsletter__card {
    padding: 24px 16px !important;
    border-radius: 10px !important;
  }
  .ure-newsletter__heading {
    font-size: 20px !important;
  }
  .ure-newsletter__desc {
    font-size: 13px;
  }
  .ure-newsletter__envelope {
    width: 160px;
    height: 105px;
  }
}

/* ========================================
   HERO GLOW & BOUNCE ANIMATION
   ======================================== */
@keyframes ureBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
.ure-hero-glow {
  filter: blur(80px);
  pointer-events: none;
}

/* ========================================
   CHI SIAMO — GRID SECTIONS
   Force Elementor containers into proper columns
   ======================================== */

/* === Timeline card text — force dark on cream bg === */
.ure-tl h3,
.ure-tl__card h3,
.ure-tl__card-title,
.ure-tl .ure-tl__card-title {
    color: #1A1730 !important;
    -webkit-text-fill-color: #1A1730 !important;
}
.ure-tl p,
.ure-tl__card p,
.ure-tl__card-desc,
.ure-tl .ure-tl__card-desc {
    color: rgba(26,23,48,0.6) !important;
    -webkit-text-fill-color: rgba(26,23,48,0.6) !important;
}
.ure-tl__intro-title,
.ure-tl__outro-title,
.ure-tl .ure-tl__intro-title,
.ure-tl .ure-tl__outro-title {
    color: #1A1730 !important;
    -webkit-text-fill-color: #1A1730 !important;
}
.ure-tl__intro-title em,
.ure-tl__outro-title em {
    color: #EA88DE !important;
    -webkit-text-fill-color: #EA88DE !important;
}
.ure-tl__intro-desc {
    color: rgba(26,23,48,0.6) !important;
    -webkit-text-fill-color: rgba(26,23,48,0.6) !important;
}
.ure-tl__chip {
    color: #B066A7 !important;
    -webkit-text-fill-color: #B066A7 !important;
}
/* Year gradient text must keep transparent fill */
.ure-tl__card-year {
    -webkit-text-fill-color: transparent !important;
}

/* === Valori Grid: 3 colonne === */
.ure-valori-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
}
.ure-valori-grid > .e-con,
.ure-valori-grid > .e-con-inner > .e-con,
.ure-valori-card {
    width: 100% !important;
    max-width: 100% !important;
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: 24px !important;
    padding: 32px 28px !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    transition: transform 0.4s var(--ease), border-color 0.4s !important;
}
.ure-valori-grid > .e-con:hover,
.ure-valori-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(234,136,222,0.2) !important;
}
/* Valori card text */
.ure-valori-card h3,
.ure-valori-grid .elementor-heading-title {
    color: #FAFAFA !important;
}
.ure-valori-card p,
.ure-valori-grid .elementor-text-editor p {
    color: rgba(250,250,250,0.6) !important;
}

/* === Numeri Row: 4 colonne === */
.ure-numeri-row {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 40px !important;
    text-align: center !important;
}
.ure-numeri-row > .e-con,
.ure-numeri-row > .e-con-inner > .e-con,
.ure-numeri-item {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
}

/* Counter widget number styling */
.ure-numeri-row .elementor-counter-number-wrapper,
.ure-numeri-item .elementor-counter-number-wrapper {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 900 !important;
    font-size: 48px !important;
    line-height: 1.1 !important;
}

/* === CTA Box glass === */
.ure-cta-box {
    background: linear-gradient(135deg, rgba(234,136,222,0.1), rgba(193,191,230,0.05)) !important;
    border: 1px solid rgba(234,136,222,0.2) !important;
    border-radius: 32px !important;
    padding: 60px 48px !important;
}

/* === Storia section - cream bg text === */
.ure-storia-section h2,
.ure-storia-section .elementor-heading-title {
    color: #1A1730 !important;
}
.ure-storia-section p,
.ure-storia-section .elementor-text-editor p {
    color: rgba(26,23,48,0.8) !important;
}

/* ============================================================
   CHI SIAMO – GRID FIX (by Elementor data-id)
   Targets specific containers to force grid layout even
   when CSS classes are not assigned via JSON import.
   ============================================================ */

/* ─── VALORI: 3 columns ─── */
.elementor-element-g21qskf > .e-con-inner {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
}

.elementor-element-q6ugri5,
.elementor-element-0rhopc8,
.elementor-element-pwbo20h {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
}

.elementor-element-g21qskf > .e-con-inner > .e-con {
  width: 100% !important;
  min-width: 0 !important;
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  padding: 32px 28px !important;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease !important;
}

.elementor-element-g21qskf > .e-con-inner > .e-con:hover {
  border-color: rgba(234, 136, 222, 0.15) !important;
  background: rgba(234, 136, 222, 0.04) !important;
  transform: translateY(-2px) !important;
}

.elementor-element-g21qskf h3.elementor-heading-title {
  color: #FAFAFA !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 800 !important;
  font-size: 18px !important;
  margin-bottom: 8px !important;
}

.elementor-element-g21qskf .elementor-text-editor p {
  color: rgba(250, 250, 250, 0.55) !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

.elementor-element-g21qskf .elementor-icon svg,
.elementor-element-g21qskf .elementor-icon i {
  color: #EA88DE !important;
  fill: #EA88DE !important;
}

/* ─── NUMERI: 4 columns ─── */
.elementor-element-da9nrqt > .e-con-inner {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  text-align: center !important;
}

.elementor-element-8ycwf65,
.elementor-element-h2ue5rg,
.elementor-element-lpx4oqm,
.elementor-element-tydezlr {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  text-align: center !important;
}

.elementor-element-da9nrqt > .e-con-inner > .e-con {
  width: 100% !important;
  min-width: 0 !important;
  text-align: center !important;
  padding: 20px 12px !important;
}

/* Hide placeholder "Numero fantastico" counter title on chi-siamo */
.elementor-element-da9nrqt .elementor-counter-title {
  display: none !important;
}

/* Real labels in Text Editor widgets */
.elementor-element-da9nrqt .elementor-text-editor,
.elementor-element-da9nrqt .elementor-widget-text-editor p {
  color: rgba(250, 250, 250, 0.5) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  letter-spacing: 0.02em !important;
  text-align: center !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .ure-valori-grid,
  .elementor-element-g21qskf > .e-con-inner {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .ure-numeri-row,
  .elementor-element-da9nrqt > .e-con-inner {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 767px) {
  .ure-valori-grid,
  .elementor-element-g21qskf > .e-con-inner {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .ure-numeri-row,
  .elementor-element-da9nrqt > .e-con-inner {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .ure-cta-box {
    padding: 40px 24px !important;
  }
}

/* ========================================
   CLOUD 3D - BACK BUTTON (Global)
   ======================================== */
.ure-cloud3d__back-wrap {
  display: block;
}

.ure-cloud3d__back-btn {
  position: fixed;
  top: 130px;
  left: 20px;
  z-index: 9990;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 5, 16, 0.85) !important;
  border: 1px solid rgba(234, 136, 222, 0.21) !important;
  border-radius: 100px !important;
  padding: 10px 22px !important;
  color: #FAFAFA !important;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-decoration: none !important;
}

/* When header is scrolled (compact mode) */
.ure-cloud3d__back-btn.scrolled {
  top: 20px;
}

.ure-cloud3d__back-btn:hover {
  border-color: var(--pk, #EA88DE) !important;
  color: #FAFAFA !important;
}

.ure-cloud3d__back-btn svg {
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .ure-cloud3d__back-btn {
    top: auto;
    bottom: 20px;
    left: 16px;
  }

  .ure-cloud3d__back-btn.scrolled {
    top: auto;
    bottom: 20px;
  }
}

/* ========================================
   RESPONSIVE 2026 - FLUID DESIGN SYSTEM
   ======================================== */

/* Responsive section padding */
@media (max-width: 1024px) {
  .e-con.e-parent { padding-top: clamp(48px, 8vw, 80px) !important; padding-bottom: clamp(48px, 8vw, 80px) !important; }
  .e-con.e-parent > .e-con { padding-left: 0 !important; padding-right: 0 !important; }
}
@media (max-width: 640px) {
  .e-con.e-parent { padding-left: clamp(14px, 4vw, 20px) !important; padding-right: clamp(14px, 4vw, 20px) !important; }
}

/* Responsive flex gaps */
@media (max-width: 768px) {
  .e-con[style*="gap"] { gap: clamp(12px, 3vw, 20px) !important; }
  .sh { margin-bottom: 28px !important; }
}

/* Responsive buttons */
@media (max-width: 640px) {
  .btn-p, .elementor-button.btn-p, a.btn-p,
  .elementor-button[href*="contatti"], .elementor-button[href*="progetto"],
  .elementor-button[href*="contact"], .elementor-button[href*="project"] { padding: 12px 24px !important; font-size: 13px !important; }
  .btn-ghost, .elementor-button.btn-ghost, a.btn-ghost,
  .elementor-button[href*="servizi"]:not([href*="contatti"]),
  .elementor-button[href*="services"]:not([href*="contact"]) { padding: 12px 24px !important; font-size: 13px !important; }
  .elementor-widget-button .elementor-button { padding: 12px 24px !important; font-size: 13px !important; }
  .btn-lg { padding: 14px 28px !important; font-size: 14px !important; }
}

/* Responsive card padding */
@media (max-width: 768px) {
  .sc { padding: 22px 20px !important; }
  .wc { padding: 28px 24px !important; }
  .tc { padding: 32px 24px 28px !important; min-height: auto !important; }
  .ure-card { padding: 24px 20px !important; }
}
@media (max-width: 480px) {
  .sc { padding: 20px 16px !important; }
  .wc { padding: 24px 20px !important; }
  .ure-card { padding: 20px 16px !important; }
}

/* Responsive CTA box */
@media (max-width: 768px) {
  .srv-cta-box, [class*="cta-box"] { padding: 40px 24px !important; }
  .sec-cta { padding: 60px 0 !important; }
}
@media (max-width: 480px) {
  .srv-cta-box, [class*="cta-box"] { padding: 32px 20px !important; }
}

/* Responsive hero */
@media (max-width: 768px) {
  .hero, .sec-hero, .sec.hero, .sec-hero-service { min-height: 75vh !important; }
  .hero-trust { margin-top: 28px !important; }
  .hero-h1 { margin-bottom: 16px !important; }
  .hero-sub { margin-bottom: 20px !important; max-width: 100% !important; }
}
@media (max-width: 480px) {
  .hero, .sec-hero, .sec.hero, .sec-hero-service { min-height: auto !important; padding-top: 100px !important; padding-bottom: 60px !important; }
}

/* Responsive grids */
@media (max-width: 768px) {
  .ure-grid-2 { grid-template-columns: 1fr !important; }
}

/* Responsive stat cards */
@media (max-width: 640px) {
  .ure-numeri-item { padding: 12px 8px !important; }
}

/* Responsive footer */
@media (max-width: 640px) {
  .ftr { padding: 40px 16px 24px !important; }
}

/* Responsive accordion */
@media (max-width: 640px) {
  .elementor-accordion .elementor-tab-title { padding: 14px 16px !important; font-size: 14px !important; }
  .elementor-accordion .elementor-tab-content { padding: 12px 16px !important; font-size: 14px !important; }
}

/* Responsive counter widget */
@media (max-width: 768px) {
  .elementor-counter-number-wrapper, .elementor-counter-number { font-size: clamp(28px, 5vw, 48px) !important; }
}

/* Responsive images and media */
.elementor-widget-image img { max-width: 100% !important; height: auto !important; }

/* Hide old scroll-hint on all devices */
.scroll-hint, .scrollh, .srv-scroll-hint { display: none !important; }

/* Container query support for modern browsers */
@supports (container-type: inline-size) {
  .e-con { container-type: inline-size; }
  @container (max-width: 600px) {
    .ure-card { padding: 20px 16px; }
  }
}

/* Counter shimmer after count-up */
@keyframes counterShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.sv.counted, .elementor-counter-number-wrapper.counted {
  background-size: 200% auto !important;
  animation: counterShimmer 1.5s ease-out 1 !important;
}

/* Mobile reveal distances — shorter for smaller screens */
@media (max-width: 767px) {
  .reveal, .reveal-up { transform: translateY(16px); }
  .reveal-left  { transform: translateX(-16px); }
  .reveal-right { transform: translateX(16px); }
}

/* Widescreen — CSS zoom for proportional scaling across all screen sizes.
   Reference: 1440px (standard desktop). zoom scales EVERYTHING proportionally:
   text, padding, margins, cards, buttons, gaps, borders — all maintain ratio. */
@media (min-width: 1440px) { .e-con-boxed > .e-con { max-width: 1280px; } }
@media (min-width: 1920px) { html { zoom: 1.12; } .e-con-boxed > .e-con { max-width: 1440px; } }
@media (min-width: 2560px) { html { zoom: 1.25; } .e-con-boxed > .e-con { max-width: 1680px; } }
@media (min-width: 3440px) { html { zoom: 1.42; } .e-con-boxed > .e-con { max-width: 1920px; } }

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal-d] { transition-delay: 0ms !important; }
  .reveal, .reveal-up, .reveal-left, .reveal-right, .reveal-scale, .reveal-blur { opacity: 1 !important; transform: none !important; filter: none !important; }
}
