/* =========================================
   1) BASE / RESET
========================================= */
*{ box-sizing: border-box; }
html, body{ overflow-x: hidden; }
body{
  margin: 0;
  background: #000;
  color: rgba(255,255,255,0.82);
  font-family: "Exo 2", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
a{ color: inherit; text-decoration: none; }
img, video{ display:block; max-width:100%; }

/* =========================================
   2) TYPOGRAPHY SYSTEM
========================================= */
:root{
  --text-strong: rgba(255,255,255,0.92);
  --text: rgba(255,255,255,0.82);
  --text-muted: rgba(255,255,255,0.60);

  --body-size: 1rem;
  --body-line: 1.55;
  --body-letter: 0.01em;

  --h1: clamp(2.25rem, 6vw, 5rem);
  --h2: clamp(1.6rem, 3.8vw, 3rem);
  --h3: clamp(1.25rem, 2.6vw, 2rem);
  --h4: 1.25rem;

  --heading-line: 1.06;
  --heading-letter: 0.02em;
  --heading-weight: 600;

  --eyebrow-size: 0.95rem;
  --eyebrow-letter: 0.14em;

  /* section helpers */
  --section-pad-x: clamp(1.25rem, 4vw, 3rem);

  /* hero spacing */
  --hero-ui-space: 140px;
  --hero-ui-space-mobile: 150px;
}

body{
  font-size: var(--body-size);
  line-height: var(--body-line);
  letter-spacing: var(--body-letter);
}

h1,h2,h3,h4,h5,h6{ margin:0; color: var(--text-strong); }
h1,h2,h3,h4{
  line-height: var(--heading-line);
  letter-spacing: var(--heading-letter);
  font-weight: var(--heading-weight);
}
h1{ font-size: var(--h1); }
h2{ font-size: var(--h2); }
h3{ font-size: var(--h3); }
h4{ font-size: var(--h4); }

p{ margin:0; }

.eyebrow{
  font-size: var(--eyebrow-size);
  letter-spacing: var(--eyebrow-letter);
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.2rem;
}

.lead{
  font-size: clamp(1.35rem, 5.2vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.18;
  color: var(--text-strong);
  max-width: 60ch;
}


/* =========================================
   5) HERO
========================================= */
.section-hero{
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
}

/* overlay */
.section-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.25);
  z-index: 0;
  pointer-events:none;
}

/* video background */
.hero-media{
  position:absolute;
  inset:0;
  z-index:0;
}
.hero-media video{
  width:100%;
  height:100%;
  object-fit: cover;
}

/* content layer */
.hero-inner{
  position: relative;
  z-index: 1;
  min-height: inherit;

  display:flex;
  flex-direction: column;

  padding-left: var(--section-pad-x);
  padding-right: var(--section-pad-x);
  padding-top: clamp(3.5rem, 10vh, 7.5rem);

  /* reserve space so title never collides with hero-ui */
  padding-bottom: calc(var(--hero-ui-space) + max(1rem, env(safe-area-inset-bottom)));
}

.hero-title{
  margin-top: 2rem;
  letter-spacing: 0;
  font-size: clamp(3rem, 4vw, 4rem);
  max-width: 850px;
}

/* bottom overlay bar */
.hero-ui{
  position:absolute;
  left: clamp(1rem, 4vw, 2.5rem);
  right: clamp(1rem, 4vw, 2.5rem);
  bottom: max(1rem, env(safe-area-inset-bottom));

  display:flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;

  z-index: 2;
  pointer-events: none;
}
.hero-ui > *{ pointer-events:auto; }

/* info card */
.hero-card{
  display:grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  gap: clamp(1.25rem, 1vw, 1.5rem);
  align-items: flex-start;

  max-width: min(720px, 90vw);
  padding: 1rem;

  border-radius: 0;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.036);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 20px 80px rgba(0,0,0,0.35);
}

.hero-card__img{
  width:100%;
  height: clamp(90px, 7vw, 130px);
  border-radius: 0;
  object-fit: cover;
}

.hero-card__title{
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  text-transform: uppercase;
  color: red;
}

.hero-card__desc{
  margin-top: .6rem;
  font-weight: 100;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.1;
  color: #fff;
}
/* === Hover / focus effect (keeps your original style) === */
.hero-card{
  position: relative;
  transform: translateY(0);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  will-change: transform;
}

.hero-card__img{
  transform: scale(1);
  transition: transform .35s ease, filter .35s ease;
  will-change: transform;
}

