:root {
  --blue: #2563eb;
  --blue2: #1d4ed8;
  --blue-glow: rgba(37, 99, 235, 0.18);
  --dark: #f5f8ff; /* pérola azulada — base do site    */
  --dark2: #eaeff9; /* alternado suave                  */
  --dark3: #dce6f7; /* inputs / apoio                   */
  --card: #ffffff; /* branco puro para cards           */
  --ink: #0f1623;
  --grey: #576273; /* era #6b7280 — mais legível nos fundos azulados */
  --grey2: #3e4d5c; /* era #4b5563 — mais rico                        */
  --accent: #2563eb;
  --border: rgba(37, 99, 235, 0.09);
  --border2: rgba(37, 99, 235, 0.2);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background:
    radial-gradient(
      ellipse 110% 45% at 10% 0%,
      rgba(37, 99, 235, 0.05) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 80% 35% at 90% 100%,
      rgba(37, 99, 235, 0.04) 0%,
      transparent 55%
    ),
    linear-gradient(160deg, #f2f6ff 0%, #f7faff 45%, #eef4ff 100%);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

/* ── CURSOR ── */
#cursor {
  width: 12px;
  height: 12px;
  background: var(--blue);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition:
    transform 0.15s ease,
    background 0.2s;
  transform: translate(-50%, -50%);
}
#cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0.3s;
  opacity: 0.5;
}
body:has(a:hover) #cursor {
  transform: translate(-50%, -50%) scale(2);
  background: var(--blue2);
}
body:has(a:hover) #cursor-ring {
  width: 54px;
  height: 54px;
  opacity: 0.2;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 7vw;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  border-radius: 0;
  box-shadow: none;
  transition:
    top 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    left 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    right 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.45s ease,
    backdrop-filter 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease,
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
nav.scrolled {
  top: 0.8rem;
  left: 2.5vw;
  right: 2.5vw;
  padding: 0.85rem 1.8rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 4px 32px rgba(15, 22, 35, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 1px rgba(37, 99, 235, 0.06);
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 30px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--grey2);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
.nav-links a:hover {
  color: var(--accent);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-cta {
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.25s;
  box-shadow: 0 2px 14px rgba(37, 99, 235, 0.22);
}
.nav-cta:hover {
  background: var(--blue2);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37, 99, 235, 0.32);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
  padding: 9rem 7vw 6rem;
  position: relative;
  overflow: hidden;
}
/* Animated gradient mesh background */
.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 60% 70% at 75% 20%,
      rgba(37, 99, 235, 0.07),
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 50% at 90% 80%,
      rgba(37, 99, 235, 0.05),
      transparent 60%
    ),
    radial-gradient(
      ellipse 30% 40% at 10% 90%,
      rgba(37, 99, 235, 0.04),
      transparent 60%
    );
  animation: meshShift 8s ease-in-out infinite alternate;
}
@keyframes meshShift {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
    transform: scale(1.04);
  }
}
/* Dot grid */
.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.07) 1px,
    transparent 1px
  );
  background-size: 36px 36px;
  mask-image: radial-gradient(
    ellipse 65% 65% at 15% 50%,
    black,
    transparent 65%
  );
  opacity: 0.5;
}

.hero-left {
  position: relative;
  z-index: 1;
}

/* Tag */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  border-radius: 100px;
  padding: 0.38rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 2rem;
  opacity: 0;
}
.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

/* H1 */
h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  overflow: hidden;
}
.h1-line {
  overflow: hidden;
  display: block;
}
.h1-line-inner {
  display: block;
  transform: translateY(110%);
}

/* Circle highlight */
.circle-hl {
  display: inline-block;
  position: relative;
  white-space: nowrap;
  padding: 0 6px 0 4px;
}
.circle-hl svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 28px);
  height: calc(100% + 22px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  overflow: visible;
}
.circle-path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  filter: drop-shadow(0 0 6px rgba(37, 99, 235, 0.35));
}

.hero-sub {
  margin-top: 1.8rem;
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.75;
  max-width: 500px;
  opacity: 0;
  transform: translateY(20px);
}
.hero-sub strong {
  color: var(--ink);
  font-weight: 500;
}
.hero-btns {
  margin-top: 2.4rem;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}
