/* ==========================================================================
   momentofpeople.com static clone - shared styles
   Tokens, reset, typography helpers, buttons, header/nav, mobile menu,
   clients ticker, testimonials (2 variants), FAQ accordion, closing CTA
   ("Liderá la transformación con un partner de IA.") and footer.
   Page specific CSS lives in css/<key>.css scoped under body.page-<key>.
   Breakpoints (same as live Framer site): desktop >= 1200, tablet 768-1199,
   phone < 768.
   ========================================================================== */

/* ---------- Tokens -------------------------------------------------------- */
:root {
  /* colours */
  --c-bg: #f9f7f6;              /* page background */
  --c-bg-alt: #f4f2ef;
  --c-white: #ffffff;
  --c-card: #fcfcfc;            /* testimonial card */
  --c-panel: #f3f5f2;           /* light grey panels inside dropdown */
  --c-text: #2b2a2b;            /* main text (Framer token a378a457) */
  --c-ink: #111011;             /* near black */
  --c-ink-60: rgba(17, 16, 17, 0.6);
  --c-ink-50: rgba(17, 16, 17, 0.5);
  --c-ink-20: rgba(17, 16, 17, 0.2);
  --c-black: #050505;
  --c-grey-text: #333333;
  --c-grey-mid: #787878;
  --c-grey-eyebrow: #969696;
  --c-grey-caption: #6e6e6e;
  --c-line: #ededed;
  --c-green: #40fe77;           /* brand green */
  --c-green-btn: #41ff77;       /* WhatsApp nav button */
  --c-green-2: #11fa8d;
  --c-dark: #0c1111;            /* dark heroes (industria40 / govtech) */
  --c-dark-2: #0d1113;
  --c-cyan: #82f5ff;
  --c-purple: #6610f2;          /* eyebrow dot */
  --c-btn-grey: rgba(238, 240, 237, 0.87);
  --c-btn-text: rgba(18, 18, 18, 0.8);
  --c-burger: #191d1d;

  /* gradients */
  --g-green-radial: radial-gradient(84.9624% 226%, rgba(64, 255, 118, 0.94) 17.0098%, rgba(17, 250, 141, 0.75) 34.0037%, rgba(64, 254, 119, 0.39) 49.4035%, rgba(4, 7, 13, 0) 100%);
  --g-green-glow: radial-gradient(50% 50%, rgba(64, 255, 118, 0.94) 17.0098%, rgba(17, 250, 141, 0.75) 34.0037%, rgba(64, 254, 119, 0.39) 49.4035%, rgba(4, 7, 13, 0) 100%);

  /* shadows */
  --sh-pill: rgba(0, 0, 0, 0.03) 0px 0.636953px 0.636953px -0.625px, rgba(0, 0, 0, 0.03) 0px 1.9316px 1.9316px -1.25px, rgba(0, 0, 0, 0.03) 0px 5.10612px 5.10612px -1.875px, rgba(0, 0, 0, 0.03) 0px 16px 16px -2.5px;
  --sh-float: rgba(0, 0, 0, 0.18) 0px 0.602187px 0.602187px -1.25px, rgba(0, 0, 0, 0.16) 0px 2.28853px 2.28853px -2.5px, rgba(0, 0, 0, 0.06) 0px 10px 10px -3.75px;
  --sh-btn: rgba(0, 0, 0, 0.1) 0px 2px 8px 0px;

  /* spacing scale */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 84px;
  --sp-10: 100px;
  --sp-11: 120px;
  --sp-12: 160px;

  /* radius scale */
  --r-xs: 10px;
  --r-sm: 16px;
  --r-md: 24px;
  --r-lg: 36px;      /* big containers (live uses 33-36px) */
  --r-xl: 48px;      /* nav pill / 49px process card */
  --r-pill: 999px;

  /* fonts */
  --f-dm: "DM Sans", "DM Sans Placeholder", sans-serif;
  --f-is: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
  --f-serif: "Instrument Serif", "Instrument Serif Placeholder", serif;
  --f-satoshi: "Satoshi", "Satoshi Placeholder", sans-serif;
  --f-switzer: "Switzer", "Switzer Placeholder", sans-serif;
  --f-inter: "Inter", "Inter Placeholder", sans-serif;
  --f-general: "General Sans", "General Sans Placeholder", sans-serif;
  --f-geist: "Geist", "Geist Placeholder", sans-serif;
  --f-mono: "Geist Mono", "DM Mono", "Source Code Pro", monospace;

  /* layout */
  --nav-h: 105px;
  --ease-out: cubic-bezier(0.44, 0, 0.56, 1);
  --appear-dur: 0.6s;
}

