:root {
  --mx-purple: #8e32ec;
  --mx-purple-dark: #6c18d7;
  --mx-purple-soft: #eee3ff;
  --text: #111015;
  --muted: #5f5b66;
  --line: #dcd8e5;
  --page: #ffffff;
  --frame: #e8e6e2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--frame);
  font-family: "Segoe UI", Aptos, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: pageOut 180ms ease both;
}

::view-transition-new(root) {
  animation: pageIn 260ms ease both;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-shell {
  position: relative;
  --spotlight-x: 50%;
  --spotlight-y: 20%;
  min-height: calc(100vh - 10px);
  margin: 5px;
  overflow: hidden;
  background:
    linear-gradient(rgba(17, 16, 21, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 16, 21, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 50% 22%, rgba(142, 50, 236, 0.12), transparent 27rem),
    var(--page);
  background-size: 104px 104px, 104px 104px, auto, auto;
  animation: tileDrift 22s linear infinite;
}

.page-shell::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.64) 0%, rgba(255, 255, 255, 0.34) 48%, rgba(255, 255, 255, 0.68) 100%);
}

.page-shell::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(17, 16, 21, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 16, 21, 0.25) 1px, transparent 1px);
  background-size: 104px 104px;
  animation: tileDrift 22s linear infinite;
  mask-image: radial-gradient(
    circle 220px at var(--spotlight-x) var(--spotlight-y),
    #000 0%,
    rgba(0, 0, 0, 0.72) 34%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 180ms ease;
}

.page-shell.is-pointer-active::after {
  opacity: 1;
}

.page-shell > * {
  position: relative;
  z-index: 1;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #ffffff;
  background: var(--mx-purple);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 18px 46px rgba(142, 50, 236, 0.28);
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: var(--mx-purple-dark);
  box-shadow: 0 22px 54px rgba(142, 50, 236, 0.36);
  transform: translateY(-3px);
}

.whatsapp-float img {
  width: 27px;
  height: 27px;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 180px 1fr 150px;
  gap: 24px;
  align-items: center;
  width: min(100% - 92px, 1280px);
  margin: 0 auto;
  padding: 24px 0 0;
}

.brand {
  width: 82px;
}

.nav-links {
  display: flex;
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  justify-content: center;
  font-size: 0.94rem;
  font-weight: 500;
}

.nav-links a {
  color: #16131d;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links .is-active {
  color: var(--mx-purple);
}

.header-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  justify-self: end;
  padding: 0 22px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 520;
  background: var(--mx-purple);
  transition: background 160ms ease, transform 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--mx-purple-dark);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--line);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  display: grid;
  justify-items: center;
  width: min(100% - 44px, 880px);
  margin: 0 auto;
  padding: clamp(82px, 10vw, 112px) 0 clamp(58px, 7vw, 78px);
  text-align: center;
}

.hero-kicker {
  margin: 0 0 20px;
  color: var(--mx-purple);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 48px;
  font-size: clamp(2.7rem, 4.7vw, 4.9rem);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: -0.075em;
}

h1 span {
  position: relative;
  display: inline-block;
  color: var(--mx-purple);
  font-family: inherit;
  font-size: inherit;
  font-style: normal;
  font-weight: inherit;
  letter-spacing: inherit;
}

h1 span::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 9px;
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='72' height='9' viewBox='0 0 72 9' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5 C6 1.7, 12 1.7, 17 5 S28 8.3, 33 5 S44 1.7, 49 5 S60 8.3, 71 5' fill='none' stroke='%238e32ec' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x;
  background-size: 72px 9px;
  opacity: 0.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.92rem;
  font-weight: 520;
}

.button.primary {
  min-width: 216px;
  padding: 0 28px;
  color: #ffffff;
  background: var(--mx-purple);
  transition: background 160ms ease, transform 160ms ease;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--mx-purple-dark);
  transform: translateY(-1px);
}

.button.video {
  color: #16131d;
}

.button.video i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: #ffffff;
  font-size: 0.48rem;
  font-style: normal;
  background: #c6b4f4;
  border-radius: 50%;
}

.brand-strip,
.process-section {
  width: min(100% - 44px, 1120px);
  margin: 0 auto;
  padding: 70px 0 72px;
  text-align: center;
}

.brand-strip {
  padding-bottom: 58px;
}

