:root {
  --bg: #05070d;
  --bg-elevated: #0b1120;
  --bg-soft: rgba(9, 15, 28, 0.76);
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(8, 12, 24, 0.9);
  --line: rgba(18, 227, 255, 0.16);
  --line-strong: rgba(18, 227, 255, 0.34);
  --text: #eef6ff;
  --text-muted: #97a8bf;
  --text-soft: #c3d0e2;
  --accent: #12e3ff;
  --accent-soft: rgba(18, 227, 255, 0.14);
  --accent-muted: #7b8fff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius-sm: 0.9rem;
  --radius-md: 1.35rem;
  --radius-lg: 2rem;
  --shell: min(1520px, 80vw);
  --header-height: 5.25rem;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --font-display: "Sora", "Outfit", sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body.menu-open {
  overflow: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  line-height: 1.5;
  color: var(--text);
  background: radial-gradient(circle at 14% 12%, rgba(18, 227, 255, 0.1), transparent 24%), radial-gradient(circle at 84% 16%, rgba(41, 15, 92, 0.36), transparent 26%), radial-gradient(circle at 52% 100%, rgba(8, 33, 86, 0.42), transparent 35%), linear-gradient(180deg, #04070e 0%, #071120 48%, #05070d 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  overflow: clip;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img,
video {
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  border: 0;
  background: none;
}

ul[role=list],
ol[role=list],
ul,
ol {
  list-style: none;
  padding: 0;
}

p {
  color: var(--text-muted);
}

strong {
  color: var(--text);
}

::-moz-selection {
  background: rgba(18, 227, 255, 0.24);
  color: var(--text);
}

::selection {
  background: rgba(18, 227, 255, 0.24);
  color: var(--text);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.58;
}

@media (max-width: 640px) {
  :root {
    --shell: min(1120px, calc(100% - 1.4rem));
    --header-height: 4.6rem;
  }
  body {
    background-attachment: scroll;
  }
}
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(5, 8, 15, 0.9) 0%, rgba(8, 15, 32, 0.82) 52%, rgba(22, 10, 48, 0.78) 100%), rgba(11, 17, 22, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}
.siteHeader__inner {
  position: relative;
  width: var(--shell);
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0.9rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.siteHeader__brand {
  width: clamp(8rem, 12vw, 9.5rem);
  flex-shrink: 0;
}
.siteHeader__brand img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.siteHeader__nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-soft);
}
.siteHeader__nav a {
  transition: color 0.2s ease;
}
.siteHeader__nav a:hover {
  color: var(--text);
}
.siteHeader__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: rgba(18, 227, 255, 0.12);
  border: 1px solid var(--line-strong);
  color: var(--text);
}
.siteHeader__toggle {
  display: none;
  position: relative;
  width: 2.85rem;
  height: 2.85rem;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}
.siteHeader__toggle span {
  position: absolute;
  left: 50%;
  width: 1rem;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.siteHeader__toggle span:first-child {
  transform: translate(-50%, -4px);
}
.siteHeader__toggle span:last-child {
  transform: translate(-50%, 4px);
}

.siteHeader.is-open .siteHeader__toggle span:first-child {
  transform: translate(-50%, 0) rotate(45deg);
}
.siteHeader.is-open .siteHeader__toggle span:last-child {
  transform: translate(-50%, 0) rotate(-45deg);
}

@media (max-width: 959px) {
  .siteHeader__inner {
    padding: 0.75rem 0;
  }
  .siteHeader__toggle {
    display: block;
  }
  .siteHeader__nav {
    position: absolute;
    top: calc(100% - 0.1rem);
    left: 0;
    right: 0;
    display: grid;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    background: linear-gradient(180deg, rgba(6, 11, 22, 0.98) 0%, rgba(12, 16, 36, 0.98) 100%);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.65rem);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }
  .siteHeader__nav a {
    padding: 0.8rem 0.2rem;
    color: var(--text);
    text-align: center;
  }
  .siteHeader__cta {
    margin-top: 0.25rem;
    width: 100%;
  }
  .siteHeader.is-open .siteHeader__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}
.section {
  position: relative;
  z-index: 1;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.sectionShell {
  position: relative;
  z-index: 1;
  width: var(--shell);
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-muted);
}

.sectionHeading {
  display: grid;
  gap: 1rem;
  max-width: 50rem;
  margin-bottom: clamp(2.2rem, 4vw, 3.5rem);
}
.sectionHeading h2 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
}
.sectionHeading p {
  max-width: 42rem;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.8;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.8rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #03131d;
  background: var(--accent);
  box-shadow: 0 18px 35px rgba(18, 227, 255, 0.18);
}
.button--primary:hover {
  background: #5defff;
}

