/*
 * LEXX homepage — Layer 1 visual styles.
 *
 * Conditionally enqueued via wp_enqueue_scripts when is_front_page() is true
 * (see functions.php). Consolidates everything that used to live DB-side on
 * page 266 — the page-level _elementor_page_settings.custom_css (9,044 chars),
 * the nine in-widget <style> blocks (~7,400 chars), and container fc1c870's
 * custom_css (628 chars) — into a single version-controlled stylesheet.
 *
 * Authored during Batch A (2026-05-30) per the execution plan:
 *   docs/handoffs/2026-05-29-batch-a-execution-plan.md
 *   docs/handoffs/2026-05-29-batch-a-reconcile-resolutions.md
 *   docs/adr/adr-0014-end-state-snippets-mu-plugin-reliance.md
 *
 * Transformations applied during the move:
 *   - Hardcoded brand hex → var(--lexx-*) per the locked color table
 *     (#C8F000 + lime drift #D9FF1A → --lexx-lime; #0D0D0F → --lexx-dark;
 *      #FFFFFF/#fff/#F0F0F0 → --lexx-white)
 *   - In-widget var(--e-global-color-lexx-*) → var(--lexx-*)
 *   - rgba() values kept literal (can't reference --lexx-* in alpha context)
 *   - #1a1a1a kept literal — off-token hover shade, not in canonical table
 *   - rgba(191,255,0,...) in lexx-cta-pulse kept literal — not in the locked
 *     drift list (which covers #CAFF33/#D9FF1A/#A8D000 only)
 *
 * Reconcile decisions with MU portfolio-cards.css / ticker.css:
 *   - .lexx-portfolio-card base + :hover lift: DB version wins (radius:16px,
 *     min-h:260px, transform/box-shadow transition) — ported here
 *   - .lexx-marquee-track: animation/keyframes DROPPED — MU ticker.js drives
 *     scroll via requestAnimationFrame; MU ticker.css has `animation: none
 *     !important`. Only layout props (gap, width, align-items) port here
 *   - .lexx-chip: DB visual + gap:8px override port here; MU's gap:6px is
 *     kept down by an explicit declaration
 *
 * NOT in scope of this file:
 *   - Brand buttons (.lexx-btn-*) — see buttons.css (site-wide)
 *   - body/html background — see style.css (site-wide :root section)
 *   - Hardcoded hex in inline style="" attributes — Batch C target
 */


/* ==========================================================================
   FROM PAGE custom_css — element-specific overrides
   ========================================================================== */

.elementor-element-d3b706d p {
  max-width: 600px !important;
  margin: 0 auto 2.5rem !important;
}

.elementor-element-34bc346,
.elementor-element-34bc346 .elementor-widget-container {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: visible !important;
  pointer-events: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.elementor-element-0e9001d { margin-bottom: 12px !important; }
.elementor-element-d8d1866 { margin-bottom: 8px !important; }
.elementor-element-ab6994e { margin-bottom: 56px !important; }

.elementor-element-caa3f7c,
.elementor-element-ddc1bd5,
.elementor-element-a5d2a70,
.elementor-element-11f8e7b,
.elementor-element-c9c685e {
  backdrop-filter: blur(12px) !important;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s !important;
}
.elementor-element-caa3f7c:hover,
.elementor-element-ddc1bd5:hover,
.elementor-element-a5d2a70:hover,
.elementor-element-11f8e7b:hover,
.elementor-element-c9c685e:hover {
  transform: scale(1.03) !important;
  border-color: rgba(200, 240, 0, 0.25) !important;
  box-shadow: 0 0 20px rgba(200, 240, 0, 0.08), 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.elementor-element-338e688 .elementor-widget-container {
  max-width: 500px !important;
  margin: 0 auto !important;
}

.elementor-element-059b15f span {
  text-shadow: rgba(200, 240, 0, 0.4) 0 0 30px !important;
}


/* ==========================================================================
   FROM PAGE custom_css — portfolio system (RECONCILED vs MU portfolio-cards.css)
   ========================================================================== */

.lexx-grid-3-portfolio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Cascade-wins MU's .lexx-portfolio-card base (radius:12px, min-h:320px).
   DB values are the live rendered values — see reconcile resolutions.

   !important is deliberate on the contested props: snippet #7 emits an
   inline <style> block duplicating an older MU portfolio-cards.css with
   radius:12px / min-h:320px. Inline <style> always prints after enqueued
   stylesheets, so without !important #7's values cascade-win. Once #7
   retires (post-Batch-B + Batch-D per ADR-0014), the !important can come
   off and the rules become plain again. */
.lexx-portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px !important;
  min-height: 260px !important;
  cursor: pointer;
  background-size: cover !important;
  background-position: center top !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}
.lexx-portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: rgba(0, 0, 0, 0.4) 0 12px 40px;
}
.lexx-portfolio-card.lexx-tapped .lexx-portfolio-hover {
  display: flex !important;
}