/* ---------- Reset --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-is);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
strong { font-weight: 700; }
em, .it { font-style: italic; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
main { display: block; }

/* ---------- Typography helpers ------------------------------------------- */
/* Big display heading: DM Sans 300 (e.g. "Todo listo en tan solo 4 semanas") */
.t-display { font-family: var(--f-dm); font-weight: 300; font-size: 80px; line-height: 1; letter-spacing: -0.04em; color: #272727; }
/* Section heading: DM Sans 300 48px ("Ellos ya comprobaron...", FAQ title) */
.t-h2 { font-family: var(--f-dm); font-weight: 300; font-size: 48px; line-height: 1.1; letter-spacing: -0.04em; color: var(--c-ink); }
/* Card heading DM Sans 400 44px ("Diseñar") */
.t-h3 { font-family: var(--f-dm); font-weight: 400; font-size: 44px; line-height: 1; letter-spacing: -2px; color: var(--c-text); }
/* Italic words inside headings */
.t-serif { font-family: var(--f-serif); font-style: italic; font-weight: 400; }
/* Eyebrow: Switzer 18px uppercase with purple dot */
.eyebrow { display: flex; align-items: center; justify-content: center; gap: var(--sp-3); font-family: var(--f-switzer); font-weight: 400; font-size: 18px; line-height: 2.1; letter-spacing: 0.4em; text-transform: uppercase; color: var(--c-grey-eyebrow); }
.eyebrow::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--c-purple); flex: none; }
/* Body paragraph: DM Sans 400 16/26 */
.t-body { font-family: var(--f-dm); font-weight: 400; font-size: 16px; line-height: 26px; letter-spacing: -0.2px; color: #131313; }
/* Satoshi 18/27 text (framer preset bloxs3) */
.t-satoshi { font-family: var(--f-satoshi); font-weight: 400; font-size: 18px; line-height: 1.5; color: var(--c-text); }
/* Instrument Sans 14/18.2 small */
.t-small { font-family: var(--f-is); font-weight: 400; font-size: 14px; line-height: 1.3; letter-spacing: -0.02em; color: #272727; }
/* Stat "75 %": DM Sans 300 36px with 100px number */
.t-stat { font-family: var(--f-dm); font-weight: 300; font-size: 36px; line-height: 1.2; letter-spacing: -0.02em; color: var(--c-text); }
.t-stat .t-stat__n { font-size: 100px; letter-spacing: -2px; }
/* Caption DM Sans 20/22 -1.2px 60% */
.t-caption { font-family: var(--f-dm); font-weight: 400; font-size: 20px; line-height: 22px; letter-spacing: -1.2px; color: var(--c-ink-60); }
@media (max-width: 767px) {
  .t-display { font-size: 51px; letter-spacing: -0.04em; }
  .t-h2 { font-size: 32px; }
}

/* ---------- Layout helpers ------------------------------------------------ */
.container { width: 100%; max-width: 1340px; margin: 0 auto; padding: 0 var(--sp-6); }
.section { padding: 0 50px; }
@media (max-width: 767px) { .section { padding: 0 10px; } }

/* ---------- Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 10px 28px;
  border-radius: var(--r-pill);
  font-family: var(--f-is); font-weight: 400; font-size: 15px; line-height: 26px; letter-spacing: -0.5px;
  color: var(--c-btn-text); white-space: nowrap; text-align: center; /* text-align: safety net when a page overrides display (e.g. .only-mobile) */
  transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out), opacity 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
/* Hover states measured on live (Framer button component "aGiDA"): green and grey pills turn into a dark
   pill with a green label; the dark pill inverts to green with a dark label. No transform/shadow. */
.btn--green { background: var(--c-green); }
.btn--green:hover { background: var(--c-text); color: var(--c-green); }
.btn--grey { background: var(--c-btn-grey); border: 1px solid rgba(33, 33, 33, 0.06); }
.btn--grey:hover { background: var(--c-text); color: var(--c-green); }
.btn--dark { background: var(--c-text); color: var(--c-green); min-height: 46px; min-width: 276px; }
.btn--dark:hover { background: var(--c-green); color: var(--c-text); }
.btn--sm { min-height: 43px; padding: 12px 20px; font-size: 15px; line-height: 20px; letter-spacing: -0.01em; color: var(--c-text); }
.btn--block { width: 100%; }
.btn svg { flex: none; }
/* WhatsApp pill used in the header */
.btn-wa {
  display: inline-flex; align-items: center; justify-content: flex-start; gap: 8px;
  padding: 12px 20px; min-width: max-content;
  background: var(--c-green-btn); color: var(--c-ink-60);
  border-radius: 32px; box-shadow: var(--sh-btn);
  font-family: var(--f-is); font-weight: 500; font-size: 16px; line-height: normal;
  transition: all 0.2s ease;
}
.btn-wa:hover { opacity: 0.9; }
.btn-wa svg { width: 20px; height: 20px; flex: none; }
.btn-wa--icon { padding: 12px; gap: 0; }
.btn-wa--icon span { display: none; }

/* ---------- Header / nav -------------------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 0;
  transition: padding 0.3s var(--ease-out);
}
.site-header__bar {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; margin: 0 auto;
  padding: 32px 60px 24px 70px;
  background: rgba(255, 255, 255, 0);
  border-radius: var(--r-xl);
  transition: background-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), padding 0.3s var(--ease-out), max-width 0.3s var(--ease-out);
}
.site-header__logo { display: flex; align-items: center; width: 203px; height: 49px; padding: 0; flex: none; }
.site-header__logo img { width: 69px; height: 33px; object-fit: cover; }
.site-nav { display: flex; align-items: center; gap: var(--sp-4); }
.site-nav__item { position: relative; }
.site-nav__link {
  display: flex; align-items: center; gap: 6px;
  padding: 4px 8px; border-radius: 4px;
  font-family: var(--f-is); font-weight: 400; font-size: 16px; line-height: 24px; letter-spacing: -0.48px;
  color: var(--c-text); transition: color 0.2s;
}
.site-nav__link svg { width: 16px; height: 16px; margin: 4px; stroke: var(--c-ink); transition: transform 0.2s var(--ease-out); }
.site-nav__item.is-open > .site-nav__link, .site-nav__link:hover { color: var(--c-ink-60); }
.site-nav__item.is-open > .site-nav__link svg { stroke: var(--c-ink-60); }
.site-nav__label-scroll { display: none; }
.site-header.is-scrolled .site-nav__label-default, .site-header--solid .site-nav__label-default { display: none; }
.site-header.is-scrolled .site-nav__label-scroll, .site-header--solid .site-nav__label-scroll { display: inline; }
.site-header__right { display: flex; align-items: center; justify-content: flex-end; gap: 10px; flex: none; }
.site-header__burger { display: none; position: relative; width: 32px; height: 32px; }
.site-header__burger span { position: absolute; left: 7px; width: 18px; height: 2px; background: var(--c-burger); border-radius: 1px; transition: transform 0.25s var(--ease-out); }
.site-header__burger span:first-child { top: 12px; }
.site-header__burger span:last-child { top: 18px; }

/* scrolled state (Framer "Scroll" variant): white pill, "Soluciones" label and icon-only WhatsApp */
.site-header.is-scrolled, .site-header--solid { padding: 16px; }
.site-header.is-scrolled .site-header__bar, .site-header--solid .site-header__bar {
  max-width: 1200px; padding: 12px 14px 12px 20px;
  background: var(--c-white); box-shadow: var(--sh-pill);
}
.site-header.is-scrolled .site-header__logo, .site-header--solid .site-header__logo { width: 96px; padding: 0 13px; }
.site-header.is-scrolled .btn-wa, .site-header--solid .btn-wa { padding: 12px; gap: 0; }
.site-header.is-scrolled .btn-wa span, .site-header--solid .btn-wa span { display: none; }

/* dropdown panels */
.site-nav__panel {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, 8px);
  display: flex; flex-direction: column; gap: var(--sp-2);
  padding: var(--sp-4);
  background: var(--c-white); border-radius: var(--r-sm); box-shadow: var(--sh-float);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out), visibility 0.2s;
}
.site-nav__item.is-open > .site-nav__panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out), visibility 0s; }
.site-nav__panel::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
/* Productos */
.site-nav__panel--productos { width: 291px; }
.site-nav__panel--productos .dd-list { display: flex; flex-direction: column; gap: 1px; align-items: stretch; }
.dd-product { display: flex; gap: 13px; align-items: flex-start; padding: var(--sp-3); border-radius: var(--r-sm); transition: background-color 0.2s; }
.dd-product:hover { background: var(--c-panel); }
.dd-product__icon { width: 20px; height: 20px; flex: none; margin-top: 2px; color: var(--c-ink-60); fill: var(--c-ink-60); }
.dd-product__icon svg { width: 100%; height: 100%; fill: inherit; }
.dd-product__body { display: flex; flex-direction: column; gap: 2px; }
.dd-product__title { font-family: var(--f-is); font-weight: 400; font-size: 16px; line-height: 24px; color: var(--c-grey-text); }
.dd-product__desc { font-family: var(--f-satoshi); font-weight: 400; font-size: 16px; line-height: 1.4; color: var(--c-ink); opacity: 0.52; }
.dd-product--soon { opacity: 0.52; cursor: default; }
.dd-product--soon:hover { background: transparent; }
/* Industrias */
.site-nav__panel--industrias { width: 882px; }
.dd-head { display: flex; align-items: center; justify-content: space-between; padding: var(--sp-3); }
.dd-head h4 { font-family: var(--f-satoshi); font-weight: 700; font-size: 20px; line-height: 24px; color: var(--c-grey-text); }
.dd-cols { display: flex; gap: var(--sp-5); align-items: center; }
.dd-markets { display: flex; flex-direction: column; width: 309px; flex: none; }
.dd-market { display: flex; flex-direction: column; gap: 2px; padding: var(--sp-3); margin: 0 -2px; border-radius: var(--r-sm); transition: background-color 0.2s; }
.dd-market:hover { background: var(--c-panel); }
.dd-market__title { font-family: var(--f-is); font-weight: 500; font-size: 16px; line-height: 24px; color: var(--c-grey-text); }
.dd-market__sub { display: flex; gap: var(--sp-2); align-items: center; font-family: var(--f-satoshi); font-weight: 400; font-size: 16px; line-height: 1.4; }
.dd-market__bot { color: var(--c-grey-mid); }
.dd-market__role { color: var(--c-ink); font-style: italic; }
.dd-cards { display: flex; flex-direction: column; gap: 20px; flex: 1; min-width: 0; }
.dd-card { position: relative; display: flex; padding: var(--sp-5); background: var(--c-panel); border-radius: var(--r-sm); overflow: hidden; transition: background-color 0.3s var(--ease-out); }
.dd-card .btn:hover { background: rgba(17, 250, 141, 0.56); color: var(--c-text); }
.dd-card--tall:hover { background: var(--c-green); }
.dd-card--tall:hover .btn { background: var(--c-white); color: rgba(25, 29, 29, 0.8); box-shadow: rgba(13, 17, 27, 0.12) 0 1px 3px 0; }
.dd-card--tall { height: 280px; }
.dd-card--short { height: 167px; }
.dd-card__body { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; width: 216px; flex: none; height: 100%; }
.dd-card__text { display: flex; flex-direction: column; gap: 10px; }
.dd-card__title { font-family: var(--f-satoshi); font-weight: 400; font-size: 18px; line-height: 1.5; color: var(--c-text); width: 220px; }
.dd-card__desc { font-family: var(--f-satoshi); font-weight: 400; font-size: 16px; line-height: 1.4; color: #080808; opacity: 0.52; }
.dd-card__img { position: absolute; top: 0; right: 0; bottom: 0; width: 349px; -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 23%, #000 100%); mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 23%, #000 100%); }
.dd-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }

/* tablet + phone */
@media (max-width: 1199px) {
  .site-nav { display: none; }
  .site-header__bar { padding: 24px 16px 16px 24px; }
  .site-header__burger { display: block; }
  .site-header__logo { width: 102px; justify-content: center; padding: 0; }
  .site-header__right { order: 2; }
  .site-header.is-scrolled, .site-header--solid { padding: 0; }
  .site-header.is-scrolled .site-header__bar, .site-header--solid .site-header__bar { max-width: none; padding: 24px 16px 16px 24px; background: transparent; box-shadow: none; }
  .site-header.is-scrolled .btn-wa, .site-header--solid .btn-wa { padding: 12px 20px; gap: 8px; }
  .site-header.is-scrolled .btn-wa span, .site-header--solid .btn-wa span { display: inline; }
}
@media (max-width: 767px) {
  :root { --nav-h: 80px; }
  .site-header, .site-header.is-scrolled, .site-header--solid { padding: 12px; }
  .site-header__bar, .site-header.is-scrolled .site-header__bar, .site-header--solid .site-header__bar {
    padding: 12px 16px 12px 24px; background: var(--c-white); box-shadow: var(--sh-float); border-radius: var(--r-xl);
  }
  .site-header__logo, .site-header.is-scrolled .site-header__logo, .site-header--solid .site-header__logo { width: 77px; height: 43px; padding: 0 6px; }
  .site-header__logo img { width: 65px; height: 32px; }
  .btn-wa, .site-header.is-scrolled .btn-wa, .site-header--solid .btn-wa { padding: 12px; gap: 0; }
  .btn-wa span, .site-header.is-scrolled .btn-wa span, .site-header--solid .btn-wa span { display: none; }
}

/* ---------- Mobile menu overlay ------------------------------------------ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 60;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0; visibility: hidden; transition: opacity 0.25s var(--ease-out), visibility 0.25s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__panel {
  position: relative; width: 100%; height: 100%;
  display: flex; flex-direction: column; gap: 38px; align-items: flex-start;
  padding: 25px 24px 24px 33px;
  background: var(--c-white); border-radius: 33px; overflow: hidden auto;
  transform: translateY(12px); transition: transform 0.3s var(--ease-out);
}
.mobile-menu.is-open .mobile-menu__panel { transform: none; }
.mobile-menu__logo { display: block; width: 61px; height: 29px; }
.mobile-menu__logo img { width: 100%; height: 100%; object-fit: cover; }
.mobile-menu__close { position: absolute; top: 23px; right: 12px; width: 41px; height: 41px; } /* final QA: X centre y=54 like live */
.mobile-menu__close::before, .mobile-menu__close::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 2px; margin-left: -7px; margin-top: -1px; background: var(--c-burger); }
.mobile-menu__close::before { transform: rotate(45deg); }
.mobile-menu__close::after { transform: rotate(-45deg); }
.mobile-menu__spacer { height: 45px; flex: none; }
.mobile-menu__list { display: flex; flex-direction: column; width: 100%; align-self: stretch; }
.mobile-menu__group { display: flex; flex-direction: column; gap: 2px; width: 100%; padding-bottom: 2px; } /* final QA: live rows with submenu are 45px apart */
.mobile-menu__row {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 8px 0; text-align: left;
  font-family: var(--f-satoshi); font-weight: 400; font-size: 18px; line-height: 1.5; color: var(--c-text);
}
.mobile-menu__row svg { width: 16px; height: 16px; stroke: var(--c-ink); flex: none; transition: transform 0.25s var(--ease-out); }
.mobile-menu__group.is-open .mobile-menu__row svg { transform: rotate(90deg); }
.mobile-menu__label-open { display: none; }
.mobile-menu__group.is-open .mobile-menu__label-closed { display: none; }
.mobile-menu__group.is-open .mobile-menu__label-open { display: inline; }
.mobile-menu__sub { display: none; flex-direction: column; gap: 8px; padding: 4px 0 18px; width: 100%; } /* final QA: sub rows y=291/323/355, next row y=409 like live */
.mobile-menu__group.is-open .mobile-menu__sub { display: flex; }
.mobile-menu__sub a { display: block; padding-left: 16px; font-family: var(--f-is); font-weight: 400; font-size: 16px; line-height: 24px; color: var(--c-grey-text); }
.mobile-menu__buttons { display: flex; flex-direction: column; gap: 12px; width: 100%; margin-top: auto; }
.mobile-menu__buttons .btn { width: 100%; }
body.menu-open { overflow: hidden; }
@media (min-width: 1200px) { .mobile-menu { display: none; } }