.button--ghost {
  color: var(--text);
  background: rgba(13, 26, 46, 0.55);
  border-color: var(--line);
}
.button--ghost:hover {
  border-color: var(--line-strong);
  background: rgba(17, 35, 63, 0.82);
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }
  .eyebrow {
    display: block;
    text-align: center;
  }
  .sectionHeading {
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .sectionHeading h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }
  .sectionHeading p {
    margin-left: auto;
    margin-right: auto;
  }
  .button {
    width: 100%;
  }
}
.hero {
  position: relative;
  min-height: clamp(38rem, 82svh, 48rem);
  margin-top: calc(var(--header-height) * -1);
  padding-top: calc(var(--header-height) + 2rem);
  isolation: isolate;
}
.hero__media, .hero__veil {
  position: absolute;
  inset: 0;
}
.hero__media {
  overflow: hidden;
  background: linear-gradient(180deg, #0b1230 0%, #060914 100%);
  z-index: -2;
}
.hero__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  filter: saturate(0.92) brightness(0.72) contrast(1.03);
}
.hero__veil {
  background: linear-gradient(90deg, rgba(4, 7, 14, 0.84) 0%, rgba(5, 11, 24, 0.68) 44%, rgba(8, 25, 58, 0.24) 72%, rgba(18, 8, 42, 0.62) 100%), linear-gradient(180deg, rgba(18, 8, 52, 0.14) 0%, rgba(5, 9, 18, 0.42) 62%, rgba(4, 7, 14, 0.82) 100%);
  z-index: -1;
}
.hero__shell {
  min-height: clamp(38rem, 82svh, 48rem);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 24rem);
  align-items: center;
  align-content: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-top: clamp(1rem, 2.2vw, 1.8rem);
  padding-bottom: clamp(1.2rem, 2.6vw, 2rem);
}
.hero__copy {
  align-self: center;
  max-width: 43rem;
}
.hero__copy h1 {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.55vw, 4.45rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  text-wrap: balance;
}
.hero__lead {
  max-width: 38rem;
  margin-top: 1.35rem;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.8;
  color: var(--text-soft);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}