.btn-p {
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.btn-p::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-p:hover::before {
  transform: translateX(100%);
}
.btn-p:hover {
  background: var(--blue2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}
.btn-g {
  border: 1.5px solid var(--border);
  color: var(--ink);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-g:hover {
  border-color: var(--grey2);
  background: var(--dark3);
}
.hero-note {
  margin-top: 1.2rem;
  font-size: 0.73rem;
  color: var(--grey);
  opacity: 0;
}

/* ── HERO RIGHT (FORM CARD) ── */
.hero-right {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 20px;
  padding: 2.8rem;
  box-shadow:
    0 8px 52px rgba(37, 99, 235, 0.11),
    0 2px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 1px rgba(37, 99, 235, 0.07);
  opacity: 0;
  transform: translateY(30px);
}
.hero-right::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.hr-badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  background: #eff6ff;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
}
.hero-right h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  color: var(--ink);
}
.hr-sub {
  font-size: 0.86rem;
  color: var(--grey2);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}
.fg label {
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--grey2);
}
.fg input,
.fg select {
  background: var(--dark3);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: all 0.2s;
  width: 100%;
}
.fg input:focus,
.fg select:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}
.fg input.error,
.fg select.error {
  border-color: #ef4444;
}
.err-msg {
  font-size: 0.65rem;
  color: #ef4444;
  display: none;
}
.err-msg.show {
  display: block;
}
.btn-form {
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 1.1rem;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-form:hover {
  background: var(--blue2);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.2);
}
.fg-label-check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.78rem;
  color: var(--grey2);
  line-height: 1.5;
  cursor: pointer;
}
.fg-label-check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue);
}
.fn {
  font-size: 0.67rem;
  color: var(--grey);
  text-align: center;
  margin-top: 0.8rem;
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--blue);
  padding: 0.9rem 0;
  overflow: hidden;
  display: flex;
  gap: 0;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee-track2 {
  animation-delay: -11s;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee-item {
  font-family: "Syne", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.marquee-item::after {
  content: "✦";
  opacity: 0.5;
}

/* ── SECTION COMMON ── */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.sec-label::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--accent);
}

/* ── VIDEO ── */
.video-sec {
  padding: 8rem 7vw;
  background:
    radial-gradient(
      ellipse 70% 55% at 50% 0%,
      rgba(37, 99, 235, 0.09),
      transparent 60%
    ),
    linear-gradient(to bottom, #e6ecf8, #ecf1fb);
  text-align: center;
}
.video-sec h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.video-sec h2 span {
  color: var(--accent);
}
.video-sub {
  font-size: 0.92rem;
  color: var(--grey);
  margin-bottom: 3rem;
}
.video-wrap {
  max-width: 860px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    box-shadow 0.4s,
    transform 0.4s;
}
.video-wrap:hover {
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.12);
  transform: scale(1.005);
}
.video-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 60% at 50% 50%,
    rgba(37, 99, 235, 0.1),
    transparent
  );
}
.play-c {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  color: #fff;
}
.play-c::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.3);
  animation: ripple 2s ease infinite;
}
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.video-wrap:hover .play-c {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}
.vc {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--grey);
  z-index: 1;
  white-space: nowrap;
}

