/* =========================
   Variables de marca
========================= */
:root {
  --c-blue: #1A44E9;
  --c-blue-dark: #0E2461;
  --c-blue-deeper: #07173D;
  --c-blue-soft: #ECF1FF;
  --c-dark: #0A0A0A;
  --c-text: #1B2A4E;
  --c-muted: #5B6A8C;
  --c-white: #ffffff;
  --radius: 10px;
}

/* Reset base */
* { box-sizing: border-box; }

/* Helvetica Neue para parrafos / body */
html, body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body:before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    width: 1px;
    height: 100%;
    background: #C3C3C3;
    z-index: 9;
}
body:after {
    content: '';
    position: absolute;
    top: 0;
    right: 30px;
    width: 1px;
    height: 100%;
    background: #C3C3C3;
    z-index: 9;
}
 
/* Cursiva para enfasis (mantenemos el nombre de la clase) */
.italic-serif {
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  font-weight: 600;
}
h2 span:not(.split-line-inner){
    font-weight: 700 !important;
}
h2{
    line-height: 1.2 !important;
}
/* Open Sans para titulos y botones */
h1, h2, h3, h4, h5, h6,
.btn-clarity, .btn-ghost, .btn-rounded,
.site-header .brand, .site-header .nav-link {
  font-family: 'Open Sans', sans-serif;
}

.text-blue-dark { color: var(--c-blue-dark); }
.text-blue { color: var(--c-blue); }