.hero__highlights {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.hero__highlights li {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(18, 227, 255, 0.14);
  border-radius: 999px;
  background: rgba(9, 18, 33, 0.68);
  color: var(--text-soft);
  font-size: 0.92rem;
}
.hero__panel {
  align-self: center;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(8, 12, 24, 0.8) 0%, rgba(13, 14, 36, 0.74) 100%);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.hero__panelLabel {
  color: var(--accent-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero__panelList {
  margin-top: 1rem;
  display: grid;
  gap: 0.85rem;
}
.hero__panelList li {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-size: 0.98rem;
}
.hero__panelMeta {
  margin-top: 1.2rem;
}
.hero__panelMeta span {
  display: block;
  color: var(--accent);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.hero__panelMeta p {
  margin-top: 0.65rem;
  font-size: 0.92rem;
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .hero__shell {
    grid-template-columns: 1fr;
    align-items: center;
  }
  .hero__panel {
    max-width: 30rem;
  }
}
@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 1.5rem);
  }
  .hero__video {
    -o-object-position: 72% center;
       object-position: 72% center;
  }
  .hero__veil {
    background: linear-gradient(180deg, rgba(16, 8, 48, 0.15) 0%, rgba(7, 12, 23, 0.6) 60%, rgba(4, 7, 14, 0.84) 100%), linear-gradient(90deg, rgba(4, 7, 14, 0.66) 0%, rgba(9, 21, 46, 0.22) 65%, rgba(18, 10, 42, 0.72) 100%);
  }
  .hero__shell {
    min-height: auto;
    padding-top: 1.8rem;
    padding-bottom: 2.8rem;
  }
  .hero__copy {
    text-align: center;
    max-width: none;
  }
  .hero__copy h1 {
    font-size: clamp(2rem, 9.7vw, 3.05rem);
  }
  .hero__lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__highlights {
    justify-content: center;
    gap: 0.7rem;
  }
  .hero__highlights li {
    width: 100%;
    border-radius: 1rem;
    text-align: center;
  }
  .hero__panel {
    max-width: none;
    text-align: center;
  }
  .hero__panelMeta p {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 640px) {
  .hero {
    margin-top: calc(var(--header-height) * -1);
    padding-top: calc(var(--header-height) + 1.2rem);
  }
  .hero__shell {
    padding-top: 1.4rem;
    padding-bottom: 2.2rem;
  }
  .hero__actions {
    flex-wrap: nowrap;
    align-items: stretch;
  }
  .hero__actions .button {
    width: auto;
    min-width: 0;
    flex: 1 1 0;
    padding-inline: 0.95rem;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
  }
  .hero__panel {
    padding: 1.2rem;
  }
}
.fciHero {
  position: relative;
  min-height: clamp(36rem, 78svh, 50rem);
  padding: 4rem 0;
  isolation: isolate;
  overflow: hidden;
}
.fciHero__media, .fciHero__veil {
  position: absolute;
  inset: 0;
}
.fciHero__media {
  z-index: -2;
  background: linear-gradient(180deg, rgba(9, 12, 25, 0.24) 0%, rgba(4, 7, 14, 0.36) 100%), url("../../img/carruselCheck/digico_fci.png");
  background-position: center;
  background-size: cover;
}
.fciHero__veil {
  z-index: -1;
  background: linear-gradient(90deg, rgba(4, 7, 14, 0.76) 0%, rgba(8, 14, 28, 0.58) 42%, rgba(9, 26, 58, 0.28) 70%, rgba(20, 8, 42, 0.64) 100%), linear-gradient(180deg, rgba(4, 7, 14, 0.18) 0%, rgba(4, 7, 14, 0.66) 100%);
}
.fciHero__shell {
  min-height: clamp(36rem, 78svh, 50rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(1.4rem, 3vw, 2.4rem);
}
.fciHero__carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(25rem, 42vw, 34rem);
  overflow: visible;
  isolation: isolate;
  margin-bottom: 5rem;
}
.fciHero__carousel::before {
  content: "";
  position: absolute;
  inset: 11% 7% 13%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(18, 227, 255, 0.15) 0%, rgba(18, 227, 255, 0.06) 28%, transparent 62%), linear-gradient(180deg, rgba(7, 12, 24, 0.7) 0%, rgba(9, 14, 30, 0.2) 100%);
  box-shadow: inset 0 0 0 1px rgba(18, 227, 255, 0.1), 0 0 80px rgba(18, 227, 255, 0.06);
  filter: blur(12px);
  opacity: 0.95;
  pointer-events: none;
}
.fciHero__carousel::after {
  content: "";
  position: absolute;
  inset: 16% 11%;
  border-radius: 50%;
  border: 1px solid rgba(18, 227, 255, 0.16);
  opacity: 0.5;
  pointer-events: none;
}
.fciHero__slides {
  position: relative;
  width: 100%;
  height: clamp(23rem, 36vw, 31rem);
  min-height: inherit;
  perspective: 2200px;
  transform-style: preserve-3d;
}
.fciHero__slides::before {
  content: "";
  position: absolute;
  inset: 14% 10%;
  border-radius: 50%;
  border: 1px dashed rgba(123, 143, 255, 0.18);
  opacity: 0.4;
  pointer-events: none;
}
.fciHero__slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(70%, 27rem);
  height: clamp(15rem, 25vw, 20rem);
  padding: 0.85rem;
  border: 1px solid rgba(18, 227, 255, 0.18);
  border-radius: 1.65rem;
  background: linear-gradient(180deg, rgba(11, 18, 34, 0.96) 0%, rgba(7, 11, 22, 0.96) 100%);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(18, 227, 255, 0.05);
  backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
  transform-origin: center center;
  animation: fciHeroOrbitCycle 18s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}
.fciHero__slide::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 0.9rem;
  right: 0.9rem;
  height: 1.65rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(18, 227, 255, 0.12) 0%, rgba(120, 94, 255, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  opacity: 0.9;
}
.fciHero__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(10, 16, 32, 0.96) 0%, rgba(6, 10, 20, 0.98) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}
.fciHero__slide--1 {
  animation-delay: 0s;
}
.fciHero__slide--2 {
  animation-delay: -4.5s;
}
.fciHero__slide--3 {
  animation-delay: -9s;
}
.fciHero__slide--4 {
  animation-delay: -13.5s;
}
.fciHero__info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.fciHero__content {
  display: grid;
  gap: 1.1rem;
  align-content: center;
  justify-items: end;
  text-align: right;
  max-width: 36rem;
  margin-left: auto;
}
.fciHero__logo {
  width: clamp(6rem, 8vw, 8.5rem);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.fciHero h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.25vw, 3.15rem);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
}
.fciHero p {
  max-width: 35rem;
  line-height: 1.85;
}
.fciHero__highlights {
  display: grid;
  gap: 0.8rem;
}
.fciHero__highlights li {
  position: relative;
  padding-left: 0;
  padding-right: 1.1rem;
  color: var(--text-soft);
  line-height: 1.7;
  text-align: right;
}
.fciHero__highlights li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  right: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(18, 227, 255, 0.08);
}
.fciHero__status {
  max-width: 31rem;
  margin-left: auto;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.8;
}