.brand-strip h2,
.process-section h2 {
  max-width: 650px;
  margin: 0 auto 58px;
  font-size: clamp(1.9rem, 3.4vw, 3.25rem);
  font-weight: 640;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.brand-strip h2 {
  max-width: 730px;
  margin-bottom: 72px;
}

.logo-marquee {
  position: relative;
  margin-inline: -120px;
  overflow: hidden;
  padding: 4px 0;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.logo-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: logoSlide 34s linear infinite;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logo-track article {
  display: grid;
  grid-template-columns: auto;
  gap: 2px;
  min-width: 178px;
  padding: 15px 20px;
  text-align: left;
  background: #ffffff;
  border: 1px solid #bfc8d7;
  border-radius: 8px;
}

.logo-track strong {
  color: #1b2330;
  font-size: 0.95rem;
  font-weight: 760;
}

.logo-track span {
  color: #657085;
  font-size: 0.76rem;
  font-weight: 620;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  text-align: left;
}

.process-timeline::before {
  position: absolute;
  top: 31px;
  right: 10%;
  left: 10%;
  height: 1px;
  content: "";
  background: rgba(142, 50, 236, 0.24);
}

.process-step {
  position: relative;
  display: grid;
  gap: 24px;
  padding: 0 18px;
}

.process-step > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--mx-purple);
  font-size: 0.86rem;
  font-weight: 620;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(142, 50, 236, 0.22);
  border-radius: 50%;
  box-shadow: 0 16px 42px rgba(25, 17, 39, 0.06);
}

.process-step div {
  min-height: 190px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(191, 200, 215, 0.74);
  border-radius: 14px;
}

.process-step h3 {
  margin: 0 0 14px;
  font-size: 1.12rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

.contact-hero {
  display: grid;
  justify-items: center;
  width: min(100% - 44px, 860px);
  margin: 0 auto;
  padding: clamp(78px, 10vw, 116px) 0 58px;
  text-align: center;
}

.contact-hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(2.35rem, 4.6vw, 4.8rem);
  font-weight: 740;
  line-height: 1.04;
  letter-spacing: -0.075em;
}

.contact-hero p:not(.hero-kicker) {
  max-width: 610px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1fr);
  gap: 42px;
  align-items: start;
  width: min(100% - 92px, 1120px);
  margin: 0 auto 112px;
}

.contact-info {
  padding-top: 8px;
}

.contact-info .section-label {
  margin-right: auto;
  margin-left: 0;
}

