:root {
  --navy: #080e6c;
  --navy-2: #07185f;
  --ink: #111827;
  --muted: #64748b;
  --line: #dbe5ee;
  --soft: #effaf6;
  --soft-blue: #eef5ff;
  --gold: #fec018;
  --green: #05a66b;
  --white: #ffffff;
  --black: #111111;
  --font-h: 'Poppins', sans-serif;
  --font-b: 'Inter', sans-serif;
  --shadow: 0 24px 70px rgba(8, 14, 108, .14);
  --radius: 28px;
  --ease: cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  color: var(--ink);
  background: #f4f5f7;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  scrollbar-width: none;
}
::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: 0; background: none; font: inherit; cursor: pointer; }

.container {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 0;
  background: rgba(244,245,247,.94);
  border-bottom: 1px solid rgba(15,23,42,.06);
  transition: .25s var(--ease);
}
.header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--green), var(--navy));
  background-size: 300% 100%;
  animation: shimmer 5s linear infinite;
}
.header.scrolled {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 36px rgba(15,23,42,.08);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand__mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.brand__copy {
  display: grid;
  line-height: 1.05;
}
.brand__copy strong {
  font-family: var(--font-h);
  font-size: .98rem;
  color: var(--navy);
}
.brand__copy small {
  color: var(--muted);
  font-size: .74rem;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav__link {
  position: relative;
  padding: 28px 0 24px;
  border-radius: 0;
  font-size: .86rem;
  font-weight: 600;
  color: #333b4f;
  transition: .25s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 3px;
  border-radius: 999px;
  background: #1479ef;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s var(--ease);
}
.nav__link:hover,
.nav__link.active {
  color: var(--navy);
  background: transparent;
  box-shadow: none;
}
.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}
.header__toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.header__toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .25s var(--ease); }
.header__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.header__toggle.open span:nth-child(2) { opacity: 0; }
.header__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: .88rem;
  transition: .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: #1479ef; color: var(--white); border-radius: 4px; box-shadow: 0 16px 36px rgba(20,121,239,.24); text-transform: uppercase; letter-spacing: .05em; }