/* Botones planos */
.btn-clarity {
  background: var(--c-blue-dark);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background-color .25s ease, color .25s ease;
}
.btn-clarity:hover { background: #000; color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--c-blue-dark);
  border: 1.5px solid var(--c-blue-dark);
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background-color .25s ease, color .25s ease;
}
.btn-ghost:hover { background: var(--c-blue-dark); color: #fff; }

/* =========================
   HEADER fixed con logo que escala con scroll (estilo ampevino)
========================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 17px 0;
  pointer-events: none;
  transition: background-color .3s ease, padding .3s ease, backdrop-filter .3s ease;
}
.site-header > .container > .row > [class^="col"] { pointer-events: auto; }
.site-header .nav-link {
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 0;
}
.site-header .nav-link:hover { color: #fff; text-decoration: underline; }

/* Logo SVG inline: hereda el color via fill: currentColor */
.site-header .brand {
  display: inline-block;
  width: 100px;
  color: #fff;
  transform-origin: center center;
  transition: color .3s ease;
}
.site-header .brand svg {
  width: 100%;
  height: auto;
  display: block;
  fill: currentColor;
  shape-rendering: geometricPrecision;
}

/* Modo compacto con efecto glass tipo Apple */
.site-header.is-compact {
  background-color: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(14, 36, 97, 0.08);
}
.site-header.is-compact .brand { color: var(--c-blue-dark); }
.site-header.is-compact .nav-link { color: var(--c-blue-dark); }
.site-header.is-compact .nav-link:hover { color: var(--c-blue); }

/* =========================
   HERO — pantalla completa, video de fondo
   El logo "clarity" NO esta en el hero: vive en el header y escala con scroll
========================= */
.hero {
  background: var(--c-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-video-wrap {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}
.hero-video-wrap video,
.hero-video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.55);
}

/* Copy del hero — overlay abajo-izquierda. Aparece via GSAP timeline durante el scroll */
.hero-copy {
  position: absolute;
  left: 60px;
  bottom: 80px;
  max-width: 540px;
  z-index: 3;
  color: #fff;
  pointer-events: none;
  /* Estado inicial: invisible. GSAP lo anima con el timeline del hero */
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}
.hero-copy__title {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(48px, 5vw, 88px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}
.hero-copy__text {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 1.45;
  color: #fff;
  margin: 0;
}
@media (max-width: 768px) {
  .hero-copy { left: 24px; right: 24px; bottom: 48px; max-width: none; }
  .hero-copy__title { font-size: 44px; }
  .hero-copy__text { font-size: 16px; }
}

/* =========================
   INTRO STATEMENT (estilo ouro labs)
   Pantalla completa con texto que se rellena palabra a palabra
========================= */
.intro-statement {
  background: var(--c-blue);
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
}
.intro-statement .reveal-text {
font-size: clamp(28px, 5.4vw, 69px);
    line-height: 1.1;
    font-weight: 400; 
    margin: 0 auto 56px; 
}
/* Estado inicial de cada palabra; GSAP anima el color con scrub */
.intro-statement .reveal-word {
  color: rgba(255, 255, 255, 0.22);
  display: inline-block;
  margin-right: 0.22em;
}
.intro-statement .reveal-word.italic-serif {
  color: rgba(255, 255, 255, 0.28);
}

/* Botones redondeados (Bootstrap .btn base + variantes custom) */
.btn-rounded {
  border: none;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 999px;
  min-width: 200px;
  transition: background-color .25s ease, color .25s ease;
}
/* Variante azul claro */
.btn-bluelight {
  background: #ADD0F7;
  color: var(--c-blue);
border: 2px solid transparent;
}
.btn-bluelight:hover,
.btn-bluelight:focus {
  background: var(--c-blue);
  color: #ADD0F7;
  border: 2px solid #ADD0F7;
}
/* Variante azul oscuro */
.btn-bluedark {
  background: var(--c-blue);
  color: #ADD0F7;
}
.btn-bluedark:hover,
.btn-bluedark:focus {
  background: #ADD0F7;
  color: var(--c-blue);
}
.container-fluid{
    padding: 0px 30px;
}
/* =========================
   RENEWED LEADERS — 2 columnas col-md-6
========================= */
.renewed {
    background: linear-gradient(0deg, #ADD0F7 0%, #FCFCFC 100%);
    padding: 0px;
    position: relative;
    padding-bottom: 40px;
}
/* Linea horizontal superior decorativa (movida desde style inline del blade) */
.renewed:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #C3C3C3;
    z-index: 9999;
}
.renewed-row{
    border-bottom: 1px solid #C3C3C3;
    min-height: 86vh;
}
.renewed-text{
    padding: 0 80px;
}
.renewed-text p{
    font-size: 20px;
    line-height: 1.7;
    width: 80%;
}

.renewed-left {
    padding-left: 120px;
    padding-top: 100px;
}
.renewed h2 {
  font-size: clamp(32px, 3vw, 42px);
  color: var(--c-blue);
  line-height: 1.15;
  margin: 0;
}
.renewed-right {
    padding-top: 100px;
  padding-left: 0px; 
  border-left: 1px solid #C3C3C3;
  display: flex;
  flex-direction: column;
}
  
.renewed-buttons {
  margin-top: auto;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
}
.renewed-btn {
display: flex;
    align-items: center;
    justify-content: space-between;
    color: #5C5C5C;
    padding: 15px 80px;
    text-decoration: none;
    font-size: 32px;
    font-weight: 400;
    border-top: 1px solid #C3C3C3;
    transition: color .25s ease;
}
.renewed-btn:last-child { border-bottom: 0px solid rgba(27, 63, 224, 0.25); }
.renewed-btn .arrow {
  font-size: 22px;
  color: var(--c-blue);
}
.renewed-btn:hover { color: var(--c-blue-dark); }

@media (max-width: 767.98px) {
  .renewed-row { min-height: auto; }
  .renewed-left { padding: 0 0 32px 0; }
  .renewed-right { padding: 32px 0 0 0; border-left: none; border-top: 1px solid var(--c-blue); }
}

/* =========================
   THREE WAYS (sticky)
========================= */
.engage {
    background: white;
        padding-top: 60px;
        padding-bottom: 80px;
        margin-top: 40px;
        max-width: calc(100% - 90px);
        margin: 40px auto 0px;
}
.engage-header { margin-bottom: 20px; }
.engage-header h2 {
  font-size: clamp(34px, 3.8vw, 52px);
  color: var(--c-blue);
  line-height: 1.05;
}
.engage-sticky {
  position: sticky;
  top: 0px;
  background: white;
  z-index: 20;
  padding: 24px 0 16px;
}
.engage-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
}
.engage-tabs li {
  flex: 1;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  color: #5C5C5C;
  transition: color .25s ease;
}
.engage-tabs .tab-line {
  display: block;
  height: 2px;
  background: rgba(14,36,97,0.2);
  margin-bottom: 14px;
  transition: background-color .25s ease;
}
.engage-tabs .tab-label {
font-size: 26px;
    font-weight: 400;
}
.engage-tabs li.active { color: var(--c-blue); }
.engage-tabs li.active .tab-line { background: var(--c-blue); }
.engage-tabs li.active .tab-label { font-weight: 600; }

.engage-panel {
  padding: 80px 0;
  min-height: 70vh;
}
.engage-panel h3 {
  font-size: clamp(28px, 2.6vw, 38px);
  color: var(--c-blue-dark);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 80%;
}
.engage-panel p {
  color: var(--c-text); 
  max-width: 80%;
  margin-bottom: 39px;
  font-size: 19px !important;
}

/* Wrapper con overflow:hidden para el parallax interno de imagenes */
.engage-media-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 3;
  border-radius: var(--radius);
  overflow: hidden;
}
.engage-media-wrap.engage-tall { aspect-ratio: 3 / 4; }
.engage-media,
.engage-media-wrap > .engage-parallax {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  display: block;
  will-change: transform;
}

