/*
 * X Frota Design System — global foundation v1.1.0
 * Loaded by the active Hello Elementor theme. Keep reusable rules here;
 * page-specific exceptions belong in the Elementor template documentation.
 */
:root {
  --xf-color-primary: #0f6fff;
  --xf-color-primary-dark: #081b42;
  --xf-color-primary-strong: #0757d9;
  --xf-color-accent: #36b8ff;
  --xf-color-bg: #f8fafc;
  --xf-color-surface: #fff;
  --xf-color-text: #111827;
  --xf-color-muted: #526070;
  --xf-color-border: #d9e2ec;
  --xf-color-success: #087443;
  --xf-color-warning: #8a4b00;
  --xf-color-danger: #b42318;
  --xf-radius-sm: 6px;
  --xf-radius-md: 8px;
  --xf-radius-lg: 16px;
  --xf-shadow-sm: 0 4px 14px rgb(8 27 66 / 8%);
  --xf-shadow-md: 0 14px 32px rgb(8 27 66 / 14%);
  --xf-space-1: 8px;
  --xf-space-2: 16px;
  --xf-space-3: 24px;
  --xf-space-4: 32px;
  --xf-space-5: 48px;
  --xf-space-6: 64px;
  --xf-container: 1200px;
  --xf-focus: 3px solid #36b8ff;
  --xf-font-sans: Inter, Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body { color: var(--xf-color-text); background: var(--xf-color-bg); font-family: var(--xf-font-sans); overflow-x: hidden; }
a { color: var(--xf-color-primary-strong); }
a:hover { color: var(--xf-color-primary-dark); }
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: var(--xf-focus);
  outline-offset: 3px;
}

