/* By Mac Landing — Dark Premium (mobile + desktop) */
:root{
  --bg:#070B12;
  --bg2:#0B1220;
  --stroke:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.66);
  --muted2:rgba(255,255,255,.52);
  --accent:#7AA7FF;
  --accent2:#2A61FF;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 24px;
  --container: 1140px;
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 600px at 60% -10%, rgba(122,167,255,.18), transparent 60%),
              radial-gradient(900px 500px at 10% 30%, rgba(42,97,255,.10), transparent 55%),
              linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  overflow-x:hidden;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.container{ width:min(var(--container), calc(100% - 40px)); margin:0 auto; }

.grain{
  pointer-events:none;
  position:fixed; inset:0;
  opacity:.06;
  mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  background-size:160px 160px;
  z-index:0;
}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(7,11,18,.35);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
  transition: all .25s ease;
}
.topbar.isShrink{
  background:rgba(7,11,18,.60);
  border-bottom:1px solid rgba(255,255,255,.09);
}
.topbar__inner{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; }
.brand{ display:flex; align-items:baseline; gap:8px; letter-spacing:-.02em; }
.brand__mark{ opacity:.92; font-size:18px; }
.brand__name{ font-weight:700; font-size:18px; }
.brand__sub{ font-size:12px; color:var(--muted2); margin-left:4px; }

.nav{ display:none; gap:18px; }
.nav__link{
  font-size:13px; color:var(--muted);
  position:relative; padding:6px 2px;
}
.nav__link::after{
  content:""; position:absolute; left:0; right:100%; bottom:0;
  height:1px; background:rgba(122,167,255,.7);
  transition:right .18s ease;
}
.nav__link:hover{ color:var(--text); }
.nav__link:hover::after{ right:0; }

.topbar__actions{ display:flex; gap:10px; align-items:center; }
.burger{
  width:40px; height:40px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  border-radius:12px;
  display:inline-flex; flex-direction:column; justify-content:center; align-items:center;
  gap:5px;
}
.burger span{ width:18px; height:2px; background:rgba(255,255,255,.75); border-radius:99px; }
@media (min-width: 900px){ .nav{ display:flex; } .burger{ display:none; } }

/* Mobile menu */
.mobileMenu{
  border-top:1px solid rgba(255,255,255,.06);
  background:rgba(7,11,18,.72);
  backdrop-filter: blur(10px);
}
.mobileMenu__inner{ padding:14px 0 18px; display:grid; gap:10px; }
.mobileMenu__link{
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  background:rgba(255,255,255,.04);
}
.mobileMenu__cta{ padding-top:6px; display:grid; gap:10px; }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  border-radius:14px;
  padding:12px 14px;
  font-weight:600;
  font-size:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--text);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 14px 40px rgba(0,0,0,.35); }
.btn:active{ transform: translateY(0px); }
.btn--primary{
  border-color: rgba(122,167,255,.35);
  background: linear-gradient(180deg, rgba(122,167,255,.28), rgba(42,97,255,.18));
}
.btn--primary:hover{
  border-color: rgba(122,167,255,.55);
  background: linear-gradient(180deg, rgba(122,167,255,.32), rgba(42,97,255,.22));
}
.btn--ghost{ background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.10); color: rgba(255,255,255,.86); }
.btn--ig{ border-color: rgba(122,167,255,.22); }
.btn--ig:hover{ border-color: rgba(122,167,255,.42); }
.btn--sm{ padding:10px 12px; font-size:13px; border-radius:12px; }
.btn--lg{ padding:14px 18px; border-radius:16px; font-size:15px; }