/* Row de 3 imagenes verticales con parallax interno */
.engage-image-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  width: 100%;
}
.engage-image-row .engage-media-wrap { flex: 1; }

/* Swiper del panel Retreat */
.engage-swiper0,
.engage-swiper {
  width: 100%;
  overflow: hidden;
}
.engage-swiper0 .swiper-slide,
.engage-swiper .swiper-slide {

  overflow: hidden;
  background: #ddd;
}
.engage-swiper0 .swiper-slide img,
.engage-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   PARALLAX SECTION — bg pinned + 2 contenidos (estilo nextsense)
========================= */
.parallax-section {
  position: relative;
  background: #0A0A0A;
  color: #fff;
  overflow: hidden;
}
 
.parallax-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.5);
}
.parallax-block {
  height: 100vh;
  position: relative;
  z-index: 2;
  display: flex;
  padding: 80px 0;
}
.parallax-block.parallax-top { align-items: flex-start; }
.parallax-block.parallax-bottom { align-items: flex-end; }
.parallax-block h2 {
  font-size: clamp(34px, 3.6vw, 52px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 22px;
}
.parallax-block p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  line-height: 1.7;
  max-width: 540px;
}
.leave-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.leave-list li {
  padding: 6px 0 6px 18px;
  font-size: 18px;
  color: rgba(255,255,255,0.95);
  max-width: 560px;
  position: relative;
}
.leave-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #fff;
  font-size: 15px;
}