.xf-container { width: min(100% - 32px, var(--xf-container)); margin-inline: auto; }
.xf-section { padding-block: clamp(48px, 7vw, 96px); }
.xf-section--contrast { color: #fff; background: var(--xf-color-primary-dark); }
.xf-section__eyebrow, .xf-eyebrow { color: var(--xf-color-primary); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.xf-section--contrast .xf-section__eyebrow { color: #aee7ff; }

.xf-button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; border: 1px solid transparent; border-radius: var(--xf-radius-md); font-weight: 700; line-height: 1.2; text-decoration: none; transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease; }
.xf-button:hover { transform: translateY(-1px); }
.xf-button--primary { color: #fff; background: var(--xf-color-primary); }
.xf-button--primary:hover { color: #fff; background: var(--xf-color-primary-strong); }
.xf-button--secondary { color: var(--xf-color-primary-dark); background: #fff; border-color: var(--xf-color-border); }
.xf-button--ghost { color: var(--xf-color-primary-strong); background: transparent; }
.xf-section--contrast .xf-button--secondary { color: #fff; background: transparent; border-color: rgb(255 255 255 / 55%); }
.xf-button-primary { color: #fff; background: var(--xf-color-primary); }
.xf-button-primary:hover { color: #fff; background: var(--xf-color-primary-strong); }
.xf-button-secondary { color: #fff; background: transparent; border-color: rgb(255 255 255 / 65%); }
.xf-button-secondary:hover { color: var(--xf-color-primary-dark); background: #fff; border-color: #fff; }

/* Sprint 2.1 — Header global XFROTA. Keep all rules scoped to #xf-header. */
#xf-header {
  position: absolute;
  z-index: 1000;
  inset: 0 0 auto;
  width: 100%;
  color: #fff;
  background: transparent !important;
  border-bottom: 1px solid transparent;
  transition: background-color .22s ease, box-shadow .22s ease, border-color .22s ease;
  max-width: 100vw;
}
#xf-header.elementor-sticky--effects,
#xf-header.xf-header--scrolled {
  background: rgb(8 27 66 / 94%) !important;
  border-bottom-color: rgb(255 255 255 / 12%);
  box-shadow: 0 12px 30px rgb(0 0 0 / 18%);
  backdrop-filter: blur(14px);
}
#xf-header > .e-con-inner { width: min(100% - 40px, var(--xf-container)); margin-inline: auto; }
#xf-header > .e-con-inner { min-height: 64px; }
#xf-header .elementor-widget-theme-site-logo img { width: auto; max-width: 148px; max-height: 40px; object-fit: contain; }
#xf-header .elementor-widget-nav-menu { min-width: 0; }
#xf-header .elementor-nav-menu { gap: 4px; }
#xf-header .elementor-nav-menu--main .elementor-item {
  position: relative;
  padding: 18px 11px;
  color: #fff;
  font-family: var(--xf-font-sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
#xf-header .elementor-nav-menu--main .elementor-item::after {
  position: absolute;
  right: 12px;
  bottom: 8px;
  left: 12px;
  height: 2px;
  background: var(--xf-color-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
  content: "";
}
#xf-header .elementor-nav-menu--main .elementor-item:hover::after,
#xf-header .elementor-nav-menu--main .elementor-item:focus-visible::after,
#xf-header .elementor-nav-menu--main .elementor-item.elementor-item-active::after { transform: scaleX(1); }
#xf-header .elementor-nav-menu--dropdown {
  min-width: 260px;
  padding: 10px;
  border: 1px solid rgb(15 111 255 / 30%);
  border-radius: var(--xf-radius-md);
  background: rgb(8 27 66 / 98%);
  box-shadow: 0 18px 44px rgb(0 0 0 / 24%);
}
#xf-header .elementor-nav-menu--dropdown .elementor-item {
  padding: 12px 14px;
  color: #fff;
  border-radius: 6px;
  font-family: var(--xf-font-sans);
  font-size: 14px;
}
#xf-header .elementor-nav-menu--dropdown .elementor-item:hover,
#xf-header .elementor-nav-menu--dropdown .elementor-item:focus-visible { color: #fff; background: rgb(15 111 255 / 28%); }
#xf-header .elementor-nav-menu--dropdown .sub-menu { display: grid; grid-template-columns: repeat(2, minmax(160px, 1fr)); min-width: 440px; gap: 4px; padding: 4px; }
#xf-header .elementor-nav-menu--dropdown .elementor-item { min-height: 44px; display: flex; align-items: center; }
#xf-header .elementor-widget-button:not(.xf-budget) .elementor-button { min-height: 38px; padding: 9px 14px; border-radius: var(--xf-radius-md); font-size: 13px; }
#xf-header .xf-search .elementor-button { width: 42px; padding: 10px 0; color: #fff; background: transparent; border-color: transparent; }
#xf-header .xf-search .elementor-button:hover,
#xf-header .xf-search .elementor-button:focus-visible { color: var(--xf-color-accent); background: rgb(255 255 255 / 10%); }
#xf-header .xf-search .elementor-button-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
#xf-header .elementor-menu-toggle { color: #fff; background: transparent; }

/* Refinement pass — Hero composition, independent layers and premium depth. */
.xf-hero--refined { position: relative; isolation: isolate; min-height: 590px; overflow: hidden; background: var(--xf-color-primary-dark) !important; }
.xf-hero--refined::before { position: absolute; z-index: -3; inset: 0; background: linear-gradient(90deg, rgb(3 15 39 / 84%) 0%, rgb(8 27 66 / 46%) 54%, rgb(8 27 66 / 18%) 100%), url('/wp-content/uploads/2026/09/hero-background.webp') center right / cover no-repeat; content: ""; }
.xf-hero--refined::after { position: absolute; z-index: -2; right: 7%; bottom: -24%; width: 480px; height: 480px; border-radius: 50%; background: url('/wp-content/uploads/2026/09/hero-glow.webp') center / contain no-repeat; filter: blur(12px); opacity: .82; content: ""; pointer-events: none; }
.xf-hero--refined > .e-con-inner { position: relative; z-index: 1; width: min(100% - 40px, var(--xf-container)); min-height: 590px; align-items: center; gap: 4%; }
.xf-hero--refined .xf-hero__content { position: relative; z-index: 4; width: 49%; max-width: 570px; }
.xf-hero--refined .xf-hero__content h1 { max-width: 560px; margin-block: 14px 18px; color: #fff; font-size: clamp(48px, 4.5vw, 72px); font-weight: 700; line-height: .99; letter-spacing: -.045em; }
.xf-hero--refined .xf-hero__content p { max-width: 510px; color: rgb(230 240 255 / 88%); font-size: 18px; line-height: 1.55; }
.xf-hero--refined .xf-hero__content .elementor-widget-button { display: inline-block; width: auto; margin: 18px 8px 0 0; }
.xf-hero--refined .xf-hero__content .xf-button--secondary .elementor-button { color: #fff; background: rgb(8 27 66 / 24%); border-color: rgb(255 255 255 / 52%); }
.xf-hero--refined .xf-hero__content .xf-button--secondary .elementor-button:hover { background: rgb(255 255 255 / 12%); border-color: #fff; }
.xf-hero--refined .xf-hero__visual { position: relative; width: 51%; min-height: 500px; align-self: stretch; }
.xf-hero--refined .xf-hero__asset { position: absolute; pointer-events: none; }
.xf-hero--refined .xf-hero__asset .elementor-widget-container, .xf-hero--refined .xf-hero__asset img { width: 100%; }
.xf-hero--refined .xf-hero__server { z-index: 1; top: 18%; right: 0; width: 78%; opacity: .78; mix-blend-mode: screen; }
.xf-hero--refined .xf-hero__notebook { z-index: 3; right: 4%; bottom: 5%; width: 77%; filter: drop-shadow(0 24px 30px rgb(0 0 0 / 38%)); transform: rotate(-3deg); }
.xf-hero--refined .xf-hero__cloud { z-index: 4; top: 5%; right: 4%; width: 30%; filter: drop-shadow(0 0 18px rgb(54 184 255 / 48%)); }
.xf-hero--refined .xf-hero__visual::before { position: absolute; z-index: 2; top: 3%; right: 31%; width: 210px; height: 210px; border-radius: 50%; background: radial-gradient(circle, rgb(54 184 255 / 25%) 0%, transparent 68%); content: ""; filter: blur(4px); }
.xf-hero--refined .xf-eyebrow { color: var(--xf-color-accent); }
.xf-hero--refined .xf-button--primary .elementor-button { box-shadow: 0 12px 28px rgb(15 111 255 / 30%); }
.xf-hero--refined .xf-hero__badges { max-width: 500px; margin-top: 28px; }
.xf-hero--refined .xf-hero__badges .elementor-icon-list-items { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 18px; }
.xf-hero--refined .xf-hero__badges .elementor-icon-list-item { align-items: center; color: rgb(230 240 255 / 86%); font-size: 12px; line-height: 1.3; }
.xf-hero--refined .xf-hero__badges .elementor-icon-list-icon { display: inline-grid; width: 28px; height: 28px; place-items: center; margin-right: 8px; border: 1px solid rgb(54 184 255 / 55%); border-radius: 50%; color: var(--xf-color-accent); background: rgb(15 111 255 / 18%); }
.xf-hero--refined .xf-hero__callout { position: absolute; z-index: 5; right: -1%; bottom: 4%; width: min(230px, 48%); padding: 16px 18px; border: 1px solid rgb(54 184 255 / 55%); border-radius: 12px; color: #fff; background: rgb(8 27 66 / 74%); box-shadow: 0 16px 34px rgb(0 0 0 / 22%); backdrop-filter: blur(10px); }
.xf-hero--refined .xf-hero__callout h3 { margin: 0 0 5px; color: #fff; font-size: 15px; }
.xf-hero--refined .xf-hero__callout p { margin: 0; color: rgb(230 240 255 / 88%); font-size: 12px; line-height: 1.45; }

/* Fine visual adjustments — alignment, scale and technology markers. */
#xf-header .elementor-widget-theme-site-logo img { max-width: 172px; max-height: 48px; }
.xf-hero--refined::before { background-image: linear-gradient(rgb(54 184 255 / 5%) 1px, transparent 1px), linear-gradient(90deg, rgb(54 184 255 / 5%) 1px, transparent 1px), linear-gradient(90deg, rgb(3 15 39 / 84%) 0%, rgb(8 27 66 / 46%) 54%, rgb(8 27 66 / 18%) 100%), url('/wp-content/uploads/2026/09/hero-background.webp'); background-size: 64px 64px, 64px 64px, auto, cover; background-position: center, center, center, center right; }
.xf-hero--refined .xf-hero__notebook { right: 0; bottom: 12%; width: 63%; }
.xf-hero--refined .xf-hero__server { top: 25%; right: 19%; width: 31%; }
.xf-hero--refined .xf-hero__content h1 { font-size: clamp(54px, 4.8vw, 76px); color: #fff; text-shadow: 0 2px 18px rgb(0 0 0 / 20%); }
.xf-hero--refined .xf-hero__content p { color: #f4f8ff; text-shadow: 0 1px 10px rgb(0 0 0 / 18%); }
.xf-hero--refined .xf-hero__content .elementor-widget-button { width: auto !important; }
.xf-hero--refined .xf-hero__content .elementor-button { width: auto !important; min-width: 0; }
.xf-hero--refined .xf-hero__tech-badge { position: absolute; z-index: 6; display: inline-flex; width: max-content; max-width: 130px; min-height: 30px; align-items: center; padding: 6px 10px; border: 1px solid rgb(174 231 255 / 35%); border-radius: 999px; color: rgb(244 248 255 / 92%); background: rgb(8 27 66 / 68%); box-shadow: 0 10px 24px rgb(0 0 0 / 18%); backdrop-filter: blur(8px); font-size: 10px; font-weight: 600; letter-spacing: .01em; white-space: nowrap; animation: xf-hero-float 5s ease-in-out infinite; }
.xf-hero--refined .xf-hero__tech-badge::before { width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: var(--xf-color-accent); box-shadow: 0 0 10px var(--xf-color-accent); content: ""; }
.xf-hero--refined .xf-tech--wordpress { top: 29%; left: 3%; animation-delay: -.4s; }
.xf-hero--refined .xf-tech--docker { top: 43%; left: 1%; animation-delay: -1.1s; }
.xf-hero--refined .xf-tech--php { top: 62%; left: 8%; animation-delay: -1.8s; }
.xf-hero--refined .xf-tech--n8n { top: 10%; right: 33%; animation-delay: -2.5s; }
.xf-hero--refined .xf-tech--m365 { top: 30%; right: 0; animation-delay: -3.2s; }
.xf-hero--refined .xf-tech--google { bottom: 22%; right: 4%; animation-delay: -3.9s; }
.xf-hero--refined .xf-tech--cloudflare { bottom: 4%; left: 25%; animation-delay: -4.6s; }
@keyframes xf-hero-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

@media (max-width: 1100px) {
  #xf-header > .e-con-inner { width: min(100% - 28px, var(--xf-container)); }
  #xf-header .elementor-nav-menu--main .elementor-item { padding-inline: 8px; font-size: 13px; }
}
@media (max-width: 1024px) {
  #xf-header > .e-con-inner { width: min(100% - 28px, var(--xf-container)); }
  #xf-header .elementor-widget-button:not(.xf-budget) .elementor-button { min-height: 44px; padding-inline: 10px; }
  #xf-header .elementor-nav-menu--main .elementor-item { padding-inline: 8px; }
}
@media (max-width: 820px) {
  #xf-header > .e-con-inner { width: min(100% - 24px, var(--xf-container)); }
  #xf-header .elementor-widget-button:not(.xf-budget) .elementor-button { padding-inline: 9px; font-size: 12px; }
}
@media (max-width: 767px) {
  #xf-header { background: rgb(8 27 66 / 96%); }
  #xf-header > .e-con-inner { width: min(100% - 24px, var(--xf-container)); }
  #xf-header .elementor-widget-theme-site-logo img { max-width: 128px; max-height: 40px; }
  #xf-header .elementor-widget-button:not(.xf-budget) .elementor-button { min-height: 44px; padding: 10px; font-size: 12px; }
  #xf-header .xf-budget { display: none; }
  #xf-header .elementor-nav-menu--dropdown { width: min(calc(100vw - 24px), 360px); min-width: 0; margin-top: 8px; }
  #xf-header .elementor-nav-menu--dropdown .sub-menu { display: block; min-width: 0; }
}
@media (max-width: 480px) {
  #xf-header .elementor-widget-theme-site-logo img { max-width: 116px; }
  #xf-header .elementor-widget-theme-site-logo img { max-width: 112px; }
}
@media (max-width: 390px) {
  #xf-header > .e-con-inner { width: calc(100% - 16px); }
  #xf-header .elementor-widget-theme-site-logo img { max-width: 106px; }
  #xf-header .elementor-widget-button .elementor-button { padding-inline: 8px; }
}

@media (max-width: 900px) {
  .xf-hero--refined { min-height: 720px; }
  .xf-hero--refined > .e-con-inner { min-height: 720px; flex-direction: column; justify-content: center; padding-block: 112px 48px; }
  .xf-hero--refined .xf-hero__content, .xf-hero--refined .xf-hero__visual { width: 100%; max-width: none; }
  .xf-hero--refined .xf-hero__content { text-align: center; }
  .xf-hero--refined .xf-hero__content p { margin-inline: auto; }
  .xf-hero--refined .xf-hero__visual { min-height: 340px; flex: 0 0 340px; }
  .xf-hero--refined .xf-hero__notebook { right: 8%; width: 64%; }
  .xf-hero--refined .xf-hero__server { right: 5%; width: 68%; }
  .xf-hero--refined .xf-hero__cloud { right: 12%; width: 22%; }
  .xf-hero--refined .xf-hero__callout { right: 4%; bottom: 2%; }
}
@media (max-width: 640px) {
  .xf-hero--refined { min-height: 700px; }
  .xf-hero--refined > .e-con-inner { min-height: 700px; width: min(100% - 32px, var(--xf-container)); padding-block: 96px 28px; }
  .xf-hero--refined .xf-hero__content h1 { font-size: clamp(38px, 11vw, 52px); line-height: 1.02; }
  .xf-hero--refined .xf-hero__content p { font-size: 16px; }
  .xf-hero--refined .xf-hero__content .elementor-widget-button { display: block; width: 100%; margin: 12px 0 0; }
  .xf-hero--refined .xf-hero__visual { min-height: 255px; flex-basis: 255px; }
  .xf-hero--refined .xf-hero__notebook { right: 2%; bottom: 2%; width: 82%; }
  .xf-hero--refined .xf-hero__server { top: 20%; right: -6%; width: 76%; }
  .xf-hero--refined .xf-hero__cloud { top: 0; right: 0; width: 30%; }
  .xf-hero--refined .xf-hero__badges .elementor-icon-list-items { grid-template-columns: 1fr 1fr; gap: 8px; }
  .xf-hero--refined .xf-hero__badges .elementor-icon-list-item { font-size: 11px; }
  .xf-hero--refined .xf-hero__callout { right: 2%; bottom: 0; width: 190px; padding: 12px 14px; }
}

/* Hero rebuild 2026 — native Elementor container composition. */
.xf-hero--rebuild {
  position: relative;
  isolation: isolate;
  min-height: 640px;
  overflow: hidden;
  background: #081b42 !important;
}
.xf-hero--rebuild::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(3 15 39 / 88%) 0%, rgb(8 27 66 / 54%) 55%, rgb(8 27 66 / 20%) 100%),
    linear-gradient(rgb(54 184 255 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(54 184 255 / 5%) 1px, transparent 1px),
    url('/wp-content/uploads/2026/09/hero-background.webp') center right / cover no-repeat;
  background-size: auto, 64px 64px, 64px 64px, cover;
  content: "";
}
.xf-hero--rebuild::after {
  position: absolute;
  z-index: -2;
  top: 2%;
  right: 5%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: url('/wp-content/uploads/2026/09/hero-glow.webp') center / contain no-repeat;
  content: "";
  filter: blur(10px);
  opacity: .8;
  pointer-events: none;
}
.xf-hero--rebuild > .e-con-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--xf-container));
  min-height: 640px;
  align-items: center;
  column-gap: 4%;
}
.xf-hero--rebuild .xf-hero__content {
  position: relative;
  z-index: 4;
  flex: 0 0 40%;
  width: 40%;
  max-width: 620px;
  min-width: 0;
  align-self: center;
  justify-content: center;
}
.xf-hero--rebuild .xf-hero__content .elementor-widget-heading,
.xf-hero--rebuild .xf-hero__content .elementor-widget-text-editor,
.xf-hero--rebuild .xf-hero__content .xf-hero__actions,
.xf-hero--rebuild .xf-hero__content .xf-hero__badges { width: 100%; }
.xf-hero--rebuild .xf-hero__content h1 {
  max-width: 620px;
  margin: 8px 0 12px;
  color: #fff;
  font-size: clamp(64px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.05em;
  text-shadow: 0 3px 20px rgb(0 0 0 / 24%);
}
.xf-hero--rebuild .xf-hero__title-accent { color: #36b8ff; }
.xf-hero--rebuild .xf-hero__content p {
  max-width: 560px;
  color: #f5f8ff;
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1.5;
  text-shadow: 0 1px 12px rgb(0 0 0 / 22%);
}
.xf-hero--rebuild .xf-hero__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px;
  width: max-content;
  max-width: 100%;
  margin-top: 12px;
}
.xf-hero--rebuild .xf-hero__actions .elementor-widget-button {
  display: block;
  width: auto !important;
  flex: 0 0 auto;
  margin: 0;
}
.xf-hero--rebuild .xf-hero__actions .elementor-button {
  width: auto !important;
  min-width: 0;
  white-space: nowrap;
  min-height: 40px;
  padding-block: 9px;
}
.xf-hero--rebuild .xf-hero__badges {
  max-width: 510px;
  margin-top: 14px;
}
.xf-hero--rebuild .xf-hero__content > .elementor-widget-text-editor { margin-block-end: 0; }
.xf-hero--rebuild .xf-hero__badges .elementor-icon-list-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
}
.xf-hero--rebuild .xf-hero__badges .elementor-icon-list-item {
  align-items: center;
  color: #f4f8ff;
  font-size: 13px;
  font-weight: 500;
}
.xf-hero--rebuild .xf-hero__visual {
  position: relative;
  flex: 0 0 60%;
  width: 60%;
  min-width: 0;
  min-height: 560px;
  align-self: stretch;
}
.xf-hero--rebuild .xf-hero__visual::before {
  position: absolute;
  z-index: 0;
  top: 6%;
  right: 24%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(54 184 255 / 30%), transparent 68%);
  content: "";
  filter: blur(6px);
}
.xf-hero--rebuild .xf-hero__asset,
.xf-hero--rebuild .xf-hero__floating-icon,
.xf-hero--rebuild .xf-hero__tech-badge,
.xf-hero--rebuild .xf-hero__callout {
  position: absolute;
}
.xf-hero--rebuild .xf-hero__asset { pointer-events: none; }
.xf-hero--rebuild .xf-hero__asset .elementor-widget-container,
.xf-hero--rebuild .xf-hero__asset img { width: 100%; }
.xf-hero--rebuild .xf-hero__server { z-index: 1; top: 21%; right: 20%; width: 35%; opacity: .78; mix-blend-mode: screen; }
.xf-hero--rebuild .xf-hero__notebook { z-index: 3; right: 1%; bottom: 12%; width: 60%; filter: drop-shadow(0 24px 30px rgb(0 0 0 / 38%)); transform: rotate(-3deg); }
.xf-hero--rebuild .xf-hero__cloud { z-index: 2; top: 8%; right: 13%; width: 31%; filter: drop-shadow(0 0 18px rgb(54 184 255 / 48%)); }
.xf-hero--rebuild .xf-hero__callout {
  z-index: 5;
  right: 0;
  bottom: 8%;
  width: min(150px, 26%);
  padding: 11px 12px;
  border: 1px solid rgb(174 231 255 / 58%);
  border-radius: 12px;
  color: #fff;
  background: rgb(8 27 66 / 78%);
  box-shadow: 0 16px 34px rgb(0 0 0 / 22%);
  backdrop-filter: blur(10px);
}
.xf-hero--rebuild .xf-hero__callout h3 { margin: 0 0 4px; color: #fff; font-size: 12px; }
.xf-hero--rebuild .xf-hero__callout p { margin: 0; color: #f5f8ff; font-size: 10px; line-height: 1.35; }
.xf-hero--rebuild .xf-hero__tech-badge {
  z-index: 6;
  display: inline-flex;
  width: max-content;
  max-width: 130px;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgb(174 231 255 / 35%);
  border-radius: 999px;
  color: rgb(244 248 255 / 92%);
  background: rgb(8 27 66 / 68%);
  box-shadow: 0 10px 24px rgb(0 0 0 / 18%);
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}
.xf-hero--rebuild .xf-hero__tech-badge::before { width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: #36b8ff; box-shadow: 0 0 10px #36b8ff; content: ""; }
.xf-hero--rebuild .xf-tech--wordpress { top: 7%; right: 38%; }
.xf-hero--rebuild .xf-tech--php { top: 39%; left: 2%; }
.xf-hero--rebuild .xf-tech--m365 { top: 27%; right: 0; }
.xf-hero--rebuild .xf-tech--docker { bottom: 23%; left: 3%; }
.xf-hero--rebuild .xf-tech--google { bottom: 18%; right: 2%; }
.xf-hero--rebuild .xf-tech--n8n { bottom: 35%; right: 0; }
.xf-hero--rebuild .xf-tech--cloudflare { bottom: 3%; left: 30%; }

@media (max-width: 900px) {
  .xf-hero--rebuild > .e-con-inner { width: min(calc(100% - 28px), var(--xf-container)); }
  .xf-hero--rebuild .xf-hero__content h1 { font-size: clamp(46px, 7vw, 62px); }
  .xf-hero--rebuild .xf-hero__visual { min-height: 480px; }
}
@media (max-width: 767px) {
  .xf-hero--rebuild { min-height: auto; }
  .xf-hero--rebuild > .e-con-inner { min-height: auto; flex-direction: column; row-gap: 30px; }
  .xf-hero--rebuild .xf-hero__content,
  .xf-hero--rebuild .xf-hero__visual { flex-basis: auto; width: 100%; max-width: none; }
  .xf-hero--rebuild .xf-hero__content h1 { font-size: clamp(40px, 11vw, 54px); }
  .xf-hero--rebuild .xf-hero__actions { width: 100%; gap: 12px; }
  .xf-hero--rebuild .xf-hero__actions .elementor-widget-button { flex: 1 1 auto; }
  .xf-hero--rebuild .xf-hero__actions .elementor-button { width: 100% !important; padding-inline: 12px; }
  .xf-hero--rebuild .xf-hero__visual { min-height: 390px; }
  .xf-hero--rebuild .xf-hero__notebook { right: 0; bottom: 7%; width: 70%; }
  .xf-hero--rebuild .xf-hero__server { top: 22%; right: 15%; width: 30%; }
  .xf-hero--rebuild .xf-hero__cloud { top: 4%; right: 13%; width: 30%; }
  .xf-hero--rebuild .xf-hero__callout { right: 0; bottom: 4%; width: 43%; }
}
@media (max-width: 480px) {
  .xf-hero--rebuild .xf-hero__badges .elementor-icon-list-items { grid-template-columns: 1fr; }
  .xf-hero--rebuild .xf-hero__tech-badge { transform: scale(.86); transform-origin: center; }
}
@media (max-width: 360px) {
  #xf-header .elementor-widget-theme-site-logo img { max-width: 98px; }
  #xf-header .xf-budget .elementor-button { font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) {
  #xf-header, #xf-header .elementor-nav-menu--main .elementor-item::after { transition: none; }
}

.xf-card { padding: var(--xf-space-3); border: 1px solid var(--xf-color-border); border-radius: var(--xf-radius-md); background: var(--xf-color-surface); box-shadow: var(--xf-shadow-sm); }
.xf-card--service:hover, .xf-card--portfolio:hover { border-color: var(--xf-color-accent); box-shadow: var(--xf-shadow-md); }
.xf-badge { display: inline-flex; align-items: center; min-height: 28px; padding: 4px 10px; border-radius: 999px; color: var(--xf-color-primary-dark); background: #e7f3ff; font-size: 12px; font-weight: 700; }
.xf-grid { display: grid; gap: var(--xf-space-3); }
.xf-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.xf-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.xf-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.xf-form label { display: block; margin-bottom: 6px; font-weight: 600; }
.xf-form :where(input, select, textarea) { width: 100%; min-height: 48px; padding: 10px 12px; border: 1px solid #8b99a8; border-radius: var(--xf-radius-sm); color: var(--xf-color-text); background: #fff; font: inherit; }
.xf-form textarea { min-height: 128px; resize: vertical; }
.xf-form :where(input, select, textarea):user-invalid { border-color: var(--xf-color-danger); }
.xf-skip-link { position: fixed; z-index: 9999; top: 8px; left: 8px; padding: 10px 14px; color: #fff; background: var(--xf-color-primary-dark); transform: translateY(-150%); }
.xf-skip-link:focus { transform: translateY(0); }

@media (max-width: 920px) {
  .xf-grid--3, .xf-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .xf-grid--2, .xf-grid--3, .xf-grid--4 { grid-template-columns: 1fr; }
  .xf-container { width: min(100% - 24px, var(--xf-container)); }
  .xf-button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Sprint 2.1 reconstruction — first-fold proportions. */
#xf-header,
#xf-header > .e-con-inner { min-height: 82px; height: 82px; }
#xf-header > .e-con-inner { align-items: center; }
#xf-header .elementor-widget-theme-site-logo img { max-width: 156px; max-height: 44px; }
#xf-header .elementor-nav-menu--main .elementor-item { padding-block: 14px; }
#xf-header .elementor-widget-button:not(.xf-budget) .elementor-button { min-height: 38px; }
#xf-header .xf-search .elementor-button { width: 40px; min-height: 40px; }
#xf-header .xf-search .elementor-button-text { display: none; }

.xf-hero--refined { min-height: min(100svh, 820px); padding-block: 0 !important; }
.xf-hero--refined > .e-con-inner { min-height: min(100svh, 820px); height: min(100svh, 820px); gap: 0; }
.xf-hero--refined .xf-hero__content { flex: 0 0 40% !important; width: 40% !important; max-width: 520px; padding-top: 72px; }
.xf-hero--refined .xf-hero__visual { flex: 0 0 60% !important; width: 60% !important; min-height: min(100svh, 820px); height: min(100svh, 820px); }
.xf-hero--refined .xf-hero__cloud { z-index: 0; top: 10%; right: 15%; width: 30%; opacity: .78; }
.xf-hero--refined .xf-hero__server { z-index: 1; top: 22%; right: 18%; bottom: auto; width: 34%; opacity: .82; mix-blend-mode: screen; }
.xf-hero--refined .xf-hero__notebook { z-index: 3; right: -2%; bottom: 8%; width: 76%; transform: rotate(-3deg); }
.xf-hero--refined .xf-hero__callout { right: 0; bottom: 9%; }
.xf-hero--refined .xf-hero__floating-icon { position: absolute; z-index: 4; display: grid; width: 52px; height: 52px; padding: 10px; place-items: center; border: 1px solid rgb(54 184 255 / 62%); border-radius: 14px; background: rgb(8 27 66 / 72%); box-shadow: 0 14px 28px rgb(0 0 0 / 26%); backdrop-filter: blur(10px); }
.xf-hero--refined .xf-hero__floating-icon img { width: 100%; height: 100%; object-fit: contain; }
.xf-hero--refined .xf-hero__hero-icon-security { top: 33%; left: 10%; }
.xf-hero--refined .xf-hero__hero-icon-support { top: 17%; right: 2%; }
.xf-hero--refined .xf-hero__hero-icon-apps { right: 36%; bottom: 13%; }

@media (max-width: 900px) {
  #xf-header, #xf-header > .e-con-inner { min-height: 88px; height: 88px; }
  .xf-hero--refined { min-height: 820px; }
  .xf-hero--refined > .e-con-inner { min-height: 820px; height: auto; padding-block: 112px 36px; }
  .xf-hero--refined .xf-hero__content, .xf-hero--refined .xf-hero__visual { flex: 0 0 100% !important; width: 100% !important; }
  .xf-hero--refined .xf-hero__content { padding-top: 0; }
  .xf-hero--refined .xf-hero__visual { min-height: 340px; height: 340px; }
  .xf-hero--refined .xf-hero__server { top: 18%; right: 18%; width: 28%; }
  .xf-hero--refined .xf-hero__notebook { right: 4%; bottom: 4%; width: 68%; }
  .xf-hero--refined .xf-hero__cloud { top: 4%; right: 15%; width: 24%; }
  .xf-hero--refined .xf-hero__hero-icon-security { top: 30%; left: 8%; }
  .xf-hero--refined .xf-hero__hero-icon-support { top: 10%; right: 8%; }
  .xf-hero--refined .xf-hero__hero-icon-apps { right: 38%; bottom: 5%; }
  .xf-hero--refined .xf-hero__notebook { right: 4%; bottom: 8%; width: 61%; }
  .xf-hero--refined .xf-hero__server { top: 22%; right: 18%; width: 27%; }
  .xf-hero--refined .xf-hero__tech-badge { font-size: 9px; }
}

@media (max-width: 640px) {
  #xf-header, #xf-header > .e-con-inner { min-height: 80px; height: 80px; }
  .xf-hero--refined { min-height: 760px; }
  .xf-hero--refined > .e-con-inner { min-height: 760px; padding-top: 100px; }
  .xf-hero--refined .xf-hero__visual { min-height: 260px; height: 260px; }
  .xf-hero--refined .xf-hero__server { right: 17%; width: 30%; }
  .xf-hero--refined .xf-hero__notebook { right: 0; width: 82%; }
  .xf-hero--refined .xf-hero__cloud { right: 8%; width: 28%; }
  .xf-hero--refined .xf-hero__floating-icon { width: 42px; height: 42px; padding: 8px; border-radius: 11px; }
  .xf-hero--refined .xf-hero__hero-icon-security { top: 32%; left: 4%; }
  .xf-hero--refined .xf-hero__hero-icon-support { top: 6%; right: 4%; }
  .xf-hero--refined .xf-hero__hero-icon-apps { right: 34%; bottom: 0; }
  .xf-hero--refined .xf-hero__notebook { right: 0; bottom: 4%; width: 74%; }
  .xf-hero--refined .xf-hero__server { top: 23%; right: 16%; width: 27%; }
  .xf-hero--refined .xf-hero__tech-badge { max-width: 106px; min-height: 26px; padding: 5px 8px; font-size: 8px; }
  .xf-hero--refined .xf-tech--wordpress { top: 28%; left: 0; }
  .xf-hero--refined .xf-tech--docker { top: 46%; left: 0; }
  .xf-hero--refined .xf-tech--php { top: 63%; left: 3%; }
  .xf-hero--refined .xf-tech--n8n { top: 10%; right: 28%; }
  .xf-hero--refined .xf-tech--m365 { top: 30%; right: 0; }
  .xf-hero--refined .xf-tech--google { bottom: 22%; right: 0; }
  .xf-hero--refined .xf-tech--cloudflare { bottom: 0; left: 24%; }
}

/* Header action group: logo, navigation and actions remain independent flex groups. */
#xf-header .xf-header__inner { display: flex; flex-wrap: nowrap; align-items: center; justify-content: space-between; }
#xf-header .xf-header__logo { flex: 0 0 20%; min-width: 150px; }
#xf-header .xf-header__nav { flex: 1 1 auto; min-width: 0; }
#xf-header .xf-header__actions { position: static; display: flex; flex: 0 0 26%; flex-direction: row; flex-wrap: nowrap; align-items: center; justify-content: flex-end; gap: 28px; min-width: 236px; }
#xf-header .xf-header__actions .xf-search { position: static; display: flex; flex: 0 0 44px; width: 44px; min-width: 44px; align-items: center; justify-content: center; }
#xf-header .xf-header__actions .xf-search .elementor-button { display: inline-flex; width: 44px; height: 44px; min-height: 44px; margin: 0; align-items: center; justify-content: center; padding: 0; }
#xf-header .xf-header__actions .xf-budget { position: static; display: flex; flex: 0 0 auto; width: auto; max-width: none; min-width: 0; margin: 0 !important; }
#xf-header .xf-header__actions .xf-budget .elementor-button { width: auto; flex: 0 0 auto; white-space: nowrap; }

@media (max-width: 1100px) and (min-width: 821px) {
  #xf-header .xf-header__logo { flex-basis: 18%; min-width: 142px; }
  #xf-header .xf-header__actions { flex-basis: 29%; min-width: 222px; gap: 24px; }
  #xf-header .xf-header__actions .xf-budget .elementor-button { font-size: 12px; }
}

/* Hero approval pass — hierarchy, action group and visual balance. */
.xf-hero--refined .xf-hero__content h1 { max-width: 540px; color: #fff; font-size: clamp(64px, 5vw, 72px); font-weight: 800; line-height: .98; letter-spacing: -.052em; text-shadow: 0 3px 20px rgb(0 0 0 / 24%); }
.xf-hero--refined .xf-hero__title-accent { color: #36b8ff; }
.xf-hero--refined .xf-hero__content > .elementor-widget-text-editor p { max-width: 500px; color: #f5f8ff; font-size: clamp(18px, 1.35vw, 20px); line-height: 1.5; text-shadow: 0 1px 12px rgb(0 0 0 / 22%); }
.xf-hero--refined .xf-hero__actions { display: flex; flex-direction: row; flex-wrap: nowrap; align-items: center; gap: 18px; width: max-content; max-width: 100%; margin-top: 18px; }
.xf-hero--refined .xf-hero__actions .elementor-widget-button { display: block; width: auto !important; flex: 0 0 auto; margin: 0; }
.xf-hero--refined .xf-hero__actions .elementor-button { width: auto !important; min-width: 0; white-space: nowrap; }
.xf-hero--refined .xf-hero__badges { max-width: 510px; margin-top: 26px; }
.xf-hero--refined .xf-hero__badges .elementor-icon-list-items { gap: 12px 22px; }
.xf-hero--refined .xf-hero__badges .elementor-icon-list-item { color: #f4f8ff; font-size: 13px; font-weight: 500; text-shadow: 0 1px 8px rgb(0 0 0 / 22%); }
.xf-hero--refined .xf-hero__badges .elementor-icon-list-icon { width: 30px; height: 30px; border-color: rgb(174 231 255 / 70%); background: rgb(15 111 255 / 30%); }
.xf-hero--refined .xf-hero__visual { align-self: center; }
.xf-hero--refined .xf-hero__notebook { right: 0; bottom: 17%; width: 55%; }
.xf-hero--refined .xf-hero__server { top: 20%; right: 22%; width: 28%; }
.xf-hero--refined .xf-hero__cloud { top: 5%; right: 16%; width: 28%; }

@media (max-width: 900px) {
  .xf-hero--refined .xf-hero__content h1 { font-size: clamp(48px, 8vw, 64px); }
  .xf-hero--refined .xf-hero__actions { margin-inline: auto; }
  .xf-hero--refined .xf-hero__badges { margin-inline: auto; text-align: left; }
  .xf-hero--refined .xf-hero__notebook { right: 4%; bottom: 10%; width: 55%; }
  .xf-hero--refined .xf-hero__server { top: 19%; right: 20%; width: 25%; }
}

@media (max-width: 640px) {
  .xf-hero--refined .xf-hero__content h1 { font-size: clamp(40px, 11vw, 54px); }
  .xf-hero--refined .xf-hero__content > .elementor-widget-text-editor p { font-size: 18px; }
  .xf-hero--refined .xf-hero__actions { width: 100%; max-width: 100%; gap: 12px; }
  .xf-hero--refined .xf-hero__actions .elementor-widget-button { flex: 1 1 auto; }
  .xf-hero--refined .xf-hero__actions .elementor-button { width: 100% !important; padding-inline: 12px; }
  .xf-hero--refined .xf-hero__badges .elementor-icon-list-items { gap: 9px 12px; }
  .xf-hero--refined .xf-hero__badges .elementor-icon-list-item { font-size: 11px; }
  .xf-hero--refined .xf-hero__notebook { right: 0; bottom: 5%; width: 68%; }
  .xf-hero--refined .xf-hero__server { top: 22%; right: 16%; width: 26%; }
}

/* Hero visual simplification — one optimized decorative composition. */
.xf-hero--rebuild .xf-hero__visual {
  position: relative;
  display: flex;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  min-height: 0;
  height: auto;
  overflow: visible;
}
.xf-hero--rebuild .xf-hero__composition {
  position: static;
  display: block;
  width: 112%;
  max-width: none;
  margin-inline: -6%;
  height: auto;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  filter: drop-shadow(0 24px 34px rgb(0 0 0 / 28%));
}
.xf-hero--rebuild .xf-hero__composition .elementor-widget-container,
.xf-hero--rebuild .xf-hero__composition img {
  display: block;
  width: 100%;
  height: auto;
}
.xf-hero--rebuild .xf-hero__composition img {
  object-fit: contain;
}
@media (max-width: 900px) {
  .xf-hero--rebuild .xf-hero__composition { width: 108%; margin-inline: -4%; }
}
@media (max-width: 767px) {
  .xf-hero--rebuild .xf-hero__visual { min-height: 0; }
  .xf-hero--rebuild .xf-hero__composition { width: 100%; margin-inline: 0; }
}

/* Hero final approval pass — overrides Elementor globals without changing the native widget structure. */
.elementor-1651 .xf-hero--rebuild .xf-hero__content .elementor-heading-title,
.elementor-1651 .xf-hero--rebuild .xf-hero__content h1 {
  max-width: 620px !important;
  margin: 8px 0 14px !important;
  color: #fff !important;
  font-size: clamp(50px, 3.8vw, 60px) !important;
  font-weight: 800 !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 3px 22px rgb(0 0 0 / 28%) !important;
}

.elementor-1651 .xf-hero--rebuild > .e-con-inner {
  column-gap: 2% !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__content {
  flex: 0 0 50% !important;
  width: 50% !important;
  max-width: 620px !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__visual {
  flex: 0 0 48% !important;
  width: 48% !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__title-accent {
  color: #36b8ff !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__content > .elementor-widget-text-editor p:not(.xf-eyebrow) {
  max-width: 560px !important;
  margin: 0 !important;
  color: #f5f8ff !important;
  font-size: clamp(18px, 1.35vw, 20px) !important;
  font-weight: 500 !important;
  line-height: 1.52 !important;
  text-shadow: 0 1px 12px rgb(0 0 0 / 24%) !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__actions {
  width: max-content !important;
  max-width: 100% !important;
  margin-top: 22px !important;
  padding: 0 !important;
  gap: 14px !important;
  background: transparent !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__actions > .e-con-inner {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 14px !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__actions .elementor-widget-button,
.elementor-1651 .xf-hero--rebuild .xf-hero__actions .elementor-widget-container {
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 0 0 auto !important;
  background: transparent !important;
  box-shadow: none !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__actions .elementor-button {
  display: inline-flex !important;
  width: auto !important;
  height: 43px !important;
  min-width: 0 !important;
  min-height: 43px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 25px !important;
  border: 0 !important;
  border-radius: 8px !important;
  outline: 0 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__actions .elementor-button:hover,
.elementor-1651 .xf-hero--rebuild .xf-hero__actions .elementor-button:focus-visible {
  transform: translateY(-1px) !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__actions .xf-button--primary .elementor-button {
  color: #fff !important;
  background: #0f6fff !important;
  box-shadow: 0 12px 24px rgb(15 111 255 / 28%) !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__actions .xf-button--primary .elementor-button:hover,
.elementor-1651 .xf-hero--rebuild .xf-hero__actions .xf-button--primary .elementor-button:focus-visible {
  background: #2680ff !important;
  box-shadow: 0 18px 38px rgb(15 111 255 / 42%) !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__actions .xf-button--secondary .elementor-button {
  color: #fff !important;
  background: rgb(2 14 36 / 34%) !important;
  border: 1px solid rgb(255 255 255 / 48%) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__actions .xf-button--secondary .elementor-button:hover,
.elementor-1651 .xf-hero--rebuild .xf-hero__actions .xf-button--secondary .elementor-button:focus-visible {
  color: #fff !important;
  background: rgb(2 14 36 / 46%) !important;
  border-color: #fff !important;
  box-shadow: none !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__actions .xf-button--secondary .elementor-button-icon {
  color: #10b981 !important;
  font-size: 15px !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__badges {
  width: 780px !important;
  max-width: min(780px, calc(100vw - 80px)) !important;
  margin-top: 28px !important;
  overflow: visible !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__badges .elementor-icon-list-items {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  align-items: start !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__badges .elementor-icon-list-item {
  display: flex !important;
  align-items: center !important;
  color: #f4f8ff !important;
  min-width: 0 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1.18 !important;
  text-shadow: 0 1px 9px rgb(0 0 0 / 28%) !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__badges .elementor-icon-list-text {
  color: #f4f8ff !important;
  max-width: 128px !important;
  white-space: normal !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__badges .elementor-icon-list-icon {
  display: inline-grid !important;
  width: 30px !important;
  height: 30px !important;
  flex: 0 0 30px !important;
  place-items: center !important;
  margin-right: 9px !important;
  border: 1px solid rgb(54 184 255 / 55%) !important;
  border-radius: 50% !important;
  color: #36b8ff !important;
  background: rgb(3 15 39 / 42%) !important;
  opacity: 1 !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__badges .elementor-icon-list-icon i,
.elementor-1651 .xf-hero--rebuild .xf-hero__badges .elementor-icon-list-icon svg {
  color: #36b8ff !important;
  fill: #36b8ff !important;
  opacity: 1 !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__composition {
  width: 116% !important;
  margin-inline: -8% -6% !important;
  transform: translateY(-2%) !important;
}

@media (max-width: 900px) {
  .elementor-1651 .xf-hero--rebuild .xf-hero__content,
  .elementor-1651 .xf-hero--rebuild .xf-hero__visual {
    flex-basis: 100% !important;
    width: 100% !important;
    max-width: none !important;
  }
  .elementor-1651 .xf-hero--rebuild .xf-hero__content .elementor-heading-title,
  .elementor-1651 .xf-hero--rebuild .xf-hero__content h1 {
    font-size: clamp(46px, 7vw, 62px) !important;
  }
}

@media (max-width: 767px) {
  #xf-header {
    overflow-x: clip !important;
  }
  #xf-header .xf-header__actions {
    flex: 0 0 auto !important;
    min-width: 0 !important;
    gap: 10px !important;
  }
  #xf-header .xf-header__actions .xf-budget {
    display: none !important;
  }
  #xf-header .elementor-nav-menu--dropdown,
  #xf-header .elementor-nav-menu--dropdown .elementor-nav-menu,
  #xf-header .elementor-nav-menu--dropdown .sub-menu {
    left: auto !important;
    right: 0 !important;
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
  }
  .elementor-1651 .xf-hero--rebuild {
    overflow-x: clip !important;
    overflow-y: visible !important;
  }
  .elementor-1651 .xf-hero--rebuild > .e-con-inner {
    flex-direction: column !important;
    align-items: center !important;
    overflow: visible !important;
  }
  .elementor-1651 .xf-hero--rebuild .xf-hero__content .elementor-heading-title,
  .elementor-1651 .xf-hero--rebuild .xf-hero__content h1 {
    font-size: clamp(39px, 11vw, 54px) !important;
    line-height: 1.05 !important;
  }
  .elementor-1651 .xf-hero--rebuild .xf-hero__actions {
    width: 100% !important;
  }
  .elementor-1651 .xf-hero--rebuild .xf-hero__actions .elementor-widget-button {
    flex: 1 1 0 !important;
  }
  .elementor-1651 .xf-hero--rebuild .xf-hero__actions .elementor-button {
    width: 100% !important;
    padding-inline: 12px !important;
  }
  .elementor-1651 .xf-hero--rebuild .xf-hero__composition {
    width: 100% !important;
    margin-inline: 0 !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .elementor-1651 .xf-hero--rebuild .xf-hero__actions {
    flex-direction: column !important;
    align-items: stretch !important;
    max-width: 320px !important;
    gap: 10px !important;
  }
  .elementor-1651 .xf-hero--rebuild .xf-hero__actions > .e-con-inner {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 10px !important;
  }
  .elementor-1651 .xf-hero--rebuild .xf-hero__actions .elementor-widget-button {
    width: 100% !important;
    flex: 0 0 auto !important;
  }
  .elementor-1651 .xf-hero--rebuild .xf-hero__actions .elementor-button {
    width: 100% !important;
    padding-inline: 16px !important;
    font-size: 14px !important;
  }
}

/* 2026-09-23 fidelity pass — bring homologation first fold closer to approved mockup. */
.elementor-1651 #xf-header,
.elementor-1651 #xf-header > .e-con-inner {
  min-height: 72px !important;
  height: 72px !important;
}

.elementor-1651 #xf-header > .e-con-inner {
  width: min(calc(100% - 44px), 1200px) !important;
}

.elementor-1651 #xf-header .elementor-widget-theme-site-logo img {
  max-width: 150px !important;
  max-height: 40px !important;
}

.elementor-1651 #xf-header .elementor-nav-menu--main .elementor-item {
  padding: 12px 10px !important;
  font-size: 13px !important;
}

.elementor-1651 #xf-header .xf-header__actions {
  flex-basis: 245px !important;
  min-width: 245px !important;
  gap: 18px !important;
}

.elementor-1651 #xf-header .xf-header__actions .xf-search,
.elementor-1651 #xf-header .xf-header__actions .xf-search .elementor-button {
  width: 38px !important;
  min-width: 38px !important;
  height: 38px !important;
  min-height: 38px !important;
}

.elementor-1651 #xf-header .xf-header__actions .xf-budget .elementor-button {
  min-height: 42px !important;
  height: 42px !important;
  padding: 0 17px !important;
  border-radius: 7px !important;
  font-size: 13px !important;
  box-shadow: 0 12px 24px rgb(15 111 255 / 24%) !important;
}

.elementor-1651 .xf-hero--rebuild {
  min-height: 612px !important;
}

.elementor-1651 .xf-hero--rebuild > .e-con-inner {
  min-height: 612px !important;
  align-items: center !important;
  column-gap: 1.5% !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__content {
  flex-basis: 47% !important;
  width: 47% !important;
  transform: translateY(-12px) !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__visual {
  flex-basis: 51.5% !important;
  width: 51.5% !important;
  transform: translateY(-20px) !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__content .elementor-heading-title,
.elementor-1651 .xf-hero--rebuild .xf-hero__content h1 {
  max-width: 560px !important;
  margin-bottom: 12px !important;
  font-size: clamp(48px, 3.55vw, 58px) !important;
  line-height: 1.02 !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__content > .elementor-widget-text-editor p:not(.xf-eyebrow) {
  max-width: 535px !important;
  font-size: clamp(17px, 1.22vw, 19px) !important;
  line-height: 1.48 !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__actions {
  margin-top: 18px !important;
  gap: 12px !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__actions > .e-con-inner {
  gap: 12px !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__actions .elementor-button {
  height: 40px !important;
  min-height: 40px !important;
  padding: 0 22px !important;
  font-size: 12px !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__badges {
  max-width: 760px !important;
  margin-top: 18px !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__badges .elementor-icon-list-items {
  gap: 10px 14px !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__badges .elementor-icon-list-item {
  font-size: 11px !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__badges .elementor-icon-list-icon {
  width: 26px !important;
  height: 26px !important;
  flex-basis: 26px !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__composition {
  width: 122% !important;
  margin-inline: -11% -8% !important;
  transform: translateY(-7%) !important;
}

@media (max-width: 1100px) and (min-width: 901px) {
  .elementor-1651 #xf-header .xf-header__actions {
    flex-basis: 220px !important;
    min-width: 220px !important;
    gap: 14px !important;
  }

  .elementor-1651 #xf-header .xf-header__actions .xf-budget .elementor-button {
    padding-inline: 14px !important;
    font-size: 12px !important;
  }

  .elementor-1651 .xf-hero--rebuild .xf-hero__content .elementor-heading-title,
  .elementor-1651 .xf-hero--rebuild .xf-hero__content h1 {
    font-size: clamp(44px, 4.2vw, 54px) !important;
  }
}

@media (max-width: 900px) {
  .elementor-1651 #xf-header,
  .elementor-1651 #xf-header > .e-con-inner {
    min-height: 80px !important;
    height: 80px !important;
  }

  .elementor-1651 .xf-hero--rebuild {
    min-height: auto !important;
  }

  .elementor-1651 .xf-hero--rebuild > .e-con-inner {
    min-height: auto !important;
    padding-top: 112px !important;
  }

  .elementor-1651 .xf-hero--rebuild .xf-hero__content,
  .elementor-1651 .xf-hero--rebuild .xf-hero__visual {
    transform: none !important;
  }
}

/* 2026-09-23 fidelity pass 2 — header is outside .elementor-1651, so target real IDs/classes. */
#xf-header,
#xf-header > .e-con-inner {
  min-height: 68px !important;
  height: 68px !important;
}

#xf-header > .e-con-inner {
  width: min(calc(100% - 44px), 1200px) !important;
}

#xf-header .elementor-widget-theme-site-logo img {
  max-width: 148px !important;
  max-height: 38px !important;
}

#xf-header .elementor-nav-menu--main .elementor-item {
  padding: 10px 10px !important;
  font-size: 13px !important;
}

#xf-header .xf-header__actions {
  flex-basis: 232px !important;
  min-width: 232px !important;
  gap: 16px !important;
}

#xf-header .xf-search,
#xf-header .xf-search .elementor-button {
  width: 38px !important;
  min-width: 38px !important;
  height: 38px !important;
  min-height: 38px !important;
}

#xf-header-budget,
#xf-header-budget.elementor-button {
  display: inline-flex !important;
  width: auto !important;
  min-width: 0 !important;
  height: 40px !important;
  min-height: 40px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 16px !important;
  border-radius: 7px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
  box-shadow: 0 12px 24px rgb(15 111 255 / 24%) !important;
}

#xf-header-budget .elementor-button-icon {
  font-size: 14px !important;
}

.elementor-1651 .xf-hero--rebuild {
  min-height: 568px !important;
}

.elementor-1651 .xf-hero--rebuild > .e-con-inner {
  min-height: 568px !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__content {
  transform: translateY(-42px) !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__visual {
  transform: translateY(-44px) !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__content .elementor-heading-title,
.elementor-1651 .xf-hero--rebuild .xf-hero__content h1 {
  max-width: 530px !important;
  margin: 7px 0 10px !important;
  font-size: clamp(44px, 3.35vw, 54px) !important;
  line-height: 1.02 !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__content > .elementor-widget-text-editor p:not(.xf-eyebrow) {
  max-width: 520px !important;
  font-size: clamp(16px, 1.1vw, 18px) !important;
  line-height: 1.44 !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__actions {
  margin-top: 14px !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__actions .elementor-button {
  height: 38px !important;
  min-height: 38px !important;
  padding: 0 20px !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__badges {
  margin-top: 14px !important;
}

.elementor-1651 .xf-hero--rebuild .xf-hero__composition {
  width: 118% !important;
  margin-inline: -9% -7% !important;
  transform: translateY(-9%) !important;
}

/* 2026-09-23 fidelity pass 3 — tighten first fold and make technology row match the approved mockup. */
#hero.xf-hero--rebuild {
  min-height: 630px !important;
  height: auto !important;
  padding: 0 20px !important;
}

#hero.xf-hero--rebuild > .e-con-inner {
  min-height: 630px !important;
  height: auto !important;
  padding: 110px 0 26px !important;
}

#hero.xf-hero--rebuild .xf-hero__content {
  transform: translateY(0) !important;
}

#hero.xf-hero--rebuild .xf-hero__visual {
  transform: translateY(0) !important;
}

#hero.xf-hero--rebuild .xf-hero__badges {
  margin-top: 12px !important;
}

#tecnologias {
  min-height: 72px !important;
  height: auto !important;
  padding: 0 20px !important;
  border-bottom: 1px solid #e8eef7 !important;
  background: #fff !important;
}

#tecnologias > .e-con-inner {
  display: flex !important;
  min-height: 72px !important;
  height: auto !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px 0 !important;
}

#tecnologias .elementor-element-00c9b63,
#tecnologias .elementor-element-fab2a52,
#tecnologias .elementor-element-f03f5a0 {
  display: none !important;
}

#tecnologias .elementor-element-4d43043 {
  width: 100% !important;
}

#tecnologias .elementor-element-4d43043 > .e-con-inner {
  display: grid !important;
  width: min(100%, 1120px) !important;
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 0 !important;
}

#tecnologias .elementor-element-4d43043 > .e-con-inner > .e-con {
  min-height: 42px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#tecnologias .elementor-element-4d43043 > .e-con-inner > .e-con > .e-con-inner {
  min-height: 42px !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}

#tecnologias .elementor-element-4d43043 .elementor-widget-heading {
  margin: 0 !important;
}

#tecnologias .elementor-element-4d43043 .elementor-heading-title {
  color: #536173 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-align: center !important;
  white-space: nowrap !important;
}

#tecnologias .elementor-element-4d43043 .elementor-widget-text-editor {
  display: none !important;
}

#servicos > .e-con-inner {
  padding-top: 54px !important;
}

@media (max-width: 900px) {
  #hero.xf-hero--rebuild,
  #hero.xf-hero--rebuild > .e-con-inner {
    height: auto !important;
    min-height: auto !important;
  }

  #hero.xf-hero--rebuild > .e-con-inner {
    padding-top: 104px !important;
  }

  #tecnologias .elementor-element-4d43043 > .e-con-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 520px) {
  #tecnologias .elementor-element-4d43043 > .e-con-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Elementor boxed containers need their own spacing reset. */
#xf-header .xf-budget.elementor-widget-button {
  padding: 0 !important;
  min-height: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
#hero.xf-hero--rebuild > .e-con-inner {
  padding: 108px 0 36px !important;
  align-items: center !important;
}
#hero.xf-hero--rebuild .xf-hero__content > .e-con-inner {
  padding: 0 !important;
  gap: 18px !important;
}
#hero.xf-hero--rebuild .xf-hero__content p {
  margin: 0 !important;
  font-size: 17px !important;
  line-height: 1.5 !important;
}
#hero.xf-hero--rebuild .xf-hero__content .xf-eyebrow {
  font-size: 12px !important;
  line-height: 1.4 !important;
  letter-spacing: 0 !important;
}
#hero.xf-hero--rebuild .xf-hero__content h1 {
  margin: 0 !important;
  font-size: 48px !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}
#hero.xf-hero--rebuild .xf-hero__actions {
  margin-top: 4px !important;
}
#hero.xf-hero--rebuild .xf-hero__actions .elementor-widget-button {
  min-height: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  transform: none !important;
}
#hero.xf-hero--rebuild .xf-hero__actions .elementor-button {
  height: 44px !important;
  min-height: 44px !important;
  font-size: 13px !important;
}
#hero.xf-hero--rebuild .xf-hero__badges {
  margin-top: 10px !important;
}
#hero.xf-hero--rebuild .xf-hero__badges .elementor-icon-list-text {
  font-size: 12px !important;
  line-height: 1.4 !important;
}
@media (max-width: 900px) {
  #hero.xf-hero--rebuild > .e-con-inner {
    flex-direction: column !important;
    padding: 108px 0 32px !important;
    gap: 24px !important;
  }
  #hero.xf-hero--rebuild .xf-hero__content,
  #hero.xf-hero--rebuild .xf-hero__visual {
    width: 100% !important;
    flex-basis: auto !important;
    max-width: 620px !important;
  }
  #hero.xf-hero--rebuild .xf-hero__badges {
    width: 100% !important;
    max-width: 100% !important;
  }
  #hero.xf-hero--rebuild .xf-hero__badges .elementor-icon-list-items {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  #hero.xf-hero--rebuild .xf-hero__composition {
    width: 100% !important;
    margin: 0 !important;
    transform: none !important;
  }
}
@media (max-width: 520px) {
  #hero.xf-hero--rebuild .xf-hero__content h1 {
    font-size: 34px !important;
  }
  #hero.xf-hero--rebuild .xf-hero__content p {
    font-size: 16px !important;
  }
  #hero.xf-hero--rebuild .xf-hero__actions > .e-con-inner {
    flex-wrap: wrap !important;
  }
}