/* Hero */
.hero{ position:relative; padding: 60px 0 22px; z-index:1;  overflow:hidden; }
.hero__bg{
  position:absolute; inset:-80px;
  background: url("./assets/img/office-hero.jpg") center/cover no-repeat;
  filter: saturate(1.05) contrast(1.08) brightness(.62);
  transform: translateZ(0);
}
.hero__overlay{
  position:absolute; inset:-80px;
  background: radial-gradient(900px 520px at 20% 40%, rgba(7,11,18,.45), rgba(7,11,18,.92)),
              linear-gradient(180deg, rgba(7,11,18,.55), rgba(7,11,18,1));
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items:center;
  padding: 18px 0 10px;
}
@media (min-width: 980px){
  .hero{ padding: 86px 0 34px; }
  .hero__inner{ grid-template-columns: 1.05fr .95fr; gap: 28px; }
}

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.78);
  font-size:12px;
}
.h1{
  margin:14px 0 10px;
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.04;
  letter-spacing: -0.04em;
}
.lead{
  margin:0 0 16px;
  font-size: 16px;
  line-height:1.55;
  color: var(--muted);
  max-width: 62ch;
}
.hero__cta{ display:flex; gap:10px; flex-wrap:wrap; }
.metaRow{ margin-top:14px; }
.metaRow__item{ display:flex; align-items:center; gap:10px; font-size:12px; color:var(--muted2); }
.dot{ width:6px; height:6px; border-radius:99px; background: rgba(122,167,255,.85); box-shadow: 0 0 18px rgba(122,167,255,.55); }

.hero__trust{ margin-top:16px; display:flex; flex-wrap:wrap; gap:8px; }
.trustTag{
  font-size:12px;
  color: rgba(255,255,255,.78);
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

.hero__media{ position:relative; display:grid; gap:10px; justify-items:start; }
.mediaStack{ display:grid; gap:10px; width:100%; }
.mediaCard{
  position:relative;
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  transform: translateZ(0);
}
.mediaCard img{ width:100%; height:auto; object-fit:cover; }

.mediaCard--wide img{ aspect-ratio: 16/10; }
@media (min-width: 980px){
  .mediaCard--wide img{ aspect-ratio: 16/9; }
}
.mediaBadge--overlay{
  margin-top: 12px;
  margin-left: 0;
  align-self: start;
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
}
.mediaCard--small img{ aspect-ratio: 16/9; }
.mediaCard--tall img{ aspect-ratio: 4/3; }

.mediaCard__shine{
  pointer-events:none;
  position:absolute; inset:-20%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.18), transparent 35%);
  opacity:0;
  transition: opacity .22s ease;
}
.mediaCard:hover .mediaCard__shine{ opacity:0; }

.mediaBadge{
  width: fit-content;
  padding:12px 14px;
  border-radius: 16px;
  border:1px solid rgba(122,167,255,.22);
  background: rgba(7,11,18,.55);
  backdrop-filter: blur(10px);
}
.mediaBadge__title{ display:block; font-weight:700; letter-spacing:-.02em; }
.mediaBadge__sub{ display:block; font-size:12px; color:var(--muted2); margin-top:3px; }


/* Solid fade at the bottom of hero to avoid any visual bleed into the next section */
.hero::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-1px;
  height:56px;
  background: linear-gradient(180deg, rgba(7,11,18,0), rgba(7,11,18,1));
  pointer-events:none;
}

/* Sections */
.section{ padding: 46px 0; position:relative; z-index:1; }
.section__head{ display:flex; align-items:flex-end; justify-content:space-between; gap:14px; flex-wrap:wrap; margin-bottom:16px; }
.h2{ margin:0; font-size: clamp(24px, 2.4vw, 34px); letter-spacing:-0.03em; }
.h3{ margin:0 0 6px; font-size:16px; letter-spacing:-.02em; }
.muted{ color:var(--muted); }

.cards{ display:grid; gap:12px; grid-template-columns: 1fr; }
@media (min-width: 720px){ .cards{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px){ .cards{ grid-template-columns: repeat(4, 1fr); } }

.card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 16px 14px 14px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
  border-color: rgba(122,167,255,.24);
}
.card__icon{
  width:38px; height:38px;
  border-radius: 12px;
  display:inline-flex; align-items:center; justify-content:center;
  margin-bottom:10px;
  background: rgba(122,167,255,.12);
  border:1px solid rgba(122,167,255,.18);
  color: rgba(255,255,255,.86);
}