.lexx-mockup-layer {
  position: absolute;
  inset: 0;
  background-size: cover !important;
  background-position: center top !important;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.lexx-portfolio-card:hover .lexx-mockup-layer {
  opacity: 1;
}


/* ==========================================================================
   FROM PAGE custom_css — section labels + headings
   ========================================================================== */

.lexx-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(200, 240, 0, 0.2);
  background: rgba(200, 240, 0, 0.06);
  color: var(--lexx-lime, #C8F000);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Heebo', sans-serif;
  margin-bottom: 1.25rem;
}

.lexx-h2 {
  color: var(--lexx-white, #FFFFFF);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-family: 'Heebo', sans-serif !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
}


/* ==========================================================================
   FROM PAGE custom_css — FAQ accordion (widget elementor-element-7e4d170)
   ========================================================================== */

.elementor-element-14b5d6d .elementor-heading-title {
  display: inline-block !important;
  padding: 0.35rem 1rem !important;
  border-radius: 9999px !important;
  border: 1px solid rgba(200, 240, 0, 0.2) !important;
  background: rgba(200, 240, 0, 0.06) !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  color: var(--lexx-lime, #C8F000) !important;
  letter-spacing: 0 !important;
}

.elementor-element-7e4d170 {
  max-width: 800px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.elementor-element-7e4d170 .elementor-accordion { border: none !important; }

.elementor-element-7e4d170 .elementor-tab-content {
  border: none !important;
  padding: 0.5rem 0 1.4rem !important;
  color: rgba(255, 255, 255, 0.55) !important;
  text-align: right !important;
}

.elementor-element-7e4d170 .elementor-accordion-icon {
  color: var(--lexx-lime, #C8F000) !important;
  font-size: 22px !important;
}
.elementor-element-7e4d170 .elementor-accordion-icon .fa-plus:before {
  font-weight: 300 !important;
  content: "+" !important;
  font-family: 'Heebo', sans-serif !important;
  font-size: 22px !important;
}
.elementor-element-7e4d170 .elementor-accordion-icon .fa-minus:before {
  font-weight: 300 !important;
  content: "−" !important;
  font-family: 'Heebo', sans-serif !important;
  font-size: 22px !important;
}

/* Accordion item separator lines */
.elementor-element-7e4d170 .elementor-tab-title {
  border: none !important;
  padding: 1.4rem 0 !important;
  text-align: right !important;
  justify-content: flex-end !important;
}
.elementor-element-7e4d170 .elementor-accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.elementor-element-7e4d170 .elementor-accordion-item:last-child {
  border-bottom: none !important;
}
.elementor-element-7e4d170 .elementor-accordion-item:last-child .elementor-tab-title,
.elementor-element-7e4d170 .elementor-accordion-item:last-child .elementor-tab-content {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Lock active-tab title white, icon always lime */
.elementor-element-7e4d170 .elementor-tab-title.elementor-active,
.elementor-element-7e4d170 .elementor-tab-title.elementor-active a {
  color: var(--lexx-white, #FFFFFF) !important;
}
.elementor-element-7e4d170 .elementor-accordion-icon-closed,
.elementor-element-7e4d170 .elementor-accordion-icon-opened {
  color: var(--lexx-lime, #C8F000) !important;
}

/* Icon left, title right, full row */
.elementor-element-7e4d170 .elementor-tab-title {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
}
.elementor-element-7e4d170 .elementor-accordion-icon {
  order: 2 !important;
  flex-shrink: 0 !important;
  margin-right: auto !important;
  margin-left: 0 !important;
}
.elementor-element-7e4d170 .elementor-accordion-title {
  order: 1 !important;
  flex: 1 !important;
}


/* ==========================================================================
   FROM PAGE custom_css — contact form (widget elementor-element-9d1f0ef)
   + email card (widget elementor-element-61f78d4)
   ========================================================================== */

.elementor-element-9d1f0ef .elementor-field-group input,
.elementor-element-9d1f0ef .elementor-field-group textarea,
.elementor-element-9d1f0ef .elementor-field-group select {
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 8px !important;
  color: var(--lexx-white, #FFFFFF) !important;
  font-size: 15px !important;
  padding: 13px 15px !important;
  font-family: 'Heebo', sans-serif !important;
}
.elementor-element-9d1f0ef .elementor-field-group input::placeholder,
.elementor-element-9d1f0ef .elementor-field-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}
.elementor-element-9d1f0ef .elementor-button {
  background: var(--lexx-lime, #C8F000) !important;
  color: var(--lexx-dark, #0D0D0F) !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  padding: 15px 28px !important;
  width: 100% !important;
  font-family: 'Heebo', sans-serif !important;
}
.elementor-element-9d1f0ef .elementor-button:hover {
  background: var(--lexx-lime, #C8F000) !important;
}
/* sr-only the form labels: visually hidden, kept in the DOM for screen
   readers + IS 5568 compliance. Placeholders carry the visual hint.
   Replaces the prior color/font-family rule (labels are no longer shown). */
.elementor-element-9d1f0ef .elementor-field-label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.elementor-element-61f78d4,
.elementor-element-61f78d4 .elementor-widget-container,
.elementor-element-61f78d4 .elementor-widget-container > div {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
.elementor-element-61f78d4 { margin-bottom: 0 !important; }
.elementor-element-9d1f0ef { margin-top: 0 !important; }


/* ==========================================================================
   FROM PAGE custom_css — scroll reveal classes
   (.in-view variant is currently a no-op safety net — see ADR-0014 notes;
    Batch B will decide whether to keep inline-style toggling or switch to
    class-toggling)
   ========================================================================== */

.lexx-animate {
  opacity: 0 !important;
  transform: translateY(30px) !important;
  transition: opacity 0.6s ease, transform 0.6s ease !important;
}
.lexx-animate.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}


/* ==========================================================================
   FROM WIDGET 07788e1 — navbar / header chrome
   (Will move to a proper Theme Builder header in Batch H; until then this
    is the homepage's hand-rolled fixed nav.)
   ========================================================================== */

.lexx-nav-wrap {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: rgba(13, 13, 15, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 9999;
  direction: rtl;
  box-sizing: border-box;
}
.lexx-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  box-sizing: border-box;
}
.lexx-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.lexx-nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.lexx-nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
  align-items: center;
  justify-content: center;
}
.lexx-nav-links a {
  font-family: 'Heebo', sans-serif;
  font-size: 14.4px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.lexx-nav-links a:hover { color: var(--lexx-lime, #C8F000); }

.lexx-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--lexx-lime, #C8F000);
  color: var(--lexx-dark, #0D0D0F) !important;
  font-family: 'Heebo', sans-serif;
  font-size: 13.6px;
  font-weight: 700;
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  border-radius: 12px;
  animation: lexx-cta-pulse 2.8s ease-out infinite;
  transition: opacity 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.lexx-nav-cta:hover { opacity: 0.88; }

.lexx-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  margin: 0;
}
.lexx-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--lexx-white, #FFFFFF);
  border-radius: 2px;
  transition: all 0.3s;
}
.lexx-hamburger:focus,
.lexx-hamburger:active {
  outline: none;
  background: none !important;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}
.lexx-hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.lexx-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.lexx-hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.lexx-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px 24px;
  background: var(--lexx-dark, #0D0D0F);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.lexx-mobile-menu a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.lexx-mobile-menu a:hover { color: var(--lexx-lime, #C8F000); }
.lexx-mobile-menu .lexx-nav-cta {
  width: fit-content;
  margin-top: 4px;
}
.lexx-mobile-menu.is-open { display: flex; }

@media (max-width: 768px) {
  .lexx-nav-links,
  .lexx-nav-cta { display: none !important; }
  .lexx-hamburger { display: flex; }
}
@media (min-width: 769px) {
  .lexx-mobile-menu { display: none !important; }
}

.lexx-nav-spacer {
  height: 73px;
  display: block;
}

@keyframes lexx-cta-pulse {
  0%   { box-shadow: rgba(191, 255, 0, 0.35) 0 0 0 0; }
  70%  { box-shadow: rgba(191, 255, 0, 0)    0 0 0 10px; }
  100% { box-shadow: rgba(191, 255, 0, 0)    0 0 0 0; }
}


/* ==========================================================================
   FROM WIDGET e2b86dc — hero H1 cycling-word (.wd) animation
   ========================================================================== */

.lexx-h1 .ln1 { display: block; }
.lexx-h1 .wd {
  display: block;
  color: var(--lexx-lime, #C8F000);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: translateY(0px);
}
.lexx-h1 .ln2 { display: block; }

@media (max-width: 767px) {
  .lexx-h1 {
    font-size: 38px !important;
    letter-spacing: -0.5px !important;
    line-height: 1.15 !important;
  }
}


/* ==========================================================================
   FROM WIDGET 34bc346 — hero background grid + particle canvas + scroll cue
   ========================================================================== */

.lexx-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(200, 240, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 240, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}
#lexx-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  pointer-events: none;
  z-index: 2;
}
.lexx-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  pointer-events: none;
}
.lexx-scroll-indicator span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  font-family: 'Heebo', sans-serif;
  font-weight: 400;
  white-space: nowrap;
}
.lexx-scroll-dot {
  width: 20px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4px;
}
.lexx-dot-pip {
  width: 4px;
  height: 8px;
  background: var(--lexx-lime, #C8F000);
  border-radius: 9999px;
  animation: lexx-bounce 1.5s ease infinite;
}
@keyframes lexx-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(10px); }
}


/* ==========================================================================
   FROM WIDGET b448501 — marquee/ticker (RECONCILED vs MU ticker.css)
   - DROPPED: `animation: lexx-scroll 30s linear infinite !important`
              and `@keyframes lexx-scroll` — MU ticker.js drives scroll via
              requestAnimationFrame; MU ticker.css declares
              `animation: none !important` so CSS animation can't run
   - KEPT: visual chrome on .lexx-marquee-wrap (bg, borders, backdrop,
           gradient-fade pseudo-elements) + DB-unique track layout
           (gap, width, align-items) + chip visual + gap:8px override
   ========================================================================== */

.lexx-marquee-wrap {
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(13, 13, 15, 0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 0.75rem 0;
  direction: ltr;
}
.lexx-marquee-wrap::before,
.lexx-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.lexx-marquee-wrap::before {
  right: 0;
  background: linear-gradient(to left, rgba(13, 13, 15, 1), transparent);
}
.lexx-marquee-wrap::after {
  left: 0;
  background: linear-gradient(to right, rgba(13, 13, 15, 1), transparent);
}

/* DB-unique track props — MU ticker.css already has display:flex/flex-wrap:
   nowrap/white-space:nowrap/direction:ltr and `animation: none !important`. */
.lexx-marquee-track {
  gap: 20px;
  width: max-content;
  align-items: center;
}

/* DB visual + gap:8px override (MU ticker.css gap:6px would otherwise win
   post-PATCH); MU has text-behavior props (white-space, unicode-bidi). */
.lexx-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  padding: 0.4rem 1.1rem;
  font-size: 13.6px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-family: 'Heebo', sans-serif;
  gap: 8px !important;
}
.lexx-chip svg { flex-shrink: 0; }


/* ==========================================================================
   FROM WIDGET 0e9001d — services section "what we do" label pill
   ========================================================================== */

.lv2-label-pill {
  display: inline-flex;
  align-items: center;
  padding: 5.6px 16px;
  border-radius: 9999px;
  background: rgba(200, 240, 0, 0.06);
  border: 1px solid rgba(200, 240, 0, 0.2);
  color: rgba(200, 240, 0, 1);
  font-size: 12.8px;
  font-weight: 600;
  font-family: Heebo, sans-serif;
  line-height: 1.4;
}


/* ==========================================================================
   FROM WIDGET f335d97 — process section "how it works" label pill
   ========================================================================== */

.proc-label-pill {
  display: inline-flex;
  align-items: center;
  padding: 5.6px 16px;
  border-radius: 9999px;
  background: rgba(200, 240, 0, 0.06);
  border: 1px solid rgba(200, 240, 0, 0.2);
  color: rgba(200, 240, 0, 1);
  font-size: 12.8px;
  font-weight: 600;
  font-family: Heebo, sans-serif;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .elementor-element-3f4be5c { flex-direction: column !important; }
  .elementor-element-3f4be5c > .elementor-element {
    width: 100% !important;
    max-width: 100% !important;
  }
}


/* ==========================================================================
   FROM WIDGET 33a49c4 — mid-CTA card mobile responsive
   ========================================================================== */

@media (max-width: 767px) {
  .elementor-element-33a49c4 div[style*="space-between"] {
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.5rem !important;
  }
  .elementor-element-33a49c4 h2 {
    text-align: center !important;
    font-size: clamp(1.4rem, 7vw, 1.8rem) !important;
  }
  .elementor-element-33a49c4 span { text-align: center !important; }
}


/* ==========================================================================
   FROM WIDGET 24e1d7b — about-us section mobile responsive
   ========================================================================== */

@media (max-width: 767px) {
  .elementor-element-24e1d7b div[style*="gap:4rem"] {
    flex-direction: column !important;
    gap: 2rem !important;
    align-items: flex-start !important;
  }
  .elementor-element-24e1d7b div[style*="gap:4rem"] > div {
    width: 100% !important;
    max-width: 100% !important;
  }
  .elementor-element-24e1d7b h2.lexx-h2 {
    font-size: clamp(1.6rem, 7vw, 2rem) !important;
  }
}


/* ==========================================================================
   FROM WIDGET 34cfc80 — bottom-of-page nav row (logo + tagline + links +
   social icons) mobile responsive reordering. Will be retired when Batch H
   builds a proper footer template.
   ========================================================================== */

@media (max-width: 767px) {
  .elementor-element-34cfc80 div[style*="flex-wrap:wrap"] {
    gap: 0.75rem !important;
  }
  .elementor-element-34cfc80 div[style*="flex-wrap:wrap"] > p {
    flex-basis: 100% !important;
    order: 2 !important;
    text-align: center !important;
  }
  .elementor-element-34cfc80 div[style*="flex-wrap:wrap"] > a:first-child {
    order: 1 !important;
    margin: 0 auto !important;
  }
  .elementor-element-34cfc80 div[style*="flex-wrap:wrap"] > a:not(:first-child) {
    order: 3 !important;
  }
  .elementor-element-34cfc80 div[style*="flex-shrink:0"] {
    order: 4 !important;
    flex-basis: 100% !important;
    justify-content: center !important;
  }
}


/* ==========================================================================
   FROM CONTAINER fc1c870 — process step inner card typography + icon color
   (Elementor `selector` placeholder expanded to `.elementor-element-fc1c870`)
   ========================================================================== */

.elementor-element-fc1c870 .e-con h3 {
  font-size: 18.4px !important;
  font-weight: 800 !important;
  color: var(--lexx-white, #FFFFFF) !important;
  margin-bottom: 0px !important;
}
.elementor-element-fc1c870 .e-con p {
  font-size: 14.4px !important;
  color: rgba(255, 255, 255, 0.55) !important;
  line-height: 1.6 !important;
}
.elementor-element-fc1c870 .e-con .lexx-card-tag,
.elementor-element-fc1c870 .e-con .service-tag {
  font-size: 12px !important;
}

.elementor-element-fc1c870 .e-con .elementor-widget-html {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  height: 100%;
}
.elementor-element-fc1c870 .e-con .elementor-widget-html svg {
  color: var(--lexx-white, #FFFFFF) !important;
  stroke: var(--lexx-white, #FFFFFF) !important;
}