/* ---------- Clients ticker ------------------------------------------------ */
.clients { display: flex; flex-direction: column; align-items: center; gap: 3px; width: 100%; overflow: hidden; }
.clients__label { font-family: var(--f-is); font-weight: 400; font-size: 11px; line-height: 26px; letter-spacing: -0.2px; text-transform: uppercase; text-align: center; color: var(--c-text); }
.ticker { width: 100%; max-width: 908px; padding: var(--sp-5); overflow: hidden; }
.ticker__track { display: flex; align-items: center; gap: var(--sp-6); width: max-content; will-change: transform; animation: ticker-scroll var(--ticker-dur, 28s) linear infinite; }
.ticker:hover .ticker__track { animation-play-state: running; }
.ticker__item { display: flex; align-items: center; justify-content: center; flex: none; opacity: 0.85; }
.ticker__item svg, .ticker__item img { display: block; }
.ticker__item--3arroyos { width: 95px; height: 58px; }
.ticker__item--3arroyos svg { width: 84px; height: 20px; }
.ticker__item--junin { width: 102px; height: 63px; }
.ticker__item--junin img { width: 105px; height: 34px; object-fit: cover; }
.ticker__item--apache { width: 114px; height: 70px; }
.ticker__item--apache img { width: 104px; height: 19px; object-fit: cover; }
.ticker__item--utn { width: 102px; height: 63px; }
.ticker__item--utn svg { width: 80px; height: 20px; }
.ticker__item--varsat { width: 66px; height: 41px; }
.ticker__item--varsat svg { width: 41px; height: 24px; }
.ticker__item--estacubierto { width: 88px; height: 55px; }
.ticker__item--estacubierto svg { width: 63px; height: 31px; }
.ticker__item--mesquita { width: 81px; height: 50px; }
.ticker__item--mesquita svg { width: 58px; height: 40px; }
.ticker__item--aerowise { width: 119px; height: 73px; }
.ticker__item--aerowise svg { width: 107px; height: 15px; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* ---------- Testimonials variant A: photo + quote card -------------------- */
.testimonial { display: flex; flex-direction: column; align-items: center; gap: 72px; padding: 20px 10px 0; }
.testimonial__head { display: flex; flex-direction: column; align-items: center; gap: 24px; padding: 0 var(--sp-6); }
.testimonial__title { max-width: 914px; text-align: center; }
.testimonial__card {
  display: flex; align-items: center; gap: var(--sp-5);
  width: 100%; max-width: 1219px; height: 700px;
  background: var(--c-card); border-radius: 40px; overflow: hidden;
}
.testimonial__photo { width: 50%; height: 100%; flex: none; }
.testimonial__photo img { width: 100%; height: 100%; object-fit: cover; }
.testimonial__body { display: flex; flex-direction: column; justify-content: space-between; flex: 1; height: 100%; padding: var(--sp-5); }
.testimonial__inner { display: flex; flex-direction: column; gap: 42px; }
.testimonial__quote { font-family: var(--f-dm); font-weight: 300; font-size: 28px; line-height: 1; color: var(--c-black); }
.testimonial__rule { height: 1px; background: rgba(5, 5, 5, 0.25); }
.testimonial__who { display: flex; flex-direction: column; }
.testimonial__name { font-family: var(--f-switzer); font-weight: 300; font-size: 21px; line-height: 1.5; color: var(--c-black); }
.testimonial__name strong { font-weight: 400; }
.testimonial__role { font-family: var(--f-switzer); font-weight: 400; font-size: 17px; line-height: 1.3; color: var(--c-grey-caption); }
@media (max-width: 1199px) {
  .testimonial__card { height: auto; flex-direction: column; }
  .testimonial__photo { width: 100%; height: 420px; }
  .testimonial__body { width: 100%; }
}
@media (max-width: 767px) { .testimonial { display: none; } }

/* ---------- Testimonials variant B: results grid -------------------------- */
.results { display: flex; flex-direction: column; align-items: center; padding: 0 50px 50px; }
.results__wrap { width: 100%; max-width: 1340px; border-radius: var(--r-lg); background: linear-gradient(rgba(249, 247, 246, 0) 29.8661%, rgb(249, 247, 246) 100%); }
.results__container { display: flex; flex-direction: column; align-items: center; gap: var(--sp-9); padding: 52px 0 128px; background: var(--c-bg); border-radius: 70px; }
.results__title { max-width: 640px; padding: 0 var(--sp-6); text-align: center; }
.results__grid { display: flex; align-items: center; justify-content: center; gap: var(--sp-5); width: 100%; max-width: 1280px; }
.results__col { display: flex; flex-direction: column; gap: 10px; width: 302px; flex: none; }
.results__col--down { transform: translateY(28px); }
.results__col--up { transform: translateY(-28px); }
.results__card { display: flex; flex-direction: column; justify-content: space-between; min-height: 416px; padding: var(--sp-6); background: var(--c-white); border-radius: var(--r-md); }
.results__top { display: flex; flex-direction: column; }
.results__stat { font-family: var(--f-dm); font-weight: 300; font-size: 36px; line-height: 1.2; letter-spacing: -0.02em; color: var(--c-text); }
.results__stat .n { font-size: 100px; letter-spacing: -2px; }
.results__stat--tight { letter-spacing: -6.4px; }
.results__stat--tight .n { letter-spacing: -6.4px; }
.results__caption { font-family: var(--f-dm); font-weight: 400; font-size: 20px; line-height: 22px; letter-spacing: -1.2px; color: var(--c-ink-60); }
.results__caption strong { font-weight: 700; }
.results__image { position: relative; display: flex; align-items: center; justify-content: center; height: 306px; border-radius: var(--r-md); overflow: hidden; }
.results__image > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.results__image--fill > img { object-fit: fill; }
.results__overlay { position: absolute; inset: 0; background: rgba(148, 161, 170, 0.4); }
.results__logo { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; }
.results__logo svg, .results__logo img { display: block; }
@media (max-width: 1199px) {
  .results__grid { flex-wrap: wrap; }
}
@media (max-width: 767px) {
  .results { padding: 0 10px; }
  .results__container { gap: var(--sp-7); padding: 34px 0 63px; }
  .results__title { font-family: var(--f-is); font-weight: 400; font-size: 23px; line-height: 1.1; letter-spacing: -0.04em; padding: 0; }
  .results__grid { flex-direction: column; gap: 9px; }
  .results__col { width: 100%; }
  .results__col--down { transform: translateY(28px); }
  .results__col--up { transform: translateY(-28px); }
  .results__card { min-height: 0; gap: 80px; justify-content: center; }
  .results__image { height: 306px; }
  .results__col--up .results__image { height: 270px; }
}

/* ---------- FAQ ----------------------------------------------------------- */
.faq { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 0 50px; background: var(--c-bg); }
.faq__heading { display: flex; justify-content: center; padding: var(--sp-9) 0; }
.faq__title { text-align: center; }
.faq__container { width: 100%; max-width: 1340px; padding: var(--sp-11) 60px; background: var(--c-white); border-radius: var(--r-lg); }
.faq__list { display: flex; flex-direction: column; gap: var(--sp-3); padding: 0 var(--sp-8); }
.faq__item { display: flex; flex-direction: column; overflow: hidden; }
.faq__q {
  display: flex; align-items: flex-start; justify-content: space-between; gap: var(--sp-5);
  width: 100%; padding: 20px 0; text-align: left;
  font-family: var(--f-satoshi); font-weight: 400; font-size: 20px; line-height: 30px; letter-spacing: -0.4px; color: var(--c-text);
}
.faq__icon { width: 32px; height: 32px; flex: none; fill: var(--c-ink-50); transform: rotate(-90deg); transition: transform 0.3s var(--ease-out); }
.faq__item.is-open .faq__icon { transform: rotate(90deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s var(--ease-out); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a-inner > * { padding: 0 20px 20px 0; font-family: var(--f-satoshi); font-weight: 400; font-size: 18px; line-height: 1.5; color: var(--c-ink-60); }
.faq__a-inner p + p { padding-top: 0; }
@media (max-width: 767px) {
  .faq { padding: 0 10px; }
  .faq__container { padding: 60px 24px 40px; border-radius: var(--r-md); }
  .faq__list { padding: 0; }
}

/* ---------- Closing CTA + footer ----------------------------------------- */
.cta-final { display: flex; flex-direction: column; align-items: center; padding: 0 0 50px; }
.cta-final__container { display: flex; flex-direction: column; align-items: center; gap: var(--sp-9); width: 100%; padding: 15px 0; overflow: hidden; }
.cta-final__card {
  display: flex; flex-direction: column; align-items: center; gap: 47px;
  width: calc(100% - 100px); min-height: 425px; margin: 0 50px; padding: 69px 0; justify-content: center;
  background: var(--g-green-radial); border-radius: 33px;
}
.cta-final__head { display: flex; flex-direction: column; align-items: center; gap: var(--sp-5); }
.cta-final__title { max-width: 896px; font-family: var(--f-is); font-weight: 400; font-size: 76px; line-height: 0.9; letter-spacing: -0.04em; text-align: center; color: var(--c-text); }
.cta-final__bottom { display: flex; flex-direction: column; align-items: center; }
.site-footer__social { display: flex; align-items: center; gap: var(--sp-6); width: 100%; padding: 0 60px; }
.site-footer__link { display: flex; align-items: center; justify-content: space-between; flex: 1 0 0; min-width: 160px; padding: 0 0 15px; border-bottom: 1px solid var(--c-ink-20); } /* live: 65px rows incl. the 1px rule */
.site-footer__name { display: flex; align-items: center; gap: 7px; padding: 8px 0; }
.site-footer__name svg { width: 32px; height: 33px; fill: var(--c-text); }
.site-footer__name span { font-family: var(--f-satoshi); font-weight: 400; font-size: 18px; line-height: 1.5; color: var(--c-text); }
.site-footer__arrow { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; transition: transform 0.2s var(--ease-out); }
.site-footer__arrow svg { width: 14px; height: 13px; }
.site-footer__copy { padding: 0 60px; font-family: var(--f-satoshi); font-weight: 400; font-size: 16px; line-height: 1.2; text-align: center; color: var(--c-ink-60); }
@media (max-width: 767px) {
  .cta-final { padding: 0 0 10px; }
  .cta-final__container { gap: 37px; padding: 19px 10px; }
  /* live 375 (identical on every page): 355x346 card, padding 41/24/16, gap 36, content centred (10px slack above/below),
     title 307px wide, 50px button. Selectors carry extra specificity so the pages' unscoped desktop overrides
     (body.page-x .cta-final__card {...}) do not leak into the phone layout. */
  .cta-final .cta-final__container .cta-final__card { width: 100%; min-height: 346px; margin: 0; gap: 36px; padding: 41px 24px 16px; justify-content: center; border-radius: var(--r-md); }
  .btn--dark { min-width: 0; }
  .cta-final .cta-final__container .cta-final__head { max-width: 100%; padding: 10px 0 0; }
  .cta-final .cta-final__container .cta-final__title { max-width: 100%; font-size: 48px; line-height: 0.9; letter-spacing: -0.04em; color: var(--c-text); overflow-wrap: anywhere; }
  .cta-final__bottom { width: 100%; }
  .cta-final .cta-final__container .cta-final__bottom .btn { width: 100%; min-height: 50px; }
  .site-footer__social { flex-direction: column; gap: var(--sp-6); padding: 0; }
  .site-footer__link { width: 100%; flex: none; min-width: 0; padding: 0 0 15px 10px; }
  .site-footer__copy { padding: 0; font-size: 15px; line-height: 18px; white-space: nowrap; max-width: 100%; overflow: hidden; } /* live mobile: Satoshi 15/18, 355px box */
}

/* ---------- Appear animation ---------------------------------------------- */
[data-appear] { opacity: 0; transform: translateY(32px); transition: opacity var(--appear-dur) var(--ease-out), transform var(--appear-dur) var(--ease-out); will-change: opacity, transform; }
[data-appear].is-visible { opacity: 1; transform: none; }
[data-appear="fade"] { transform: none; }
[data-appear="up-lg"] { transform: translateY(64px); }
[data-appear="scale"] { transform: scale(0.94); }
[data-appear].is-visible[data-appear-delay] { transition-delay: var(--appear-delay, 0s); }
@media (prefers-reduced-motion: reduce) {
  [data-appear] { opacity: 1; transform: none; transition: none; }
  .site-nav__panel, .mobile-menu, .mobile-menu__panel, .faq__a, .faq__icon { transition: none; }
}
.no-js [data-appear] { opacity: 1; transform: none; }

/* footer lives inside .cta-final__container as a flex child list */
.cta-final .site-footer { display: contents; }
.results__logo--utn { width: 160px; height: 99px; filter: brightness(1.82); }
.results__logo--utn svg { width: 125px; height: 32px; }
.results__logo--junin { width: 172px; height: 105px; filter: brightness(1.91); }
.results__logo--junin img { width: 105px; height: 34px; object-fit: cover; }