.ctaPanel{
  border-radius: var(--radius2);
  border:1px solid rgba(122,167,255,.16);
  background: radial-gradient(700px 260px at 10% 20%, rgba(122,167,255,.12), transparent 55%),
              rgba(255,255,255,.04);
  padding: 18px;
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.ctaPanel__right{ display:flex; gap:10px; flex-wrap:wrap; }

/* Split */
.split{ display:grid; gap:16px; grid-template-columns: 1fr; align-items:center; }
@media (min-width: 980px){
  .split{ grid-template-columns: 1fr 1fr; gap:24px; }
  .split--reverse .split__media{ order:2; }
  .split--reverse .split__copy{ order:1; }
}
.bullets{ margin:14px 0 0; padding-left: 18px; color: rgba(255,255,255,.78); }
.bullets li{ margin:8px 0; }

.mapCard{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  min-height: 320px;
}
.mapCard iframe{ width:100%; height: 360px; border:0; filter: grayscale(.2) contrast(1.05) brightness(.95); }

/* Warranty */
.warrantyGrid{ display:grid; gap:12px; grid-template-columns: 1fr; }
@media (min-width: 900px){ .warrantyGrid{ grid-template-columns: repeat(3, 1fr); } }
.wBox{
  padding:16px 14px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}

/* Final CTA */
.finalCta{
  padding: 52px 0;
  background: radial-gradient(900px 320px at 20% 30%, rgba(122,167,255,.16), transparent 55%);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.finalCta__inner{ display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.finalCta__actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* Footer */
.footer{ padding: 26px 0 38px; }
.footer__inner{ display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap; }
.footer__brand{ display:flex; align-items:baseline; gap:8px; }
.footer__muted{ color:var(--muted2); font-size:12px; margin-left:4px; }
.footer__links{ display:flex; gap:14px; flex-wrap:wrap; color:var(--muted2); font-size:13px; }
.footer__links a:hover{ color:var(--text); }
.footer__small{ font-size:12px; color:var(--muted2); }

/* Floating WhatsApp */
.waFloat{
  position:fixed; right: 18px; bottom: 18px; z-index: 60;
  display:flex; align-items:center; gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(15,22,34,.70);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  transition: transform .18s ease, border-color .18s ease;
}
.waFloat:hover{ transform: translateY(-2px); border-color: rgba(37,211,102,.45); }
.waFloat__icon{
  width:34px; height:34px; border-radius: 999px;
  display:inline-flex; align-items:center; justify-content:center;
  background: rgba(37,211,102,.16);
  border: 1px solid rgba(37,211,102,.25);
}
.waFloat__label{ font-size:13px; color: rgba(255,255,255,.86); display:none; }
@media (min-width: 720px){ .waFloat__label{ display:inline; } }

/* Reveal */
.reveal{ opacity:0; transform: translateY(12px); transition: opacity .55s ease, transform .55s ease; }
.reveal.isVisible{ opacity:1; transform: translateY(0px); }

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ transition:none; }
  .btn, .card{ transition:none; }
}

/* Gallery */
.gallery .sectionHead{ margin-bottom: 14px; }
.galleryGrid{
  display:flex;
  gap:14px;
  overflow-x:auto;
  padding: 6px 2px 10px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling: touch;
}
.galleryGrid::-webkit-scrollbar{ height: 8px; }
.galleryGrid::-webkit-scrollbar-thumb{ background: rgba(255,255,255,.10); border-radius: 99px; }
.galleryItem{
  flex: 0 0 auto;
  width: 74vw;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease;
}
.galleryItem img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
@media (hover:hover){
  .galleryItem:hover{ transform: translateY(-2px); border-color: rgba(255,255,255,.18); }
}
@media (min-width: 980px){
  .galleryGrid{
    display:grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 16px;
    overflow: visible;
    padding: 0;
    scroll-snap-type:none;
  }
  .galleryItem{ width: 100%; max-width:none; }
}

.galleryCtaRow{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* Lightbox */
.lightbox{ position: fixed; inset:0; z-index: 999; display:none; }
.lightbox.is-open{ display:block; }
.lightbox__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.70);
  backdrop-filter: blur(6px);
}
.lightbox__dialog{
  position:absolute;
  left:50%; top:50%;
  transform: translate(-50%, -50%);
  width: min(980px, 92vw);
  max-height: 86vh;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(7,11,18,.86);
  box-shadow: 0 30px 120px rgba(0,0,0,.65);
}
.lightbox__img{
  width:100%;
  height: calc(86vh - 72px);
  max-height: 74vh;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,.02);
}
.lightbox__close{
  position:absolute;
  right: 10px; top: 10px;
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  cursor:pointer;
}