.hero-card__title,
.hero-card__desc{
  transition: opacity .22s ease, transform .22s ease;
}

/* Hover only on devices that actually hover */
@media (hover:hover){
  .hero-card:hover{
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.10);
    box-shadow: 0 26px 90px rgba(0,0,0,0.48);
  }

  .hero-card:hover .hero-card__img{
    transform: scale(1.04);
    filter: saturate(1.08) contrast(1.03);
  }

  .hero-card:hover .hero-card__title{
    transform: translateY(-1px);
  }

  .hero-card:hover .hero-card__desc{
    opacity: 0.92;
    transform: translateY(1px);
  }
}

/* Keyboard accessibility */
.hero-card:focus-within{
  outline: none;
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 26px 90px rgba(0,0,0,0.48);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero-card,
  .hero-card__img,
  .hero-card__title,
  .hero-card__desc{
    transition: none !important;
    transform: none !important;
  }
}
/* scroll arrow */
.hero-scroll{
  display:grid;
  justify-items:end;
  gap: .35rem;
  user-select:none;
}

.hero-scroll__icon{
  border-radius: 999px;
  display:grid;
  place-items:center;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  animation: heroBreathe 1.8s ease-in-out infinite;
}
.hero-scroll__icon img{
  width: clamp(40px, 6vw, 60px);
  object-fit: contain;
}

@keyframes heroBreathe{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(6px); }
}


/* =========================================
   PRIMARY SERVICES (CARD ROW)
========================================= */
.section-services-cards{
  position: relative;
  overflow: hidden;
  background: url("/images/bg1.webp") center / cover no-repeat;

  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 5rem 0;
}

/* overlay */
.section-services-cards::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.318);
  pointer-events:none;
}

/* inner */
.services-cards__inner{
  position: relative;
  z-index: 1;
  width:100%;
  padding: 0 4rem;
}

.services-cards__header{
  max-width: 900px;
  margin-bottom: 3rem;
  display:flex;
  flex-direction: column;
  gap: .6rem;
}

.services-cards__title{ margin:0; }

/* grid */
.services-cards__grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

/* per-image tuning */
.service-card__media.img1 img{ transform: scale(1.6); }
.service-card__media.img2 img{ transform: scale(1.0); }
.service-card__media.img3 img{ transform: scale(1.6); }
.service-card__media.img4 img{ transform: scale(1.4); }
.service-card__media.img5 img{ transform: scale(1.15); }

/* card */
.service-card{
  position: relative;

  display:flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: 0 1.75rem;
  min-height: 360px;

  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.12);

  background: linear-gradient(180deg, rgba(0,0,0,0.62), rgba(0,0,0,0.38));
  color: rgba(255,255,255,0.92);
  text-decoration: none;

  will-change: transform;
  transform: translateZ(0);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

/* media */
.service-card__media{
  width: 140px;
  height: 140px;
  margin: 0 0 1rem;

  display:flex;
  align-items:center;
  justify-content:center;

  transition: transform .22s ease, filter .22s ease;
}
.service-card__media img{
  max-width:100%;
  max-height:100%;
  object-fit: contain;
  display:block;
}

/* text */
.service-card__title{
  margin: 0 0 .5rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .015em;
}
.service-card__desc{
  margin: 0 0 1rem;
  max-width: 300px;
  font-size: .9rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.68);
}

