@charset "UTF-8";
/* =========================================
   Modern CSS Reset - SCSS Version
========================================= */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 1.25rem 0;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, padding 0.35s ease;
}
.site-header.is-scrolled {
  background: rgba(11, 34, 67, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.85rem 0;
}

.site-header__container {
  width: min(100% - 2rem, 1320px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.site-branding img {
  max-height: 42px;
  width: auto;
}
.site-branding__name {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* DESKTOP MENU */
.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-navigation a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 600;
  transition: color 0.25s ease;
  text-transform: uppercase;
}
.main-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4f95ff, #31d8f1);
  transition: width 0.3s ease;
}
.main-navigation a:hover::after {
  width: 100%;
}

/* HAMBURGER */
.menu-toggle {
  position: relative;
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: all 0.35s ease;
}
.menu-toggle span:nth-child(1) {
  top: 13px;
}
.menu-toggle span:nth-child(2) {
  top: 21px;
}
.menu-toggle span:nth-child(3) {
  top: 29px;
}
.menu-toggle.is-active span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

/* MOBILE */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }
  .main-navigation ul {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 380px);
    height: 100vh;
    padding: 8rem 2rem 3rem;
    background: #0B2243;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
  }
  .main-navigation.is-open ul {
    transform: translateX(0);
  }
  .main-navigation a {
    font-size: 1.2rem;
  }
}
.site-footer {
  background-color: #08111e;
  padding-top: 3rem;
  padding-bottom: 1rem;
}
@media (max-width: 1300px) {
  .site-footer {
    padding-inline: 15px;
  }
}
.site-footer .site-info {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  margin-bottom: 4rem;
  grid-template-columns: 2fr 1fr 1fr;
}
@media (max-width: 768px) {
  .site-footer .site-info {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
}
.site-footer .site-info .col-1 {
  margin-inline: 1.5rem;
}
.site-footer .site-info .col-1 .custom-logo-link img {
  max-height: 42px;
  width: auto;
}
.site-footer .site-info .col-1 p {
  color: #ffffff;
  margin-block: 1rem;
}
.site-footer .site-info .col-1 a {
  margin-top: 15px;
}
.site-footer .site-info .col-1 a svg {
  height: 20px;
  width: 20px;
}
.site-footer .site-info .col-1 a.btn-l:hover svg {
  fill: #3b82f6;
  color: #3b82f6 !important;
  stroke: #3b82f6;
}
.site-footer .site-info .col-2 {
  margin-inline: 1.5rem;
}
.site-footer .site-info .col-2 span {
  color: #ffffff;
}
.site-footer .site-info .col-2 .menu {
  margin-top: 15px;
}
.site-footer .site-info .col-2 .menu .menu-item {
  margin-bottom: 6px;
}
.site-footer .site-info .col-2 .menu .menu-item a {
  color: #ffffff;
}
.site-footer .site-info .col-2 .menu .menu-item a:hover {
  color: #3b82f6;
}
.site-footer .site-info .col-3 {
  margin-inline: 1.5rem;
}
.site-footer .site-info .col-3 span {
  color: #ffffff;
  margin-bottom: 15px;
}
.site-footer .site-info .col-3 a {
  margin-top: 15px;
  color: #ffffff;
  display: block;
}
.site-footer .site-info .col-3 a.btn-wh {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-width: 260px;
  height: 74px;
  padding-inline: 2.4rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.site-footer .site-info .col-3 a.btn-wh span {
  position: relative;
  z-index: 2;
  transition: transform 0.35s ease;
}
.site-footer .site-info .col-3 a.btn-wh span svg {
  width: 30px;
  height: 30px;
  margin-bottom: -7px;
}
.site-footer .site-info .col-3 a.btn-wh::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.18) 50%, transparent 80%);
  transform: translateX(-140%);
  transition: transform 0.9s ease;
}
.site-footer .site-info .col-3 a.btn-wh:hover {
  transform: translateY(-4px);
}
.site-footer .site-info .col-3 a.btn-wh:hover::before {
  transform: translateX(140%);
}
.site-footer .site-info .col-3 a.btn-wh:hover span:last-child {
  transform: translateX(4px) translateY(-2px);
}
.site-footer .site-info .col-3 a.btn-wh:active {
  transform: translateY(-1px);
}
.site-footer .site-info .col-3 a.btn-wh {
  color: #fff;
  background: linear-gradient(90deg, #2f6cf2 0%, #1d8ff1 50%, #0fb5ca 100%);
  box-shadow: 0 12px 35px rgba(47, 108, 242, 0.22), 0 6px 18px rgba(15, 181, 202, 0.18);
}
.site-footer .site-info .col-3 a.btn-wh:hover {
  color: #fff;
  box-shadow: 0 20px 45px rgba(47, 108, 242, 0.35), 0 10px 28px rgba(15, 181, 202, 0.25);
}
.site-footer .site-info .col-3 a.btn-wh {
  min-width: auto;
  height: auto;
  padding-block: 1rem;
}
.site-footer .site-info .col-3 a.btn-wh svg {
  fill: #ffffff;
  color: #ffffff;
  stroke: #ffffff;
}
.site-footer .site-info .col-3 a:hover svg {
  fill: #ffffff;
  color: #ffffff;
  stroke: #ffffff;
}
.site-footer .site-info .col-3 a svg {
  height: 20px;
  width: 20px;
  margin-right: 3px;
  margin-bottom: -3px;
}
.site-footer .site-info .col-3 a:hover {
  color: #3b82f6;
}
.site-footer .line {
  max-width: 1240px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.4);
}
.site-footer .footer-info {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .site-footer .footer-info {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.site-footer .footer-info span {
  color: #ffffff;
}
.site-footer .footer-info .legal a {
  color: #ffffff;
}
.site-footer .footer-info .legal a:hover {
  color: #3b82f6;
}

.agency-proof {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 1.5rem;
  background: rgba(223, 234, 254, 0.5);
  color: #0b1730;
}
.agency-proof::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 18% 40%, rgba(47, 108, 242, 0.16), transparent 22%), radial-gradient(circle at 75% 55%, rgba(15, 181, 202, 0.16), transparent 24%);
  filter: blur(50px);
  animation: proofGlow 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.agency-proof__container {
  position: relative;
  z-index: 2;
  width: min(100%, 1240px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.agency-proof__stats {
  text-align: left;
}

.agency-proof__number {
  margin: 0;
  font-size: clamp(7rem, 15vw, 12rem);
  line-height: 0.85;
  font-weight: 900;
  letter-spacing: -0.08em;
  color: #2478d7;
}

.agency-proof__label {
  margin: 2rem 0 2.5rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: #334155;
}

.agency-proof__bullets {
  display: grid;
  gap: 1.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.agency-proof__bullets li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #17243b;
  font-weight: 800;
}
.agency-proof__bullets li::before {
  content: "";
  width: 4rem;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f6cf2, #0fb5ca);
}

.agency-proof__cards {
  display: grid;
  gap: 1.6rem;
}

.proof-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-items: flex-start;
  padding: 1.6rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 45px rgba(15, 36, 70, 0.08);
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.proof-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.75) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 0.8s ease;
}
.proof-card:hover, .proof-card--active {
  transform: translateY(-6px);
  border-color: rgba(79, 149, 255, 0.7);
  box-shadow: 0 24px 60px rgba(31, 97, 170, 0.18);
}
.proof-card:hover::before, .proof-card--active::before {
  transform: translateX(130%);
}
.proof-card:hover .proof-card__icon, .proof-card--active .proof-card__icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 16px 32px rgba(15, 181, 202, 0.28);
}
.proof-card:hover h3, .proof-card--active h3 {
  color: #2f6cf2;
}
.proof-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 0.65rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.2;
  color: #050b18;
  transition: color 0.3s ease;
}
.proof-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #344156;
  font-size: 1rem;
  line-height: 1.65;
}