/* Showcase Carousel (Apple-like, minimal) */
.sectionHead--tight{ margin-bottom: 10px; }
.carousel{
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 24px 90px rgba(0,0,0,.45);
  overflow: hidden;
}
.carousel__track{
  display:flex;
  gap: 12px;
  padding: 12px;
  will-change: transform;
  animation: carouselScroll var(--carouselSpeed, 38s) linear infinite;
}
.carousel:hover .carousel__track{ animation-play-state: paused; }
@media (prefers-reduced-motion: reduce){
  .carousel__track{ animation: none; overflow-x:auto; scroll-snap-type:x mandatory; }
}
.carouselCard{
  flex: 0 0 auto;
  width: clamp(160px, 56vw, 280px);
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.carouselCard img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.carousel__fade{
  position:absolute; top:0; bottom:0;
  width: 86px;
  pointer-events:none;
  z-index: 2;
}
.carousel__fade--left{ left:0; background: linear-gradient(90deg, rgba(7,11,18,1), rgba(7,11,18,0)); }
.carousel__fade--right{ right:0; background: linear-gradient(270deg, rgba(7,11,18,1), rgba(7,11,18,0)); }

.showcaseCtaRow{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}


@media (min-width: 980px){
  .carousel__track{ gap: 14px; padding: 14px; }
  .carouselCard{ width: clamp(220px, 22vw, 360px); }
}


@media (max-width: 420px){
  .carouselCard{ aspect-ratio: 3 / 4; }
}

@keyframes carouselScroll{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* Snap Carousel (mobile-first, swipe + gentle auto-advance) */
.snapCarousel{ margin-top: 18px; max-width: 980px; margin-left: auto; margin-right: auto; }
.snapCarousel__viewport{
  display:flex;
  /* One photo at a time (no "peek" of next/prev) */
  gap: 0;
  overflow-x: auto;
  padding: 14px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: 18px;
  border: none; /* remove outer frame line */
  background: rgba(10,14,26,.55);
  box-shadow: 0 22px 70px rgba(0,0,0,.55);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;

  /* Narrower, more "vitrine" feel */
  max-width: 860px;
  margin: 0 auto;
}
.snapCarousel__viewport::-webkit-scrollbar{ display:none; }

/* Single-item frame: card always ocupa a largura do viewport (sem cortes laterais) */
.snapCarousel__card{
  flex: 0 0 auto;
  width: 100%;
  max-width: 860px;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow:hidden;
  scroll-snap-align: center;
  border: none; /* remove main photo frame line */
  background: rgba(0,0,0,.22);
  position: relative;
}

/* Preenchimento igual ao exemplo: a foto principal fica inteira (sem corte)
   e as laterais recebem um blur do próprio frame para evitar faixas vazias. */
.snapCarousel__card::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--snapBg);
  background-size: cover;
  background-position: center;
  filter: blur(18px);
  transform: scale(1.08);
  opacity: .55;
}
.snapCarousel__card::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 90% at 50% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,.22) 65%, rgba(0,0,0,.44) 100%);
  opacity: .9;
}
.snapCarousel__card img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  display:block;
}