@keyframes fciHeroOrbitCycle {
  0%, 20% {
    opacity: 1;
    transform: translate3d(-22%, -64%, 150px) rotateX(7deg) rotateY(-14deg) rotateZ(5deg) scale(1);
    filter: brightness(1) saturate(1.03);
  }
  25%, 45% {
    opacity: 0.84;
    transform: translate3d(6%, -8%, 34px) rotateX(11deg) rotateY(-18deg) rotateZ(9deg) scale(0.9);
    filter: brightness(0.87) saturate(0.98);
  }
  50%, 70% {
    opacity: 0.62;
    transform: translate3d(-80%, 4%, -72px) rotateX(13deg) rotateY(15deg) rotateZ(-8deg) scale(0.78);
    filter: brightness(0.7) saturate(0.88);
  }
  75%, 95% {
    opacity: 0.9;
    transform: translate3d(-104%, -50%, 72px) rotateX(8deg) rotateY(14deg) rotateZ(-6deg) scale(0.9);
    filter: brightness(0.95) saturate(1);
  }
  100% {
    opacity: 1;
    transform: translate3d(-22%, -64%, 150px) rotateX(7deg) rotateY(-14deg) rotateZ(5deg) scale(1);
    filter: brightness(1) saturate(1.03);
  }
}
@media (max-width: 980px) {
  .fciHero {
    min-height: auto;
    padding: 3.6rem 0;
  }
  .fciHero__shell {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .fciHero__carousel {
    order: 2;
    min-height: 23rem;
  }
  .fciHero__carousel::before {
    inset: 9% 4% 12%;
  }
  .fciHero__info {
    order: 1;
    display: block;
  }
  .fciHero__content {
    justify-items: center;
    margin: 0 auto;
    text-align: center;
  }
  .fciHero__highlights li {
    padding-left: 0;
    padding-right: 0;
    padding-top: 1.1rem;
    text-align: center;
  }
  .fciHero__highlights li::before {
    top: 0;
    left: 50%;
    right: auto;
    width: 2.5rem;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(18, 227, 255, 0.15) 0%, rgba(18, 227, 255, 0.95) 50%, rgba(18, 227, 255, 0.15) 100%);
    box-shadow: none;
    transform: translateX(-50%);
  }
  .fciHero__status {
    margin-right: auto;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .fciHero {
    padding: 3rem 0;
  }
  .fciHero__carousel {
    min-height: 20rem;
  }
  .fciHero__slides {
    height: 20rem;
  }
  .fciHero__slides::before {
    inset: 13% 6%;
  }
  .fciHero__slide {
    width: min(82%, 21rem);
    height: 13.75rem;
    padding: 0.65rem;
  }
  .fciHero h2 {
    font-size: clamp(1.8rem, 8.6vw, 2.35rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fciHero__slide {
    animation: none;
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) rotateX(0) rotateY(0) rotateZ(0) scale(1);
    filter: none;
  }
  .fciHero__slide--1 {
    opacity: 1;
  }
}
.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.introCard,
.processCard {
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.introCard {
  display: grid;
  gap: 0.9rem;
}
.introCard--statement {
  grid-column: span 2;
  padding: clamp(1.5rem, 2vw, 2rem);
}
.introCard__kicker {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-muted);
}
.introCard h3 {
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.3;
}
.introCard p:last-child {
  line-height: 1.8;
}

.process {
  padding-top: 0;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.processCard {
  display: grid;
  gap: 1rem;
}
.processCard span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
}
.processCard h3 {
  color: var(--text);
  font-size: 1.1rem;
}
.processCard p {
  line-height: 1.75;
}

@media (max-width: 1080px) {
  .intro__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .intro__grid {
    grid-template-columns: 1fr;
  }
  .introCard--statement {
    grid-column: auto;
  }
  .process__grid {
    grid-template-columns: 1fr;
  }
  .introCard,
  .processCard {
    text-align: center;
  }
  .processCard span {
    justify-self: center;
  }
}
.responsiveGrid2x2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

@media (max-width: 900px) {
  .responsiveGrid2x2 {
    grid-template-columns: 1fr;
  }
}
.projectCard {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.projectCard__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.projectCard__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.45s ease;
}
.projectCard__info {
  display: grid;
  gap: 0.8rem;
  padding: 1.35rem;
}
.projectCard__info h3 {
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1.2;
}
.projectCard__info p:last-of-type {
  line-height: 1.75;
}
.projectCard__type {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-muted);
}
.projectCard__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0.35rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid var(--line-strong);
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
}
.projectCard:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}
.projectCard:hover img {
  transform: scale(1.05);
}