/* ── MKT ── */
.mkt {
  padding: 8rem 7vw;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 7rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--dark);
  background-image:
    radial-gradient(
      ellipse 55% 70% at 100% 10%,
      rgba(37, 99, 235, 0.09),
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 50% at 0% 90%,
      rgba(37, 99, 235, 0.06),
      transparent 60%
    );
}
.mkt-q {
  font-size: 1rem;
  color: var(--grey);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.mkt-q strong {
  color: var(--ink);
  font-weight: 500;
}
.mkt-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.mtag {
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--grey2);
  background: var(--card);
  cursor: pointer;
  transition: all 0.2s;
}
.mtag.on,
.mtag:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.mkt h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.mkt h2 em {
  font-style: italic;
  color: var(--accent);
}
.mkt-chans {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.ch {
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--grey);
  background: var(--card);
  transition: all 0.2s;
}
.ch:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ── EU SEI ── */
.eusei {
  padding: 8rem 7vw;
  background:
    radial-gradient(
      ellipse 70% 50% at 100% 50%,
      rgba(37, 99, 235, 0.07),
      transparent 60%
    ),
    linear-gradient(145deg, #e5ecf8, #edf2fc);
}
.eusei-in {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 4.5rem;
}
.eusei-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  position: sticky;
  top: 8rem;
}
.ecards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ec:first-child {
  grid-column: 1/-1;
}
.ec {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(37, 99, 235, 0.09);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 2px 14px rgba(37, 99, 235, 0.06);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.ec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.ec:hover::before {
  transform: scaleX(1);
}
.ec:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.18);
}
.ec-n {
  font-family: "Syne", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.7rem;
  letter-spacing: 0.1em;
}
.ec p {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.75;
}
.ec p strong {
  color: var(--ink);
  font-weight: 500;
}
.frust {
  margin-top: 1.8rem;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 14px;
  padding: 2rem;
}
.frust p {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.75;
}
.frust p em {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}
.solucao {
  margin-top: 2.5rem;
  text-align: center;
}
.sol-lbl {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey);
  margin-bottom: 1rem;
}
.sol-banner {
  background: var(--blue);
  padding: 1.6rem 2.5rem;
  border-radius: 14px;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
  letter-spacing: 0em;
}
.solucao .btn-p {
  margin: 1.4rem auto 0;
  display: table;
}

/* ── METODOLOGIA ── */
.method {
  padding: 8rem 7vw;
  position: relative;
  background-color: var(--dark);
  background-image:
    radial-gradient(rgba(37, 99, 235, 0.028) 1px, transparent 1px),
    radial-gradient(
      ellipse 50% 60% at 95% 45%,
      rgba(37, 99, 235, 0.07),
      transparent 60%
    ),
    radial-gradient(
      ellipse 35% 40% at 5% 60%,
      rgba(37, 99, 235, 0.04),
      transparent 60%
    );
  background-size:
    36px 36px,
    100% 100%,
    100% 100%;
}
.method > h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.method > h2 em {
  font-style: normal;
  color: var(--accent);
}
.msteps {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  margin-top: 6rem;
}
.ms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.ms:nth-child(even) {
  direction: rtl;
}
.ms:nth-child(even) > * {
  direction: ltr;
}
.ms-num {
  font-family: "Syne", sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(37, 99, 235, 0.07);
  line-height: 1;
  margin-bottom: -0.5rem;
  letter-spacing: -0.04em;
}
.ms-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
}
.ms-info h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 0.9rem;
  color: var(--ink);
}
.ms-info p {
  font-size: 0.93rem;
  color: var(--grey);
  line-height: 1.8;
}
.ms-vis {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.11);
  border-radius: 16px;
  padding: 2rem;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(37, 99, 235, 0.09);
}
.ms-vis::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    rgba(37, 99, 235, 0.05),
    transparent
  );
}
.ms-vc {
  position: relative;
  z-index: 1;
  width: 100%;
}
.ms-vt {
  font-family: "Syne", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.2rem;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.kgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.kb {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  transition: all 0.2s;
}
.kb:hover {
  border-color: var(--border2);
  background: #eff6ff;
}
.kb-v {
  font-family: "Syne", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}
.kb-b {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
  margin-left: 4px;
}
.kb-l {
  font-size: 0.68rem;
  color: var(--grey2);
  margin-top: 0.3rem;
}
.krow {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.kr {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: all 0.2s;
}
.kr:hover {
  border-color: var(--border2);
  transform: translateX(4px);
}
.kr::before {
  content: "→";
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}

/* ── KPI COUNTERS ── */
.kpi-strip {
  padding: 5rem 7vw;
  background: var(--ink);
  overflow: hidden;
  position: relative;
}
.kpi-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 50%,
    rgba(37, 99, 235, 0.2),
    transparent 70%
  );
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.kpi-item {
  text-align: center;
}
.kpi-num {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.kpi-num span {
  color: var(--blue);
}
.kpi-lbl {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 0.5rem;
  font-weight: 400;
}

/* ── RESULTADOS ── */
.result {
  padding: 8rem 7vw;
  background:
    radial-gradient(
      ellipse 55% 50% at 50% 100%,
      rgba(37, 99, 235, 0.08),
      transparent 60%
    ),
    linear-gradient(to bottom, #eaeff9, #e6ecf8);
  text-align: center;
}
.result > h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.result > h2 em {
  color: var(--accent);
  font-style: normal;
}
.result > .rs {
  font-size: 0.95rem;
  color: var(--grey);
  margin-bottom: 3.5rem;
}
.result > .rs strong {
  color: var(--ink);
  font-weight: 500;
}
.vgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
}
.vc2 {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(37, 99, 235, 0.09);
  border-radius: 14px;
  overflow: hidden;
  cursor: none;
  box-shadow: 0 2px 18px rgba(37, 99, 235, 0.07);
  transition: all 0.35s;
}
.vc2:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(37, 99, 235, 0.14);
  border-color: rgba(37, 99, 235, 0.22);
}
.vt2 {
  aspect-ratio: 9/16;
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.vt2-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark3), #dbeafe);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ps {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  color: #fff;
  cursor: pointer;
  transition:
    opacity 0.3s ease,
    transform 0.2s ease;
}
.ps:hover {
  transform: scale(1.1);
}
.vt2 {
  cursor: pointer;
}
.vi2 {
  padding: 1.1rem 1.2rem;
  text-align: left;
}
.va {
  font-family: "Syne", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}