/* =========================
   TESTIMONIOS — dos pantallas 100vh estilo nextsense
========================= */
.testimonials-intro,
.testimonials-cards {
  background: var(--c-blue);
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}
.testimonials-intro .intro-text {
  will-change: opacity, filter;
  text-align: center;
}
.testimonials-intro h2 {
  font-size: clamp(28px, 7.8vw, 60px);
  color: #ADD0F7;
  font-weight: 400;
  line-height: 1.35;
  margin: 0 auto 22px;
  text-align: center;
}
.testimonials-intro h2 .italic-serif {
  color: #ADD0F7;
  font-weight: 700;
  font-style: italic;
  font-family: 'Open Sans', sans-serif;
}
.testimonials-intro .sub {
  color: rgba(255,255,255,0.78);
  font-size: 21px;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.55;
}
.testimonials-cards h3 {
  color: #fff;
  text-align: center;
  font-size: clamp(24px, 2.4vw, 34px);
  margin-bottom: 48px;
}
.testimonial-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.testimonial-card {
  position: relative;
  width: 240px;
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0E2461;
  cursor: pointer;
  transition: width .45s ease;
}
.testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial-card .badge-num {
  position: absolute;
  top: 14px; left: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background: rgba(0,0,0,0.45);
  padding: 2px 8px;
  border-radius: 4px;
}
.testimonial-card .meta {
  position: absolute;
  left: 14px; bottom: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-card .plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--c-blue-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
}
.testimonial-card .quote-body {
  position: absolute;
  inset: 0;
  background: rgba(7, 23, 61, 0.92);
  color: #fff;
  padding: 28px 24px 70px;
  opacity: 0;
  transition: opacity .35s ease;
  display: flex;
  align-items: center;
}
.testimonial-card .quote-body p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
.testimonial-card.is-open { width: 460px; }
.testimonial-card.is-open .quote-body { opacity: 1; }

/* =========================
   LENS + CALLING (cards)
========================= */
.lens {
  background: var(--c-blue);
  padding: 120px 0;
}
.lens-card {
  position: relative;
  background: #1E3AA7;
  color: #fff;
  padding: 48px 40px;
  border-radius: var(--radius);
  height: 100%;
  cursor: pointer;
  overflow: hidden;
  transform-origin: center center;
  transition: transform .35s ease;
}
/* Wrapper del video que cubre toda la card al hacer hover */
.lens-card-media { 
  inset: 0;
  z-index: 0; 
  transition: opacity .35s ease;
}
.lens-card-media .lens-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Body por encima del video, padding intacto */
.lens-card-body {
  position: relative;
  z-index: 1;
}
.lens-card .eyebrow {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 13px;
}
.lens-card h3 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}
.lens-card p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.86);
  margin-bottom: 28px;
}
/* Hover: la card crece y el video se vuelve visible */
.lens-card:hover {
  transform: scale(1.03);
}
.lens-card:hover .lens-card-media {
  opacity: 1;
}