@media (max-width: 640px) {
  .projectCard__info {
    justify-items: center;
    padding: 1.15rem;
    text-align: center;
  }
  .projectCard__info h3 {
    font-size: 1.16rem;
  }
  .projectCard__link {
    margin-left: auto;
    margin-right: auto;
  }
}
.pricing__grid, .pricing__details {
  display: grid;
  gap: 1rem;
}
.pricing__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.pricing__details {
  margin-top: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricingCard,
.pricingNote {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.pricingCard {
  display: grid;
  gap: 1rem;
}
.pricingCard__eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-muted);
}
.pricingCard h3 {
  color: var(--text);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.04em;
}
.pricingCard__summary {
  line-height: 1.75;
}
.pricingCard ul {
  display: grid;
  gap: 0.7rem;
}
.pricingCard li {
  color: var(--text-soft);
}
.pricingCard--featured {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(18, 227, 255, 0.12) 0%, rgba(16, 26, 58, 0.36) 100%), rgba(255, 255, 255, 0.02);
}

.pricingNote {
  display: grid;
  gap: 0.9rem;
}
.pricingNote h3 {
  color: var(--text);
  font-size: 1.1rem;
}
.pricingNote p,
.pricingNote li {
  line-height: 1.75;
}
.pricingNote ul {
  display: grid;
  gap: 0.6rem;
}
.pricingNote__meta {
  color: var(--accent);
  font-weight: 700;
}
.pricingNote--muted {
  background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 1080px) {
  .pricing__grid, .pricing__details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .pricing__grid, .pricing__details {
    grid-template-columns: 1fr;
  }
  .pricingCard,
  .pricingNote {
    padding: 1.2rem;
    text-align: center;
  }
  .pricingCard ul,
  .pricingNote ul {
    justify-items: center;
  }
}
.contact {
  padding-top: 0;
}
.contact__card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(15rem, 20rem);
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top right, rgba(18, 227, 255, 0.12), transparent 32%), radial-gradient(circle at 18% 100%, rgba(39, 17, 88, 0.26), transparent 34%), rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}
.contact__copy h2 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text);
}
.contact__copy p:last-child {
  max-width: 36rem;
  margin-top: 1rem;
  line-height: 1.8;
}
.contact__actions {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}
.contact__list {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.contact__list li {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  line-height: 1.75;
}

@media (max-width: 920px) {
  .contact__card {
    grid-template-columns: 1fr;
  }
  .contact__copy, .contact__list {
    text-align: center;
  }
  .contact__copy p:last-child {
    margin-left: auto;
    margin-right: auto;
  }
  .contact__actions {
    justify-items: center;
  }
  .contact__list {
    grid-template-columns: 1fr;
  }
}
.footer {
  position: relative;
  z-index: 1;
  padding: 0 0 2rem;
}
.footer__container {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr));
  gap: 1.4rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}
.footer__brand {
  display: grid;
  gap: 1rem;
}
.footer__brand img {
  width: clamp(8.5rem, 14vw, 10.5rem);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__nav, .footer__contact {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}
.footer__nav h3, .footer__contact h3 {
  color: var(--text);
  font-size: 1rem;
}
.footer__nav a, .footer__contact a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.footer__nav a:hover, .footer__contact a:hover {
  color: var(--text);
}
.footer__bottom {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}
.footer__bottom p {
  font-size: 0.88rem;
}

.whatsappFloat {
  position: fixed;
  right: clamp(1rem, 2vw, 1.6rem);
  bottom: clamp(1rem, 2.2vw, 1.6rem);
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.35);
  background: linear-gradient(135deg, rgba(19, 34, 28, 0.94), rgba(10, 22, 18, 0.94));
  color: #ecfff3;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(37, 211, 102, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.whatsappFloat svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: #25d366;
  flex-shrink: 0;
}
.whatsappFloat span {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.whatsappFloat:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 211, 102, 0.6);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(37, 211, 102, 0.16);
}

@media (max-width: 920px) {
  .footer__container {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .footer__brand, .footer__nav, .footer__contact {
    justify-items: center;
  }
  .whatsappFloat {
    right: 0.85rem;
    bottom: 0.85rem;
    padding: 0.85rem 1rem;
  }
  .whatsappFloat span {
    font-size: 0.88rem;
  }
}/*# sourceMappingURL=main_index.css.map */