/* CTA */
.service-card__btn{
  margin-top: auto;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: .6rem;

  padding: .85rem 1rem;
  width: calc(100% + 3.5rem);
  margin-left: -1.75rem;
  margin-right: -1.75rem;

  border: 1px solid rgba(255,60,60,0.25);
  border-left: 0;
  border-right: 0;
  border-bottom: 0;

  background: rgba(0,0,0,0.881);
  color: rgba(255,255,255,0.92);

  font-size: .95rem;
  letter-spacing: .03em;
  text-transform: uppercase;

  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.service-card__arrow{
  opacity: .9;
  transition: transform .22s ease;
}
.service-card__arrow img{
  width: 20px;
  margin-left: 1rem;
  margin-top: 2px;
}

/* red corner overlay */
.service-card::after{
  content:"";
  position:absolute;
  inset: -12px;
  pointer-events:none;
  z-index: 3;
  opacity: 0;

  background:
    linear-gradient(#ff0000,#ff0000) left top / 0px 2px no-repeat,
    linear-gradient(#ff0000,#ff0000) left top / 2px 0px no-repeat,
    linear-gradient(#ff0000,#ff0000) right top / 0px 2px no-repeat,
    linear-gradient(#ff0000,#ff0000) right top / 2px 0px no-repeat,
    linear-gradient(#ff0000,#ff0000) left bottom / 0px 2px no-repeat,
    linear-gradient(#ff0000,#ff0000) left bottom / 2px 0px no-repeat,
    linear-gradient(#ff0000,#ff0000) right bottom / 0px 2px no-repeat,
    linear-gradient(#ff0000,#ff0000) right bottom / 2px 0px no-repeat;

  transition: opacity .18s ease, background-size .35s cubic-bezier(.2,.9,.2,1);
}

.service-card:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,60,60,0.28);
}

/* hover (fine pointer only) */
@media (hover:hover) and (pointer:fine){
  .service-card:hover{
    transform: scale(0.97);
    background: rgba(64, 0, 0, 0.493);
  }

  .service-card:hover .service-card__media{
    transform: translateY(-3px);
    filter: drop-shadow(0 10px 22px rgba(0,0,0,0.45));
  }

  .service-card:hover .service-card__btn{
    background: rgba(255, 60, 60, 0.95);
    border-top-color: rgba(255, 90, 90, 0.9);
  }

  .service-card:hover .service-card__arrow{
    transform: translateX(3px);
  }

  .service-card:hover::after{
    opacity: 1;
    background-size:
      22px 2px, 2px 22px,
      22px 2px, 2px 22px,
      22px 2px, 2px 22px,
      22px 2px, 2px 22px;
  }
}


/* =========================================
   6) ROTATOR
========================================= */

  
.rotator{
  width: 100%;
  overflow: hidden;
  position: relative;
}

.rotator__track{
  display: flex;
  gap: 0px;                 /* change spacing if you want */
  width: max-content;        /* allows it to grow naturally */
  will-change: transform;
}

.rotator__item{
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  border: 1px solid rgba(255,255,255,0.10);
  position: relative;   /* REQUIRED */
  cursor:pointer;

}

.rotator__item img{
  width: 70%;
  height: 70%;
  object-fit: contain;
  display: block;

  /* 🔹 color overlay */
opacity: 0.5;
}
.rotator__item::after{
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;

  opacity: 0;

  background:
    /* top-left */
    linear-gradient(#ff0000,#ff0000) left top / 0px 2px no-repeat,
    linear-gradient(#ff0000,#ff0000) left top / 2px 0px no-repeat,

    /* top-right */
    linear-gradient(#ff0000,#ff0000) right top / 0px 2px no-repeat,
    linear-gradient(#ff0000,#ff0000) right top / 2px 0px no-repeat,

    /* bottom-left */
    linear-gradient(#ff0000,#ff0000) left bottom / 0px 2px no-repeat,
    linear-gradient(#ff0000,#ff0000) left bottom / 2px 0px no-repeat,

    /* bottom-right */
    linear-gradient(#ff0000,#ff0000) right bottom / 0px 2px no-repeat,
    linear-gradient(#ff0000,#ff0000) right bottom / 2px 0px no-repeat;

  transition:
    opacity 0.2s ease,
    background-size 0.35s cubic-bezier(.2,.9,.2,1);

  will-change: background-size, opacity;
}
.rotator__item:hover::after{
  opacity: 1;

  background-size:
    /* top-left */
    24px 2px,
    2px 24px,

    /* top-right */
    24px 2px,
    2px 24px,

    /* bottom-left */
    24px 2px,
    2px 24px,

    /* bottom-right */
    24px 2px,
    2px 24px;
}



/* pill button above track */
.rotator-cta{
  display: inline-flex;
  align-items: center;
  gap: .5rem;

  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 5;

  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.65);
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, border-color .18s ease;
}

.rotator-cta.is-visible{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.rotator-cta::after{
  content: "→";
  opacity: 0.8;
}

/* optional: make selected look (instead of mobile focus ring) */
.rotator__item.is-selected::after{
  opacity: 1; /* your corner overlay */
  background-size:
    24px 2px, 2px 24px,
    24px 2px, 2px 24px,
    24px 2px, 2px 24px,
    24px 2px, 2px 24px;
}

/* kill mobile tap highlight/focus ring */
.rotator__item { -webkit-tap-highlight-color: transparent; }
.rotator__item:focus { outline: none; }
/* ✅ force the rotator CTA pill to stay white (normal + visited + active) */
#rotatorCta,
#rotatorCta:visited,
#rotatorCta:hover,
#rotatorCta:active,
#rotatorCta:focus {
  color: rgba(255,255,255,0.92) !important;
  text-decoration: none !important;
}

/* if you have any weird underline / highlight on tap */
#rotatorCta { -webkit-tap-highlight-color: transparent; }
#rotatorCta:focus { outline: none; }

/* Larger */
.rotator__item.combo img {
  width: 55%;
}

.rotator__item.sd img {
  width: 65%;
}

/* Smaller */
.rotator__item.ww img {
  width: 75%;
}

.rotator__item.pt img {
  width: 35%;
}

.rotator__item.cctv img {
  width: 55%;
}

@media (max-width: 680px){ 

.rotator__item{
  width: 200px;
  height: 200px;


}

}
@media (hover: none) and (pointer: coarse) {
  .rotator__item:hover::after{
    opacity: 0;
    background-size:
      0px 2px, 2px 0px,
      0px 2px, 2px 0px,
      0px 2px, 2px 0px,
      0px 2px, 2px 0px;
  }
}

/* ✅ Show corners only when we explicitly toggle it */
.rotator__item.is-selected::after{
  opacity: 1;
  background-size:
    24px 2px, 2px 24px,
    24px 2px, 2px 24px,
    24px 2px, 2px 24px,
    24px 2px, 2px 24px;
}


/* =========================================
   7) INTRO
========================================= */
.section-intro{
  width:100%;
  display:flex;
  flex-direction: column;
  align-items:flex-start;
  justify-content:flex-start;
  gap: 1rem;

  padding: clamp(1.5rem, 6vw, 4rem);
  padding-top: clamp(3rem, 7vw, 4rem);
  min-height: 280px;
}


/* =========================================
   8) TRIPLE CARDS
========================================= */
.section-triple{ width:100%; padding:0; }

.triple-link{
  display: block;
  text-decoration: none;
  color: inherit;
}

.triple-link:focus-visible{
  outline: 2px solid rgba(255,255,255,0.6);
  outline-offset: 6px;
}

.triple-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  width:100%;
}

.triple-card{
  position:relative;
  min-height: 520px;
  overflow:hidden;
  border-right: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  cursor:pointer;
}

.triple-media{
  position:absolute;
  inset:0;
  background:#111;
  opacity:0;
  transition: opacity .25s ease;
  will-change: opacity;
}
.triple-card:hover .triple-media{ opacity:1; }

.triple-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.triple-content{
  position:absolute;
  left: 1rem;
  right: 1rem;
  top: 0;             /* JS sets start line */
  bottom: auto;

  z-index: 2;

  padding: .9rem 1rem;
  max-width: min(85%, 620px);

  will-change: transform;
  transition: opacity .25s ease; /* not transform */
}

.triple-title{
  font-size: clamp(1.25rem, 1.3vw, 1.7rem);
  letter-spacing: 0.02em;
  font-weight: 400;
  color:#fff;
}
.triple-desc{
  margin-top:.55rem;
  font-size: clamp(0.9rem, 0.9vw, 1.2rem);
  line-height: 1.35;
  color:#fff;
}


/* =========================================
   9) TRUST STRIP
========================================= */
.section-trust{
  background:#000;
  color:#fff;
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.trust-inner{
  width: 100%;
  max-width: 2400px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.trust-header{
  text-align:center;
  max-width: 1200px;
  margin: 0 auto 2.5rem;

  display:flex;
  flex-direction: column;
  gap: .9rem;

  padding: 0;
  height: auto;
}

.trust-eyebrow{
  margin: 0 0 .25rem;
  font-size: clamp(0.75rem, 0.72rem + 0.7vw, 1.05rem);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

.trust-title{
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
}

.trust-desc{
  margin: .85rem auto 0;
  max-width: 68ch;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

.trust-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2.25rem);
  margin-top: 0;
  padding: 0;
}

.trust-card{
  position: relative;
  background: transparent;
  padding: 1.6rem 1.6rem 1.75rem;
  min-height: 150px;

  display:grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: start;

  border: 0;
}

.trust-text{
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
}

.trust-media{
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;
}

.trust-icon{
  width: 34px;
  height: 34px;
  stroke: rgba(255,255,255,0.92);
  fill: none;
  stroke-width: 1.8;
}

/* corner lines */
.trust-card::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;

  --c-len: 26px;
  --c-thick: 2px;
  --c-color: rgba(255,255,255,0.88);

  background:
    linear-gradient(var(--c-color), var(--c-color)) left top / var(--c-len) var(--c-thick) no-repeat,
    linear-gradient(var(--c-color), var(--c-color)) left top / var(--c-thick) var(--c-len) no-repeat,
    linear-gradient(var(--c-color), var(--c-color)) right top / var(--c-len) var(--c-thick) no-repeat,
    linear-gradient(var(--c-color), var(--c-color)) right top / var(--c-thick) var(--c-len) no-repeat,
    linear-gradient(var(--c-color), var(--c-color)) left bottom / var(--c-len) var(--c-thick) no-repeat,
    linear-gradient(var(--c-color), var(--c-color)) left bottom / var(--c-thick) var(--c-len) no-repeat,
    linear-gradient(var(--c-color), var(--c-color)) right bottom / var(--c-len) var(--c-thick) no-repeat,
    linear-gradient(var(--c-color), var(--c-color)) right bottom / var(--c-thick) var(--c-len) no-repeat;
}

/* =========================================
   ZIG SECTION
========================================= */
.zig{
  background:#ffffff;
  padding-top: 6.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.zig__inner{
  width:100%;
  padding: 0 4rem;
  display:flex;
  flex-direction: column;
  gap: 3.25rem;
}

.zig-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  min-height: 440px;
}

/* desktop alternating */
.zig-row.is-right .zig-media{ order:1; }
.zig-row.is-right .zig-text { order:2; }
.zig-row.is-left  .zig-text { order:1; }
.zig-row.is-left  .zig-media{ order:2; }

.zig-text{
  max-width: 960px;
  position: relative;
  height: 100%;
  align-self: stretch;
  padding-bottom: 84px; /* landing zone for button */
}

.zig-text h3{
  margin:0 0 .85rem 0;
  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
  font-weight: 600;
  letter-spacing:.02em;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.92);
}

.zig-text p{
  margin:0;
  color: rgba(0, 0, 0, 0.76);
  line-height: 1.7;
  font-size: 1.18rem;
  font-weight: 400;
  letter-spacing:.01em;
}

.zig-more{
  margin: .9rem 0 0;
  color: rgba(255,255,255,.76);
  line-height: 1.7;
  font-size: 1.05rem;
  
}
.zig-more[hidden]{ display:none; }

.zig-learn{
  position:absolute;
  left:0;
  top:0; /* JS sets under h3 */

  padding: .65rem 1rem;
  border: 1px solid rgba(255,0,0,0.429);
  background: rgba(242, 0, 0, 0.894);
  color:#fff;
  cursor:pointer;
  font: inherit;
  letter-spacing:.06em;
  text-transform: uppercase;
  width: 100%;
}

.zig-media{ width:100%; }

.zig-media__frame{
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 520px;
  border-radius: 0;
  overflow: hidden;
  border: transparent;
  background: transparent;
}

/* wrapper that animates */
.zig-media__reveal{
  width:100%;
  height:100%;
  transform-origin: 50% 50%;
  will-change: transform, filter;
  background: transparent !important;
}

.zig-media__img{
  width:100%;
  height:100%;
  display:block;
  object-fit: cover;
  object-position: 50% 50%;
  will-change: transform;
  transform-origin: 50% 50%;
  background: transparent !important;
}

/* alignment feel */
.zig-row.is-right .zig-media__img{ object-position: 85% 50%; }
.zig-row.is-left  .zig-media__img{ object-position: 15% 50%; }

/* remove sheen layer (your intent) */
.zig-media__frame::after{ content:none !important; }

/* reduced motion safety */
@media (prefers-reduced-motion: reduce){
  .zig-text{ opacity:1 !important; transform:none !important; }
  .zig-media__reveal,
  .zig-media__img{ transform:none !important; filter:none !important; }
}


/* =========================================
   10) SPACER
========================================= */
.section-spacer{
  min-height: 100svh;
  background:#000;
}


/* =========================================
   RESPONSIVE
========================================= */

/* HERO mobile */
@media (max-width: 640px){
  .hero-inner{
    position: static !important;
    justify-content: flex-end;

    padding-left: var(--section-pad-x);
    padding-right: var(--section-pad-x);
    padding-top: 2.25rem;

    padding-bottom: calc(var(--hero-ui-space-mobile) + env(safe-area-inset-bottom));
  }

  .hero-title{
    position: relative;
    z-index: 3;
    font-size: clamp(2rem, 9vw, 2.2rem);
    margin: 0 0 0.9rem;
  }

  .hero-ui{ z-index: 4; }

  .hero-card{
    grid-template-columns: 128px 1fr;
    max-width: 88vw;
    padding: .65rem .75rem;
  }
  .hero-card__desc{ font-size: .75rem; }
  .hero-card__title{ font-size: 1.1rem; }

  .hero-scroll__icon img{ margin-bottom: .5rem; }
}

/* SERVICES mid */
@media (max-width: 900px){
  .services-cards__inner{ padding: 0; }
  .section-services-cards{ padding: 0; }
  .service-card{ min-height: 0; }
}

/* SERVICES mobile */
@media (max-width: 768px){
  .services-cards__inner{
    padding-left: 0;
    padding-right: 0;
  }

  .services-cards__grid{
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-card{
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-radius: 0;

    display: grid;
    grid-template-columns: 96px 1fr;
    grid-template-rows: auto auto 1fr auto;
    column-gap: 2.5rem;

    padding-top: 1.25rem;
    text-align: left;

    border-bottom: none;
  }

  .service-card + .service-card{
    border-top: 1px solid rgba(255,255,255,0);
  }

  .service-card__media{
    grid-column: 1;
    grid-row: 1 / 4;
    width: 96px;
    height: 106px;
    margin: 0;
  }

  .service-card__title{
    grid-column: 2;
    grid-row: 1;
    font-size: 1rem;
  }

  .service-card__desc{
    grid-column: 2;
    grid-row: 2;
    font-size: 0.85rem;
    max-width: none;
  }

  .service-card__btn{
    grid-column: 1 / -1;
    grid-row: 4;
    margin-top: 1.5rem;
    border: none;
  }

  .services-cards__header{
    padding: 1.25rem;
    margin: 1rem 0 1.25rem;
    height: 220px;
  }

  /* no hover movement on touch */
  .service-card:hover{ transform: none; }
}

/* ROTATOR small */
@media (max-width: 680px){
  .rotator__item{
    width: 200px;
    height: 200px;
  }
}
/* 2x2 layout sooner (wider screens) */
@media (max-width: 2000px){
  .trust-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

/* TRIPLE + TRUST + ZIG mobile stack */
@media (max-width: 980px){
  /* triple */
  .triple-grid{ grid-template-columns: 1fr; }
  .triple-card{
    min-height: 520px;
    border: 1px solid rgba(255,255,255,0.08);
    background:#0b0b0b;
  }

  .triple-content{
    top: auto;
    bottom: 1rem;
    max-width: min(85%, 520px);
    will-change: opacity;
  }
  .triple-content__inner{ min-width: 350px; }

  /* trust */
  .trust-grid{ grid-template-columns: 1fr; padding: .1rem; }
  .trust-card{ grid-template-columns: 1fr 90px; }
  .trust-media{
    width: 90px;
    height: 80px;
    min-height: 80px;
  }
  .trust-text{ font-size: .9rem; }

  /* zig */
  .zig__inner{ padding: 0 1.25rem; }

  /* force image above text on mobile */
  .zig-row{
    display:flex !important;
    flex-direction: column !important;
    gap: 1.4rem !important;
    min-height: auto !important;
  }
  .zig-row .zig-media{ order: 1 !important; }
  .zig-row .zig-text { order: 2 !important; }

  .zig-media__frame{
    height: 320px !important;
    max-height: none !important;
    aspect-ratio: auto !important;
  }

  /* learn button becomes normal flow */
  .zig-learn{
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    z-index: 2;
    max-width: 100%;
    margin-top: .75rem;
  }

  .zig-text h3{ font-size: 1.9rem; }
  .zig-more{
    font-size: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }
  .trust-card{
    margin-bottom:1rem;
  }
}

/* TRUST extra-small */


/* trust hover lift (fine pointer only) */
@media (hover:hover) and (pointer:fine){
  .trust-card{
    transition: transform .18s ease;
    min-height: 120px;
  }
  .trust-card:hover{ transform: translateY(-2px); }
}

/* =========================
   ROTATOR — FORCE SELECT VISIBILITY (PUT LAST)
========================= */

.rotator__item{ position: relative; }
.rotator__item::before{ z-index: 1; }
.rotator__item::after { z-index: 3; pointer-events: none; }
.rotator__item > *    { position: relative; z-index: 2; }


/* force the corner effect ON even on touch */
@media (hover:none) and (pointer:coarse){
  .rotator__item.is-selected::after{
    opacity: 1 !important;
    background-size:
      24px 2px, 2px 24px,
      24px 2px, 2px 24px,
      24px 2px, 2px 24px,
      24px 2px, 2px 24px !important;
  }
}