.contact-info h2 {
  max-width: 420px;
  margin: 0 0 34px;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 720;
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.contact-methods {
  display: grid;
  gap: 12px;
  max-width: 420px;
}

.contact-methods a {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(191, 200, 215, 0.78);
  border-radius: 14px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.contact-methods a:hover,
.contact-methods a:focus-visible {
  border-color: rgba(142, 50, 236, 0.34);
  transform: translateY(-2px);
}

.contact-methods span {
  color: var(--mx-purple);
  font-size: 0.74rem;
  font-weight: 660;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(191, 200, 215, 0.78);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(25, 17, 39, 0.065);
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: #24202c;
  font-size: 0.9rem;
  font-weight: 560;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--text);
  font: inherit;
  font-size: 0.98rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(191, 200, 215, 0.92);
  border-radius: 10px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(142, 50, 236, 0.62);
  box-shadow: 0 0 0 4px rgba(142, 50, 236, 0.1);
}

.contact-form .button {
  width: fit-content;
  min-width: 190px;
  border: 0;
  cursor: pointer;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.form-note.is-success {
  color: #276f45;
}

.form-note.is-error {
  color: #9d2525;
}

.not-found {
  display: grid;
  justify-items: center;
  width: min(100% - 44px, 820px);
  min-height: 58vh;
  margin: 0 auto;
  padding: clamp(92px, 12vw, 140px) 0 96px;
  text-align: center;
}

.not-found h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 740;
  line-height: 1.02;
  letter-spacing: -0.075em;
}

.not-found p:not(.hero-kicker) {
  max-width: 520px;
  margin: 22px auto 34px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.legal-page {
  width: min(100% - 92px, 920px);
  margin: 0 auto;
  padding: clamp(74px, 9vw, 112px) 0 108px;
}

.legal-page .hero-kicker {
  text-align: center;
}

.legal-page h1 {
  max-width: 760px;
  margin: 0 auto 54px;
  font-size: clamp(2.35rem, 4.4vw, 4.6rem);
  font-weight: 740;
  line-height: 1.04;
  text-align: center;
  letter-spacing: -0.075em;
}

.legal-content {
  display: grid;
  gap: 16px;
}

.legal-content section {
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(191, 200, 215, 0.78);
  border-radius: 14px;
}

.legal-content h2 {
  margin: 0 0 12px;
  font-size: 1.16rem;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.legal-content a {
  color: var(--mx-purple);
  font-weight: 560;
}

.problem-solution {
  width: min(100% - 92px, 1120px);
  margin: 0 auto;
  padding: 112px 0 120px;
}

.section-label {
  width: fit-content;
  margin: 0 auto 28px;
  color: var(--mx-purple);
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  gap: 56px;
  align-items: center;
}

.problem-copy h2 {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 3.6vw, 4rem);
  font-weight: 720;
  line-height: 1.06;
  letter-spacing: -0.065em;
}

.problem-copy p {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.comparison-card {
  position: relative;
  min-height: 340px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(191, 200, 215, 0.8);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(25, 17, 39, 0.08);
}

.card-icon {
  position: absolute;
  top: 26px;
  right: 26px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
}

.problem-icon {
  background: #f6f3fb;
  border: 1px solid var(--line);
  color: var(--mx-purple);
}

.solution-icon {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #ffffff;
}

.card-icon svg {
  width: 29px;
  height: 29px;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.comparison-card span {
  display: inline-flex;
  margin-bottom: 68px;
  color: var(--mx-purple);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-card h3 {
  margin: 0 0 18px;
  font-size: 1.45rem;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.comparison-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.comparison-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: #c9c1d6;
  border-radius: 50%;
  transform: translateY(-50%);
}

.comparison-card.is-solution {
  color: #ffffff;
  background: linear-gradient(145deg, var(--mx-purple), var(--mx-purple-dark));
  border-color: transparent;
}

.comparison-card.is-solution span,
.comparison-card.is-solution li,
.comparison-card.is-solution h3 {
  color: #ffffff;
}

.comparison-card.is-solution li::before {
  background: #ffffff;
}

.services-section {
  width: min(100% - 92px, 1120px);
  margin: 0 auto;
  padding: 10px 0 128px;
}

.services-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 42px;
}

.services-head h2 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(2.1rem, 3.7vw, 4rem);
  font-weight: 720;
  line-height: 1.06;
  letter-spacing: -0.065em;
}

.services-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 282px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(191, 200, 215, 0.78);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(25, 17, 39, 0.065);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  border-color: rgba(142, 50, 236, 0.38);
  box-shadow: 0 26px 70px rgba(25, 17, 39, 0.09);
  transform: translateY(-4px);
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 62px;
  place-items: center;
  color: var(--mx-purple);
  background: rgba(142, 50, 236, 0.08);
  border: 1px solid rgba(142, 50, 236, 0.16);
  border-radius: 16px;
}

.service-icon svg {
  width: 29px;
  height: 29px;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.36rem;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

.final-cta {
  width: min(100% - 92px, 900px);
  margin: 0 auto 96px;
  padding: clamp(36px, 5vw, 58px) 0;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.final-cta .section-label {
  margin-bottom: 18px;
}

.final-cta h2 {
  max-width: 780px;
  margin: 0 auto 20px;
  font-size: clamp(2.15rem, 3.8vw, 4rem);
  font-weight: 740;
  line-height: 1.08;
  letter-spacing: -0.07em;
}

.final-cta p:not(.section-label) {
  max-width: 610px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.site-footer {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 92px, 1120px);
  margin: 0 auto;
  padding: 26px 0 34px;
  border-top: 1px solid rgba(191, 200, 215, 0.78);
}

.footer-brand {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  min-width: 240px;
}

.footer-brand img {
  width: 72px;
  margin-bottom: 0;
}

.footer-brand p {
  max-width: 210px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.footer-links,
.footer-contact {
  display: flex;
  gap: 22px;
  align-items: center;
  white-space: nowrap;
}

.footer-links a,
.footer-contact a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 620;
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--mx-purple);
}

.about-hero {
  display: grid;
  justify-items: center;
  width: min(100% - 44px, 920px);
  margin: 0 auto;
  padding: clamp(82px, 10vw, 118px) 0 clamp(54px, 7vw, 86px);
  text-align: center;
}

.about-hero h1 {
  max-width: 900px;
  margin-bottom: 0;
}

.about-content {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1fr);
  gap: 64px;
  width: min(100% - 92px, 1120px);
  margin: 0 auto;
  padding: 72px 0 118px;
  border-top: 1px solid rgba(191, 200, 215, 0.68);
}

.about-intro .section-label {
  margin-right: auto;
  margin-left: 0;
}

.about-intro h2 {
  max-width: 430px;
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 720;
  line-height: 1.06;
  letter-spacing: -0.065em;
}

.about-text {
  display: grid;
  gap: 22px;
}

.about-text p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.team-section {
  width: min(100% - 92px, 1120px);
  margin: 0 auto;
  padding: 0 0 126px;
}

.team-head {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.62fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 42px;
}

.team-head .section-label {
  margin-right: auto;
  margin-left: 0;
}

.team-head h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3.7vw, 4rem);
  font-weight: 720;
  line-height: 1.06;
  letter-spacing: -0.065em;
}