.btn--dark { background: transparent; color: var(--navy); border: 2px solid #1479ef; border-radius: 10px; min-width: 146px; }
.btn--ghost { background: rgba(8,14,108,.07); color: var(--navy); }
.btn--light { background: var(--white); color: var(--navy); box-shadow: 0 18px 38px rgba(0,0,0,.16); }

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(5,166,107,.1);
  color: #04764d;
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.eyebrow--light {
  background: rgba(255,255,255,.12);
  color: #d8ffef;
}
h1, h2, h3 {
  font-family: var(--font-h);
  letter-spacing: 0;
  line-height: 1.08;
}

.hero {
  min-height: 100vh;
  padding: 126px 0 72px;
  display: flex;
  align-items: center;
  background: #f4f5f7;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr .98fr;
  gap: 72px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  margin-bottom: 24px;
  color: #1f5fbd;
  font-family: var(--font-h);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .34em;
  text-transform: uppercase;
}
.hero__copy h1 {
  max-width: 630px;
  font-size: clamp(2.35rem, 4.4vw, 4.05rem);
  font-weight: 500;
  color: #3d3f47;
  line-height: 1.24;
}
.hero__copy h1 strong,
.hero__copy h1 b {
  font-weight: 800;
}
.typewriter {
  min-height: 7.45em;
}
.typewriter::after {
  content: "";
  display: inline-block;
  width: .09em;
  height: .92em;
  margin-left: .08em;
  border-radius: 999px;
  background: #1479ef;
  vertical-align: -.08em;
  animation: cursorBlink .8s steps(1) infinite;
}
.typewriter.typewriter-done::after {
  display: none;
}
.hero__copy p {
  max-width: 470px;
  margin: 30px 0 32px;
  color: #4f5664;
  font-size: 1rem;
  line-height: 1.85;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  box-shadow: none;
  transform: translateY(-405px);
}
.hero__frame {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1 / 1.05;
  border-radius: 18px;
  background: #9dc8eb;
  padding: 26px;
  overflow: visible;
}
.hero__frame::before {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 16px;
  background: #1479ef;
}
.hero__frame-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  border-radius: 14px;
  background: #075bce;
}
.hero__frame-inner img {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 112%;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 18px 26px rgba(4,24,72,.18));
}
.float-tag {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  color: #626b78;
  font-size: .9rem;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(20,121,239,.16);
}
.float-tag::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--white) 0 20%, transparent 21%),
    #1479ef;
}
.float-tag--one { top: 31%; left: -8px; }
.float-tag--two { top: 63%; right: -34px; }
.hero__trust {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
}
.hero__avatars {
  display: flex;
  align-items: center;
}
.hero__avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f4f5f7;
  margin-left: -9px;
}
.hero__avatars img:first-child {
  margin-left: 0;
}
.hero__trust p {
  margin: 0;
  color: #4f5664;
  font-size: .98rem;
}
.hero__trust strong {
  color: #2f3542;
  font-family: var(--font-h);
  font-size: 1.25rem;
  margin-right: 4px;
}
.partners,
.cta {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.ticker {
  overflow: hidden;
  padding: 16px 0;
  background: #1457ce;
  color: var(--white);
}
.ticker__track {
  display: flex;
  width: max-content;
  gap: 34px;
  animation: tickerMove 26s linear infinite;
}
.ticker__track span {
  position: relative;
  flex: 0 0 auto;
  font-family: var(--font-h);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker__track span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.numbers {
  padding: 38px 0 46px;
  background: #f4f5f7;
}
.numbers__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 30px;
  min-height: 190px;
  padding: 34px 52px;
  border-radius: 12px;
  background: #1457ce;
  color: var(--white);
}
.numbers__panel::before {
  content: "";
  position: absolute;
  left: -50px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  border: 2px solid rgba(255,255,255,.28);
  border-radius: 50%;
}
.numbers__panel::after {
  content: "";
  position: absolute;
  left: -12px;
  bottom: -44px;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 50%;
}
.numbers__label {
  position: relative;
  z-index: 1;
  font-family: var(--font-h);
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.05;
}
.numbers__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: #0d42aa;
}
.numbers__grid div {
  min-height: 132px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,.28);
}
.numbers__grid div:first-child {
  border-left: 0;
}
.numbers__grid strong {
  display: block;
  font-family: var(--font-h);
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1;
  white-space: nowrap;
}
.numbers__grid span {
  display: block;
  margin-top: 12px;
  min-height: 36px;
  font-size: .82rem;
  color: rgba(255,255,255,.82);
}

.about {
  padding: 88px 0;
  background: var(--white);
}
.about__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.about__media {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #eef5ff;
  box-shadow: 0 24px 58px rgba(20,87,206,.12);
}
.about__media::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 2px solid rgba(255,255,255,.74);
  border-radius: 8px;
  pointer-events: none;
}
.about__media img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}
.about__copy h2 {
  max-width: 620px;
  color: #373943;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  font-weight: 500;
  line-height: 1.18;
}
.about__copy p {
  max-width: 560px;
  margin-top: 22px;
  color: #596273;
  font-size: .98rem;
  line-height: 1.82;
}
.about__copy .btn {
  margin-top: 30px;
}

.principles {
  padding: 84px 0;
  background: #f4f5f7;
}
.principles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.principle-card {
  position: relative;
  min-height: 270px;
  padding: 38px 32px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(20,87,206,.1);
  box-shadow: 0 18px 42px rgba(15,23,42,.05);
  overflow: hidden;
}
.principle-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--navy), #1479ef, var(--gold));
}
.principle-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: #eef5ff;
  color: #1457ce;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1;
}
.principle-card h3 {
  color: #252936;
  font-size: 1.3rem;
}
.principle-card p {
  margin-top: 18px;
  color: #596273;
  font-size: .94rem;
  line-height: 1.78;
}
.principle-card__list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  list-style: none;
  color: #596273;
  font-size: .94rem;
  line-height: 1.45;
}
.principle-card__list li {
  position: relative;
  padding-left: 24px;
}
.principle-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 800;
}