.proof-card__icon {
  position: relative;
  z-index: 2;
  width: 3.8rem;
  height: 3.8rem;
  display: grid;
  place-items: center;
  border-radius: 0.8rem;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  background: linear-gradient(135deg, #2f6cf2, #0fb5ca);
  box-shadow: 0 12px 26px rgba(47, 108, 242, 0.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@keyframes proofGlow {
  0% {
    transform: translate3d(-2%, -2%, 0) scale(1);
    opacity: 0.65;
  }
  50% {
    transform: translate3d(3%, 2%, 0) scale(1.08);
    opacity: 0.95;
  }
  100% {
    transform: translate3d(-1%, 4%, 0) scale(1.02);
    opacity: 0.8;
  }
}
@media (max-width: 900px) {
  .agency-proof__container {
    grid-template-columns: 1fr;
  }
  .agency-proof__stats {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .agency-proof__bullets {
    width: fit-content;
    margin-inline: auto;
  }
}
@media (max-width: 600px) {
  .proof-card {
    grid-template-columns: 1fr;
  }
  .proof-card__icon {
    width: 3.4rem;
    height: 3.4rem;
  }
  .agency-proof__bullets li::before {
    width: 3rem;
  }
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 8rem 1.5rem;
  background: linear-gradient(135deg, #07182e 0%, #0c2544 48%, #123f5d 100%);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -2;
  background: radial-gradient(circle at 20% 40%, rgba(47, 108, 242, 0.35), transparent 18%), radial-gradient(circle at 75% 30%, rgba(49, 216, 241, 0.28), transparent 20%), radial-gradient(circle at 50% 75%, rgba(18, 120, 190, 0.32), transparent 22%);
  filter: blur(70px);
  animation: heroLights 14s ease-in-out infinite alternate;
}

.hero__ambient {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero__ambient::before, .hero__ambient::after {
  content: "";
  position: absolute;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: rgba(49, 216, 241, 0.16);
  filter: blur(90px);
  animation: floatingGlow 10s ease-in-out infinite;
}
.hero__ambient::before {
  left: 12%;
  top: 45%;
}
.hero__ambient::after {
  right: 14%;
  top: 20%;
  background: rgba(47, 108, 242, 0.2);
  animation-delay: -4s;
}

.hero__container {
  width: min(100%, 1100px);
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 2.5rem;
  padding: 0.55rem 1.35rem;
  border: 1px solid rgba(91, 168, 255, 0.55);
  border-radius: 999px;
  background: rgba(55, 112, 181, 0.18);
  color: #bed9f7;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero__eyebrow span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #5ba8ff;
  box-shadow: 0 0 18px #5ba8ff;
  display: none;
}

.hero__title {
  margin: 0;
  color: #eef5ff;
  font-size: clamp(2.4rem, 7vw, 4rem);
  line-height: 1.1em;
  font-weight: 900;
  letter-spacing: -0.055em;
}
.hero__title span,
.hero__title strong {
  display: block;
}
.hero__title strong {
  background: linear-gradient(90deg, #4f95ff, #31d8f1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__text {
  max-width: 760px;
  margin: 2rem auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.35;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 4rem;
}

.hero__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-width: 260px;
  height: 74px;
  padding-inline: 2.4rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.hero__btn span {
  position: relative;
  z-index: 2;
  transition: transform 0.35s ease;
}
.hero__btn span svg {
  height: 30px;
  width: 30px;
  margin-bottom: -7px;
}
.hero__btn {
  /* LIGHT SWEEP */
}
.hero__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.18) 50%, transparent 80%);
  transform: translateX(-140%);
  transition: transform 0.9s ease;
}
.hero__btn {
  /* HOVER */
}
.hero__btn:hover {
  transform: translateY(-4px);
}
.hero__btn:hover::before {
  transform: translateX(140%);
}
.hero__btn:hover span:last-child {
  transform: translateX(4px) translateY(-2px);
}
.hero__btn:active {
  transform: translateY(-1px);
}

/* PRIMARY BUTTON */
.hero__btn--primary {
  color: #fff;
  background: linear-gradient(90deg, #2f6cf2 0%, #1d8ff1 50%, #0fb5ca 100%);
  box-shadow: 0 12px 35px rgba(47, 108, 242, 0.22), 0 6px 18px rgba(15, 181, 202, 0.18);
}
.hero__btn--primary:hover {
  box-shadow: 0 20px 45px rgba(47, 108, 242, 0.35), 0 10px 28px rgba(15, 181, 202, 0.25);
}

/* GHOST BUTTON */
.hero__btn--ghost {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero__btn--ghost span svg {
  height: 30px;
  width: 30px;
  margin-bottom: -7px;
}
.hero__btn--ghost:hover {
  background: #fff;
  color: #07182e;
  border-color: #fff;
}
.hero__btn--ghost:hover span svg {
  fill: #07182e;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .hero__btn {
    width: 100%;
    max-width: 340px;
  }
}
@keyframes heroLights {
  0% {
    transform: translate3d(-3%, -2%, 0) scale(1);
    opacity: 0.65;
  }
  35% {
    transform: translate3d(4%, 3%, 0) scale(1.08);
    opacity: 0.9;
  }
  70% {
    transform: translate3d(-2%, 5%, 0) scale(0.96);
    opacity: 0.75;
  }
  100% {
    transform: translate3d(5%, -4%, 0) scale(1.12);
    opacity: 0.95;
  }
}
@keyframes floatingGlow {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(40px, -35px) scale(1.25);
    opacity: 0.85;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 7rem 1.25rem;
  }
  .hero__actions {
    gap: 1rem;
  }
  .hero__btn {
    width: 100%;
    max-width: 320px;
  }
}
.services {
  padding: 80px 20px;
  background: rgb(223, 234, 254);
}
.services-heading {
  margin: 0 auto 48px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5rem;
}
.services-heading h2 {
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  border-radius: 22px;
  background-color: #f8fafc;
  font-size: 14px;
  width: fit-content;
  margin-bottom: 1rem;
}
.services-heading h3 {
  font-size: clamp(2.4rem, 7vw, 4rem);
  text-transform: capitalize;
  margin-bottom: 2rem;
  line-height: 1.3em;
}
.services-heading p {
  max-width: 720px;
  font-size: 18px;
  color: #64748b;
}
.services {
  /*
  	&-content {
  		max-width: 1240px;
  		margin: 0 auto;
  	}

  	&-grid {
  		display: grid;
  		gap: 28px;
  		grid-template-columns: 1fr;

  		@media (min-width: 768px) {
  			&--1 { grid-template-columns: repeat(1, 1fr); }
  			&--2 { grid-template-columns: repeat(2, 1fr); }
  			&--3,
  			&--4,
  			&--5,
  			&--6 {
  			grid-template-columns: repeat(3, 1fr);
  			}
  		}

  		@media (min-width: 1024px) {
  			&--1 { grid-template-columns: repeat(1, 1fr); }
  			&--2 { grid-template-columns: repeat(2, 1fr); }
  			&--3 { grid-template-columns: repeat(3, 1fr); }
  			&--4 { grid-template-columns: repeat(4, 1fr); }
  			&--5 { grid-template-columns: repeat(5, 1fr); }
  			&--6 { grid-template-columns: repeat(6, 1fr); }
  		}
  	}
  		*/
}

/*
.service-card {
	background: #fff;
	border: 1px solid #dce6f2;
	border-radius: 16px;
	padding: 30px;
	min-height: 100%;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	  border: 1px solid #e1e1e1;

	&:hover {
		transform: translateY(-4px);
		box-shadow: 0 25px 50px -12px rgba(15, 35, 70, 0.25);
		    border: 1px solid $color-accent;
	}

	&__link {
		display: block;
		color: inherit;
		text-decoration: none;
	}

	&__icon {
		width: 58px;
		height: 58px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 26px;
		border-radius: 16px;
		background: linear-gradient(135deg, #2563eb, #0891b2);
		color: #fff;
		box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28);

		svg {
			width: 28px;
			height: 28px;
		}

		img {
			width: 28px;
			height: 28px;
			object-fit: contain;
		}
		span{
			width: 40px;
			height: 40px;
			font-size: 40px;
		}
	}

	&__title {
		margin-bottom: 16px;
		font-size: 24px;
		line-height: 1.2;
	}

	&__description {
		color: #334155;
		line-height: 1.55;

		ul {
			margin-top: 22px;
			padding-left: 0;
			list-style: none;
		}

		li {
			margin-bottom: 8px;

			&::before {
				content: "✓";
				margin-right: 10px;
				color: #2563eb;
				font-weight: 700;
			}
		}
	}
}
*/
.single-services .single-blog-article .single-blog-hero {
  background: #132f4c;
}
.projects-section {
  padding: clamp(64px, 8vw, 120px) 20px;
  /*background: $color-tertiary;*/
  background: linear-gradient(135deg, #09213f 0%, #0c2544 48%, #123f5d 100%);
  color: #ffffff;
}
.projects-section__inner {
  width: min(1240px, 100%);
  margin: 0 auto;
}
.projects-section__heading {
  margin: 0 auto 48px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5rem;
}
.projects-section__heading h2 {
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  border-radius: 22px;
  background-color: rgb(223, 234, 254);
  font-size: 14px;
  width: fit-content;
  margin-bottom: 1rem;
  color: #08111e;
}
.projects-section__heading h3 {
  font-size: clamp(2.4rem, 7vw, 4rem);
  text-transform: capitalize;
  margin-bottom: 2rem;
  line-height: 1.3em;
  color: #ffffff;
}
.projects-section__heading p {
  max-width: 720px;
  font-size: 18px;
  color: #f8fafc;
}
.projects-section__eyebrow {
  color: #25d9ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.projects-section.is-loading {
  cursor: progress;
}

.projects-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.projects-filter button {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}
.projects-filter button:hover, .projects-filter button.is-active {
  background: #25d9ff;
  border-color: #25d9ff;
  color: #081121;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 700px) {
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.project-card {
  --project-card-height: 345px;
  --project-scroll-speed: 9s;
  --project-return-speed: 0.45s;
  position: relative;
  min-height: var(--project-card-height);
  overflow: hidden;
  border-radius: 12px;
  background: #16233a;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}
.project-card__link {
  display: block;
  min-height: inherit;
  color: inherit;
  text-decoration: none;
}
.project-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.project-card__media img {
  width: 100%;
  height: auto;
  min-height: var(--project-card-height);
  object-fit: cover;
  object-position: top center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform var(--project-return-speed) cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.project-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  /*  background: rgba(16, 26, 45, 0.78);*/
  background: linear-gradient(180deg, rgba(16, 26, 45, 0.05) 30%, rgba(16, 26, 45, 0.8) 100%);
  opacity: 1;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  pointer-events: none;
}
.project-card:hover .project-card__media img {
  opacity: 1;
  transform: translateY(calc(-100% + var(--project-card-height)));
  transition: opacity 0.35s ease, transform var(--project-scroll-speed) linear;
}
.project-card:hover .project-card__media::after {
  /* background: linear-gradient(180deg, rgba(16, 26, 45, 0.32), rgba(16, 26, 45, 0.94));*/
  opacity: 0;
}
.project-card__overlay {
  position: relative;
  z-index: 2;
  min-height: var(--project-card-height);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 4vw, 30px);
  pointer-events: none;
}
.project-card__overlay h3 {
  font-size: 1.6rem;
  margin-bottom: -15px;
}
.project-card__badges span {
  background-color: #0977d3;
  color: #ffffff;
  font-size: 0.54rem;
  padding: 5px 7px;
  border-radius: 20px;
}

.projects-actions,
.projects-cta {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}

.projects-load-more,
.projects-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  /*border-radius: 999px;
  background: #25d9ff;
  color: #081121;*/
  border-radius: 1rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(90deg, #2f6cf2 0%, #1d8ff1 50%, #0fb5ca 100%);
  box-shadow: 0 12px 35px rgba(47, 108, 242, 0.22), 0 6px 18px rgba(15, 181, 202, 0.18);
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}
.projects-load-more::before,
.projects-cta a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.18) 50%, transparent 80%);
  transform: translateX(-140%);
  transition: transform 0.9s ease;
}
.projects-load-more,
.projects-cta a {
  /* HOVER */
}
.projects-load-more:hover,
.projects-cta a:hover {
  transform: translateY(-4px);
}
.projects-load-more:hover::before,
.projects-cta a:hover::before {
  transform: translateX(140%);
}
.projects-load-more:active,
.projects-cta a:active {
  transform: translateY(-1px);
}

.projects-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}
.projects-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
}
.projects-pagination .current {
  background: #25d9ff;
  color: #081121;
}

.projects-sentinel {
  height: 1px;
}

.project-card:hover .project-card__badges,
.project-card:hover h3,
.project-card:hover .project-card__excerpt {
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
}
.project-card:hover .project-card__media::after {
  opacity: 0;
  visibility: hidden;
}

.project-card__badges,
.project-card h3,
.project-card__excerpt,
.project-card__media::after {
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

.testimonials-section {
  background-color: #F8FAFC;
}
.testimonials-section__inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding-inline: 10px;
  padding-top: 80px;
}
.testimonials-section__heading {
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.testimonials-section__heading h2 {
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  border-radius: 22px;
  background-color: rgb(223, 234, 254);
  font-size: 14px;
  width: fit-content;
  margin-bottom: 1rem;
  color: #3b82f6;
}
.testimonials-section__heading h3 {
  font-size: clamp(2.4rem, 7vw, 4rem);
  text-transform: capitalize;
  margin-bottom: 2rem;
  line-height: 1.3em;
  color: #08111e;
}
.testimonials-section__heading p {
  max-width: 720px;
  font-size: 18px;
  color: #08111e;
}
.single-blog-page .inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1rem;
}
.single-blog-page .single-blog-hero {
  background: #111;
  padding: 4rem 0 3rem;
  color: #fff;
}
.single-blog-page .single-blog-hero .single-blog-back {
  display: inline-block;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}
.single-blog-page .single-blog-hero .single-blog-back:hover {
  opacity: 1;
  text-decoration: underline;
}
.single-blog-page .single-blog-hero .single-blog-title {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin: 0;
  text-transform: capitalize;
}
.single-blog-page .single-blog-hero .single-blog-meta {
  display: flex;
  gap: 0.6rem;
  align-items: start;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  flex-direction: column;
}
.single-blog-page .single-blog-featured {
  padding: 2rem 0 0;
}
.single-blog-page .single-blog-featured img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.single-blog-page .single-blog-content {
  padding: 3rem 0;
}
.single-blog-page .single-blog-content .single-blog-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}
.single-blog-page .single-blog-content .single-blog-body > * + * {
  margin-top: 1.4em;
}
.single-blog-page .single-blog-content .single-blog-body h2, .single-blog-page .single-blog-content .single-blog-body h3, .single-blog-page .single-blog-content .single-blog-body h4 {
  color: #111;
  line-height: 1.25;
  margin-top: 2em;
}
.single-blog-page .single-blog-content .single-blog-body a {
  color: #0b63ce;
  text-decoration: underline;
}
.single-blog-page .single-blog-content .single-blog-body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
}
.single-blog-page .single-blog-content .single-blog-body blockquote {
  border-left: 4px solid #0b63ce;
  padding-left: 1rem;
  color: #555;
  font-style: italic;
}
.single-blog-page .single-blog-navigation {
  padding: 0 0 3rem;
}
.single-blog-page .single-blog-navigation .nav-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .single-blog-page .single-blog-navigation .nav-links {
    grid-template-columns: 1fr 1fr;
  }
}
.single-blog-page .single-blog-navigation .nav-previous,
.single-blog-page .single-blog-navigation .nav-next {
  background: #f1f1f3;
  padding: 1rem;
  border-radius: 0.75rem;
}
.single-blog-page .single-blog-navigation .nav-previous a,
.single-blog-page .single-blog-navigation .nav-next a {
  text-decoration: none;
  color: #111;
}
.single-blog-page .single-blog-navigation .nav-previous:hover,
.single-blog-page .single-blog-navigation .nav-next:hover {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.single-blog-page .single-blog-navigation .nav-next {
  text-align: right;
}
.single-blog-page .single-blog-navigation .nav-subtitle {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.35rem;
}
.single-blog-page .single-blog-navigation .nav-title {
  color: #0b63ce;
  font-weight: 700;
}

.contact-section__inner {
  width: min(1240px, 100%);
  margin: 60px auto;
  padding-inline: 10px;
}
.contact-section__heading {
  margin: 0 auto 48px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5rem;
}
.contact-section__heading h2 {
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  border-radius: 22px;
  background-color: rgb(223, 234, 254);
  font-size: 14px;
  width: fit-content;
  margin-bottom: 1rem;
  color: #3b82f6;
}
.contact-section__heading h3 {
  font-size: clamp(2.4rem, 7vw, 4rem);
  text-transform: capitalize;
  margin-bottom: 2rem;
  line-height: 1.3em;
  color: #08111e;
}
.contact-section__heading p {
  max-width: 720px;
  font-size: 18px;
  color: #08111e;
}
.contact-section .content {
  display: grid;
  grid-template-columns: 2fr 1fr;
}
@media (max-width: 1200px) {
  .contact-section .content {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .contact-section .content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.contact-section .content .side .contact-info-cards {
  display: grid;
  gap: 22px;
}
.contact-section .content .side .contact-info-card {
  padding: 30px;
  border: 1px solid #dce5f2;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  color: #142033;
}
.contact-section .content .side .contact-info-card__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #0891b2);
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
}
.contact-section .content .side .contact-info-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
}
.contact-section .content .side .contact-info-card a {
  display: inline-block;
  margin-bottom: 12px;
  color: #2563eb;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}
.contact-section .content .side .contact-info-card strong {
  display: block;
  margin-bottom: 12px;
  color: #334155;
  font-size: 17px;
  font-weight: 800;
}
.contact-section .content .side .contact-info-card p {
  margin: 0;
  color: #526174;
  font-size: 14px;
  line-height: 1.6;
}
.contact-section .content .side .contact-info-card--highlight {
  border: 0;
  background: linear-gradient(135deg, #2563eb, #0891b2);
  color: #ffffff;
}
.contact-section .content .side .contact-info-card--highlight .contact-info-card__icon {
  background: rgba(255, 255, 255, 0.18);
}
.contact-section .content .side .contact-info-card--highlight h3,
.contact-section .content .side .contact-info-card--highlight p {
  color: #ffffff;
}

body.page-id-85 .headerCover .rowContainer {
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  body.page-id-85 .headerCover .rowContainer {
    align-items: center;
  }
}
body.page-id-85 .headerCover .rowContainer h1 {
  font-size: 60px !important;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1em;
  margin: 0;
  width: 59%;
}
@media (max-width: 992px) {
  body.page-id-85 .headerCover .rowContainer h1 {
    font-size: 44px !important;
    text-align: center;
  }
}
@media (max-width: 768px) {
  body.page-id-85 .headerCover .rowContainer h1 {
    width: 90%;
  }
}
body.page-id-85 .headerCover .rowContainer p {
  font-size: 23px !important;
  font-weight: 400;
  width: 60%;
}
@media (max-width: 768px) {
  body.page-id-85 .headerCover .rowContainer p {
    width: 90%;
  }
}
body.page-id-85 .headerCover .rowContainer .btn-cta-migration a {
  margin-top: 2rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-width: 260px;
  height: 74px;
  padding-inline: 2.4rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
body.page-id-85 .headerCover .rowContainer .btn-cta-migration a span {
  position: relative;
  z-index: 2;
  transition: transform 0.35s ease;
}
body.page-id-85 .headerCover .rowContainer .btn-cta-migration a span svg {
  width: 30px;
  height: 30px;
  margin-bottom: -7px;
}
body.page-id-85 .headerCover .rowContainer .btn-cta-migration a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.18) 50%, transparent 80%);
  transform: translateX(-140%);
  transition: transform 0.9s ease;
}
body.page-id-85 .headerCover .rowContainer .btn-cta-migration a:hover {
  transform: translateY(-4px);
}
body.page-id-85 .headerCover .rowContainer .btn-cta-migration a:hover::before {
  transform: translateX(140%);
}
body.page-id-85 .headerCover .rowContainer .btn-cta-migration a:hover span:last-child {
  transform: translateX(4px) translateY(-2px);
}
body.page-id-85 .headerCover .rowContainer .btn-cta-migration a:active {
  transform: translateY(-1px);
}
body.page-id-85 .headerCover .rowContainer .btn-cta-migration a {
  color: #fff;
  background: linear-gradient(90deg, #2f6cf2 0%, #1d8ff1 50%, #0fb5ca 100%);
  box-shadow: 0 12px 35px rgba(47, 108, 242, 0.22), 0 6px 18px rgba(15, 181, 202, 0.18);
}
body.page-id-85 .headerCover .rowContainer .btn-cta-migration a:hover {
  color: #fff;
  box-shadow: 0 20px 45px rgba(47, 108, 242, 0.35), 0 10px 28px rgba(15, 181, 202, 0.25);
}
body.page-id-85 .aburto-mig {
  --ink: #0F141C;
  --ink-2: #19212E;
  --paper: #FFFFFF;
  --mist: #EEF1F5;
  --line: #DCE2EA;
  --text: #1B2430;
  --muted: #5C6776;
  --accent: #2F6BFF;
  --accent-700: #1E4FD6;
  --teal: #00C39A;
  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1140px;
  --f-display: 'Space Grotesk', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, -apple-system, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;
  font-family: var(--f-body);
  color: var(--text);
  line-height: 1.6;
}
body.page-id-85 .aburto-mig * {
  box-sizing: border-box;
}
body.page-id-85 .aburto-mig p {
  margin: 0 0 1rem;
}
body.page-id-85 .aburto-mig p:last-child {
  margin-bottom: 0;
}
body.page-id-85 .aburto-mig a {
  color: var(--accent);
  text-decoration: none;
}
body.page-id-85 .aburto-mig a:hover {
  text-decoration: underline;
}
body.page-id-85 .aburto-mig .aburto-mig__section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  padding-inline: 1.25rem;
}
body.page-id-85 .aburto-mig .aburto-mig__section > * {
  max-width: var(--maxw);
  margin-inline: auto;
}
body.page-id-85 .aburto-mig .aburto-mig__section--mist {
  background: var(--mist);
}
body.page-id-85 .aburto-mig .aburto-mig__section--ink {
  background: var(--ink);
  color: #E8EDF4;
  background-image: radial-gradient(120% 90% at 80% -10%, rgba(47, 107, 255, 0.22), transparent 55%), linear-gradient(0deg, rgba(0, 195, 154, 0.06), transparent 40%);
}
body.page-id-85 .aburto-mig .aburto-mig__eyebrow,
body.page-id-85 .aburto-mig .aburto-mig__label {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}
body.page-id-85 .aburto-mig .aburto-mig__label {
  color: var(--muted);
}
body.page-id-85 .aburto-mig .aburto-mig__h1 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.3rem, 5.4vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  max-width: 16ch;
}
body.page-id-85 .aburto-mig .aburto-mig__h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 2.25rem;
}
body.page-id-85 .aburto-mig .aburto-mig__h2--invert {
  color: #fff;
}
body.page-id-85 .aburto-mig .aburto-mig__lede {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: rgba(232, 237, 244, 0.8);
  max-width: 60ch;
  margin: 0 0 2rem;
}
body.page-id-85 .aburto-mig .aburto-mig__hero {
  text-align: left;
}
@media (prefers-reduced-motion: no-preference) {
  body.page-id-85 .aburto-mig .aburto-mig__hero .aburto-mig__h1,
  body.page-id-85 .aburto-mig .aburto-mig__hero .aburto-mig__lede,
  body.page-id-85 .aburto-mig .aburto-mig__hero .aburto-mig__btns {
    animation: aburtoMigRise 0.6s cubic-bezier(0.2, 0.7, 0.3, 1) both;
  }
  body.page-id-85 .aburto-mig .aburto-mig__hero .aburto-mig__lede {
    animation-delay: 0.07s;
  }
  body.page-id-85 .aburto-mig .aburto-mig__hero .aburto-mig__btns {
    animation-delay: 0.14s;
  }
}
body.page-id-85 .aburto-mig .aburto-mig__lane {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2.5rem;
  font-family: var(--f-mono);
  font-size: 0.9rem;
}
body.page-id-85 .aburto-mig .aburto-mig__lane-from {
  color: rgba(232, 237, 244, 0.55);
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}
body.page-id-85 .aburto-mig .aburto-mig__lane-to {
  position: relative;
  color: #04110D;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--teal);
}
body.page-id-85 .aburto-mig .aburto-mig__lane-to::before {
  content: "→";
  position: absolute;
  left: -1.6rem;
  color: var(--teal);
  font-size: 1.2rem;
}
body.page-id-85 .aburto-mig .aburto-mig__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
body.page-id-85 .aburto-mig .aburto-mig__btns--center {
  justify-content: center;
}
body.page-id-85 .aburto-mig .aburto-mig__btn .wp-block-button__link,
body.page-id-85 .aburto-mig .aburto-mig__btn .wp-element-button {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-sm);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
body.page-id-85 .aburto-mig .aburto-mig__btn--primary .wp-block-button__link {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 22px -10px rgba(47, 107, 255, 0.8);
}
body.page-id-85 .aburto-mig .aburto-mig__btn--primary .wp-block-button__link:hover {
  background: var(--accent-700);
  transform: translateY(-2px);
  text-decoration: none;
}
body.page-id-85 .aburto-mig .aburto-mig__btn--ghost .wp-block-button__link {
  background: transparent;
  color: #E8EDF4;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
body.page-id-85 .aburto-mig .aburto-mig__btn--ghost .wp-block-button__link:hover {
  border-color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
body.page-id-85 .aburto-mig .aburto-mig__strip {
  text-align: center;
}
body.page-id-85 .aburto-mig .aburto-mig__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}
body.page-id-85 .aburto-mig .aburto-mig__chips li {
  font-family: var(--f-mono);
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
}
body.page-id-85 .aburto-mig .aburto-mig__grid {
  gap: 1.5rem;
}
body.page-id-85 .aburto-mig .aburto-mig__card-title {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.6rem;
  padding-left: 1.4rem;
  position: relative;
}
body.page-id-85 .aburto-mig .aburto-mig__card-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.35;
}
body.page-id-85 .aburto-mig .aburto-mig__card-title--good::before {
  background: var(--teal);
  opacity: 1;
}
body.page-id-85 .aburto-mig .aburto-mig__benefits p {
  color: var(--text);
}
body.page-id-85 .aburto-mig .aburto-mig__grid--3 {
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
body.page-id-85 .aburto-mig .aburto-mig__pcard {
  height: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
body.page-id-85 .aburto-mig .aburto-mig__pcard:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 107, 255, 0.4);
  box-shadow: 0 18px 40px -24px rgba(15, 20, 28, 0.4);
}
body.page-id-85 .aburto-mig .aburto-mig__pcard-title {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.6rem;
}
body.page-id-85 .aburto-mig .aburto-mig__pcard p {
  color: var(--muted);
  font-size: 0.96rem;
}
body.page-id-85 .aburto-mig .aburto-mig__pcard-tag {
  margin-top: 1rem !important;
  font-family: var(--f-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}
body.page-id-85 .aburto-mig .aburto-mig__other {
  text-align: center;
  font-size: 1.05rem;
  color: var(--muted);
}
body.page-id-85 .aburto-mig .aburto-mig__steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
body.page-id-85 .aburto-mig .aburto-mig__process .inner .btn-cta-call {
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 2rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-width: 260px;
  height: 74px;
  padding-inline: 2.4rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
body.page-id-85 .aburto-mig .aburto-mig__process .inner .btn-cta-call span {
  position: relative;
  z-index: 2;
  transition: transform 0.35s ease;
}
body.page-id-85 .aburto-mig .aburto-mig__process .inner .btn-cta-call span svg {
  width: 30px;
  height: 30px;
  margin-bottom: -7px;
}
body.page-id-85 .aburto-mig .aburto-mig__process .inner .btn-cta-call::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.18) 50%, transparent 80%);
  transform: translateX(-140%);
  transition: transform 0.9s ease;
}
body.page-id-85 .aburto-mig .aburto-mig__process .inner .btn-cta-call:hover {
  transform: translateY(-4px);
}
body.page-id-85 .aburto-mig .aburto-mig__process .inner .btn-cta-call:hover::before {
  transform: translateX(140%);
}
body.page-id-85 .aburto-mig .aburto-mig__process .inner .btn-cta-call:hover span:last-child {
  transform: translateX(4px) translateY(-2px);
}
body.page-id-85 .aburto-mig .aburto-mig__process .inner .btn-cta-call:active {
  transform: translateY(-1px);
}
body.page-id-85 .aburto-mig .aburto-mig__process .inner .btn-cta-call {
  color: #fff;
  background: linear-gradient(90deg, #2f6cf2 0%, #1d8ff1 50%, #0fb5ca 100%);
  box-shadow: 0 12px 35px rgba(47, 108, 242, 0.22), 0 6px 18px rgba(15, 181, 202, 0.18);
}
body.page-id-85 .aburto-mig .aburto-mig__process .inner .btn-cta-call:hover {
  color: #fff;
  box-shadow: 0 20px 45px rgba(47, 108, 242, 0.35), 0 10px 28px rgba(15, 181, 202, 0.25);
}
body.page-id-85 .aburto-mig .aburto-mig__step {
  counter-increment: step;
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 1.5rem 1.5rem;
}
body.page-id-85 .aburto-mig .aburto-mig__step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 1.1rem;
  left: 1.5rem;
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
}
body.page-id-85 .aburto-mig .aburto-mig__step-title {
  font-family: var(--f-display);
  font-size: 1.12rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
body.page-id-85 .aburto-mig .aburto-mig__step p {
  color: var(--muted);
  font-size: 0.94rem;
}
body.page-id-85 .aburto-mig .aburto-mig__table {
  margin: 0;
}
body.page-id-85 .aburto-mig .aburto-mig__table table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
body.page-id-85 .aburto-mig .aburto-mig__table th,
body.page-id-85 .aburto-mig .aburto-mig__table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
body.page-id-85 .aburto-mig .aburto-mig__table thead th {
  font-family: var(--f-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--mist);
}
body.page-id-85 .aburto-mig .aburto-mig__table thead th:last-child {
  color: var(--accent);
}
body.page-id-85 .aburto-mig .aburto-mig__table tbody td:first-child {
  font-weight: 600;
}
body.page-id-85 .aburto-mig .aburto-mig__table tbody td:nth-child(2) {
  color: var(--muted);
}
body.page-id-85 .aburto-mig .aburto-mig__table tbody td:last-child {
  color: var(--text);
  font-weight: 600;
}
body.page-id-85 .aburto-mig .aburto-mig__table tbody tr:last-child td {
  border-bottom: 0;
}
body.page-id-85 .aburto-mig .aburto-mig__qa {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 1.25rem;
  margin-bottom: 0.75rem;
}
body.page-id-85 .aburto-mig .aburto-mig__qa summary {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.08rem;
  padding: 1.05rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
body.page-id-85 .aburto-mig .aburto-mig__qa summary::-webkit-details-marker {
  display: none;
}
body.page-id-85 .aburto-mig .aburto-mig__qa summary::after {
  content: "+";
  font-family: var(--f-mono);
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.2s ease;
}
body.page-id-85 .aburto-mig .aburto-mig__qa[open] summary::after {
  transform: rotate(45deg);
}
body.page-id-85 .aburto-mig .aburto-mig__qa p {
  padding-bottom: 1.1rem;
  color: var(--muted);
  margin: 0;
}
body.page-id-85 .aburto-mig .aburto-mig__cta {
  text-align: center;
}
body.page-id-85 .aburto-mig .aburto-mig__cta-lede {
  color: rgba(232, 237, 244, 0.8);
  font-size: 1.1rem;
  max-width: 52ch;
  margin: 0 auto 2rem;
}
body.page-id-85 .aburto-mig .aburto-mig__form-placeholder {
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  padding: 2rem;
  color: rgba(232, 237, 244, 0.6);
  font-family: var(--f-mono);
  font-size: 0.85rem;
  margin-bottom: 1.75rem;
}
@keyframes aburtoMigRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.page-id-85 .aburto-mig a:focus-visible,
body.page-id-85 .aburto-mig summary:focus-visible,
body.page-id-85 .aburto-mig .wp-element-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (max-width: 980px) {
  body.page-id-85 .aburto-mig .aburto-mig__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  body.page-id-85 .aburto-mig .aburto-mig__steps {
    grid-template-columns: 1fr;
  }
  body.page-id-85 .aburto-mig .aburto-mig__lane-to::before {
    display: none;
  }
  body.page-id-85 .aburto-mig .aburto-mig__table {
    overflow-x: auto;
  }
  body.page-id-85 .aburto-mig .aburto-mig__table table {
    min-width: 520px;
  }
}

body {
  font-family: Inter, Arial, sans-serif;
}

html {
  scroll-margin-top: 2rem;
  scroll-behavior: smooth;
}

/*# sourceMappingURL=main.min.css.map */