.vr {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--grey2);
  margin-top: 2px;
}
.vd {
  font-size: 0.78rem;
  color: var(--grey2);
  line-height: 1.65;
  margin-top: 0.6rem;
  font-style: italic;
}

/* ── LOGOS ── */
.logos {
  padding: 6rem 7vw;
  background:
    radial-gradient(
      ellipse 65% 70% at 50% 50%,
      rgba(37, 99, 235, 0.18),
      transparent 70%
    ),
    #0c1526;
  text-align: center;
}
.logos-lbl {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
}
.lgrid {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.lb {
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 0.75rem 1.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  transition: all 0.22s;
  cursor: default;
}
.lb:hover {
  background: rgba(37, 99, 235, 0.22);
  border-color: rgba(37, 99, 235, 0.55);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.2);
}
.lcount {
  margin-top: 2.5rem;
  background: rgba(37, 99, 235, 0.85);
  border: 1px solid rgba(37, 99, 235, 0.4);
  border-radius: 12px;
  padding: 1.4rem 2.5rem;
  display: inline-block;
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.35);
  backdrop-filter: blur(8px);
}

/* ── TIME ── */
.time {
  padding: 8rem 7vw;
  background:
    radial-gradient(
      ellipse 60% 60% at 0% 50%,
      rgba(37, 99, 235, 0.06),
      transparent 55%
    ),
    linear-gradient(160deg, #ecf1fb, #e8eef8);
}
.time h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.time h2 em {
  font-style: normal;
  color: var(--accent);
}
.time .ti {
  font-size: 0.93rem;
  color: var(--grey);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 3rem;
}
.tgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.tc {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(37, 99, 235, 0.09);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(37, 99, 235, 0.07);
  transition: all 0.35s;
}
.tc:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 46px rgba(37, 99, 235, 0.14);
  border-color: rgba(37, 99, 235, 0.22);
}
.tp {
  aspect-ratio: 1/1;
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.tp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--card));
}
.tin {
  padding: 1.2rem;
}
.tn {
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}
.tr {
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--grey);
  margin-top: 3px;
}
.ts {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.8rem;
}
.ts a {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--grey);
  text-decoration: none;
  transition: all 0.2s;
}
.ts a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ── PROX PASSO ── */
.prox {
  padding: 8rem 7vw;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6rem;
  align-items: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 55% 70% at 100% 60%,
      rgba(37, 99, 235, 0.09),
      transparent 60%
    ),
    radial-gradient(
      ellipse 45% 55% at 0% 30%,
      rgba(37, 99, 235, 0.06),
      transparent 55%
    ),
    linear-gradient(135deg, #f0f5ff, #f5f9ff);
}
.prox::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -50%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06), transparent 70%);
  pointer-events: none;
}
.prox h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
  color: var(--ink);
}
.prox h2 em {
  color: var(--accent);
  font-style: normal;
}
.prox p {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.prox-card {
  width: 200px;
  height: 260px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), #d8e8ff);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 16px;
  box-shadow:
    0 8px 32px rgba(37, 99, 235, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 3.5rem;
}
.prox-card span {
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--grey2);
  text-align: center;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 3.5rem 7vw;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 4rem;
  align-items: center;
}
.fln {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.footer-logo {
  height: 26px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.fc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
}
.fc strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fc a {
  color: rgba(99, 150, 255, 0.9);
  text-decoration: none;
}
.fso {
  display: flex;
  gap: 0.7rem;
}
.fso a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.2s;
}
.fso a:hover {
  border-color: var(--blue);
  color: #fff;
  background: rgba(37, 99, 235, 0.2);
}
.fcp {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.25);
  text-align: right;
}