.partners__copy h2,
.cta__panel h2 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.services,
.feedback {
  padding: 82px 0;
  background: #f4f5f7;
}
.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head .eyebrow {
  margin-inline: auto;
}
.section-head h2 {
  color: #373943;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 500;
}
.section-head h2 strong {
  font-weight: 800;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  min-height: 220px;
  padding: 36px 34px;
  border-radius: 8px;
  background: #ececec;
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 12px 28px rgba(15,23,42,.04);
  transition: .25s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: 0 20px 46px rgba(20,87,206,.12);
}
.service-card__icon {
  position: absolute;
  top: 32px;
  right: 30px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #1457ce;
  font-size: 1.7rem;
  line-height: 1;
}
.service-card h3 {
  max-width: 190px;
  color: #252936;
  font-size: 1.22rem;
  line-height: 1.15;
}
.service-card p {
  margin-top: 28px;
  color: #596273;
  font-size: .94rem;
  line-height: 1.75;
}

.partners {
  position: relative;
  overflow: hidden;
  padding: 132px 0 132px;
  background-image: linear-gradient(180deg, #1457ce 0%, #0d4dbe 100%);
  color: var(--white);
}
.partners__wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 150px;
  overflow: hidden;
  pointer-events: none;
}
.partners__wave svg {
  display: block;
  width: 100%;
  height: 100%;
}
.partners__wave-top {
  fill: #f4f5f7;
}
.partners__wave-soft {
  fill: #1457ce;
}
.partners__wave--bottom {
  top: auto;
  bottom: -1px;
  transform: rotate(180deg);
}
.partners__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.partners__copy h2 {
  max-width: 520px;
  line-height: 1.22;
}
.partners__copy p {
  max-width: 460px;
  margin-top: 24px;
  color: rgba(255,255,255,.86);
}
.partners__logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}
.partners__logos span {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-family: var(--font-h);
  font-weight: 800;
  text-align: center;
}