/* =========================
   LEAD SLIDER — pinned con scroll horizontal (estilo seed.com)
========================= */
.lead-slider {
  background: linear-gradient(180deg, #ECF1FF 0%, #C9D6FF 100%);
  overflow: hidden;
  position: relative;
}
.lead-slider .lead-slider-inner {
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 60px;
}
.lead-slider h2 {
  color: var(--c-blue-dark);
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 60px;
  max-width: 520px;
  line-height: 1.1;
}
.slider-track {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: nowrap;
  will-change: transform;
}
.slider-track li {
  flex: 0 0 auto;
  overflow: hidden; 
  transition: transform .4s ease;
  cursor: pointer;
  position: relative;
}
.slider-track li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.slider-track li:hover img { transform: scale(1.06); }

.slider-track .shape-circle {
width: 15%;
}
.slider-track .shape-tall {
  width: 220px;
  height: 320px;
  border-radius: 10px;
}
.slider-track .shape-wide {
  width: 320px;
  height: 240px;
  border-radius: 10px;
}
.slider-track .shape-quote {
  width: 280px;
  height: 240px;
  border-radius: 10px;
  background: #fff;
  color: var(--c-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  font-size: 14px;
  line-height: 1.5;
}
.slider-track .shape-quote strong { display: block; margin-top: 12px; font-weight: 700; }

.slider-controls {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 40px;
}
.slider-controls button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(14, 36, 97, 0.3);
  background: transparent;
  color: var(--c-blue-dark);
  font-size: 18px;
  cursor: pointer;
}
.slider-controls button:hover { background: var(--c-blue-dark); color: #fff; }

/* =========================
   FOOTER reveal — replica del PDF con lineas divisorias
========================= */
.main-wrap {
  position: relative;
  z-index: 2;
  /* Aisla el stacking context para que ningun descendiente con transform,
     will-change o position:fixed (pins de ScrollTrigger) deje colarse al
     footer fixed por encima del contenido. No usamos background aqui
     porque el .footer-spacer debe quedar transparente para revelar el footer */
  isolation: isolate;
  pointer-events: none;
}
.main-wrap > section,
.main-wrap > div:not(.footer-spacer) {
  pointer-events: auto;
}
body { background: var(--c-blue); }

.reveal-footer {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: var(--c-blue);
  color: #fff;
  z-index: 1;
  padding: 0px 0 0px; 
}
.footer-top { padding-bottom: 0px; }
.footer-brand-col { padding-right: 32px; padding-top: 60px;}
.footer-links-col {
  padding-left: 48px;
  border-left: 1px solid #c3c3c3;
  min-height: 130px;
  padding-top: 60px;
  padding-bottom: 120px;
}
.footer-logo {
  font-family: 'Open Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 14px;
}
.footer-copy {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}
.footer-col {
    padding: 0 10px;
        display: flex;
        flex-direction: column;
}
.footer-col h6 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 12px;
}
.footer-col a {
  /* Layout original preservado: block, sin overflow ni line-height extra */
  position: relative;
  display: inline-block;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 16px;
  padding: 3px 0;
width: fit-content;
}
.reveal-footer:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 175px;
    width: 100%;
    height: 1px;
    background: #C3C3C3;
    transition: transform 0.45s ease;
}
/* Linea que solo aparece en hover: entra desde la izquierda y sale por la derecha */
.footer-col a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #C3C3C3;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s ease;
}
.footer-col a:hover {
  color: #fff;
}
.footer-col a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.footer-divider {
  height: 1px;
  width: 100%;
  background: rgba(255,255,255,0.4);
  margin: 0;
}
.footer-bigtext {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(70px, 8.5vw, 240px);
  font-weight: 800;
  color: #ADD0F7;
  line-height: 1;
  padding: 30px 0 0;
  white-space: nowrap;
  overflow: hidden;
}
.footer-spacer {
  /* La altura se sincroniza por JS con la altura real del footer fixed */
  height: var(--footer-h, 560px);
  pointer-events: none;
}

/* =========================
   Animaciones reveal — titulos roll-up y soporte wow.js
========================= */
/* Estado inicial del titulo: invisible hasta que SplitText divide y JS marca is-ready */
.reveal-title {
  visibility: hidden;
}
.reveal-title.is-ready {
  visibility: visible;
}
/* SplitText agrega .split-line a cada linea; el mask se aplica con overflow hidden */
.reveal-title .split-line,
.split-line {
  overflow: hidden;
  display: block;
}
/* Los parrafos con wow se mantienen ocultos hasta que wow.js dispara la animacion */
.wow {
  visibility: hidden;
}
/* Refuerzo del mascarado por linea para animate.css fadeInUp */
.animated.fadeInUp,
.animated.fadeIn {
  visibility: visible;
}

/* =========================
   Responsive global
========================= */
@media (max-width: 991px) {
  .renewed, .engage, .lens, .lead-slider, .testimonials-intro, .testimonials-cards { padding: 80px 0; }
  .parallax-block { padding: 110px 0; }
  .engage-tabs li { font-size: 13px; }
  .testimonial-card { width: 100%; max-width: 320px; }
  .testimonial-card.is-open { width: 100%; max-width: 320px; }
  .slider-track { overflow-x: auto; justify-content: flex-start; padding: 0 20px; }
  .footer-bigtext { white-space: normal; }
  .reveal-footer { position: relative; min-height: auto; }
  .footer-spacer { display: none; }
  .main-wrap { z-index: auto; }
  .site-header { padding: 14px 0; }
}