.team-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(191, 200, 215, 0.84);
  border-bottom: 1px solid rgba(191, 200, 215, 0.84);
}

.team-card {
  min-height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.profile-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 26px 10px;
  border-bottom: 1px solid rgba(191, 200, 215, 0.62);
  transition: background 160ms ease, padding 160ms ease;
}

.profile-card:last-child {
  border-bottom: 0;
}

.profile-card:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.46);
}

.profile-card img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  object-position: center 24%;
  border: 1px solid rgba(191, 200, 215, 0.86);
  border-radius: 50%;
}

.profile-placeholder {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--mx-purple);
  font-size: 0.92rem;
  font-weight: 680;
  background: rgba(142, 50, 236, 0.06);
  border: 1px solid rgba(142, 50, 236, 0.14);
  border-radius: 50%;
}

.profile-content span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--mx-purple);
  font-size: 0.74rem;
  font-weight: 640;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.profile-content h3 {
  margin-bottom: 8px;
}

.profile-content p {
  max-width: 720px;
}

.team-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 70px;
  place-items: center;
  color: var(--mx-purple);
  background: rgba(142, 50, 236, 0.08);
  border: 1px solid rgba(142, 50, 236, 0.16);
  border-radius: 16px;
}

.team-icon svg {
  width: 29px;
  height: 29px;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-card h3 {
  margin: 0 0 12px;
  font-size: 1.36rem;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.team-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

@keyframes logoSlide {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@keyframes tileDrift {
  from {
    background-position: 0 0, 0 0, 50% 22%, 0 0;
  }

  to {
    background-position: 104px 104px, 104px 104px, 50% 22%, 0 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 120px 1fr auto;
    width: min(100% - 36px, 1280px);
  }

  .brand {
    width: 76px;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    justify-content: stretch;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px 12px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 98px;
  }

  .problem-solution {
    width: min(100% - 36px, 1120px);
    padding: 86px 0 92px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .comparison-cards {
    grid-template-columns: 1fr;
  }

  .comparison-card {
    min-height: auto;
  }

  .comparison-card span {
    margin-bottom: 42px;
  }

  .services-section {
    width: min(100% - 36px, 1120px);
    padding: 0 0 96px;
  }

  .services-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta {
    width: min(100% - 36px, 980px);
    margin-bottom: 68px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 1120px);
  }

  .legal-page {
    width: min(100% - 36px, 920px);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    width: min(100% - 36px, 1120px);
  }

  .footer-links,
  .footer-contact {
    flex-wrap: wrap;
    gap: 14px 20px;
    white-space: normal;
  }

  .about-content,
  .team-section {
    width: min(100% - 36px, 1120px);
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 60px 0 92px;
  }

  .team-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    min-height: auto;
  }

  .team-icon {
    margin-bottom: 42px;
  }

  .profile-card {
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding: 22px 0;
  }

  .profile-card img,
  .profile-placeholder {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    min-height: calc(100vh - 8px);
    margin: 4px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.55rem);
    letter-spacing: -0.065em;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .hero-actions {
    width: 100%;
    gap: 14px;
  }

  .button.primary,
  .button.video {
    width: 100%;
  }

  .brand-strip h2,
  .process-section h2 {
    margin-bottom: 42px;
  }

  .logo-marquee {
    margin-inline: -220px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-timeline::before {
    top: 31px;
    bottom: 31px;
    left: 31px;
    width: 1px;
    height: auto;
  }

  .process-step {
    grid-template-columns: 62px 1fr;
    gap: 18px;
    padding: 0;
  }

  .process-step div {
    min-height: auto;
  }

  .contact-hero {
    padding-top: 82px;
  }

  .contact-form {
    padding: 22px;
  }

  .contact-form .button {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-icon {
    margin-bottom: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-shell,
  .logo-track {
    animation: none;
  }

  .logo-track {
    transform: translateX(0);
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
  }
}