.feedback {
  padding-top: 76px;
}
.feedback__avatars {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.feedback__avatars img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f4f5f7;
  margin-left: -8px;
}
.feedback__avatars img:first-child {
  margin-left: 0;
}
.feedback__grid {
  display: flex;
  gap: 22px;
  max-width: 1060px;
  margin: 38px auto 0;
  padding: 4px 4px 22px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.feedback__grid article {
  flex: 0 0 calc((100% - 44px) / 3);
  min-height: 230px;
  padding: 30px;
  border-radius: 10px;
  background: #ececec;
  color: #5c6472;
  scroll-snap-align: start;
}
.feedback__grid p {
  font-size: .92rem;
  font-style: italic;
  line-height: 1.75;
}
.feedback__grid strong {
  display: block;
  margin-top: 24px;
  color: #2f3542;
  font-family: var(--font-h);
}
.feedback__grid span {
  color: #1457ce;
  font-size: .82rem;
  font-weight: 700;
}
.feedback__grid::-webkit-scrollbar {
  display: none;
}

.faq {
  padding: 76px 0 72px;
  background: #f4f5f7;
}
.faq__list {
  display: grid;
  gap: 16px;
  max-width: 1120px;
  margin: 36px auto 0;
}
.faq__list details {
  border: 1px solid rgba(20,87,206,.12);
  border-radius: 4px;
  background: #f7f7f8;
  overflow: hidden;
  transition: background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq__list details[open] {
  border-color: rgba(20,87,206,.24);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(20,87,206,.08);
}
.faq__list summary {
  position: relative;
  padding: 20px 56px 20px 22px;
  color: #4b5260;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq__list summary::-webkit-details-marker {
  display: none;
}
.faq__list summary::after {
  content: "⌄";
  position: absolute;
  right: 22px;
  top: 50%;
  color: #1457ce;
  font-size: 1.3rem;
  transform: translateY(-50%);
  transition: transform .25s var(--ease);
}
.faq__list details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}
.faq__list p {
  padding: 0 56px 22px 22px;
  color: #687285;
  font-size: .95rem;
  overflow: hidden;
}
.faq__list details[open] p {
  animation: faqSlideDown .32s var(--ease) both;
}

@keyframes faqSlideDown {
  from {
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    padding-bottom: 0;
  }
  to {
    max-height: 180px;
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq__list details[open] p {
    animation: none;
  }
  .js-enabled [data-animate],
  .js-enabled .text-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

.cta {
  padding: 48px 0 46px;
  background: #f4f5f7;
}
.cta__panel {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 54px;
  align-items: center;
  min-height: 490px;
  padding: 70px;
  border-radius: 8px;
  color: var(--white);
  background: #1457ce;
  overflow: hidden;
}
.cta__copy h2 {
  max-width: 470px;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.18;
}
.cta__copy p {
  max-width: 420px;
  margin-top: 28px;
  color: rgba(255,255,255,.84);
}
.cta__copy .btn--light,
.cta__panel > img {
  display: none;
}
.cta__form {
  position: relative;
  display: grid;
  gap: 18px;
  align-self: stretch;
  padding: 66px 28px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 92% 100%, transparent 0 24%, rgba(255,255,255,.09) 25% 25.5%, transparent 26%),
    #153b86;
}
.cta__form input {
  width: 100%;
  min-height: 38px;
  border: 0;
  border-radius: 0;
  padding: 0 16px;
  color: #1f2937;
  background: var(--white);
  font: inherit;
}
.cta__form p {
  margin: 2px 0 0;
  color: rgba(255,255,255,.86);
  font-size: .86rem;
  line-height: 1.6;
}
.btn--form {
  width: fit-content;
  margin-top: 4px;
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 4px;
  color: var(--white);
  background: transparent;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 72px 0 74px;
  background:
    radial-gradient(circle at 8% 16%, rgba(254,192,24,.18), transparent 28%),
    linear-gradient(135deg, var(--navy) 0%, #1457ce 100%);
  color: rgba(255,255,255,.78);
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(255,255,255,.7), var(--gold));
}
.footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
  align-items: start;
}
.footer__grid > p,
.footer__grid > a:not(.brand):not(.footer__col a) {
  display: none;
}
.brand--footer .brand__mark {
  width: 128px;
  height: auto;
  padding: 10px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 34px rgba(0,0,0,.12);
}
.brand--footer .brand__copy strong { color: var(--white); }
.brand--footer .brand__copy small { color: rgba(255,255,255,.62); }
.footer__col {
  display: grid;
  gap: 12px;
}
.footer__col h3 {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: .95rem;
  letter-spacing: .02em;
}
.footer__col a {
  color: rgba(255,255,255,.78);
  font-size: .94rem;
  transition: .25s var(--ease);
}
.footer__col a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.whatsapp__fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  background: #20c968;
  color: var(--white);
  font-family: var(--font-h);
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(32,201,104,.35);
}
.whatsapp__fab::before,
.whatsapp__fab::after {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  border-radius: inherit;
  border: 2px solid rgba(32,201,104,.72);
  animation: whatsappPulse 1.7s ease-out infinite;
}
.whatsapp__fab::after {
  animation-delay: .85s;
}
.whatsapp__fab svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

[data-animate] {
  opacity: 1;
  transform: none;
}
.js-enabled [data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.js-enabled [data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}
.text-reveal {
  opacity: 1;
  transform: none;
}
.js-enabled .text-reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
  transition:
    opacity .7s var(--ease) var(--reveal-delay, 0ms),
    transform .7s var(--ease) var(--reveal-delay, 0ms),
    filter .7s var(--ease) var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}