/* ── WA FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-direction: row-reverse;
}
.whatsapp-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
  flex-shrink: 0;
}
.whatsapp-btn::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: waPulse 2.2s ease-out infinite;
}
.whatsapp-btn svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}
.whatsapp-label {
  background: var(--ink);
  color: #fff;
  font-family: "Syne", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(15, 22, 35, 0.15);
}
.whatsapp-float:hover .whatsapp-label {
  opacity: 1;
  transform: translateX(0);
}
@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── SIDEBAR MOBILE ── */
.nav-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 22, 35, 0.45);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 290;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-sidebar-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.nav-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: #fff;
  z-index: 300;
  padding: 5.5rem 2.2rem 3rem;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -24px 0 64px rgba(15, 22, 35, 0.14);
  border-left: 1px solid var(--border);
}
.nav-sidebar.open {
  transform: translateX(0);
}
.nav-sidebar-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--grey2);
  transition: all 0.2s;
}
.nav-sidebar-close:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.nav-sidebar-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}
.nav-sidebar-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.nav-sidebar-links li a {
  display: block;
  padding: 1.1rem 0;
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition:
    color 0.2s,
    padding-left 0.25s;
}
.nav-sidebar-links li a:hover {
  color: var(--accent);
  padding-left: 0.6rem;
}
.nav-sidebar-cta {
  margin-top: 2.2rem;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  padding: 1rem;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  display: block;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.28);
  transition: all 0.2s;
}
.nav-sidebar-cta:hover {
  background: var(--blue2);
  transform: translateY(-1px);
}
.nav-sidebar-foot {
  margin-top: 1.8rem;
  font-size: 0.72rem;
  color: var(--grey);
  text-align: center;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(15, 22, 35, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.8rem 2.4rem;
  max-width: 500px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--grey2);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all 0.2s;
  font-size: 0.85rem;
}
.modal-close:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.modal-title {
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 2rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 7rem;
  }
  .mkt,
  .eusei-in,
  .ms,
  .prox {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ms:nth-child(even) {
    direction: ltr;
  }
  .vgrid,
  .tgrid {
    grid-template-columns: 1fr 1fr;
  }
  .kpi-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  footer {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  nav .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .eusei-title {
    position: static;
  }
  #cursor,
  #cursor-ring {
    display: none;
  }
  body {
    cursor: auto;
  }
  /* Disable heavy blur on mobile for performance */
  .hero-right,
  .ms-vis,
  .prox-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
@media (max-width: 600px) {
  .ecards,
  .kgrid {
    grid-template-columns: 1fr;
  }
  .ec:first-child {
    grid-column: 1;
  }
  .vgrid,
  .tgrid {
    grid-template-columns: 1fr 1fr;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .fcp {
    text-align: left;
  }
  /* Reduce excessive gap between steps on small screens */
  .msteps {
    gap: 5rem;
  }
  /* Logo sizing on mobile */
  .logo-img {
    height: 26px;
  }
  .footer-logo {
    height: 22px;
  }
}