/* Progress bar (inside the active photo — estilo Stories) */
.snapCarousel__progress{
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  overflow: hidden;
  opacity: 0;
  transform: translateZ(0);
  transition: opacity .18s ease;
  z-index: 2;
}
.snapCarousel__progressFill{
  position:absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: rgba(255,255,255,.75);
}
@keyframes snapFill{ from{ transform: scaleX(0); } to{ transform: scaleX(1); } }
.snapCarousel__card.isActive .snapCarousel__progress{ opacity: 1; }
.snapCarousel__card.isActive .snapCarousel__progressFill{
  animation: snapFill var(--snapDur, 2600ms) linear forwards;
}

/* Freeze timer on hover/interaction (JS toggles .isPaused on .snapCarousel) */
.snapCarousel.isPaused .snapCarousel__progressFill{ animation-play-state: paused; }

/* Miniaturas (rodapé) */
.snapCarousel__thumbs{
  display:flex;
  gap: 10px;
  margin-top: 12px;
  padding: 0 12px 2px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.snapCarousel__thumbs::-webkit-scrollbar{ display:none; }

.snapCarousel__thumb{
  flex: 0 0 auto;
  width: 78px;
  height: 56px;
  border-radius: 14px;
  border: none; /* remove thumbnail frame line */
  background: rgba(0,0,0,.18);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.38);
}
.snapCarousel__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  transform: translateZ(0);
}
.snapCarousel__thumb.isActive{
  /* keep a subtle emphasis without a visible outline */
  box-shadow: 0 14px 34px rgba(0,0,0,.48);
  transform: translateY(-1px);
}

@media (max-width: 520px){
  /* Mobile density: reduce above-the-fold payload */
  .hero{ padding: 46px 0 14px; }
  .hero__inner{ gap: 14px; padding: 10px 0 6px; }

  .pill{ padding: 8px 10px; font-size: 11px; }
  .h1{ margin: 10px 0 8px; font-size: 32px; line-height: 1.06; }

  /* Keep the lead, but clamp so the hero doesn't get too tall */
  .lead{
    font-size: 14px;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Remove secondary meta rows on mobile (too verbose) */
  .metaRow{ display:none; }
  .hero__trust{ display:none; }

  /* Make CTAs feel tighter */
  .hero__cta{ gap: 8px; }

  /* Reduce hero image height slightly */
  .mediaCard--wide img{ aspect-ratio: 16/9; }

  .snapCarousel__viewport{ gap: 0; padding: 10px; }
  .snapCarousel__card{ width: 100%; aspect-ratio: 4 / 3; }

  /* SnapCarousel polish: remove edge artifacts ("rebarbas") */
  .snapCarousel{ position: relative; }
  .snapCarousel__viewport{ position: relative; }
  .snapCarousel__card{ border: none; }
  .snapCarousel__card img{
    border-radius: 16px; /* forces perfect clipping on some iOS browsers */
    transform: translateZ(0);
    backface-visibility: hidden;
  }

  /* Replace sticky fades with absolute overlays (more stable on mobile) */
  .snapCarousel::before,
  .snapCarousel::after{
    content:"";
    position:absolute;
    top: 66px;
    bottom: 86px; /* stops above thumbs */
    width: 34px;
    pointer-events:none;
    z-index: 5;
  }
  .snapCarousel::before{
    left: 0;
    background: linear-gradient(90deg, rgba(7,11,18,.95), rgba(7,11,18,0));
  }
  .snapCarousel::after{
    right: 0;
    background: linear-gradient(270deg, rgba(7,11,18,.95), rgba(7,11,18,0));
  }
}

@media (max-width: 520px){
  #igHeader{ display:none; }
}