.js-enabled .text-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
@keyframes shimmer {
  from { background-position: 0% 50%; }
  to { background-position: 300% 50%; }
}
@keyframes whatsappPulse {
  0% {
    opacity: .85;
    transform: scale(.96);
  }
  70% {
    opacity: 0;
    transform: scale(1.28);
  }
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}
@keyframes cursorBlink {
  50% { opacity: 0; }
}
@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .js-enabled [data-animate],
  .js-enabled .text-reveal,
  .typewriter::after {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    animation: none;
  }
  .ticker__track {
    animation: none;
  }
}
@media (max-width: 980px) {
  .container { width: min(100% - 36px, 1180px); }
  .header__nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
  }
  .header__nav.open { display: flex; }
  .nav__link { padding: 12px 16px; text-align: center; }
  .nav__link::after { display: none; }
  .header__cta { display: none; }
  .header__toggle { display: flex; margin-left: auto; }
  .hero { min-height: auto; padding: 116px 0 64px; }
  .hero__grid,
  .about__grid,
  .partners__grid,
  .cta__panel {
    grid-template-columns: 1fr;
  }
  .hero__visual,
  .hero__frame { min-height: 420px; }
  .numbers__panel,
  .numbers__grid,
  .principles__grid,
  .service-cards,
  .feedback__grid {
    grid-template-columns: 1fr;
  }
  .feedback__grid article {
    flex-basis: calc((100% - 22px) / 2);
  }
  .numbers__grid div {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.28);
  }
  .numbers__grid div:first-child {
    border-top: 0;
  }
  .partners__logos {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partners,
  .cta {
    background-attachment: scroll;
  }
}

@media (max-width: 640px) {
  *,
  *::before,
  *::after {
    max-width: 100vw;
  }
  .container {
    width: 100%;
    max-width: 100%;
    padding-inline: 14px;
  }
  body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  main,
  section,
  .container,
  .hero__grid,
  .hero__copy,
  .numbers__panel,
  .numbers__grid,
  .about__grid,
  .partners__grid,
  .cta__panel {
    min-width: 0;
    max-width: 100%;
  }
  h1,
  h2,
  h3,
  p,
  span,
  a {
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .header__inner {
    position: relative;
    min-height: 68px;
    padding-right: 48px;
  }
  .brand__mark {
    width: 42px;
    height: 42px;
  }
  .brand__copy strong {
    font-size: .9rem;
  }
  .header__toggle {
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 3;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
  }
  .header__toggle span {
    flex-shrink: 0;
  }
  .hero {
    padding: 96px 0 48px;
  }
  .hero__grid {
    gap: 34px;
  }
  .hero__eyebrow {
    margin-bottom: 16px;
    font-size: .68rem;
    letter-spacing: .18em;
  }
  .hero__copy h1 {
    max-width: 340px;
    font-size: 1.95rem;
    line-height: 1.16;
    overflow-wrap: break-word;
  }
  .typewriter {
    min-height: 5.8em;
  }
  .hero__copy p {
    max-width: 330px;
    margin: 22px 0 24px;
    font-size: .95rem;
    line-height: 1.72;
    overflow-wrap: break-word;
  }
  .hero__actions,
  .btn {
    width: 100%;
    max-width: 340px;
  }
  .btn {
    min-height: 48px;
    padding-inline: 16px;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
  .hero__visual {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 0;
    overflow: hidden;
    transform: none;
  }
  .hero__frame {
    width: 100%;
    max-width: 285px;
    min-height: auto;
    margin-inline: auto;
    padding: 14px;
    border-radius: 16px;
  }
  .hero__frame::before {
    inset: 14px;
    border-radius: 14px;
  }
  .hero__frame-inner {
    border-radius: 12px;
    overflow: hidden;
  }
  .hero__frame-inner img {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin: 0 auto -10px;
    transform: none;
  }
  .hero__trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }
  .hero__trust p {
    font-size: .9rem;
    line-height: 1.55;
    overflow-wrap: break-word;
  }
  .hero__trust strong {
    display: block;
    margin: 0 0 2px;
  }
  .float-tag { display: none; }
  .ticker {
    padding: 12px 0;
  }
  .ticker__track {
    gap: 26px;
    animation-duration: 22s;
  }
  .ticker__track span {
    font-size: .72rem;
    letter-spacing: .06em;
  }
  .ticker__track span::after {
    right: -16px;
    width: 5px;
    height: 5px;
  }
  .numbers,
  .about,
  .principles,
  .services,
  .partners,
  .feedback,
  .faq,
  .cta {
    padding: 54px 0;
  }
  .numbers__panel {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    gap: 22px;
    padding: 26px 18px;
    border-radius: 10px;
  }
  .numbers__label {
    font-size: 1.7rem;
  }
  .numbers__grid strong {
    font-size: 2rem;
    white-space: normal;
  }
  .numbers__grid div {
    min-height: auto;
    padding: 24px 18px;
  }
  .numbers__grid span {
    max-width: 240px;
    margin-inline: auto;
    overflow-wrap: break-word;
  }
  .section-head {
    max-width: 340px;
    margin-inline: auto;
    margin-bottom: 26px;
  }
  .section-head h2,
  .about__copy h2,
  .partners__copy h2,
  .cta__copy h2 {
    max-width: 330px;
    font-size: 1.86rem;
    line-height: 1.18;
    overflow-wrap: break-word;
  }
  .section-head h2 {
    margin-inline: auto;
  }
  .about__grid {
    gap: 28px;
  }
  .about__copy {
    order: 1;
  }
  .about__media {
    order: 2;
  }
  .about__media {
    max-width: 360px;
    margin-inline: auto;
    border-radius: 10px;
  }
  .about__media::before {
    inset: 10px;
  }
  .about__media img {
    width: 100%;
    min-height: 0;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    background: #eef5ff;
  }
  .about__copy p {
    max-width: 340px;
    margin-top: 18px;
    font-size: .94rem;
    line-height: 1.72;
    overflow-wrap: break-word;
  }
  .about__copy,
  .partners__copy,
  .cta__copy {
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
  }
  .about__copy .btn {
    max-width: 340px;
  }
  .principle-card {
    max-width: 360px;
    margin-inline: auto;
    min-height: auto;
    padding: 30px 24px;
  }
  .service-cards,
  .partners__logos {
    grid-template-columns: 1fr;
  }
  .feedback__grid {
    margin-inline: -14px;
    padding-inline: 14px;
  }
  .feedback__grid article {
    flex-basis: min(86vw, 340px);
  }
  .service-card {
    max-width: 360px;
    margin-inline: auto;
    min-height: auto;
    padding: 28px 24px;
  }
  .service-card h3 {
    max-width: 220px;
  }
  .service-card p {
    margin-top: 22px;
    line-height: 1.68;
  }
  .partners {
    padding-top: 86px;
    padding-bottom: 96px;
  }
  .partners__wave {
    height: 88px;
  }
  .partners__grid {
    gap: 34px;
  }
  .partners__copy p {
    font-size: .94rem;
    line-height: 1.7;
  }
  .partners__logos {
    gap: 12px;
  }
  .partners__logos span {
    min-height: 58px;
    padding: 12px 14px;
    font-size: .92rem;
  }
  .feedback__grid {
    gap: 16px;
  }
  .feedback__grid article {
    min-height: auto;
    padding: 24px;
  }
  .faq__list {
    gap: 12px;
    margin-top: 28px;
  }
  .faq__list summary {
    padding: 18px 48px 18px 18px;
    font-size: .94rem;
    line-height: 1.45;
  }
  .faq__list p {
    padding: 0 18px 20px;
    font-size: .9rem;
  }
  .cta__panel {
    max-width: 360px;
    margin-inline: auto;
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 28px;
    padding: 24px 18px;
    border-radius: 12px;
  }
  .cta__form {
    padding: 26px 16px;
    gap: 14px;
  }
  .cta__form input {
    min-height: 44px;
  }
  .footer {
    padding: 50px 0 96px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .whatsapp__fab {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 15px;
    font-size: .86rem;
  }
  .whatsapp__fab svg {
    width: 20px;
    height: 20px;
  }
}
