*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Variables ── */
:root {
  --font-primary:    'BDO Grotesk', 'Arial Black', Arial, sans-serif;
  --font-mono:       'Roboto Mono', monospace;
  --color-bg:        #000000;
  --color-white:     #ffffff;
  --color-grey:      hsla(48, 5%, 42%, 1);
  --color-grey-200:  #b6b6b6;
  --color-blue:      hsla(235, 100%, 50%, 1);
  --color-nav-bg:    hsla(225, 100%, 50%, 0.43);
  --padding-global:  3rem;
  --ring-duration:   60s;   /* lento — era 30s */
}

/* ── Base ── */
html, body { width: 100%; min-height: 100%; overflow-x: clip; }

body {
  background-color: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.4;
}

a { color: inherit; text-decoration: none; }
img { display: block; }

.padding-global {
  padding-right: var(--padding-global);
  padding-left:  var(--padding-global);
}


/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  position: fixed;
  left: 0; top: 0; right: 0;
  z-index: 99;
  width: 100%;
  padding-top: 1rem;
  transition: background 300ms ease, backdrop-filter 300ms ease;
}

.navbar_component {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar_logo-wrap { position: relative; top: -0.5rem; }
.navbar_logo { width: 9rem; height: auto; }

/* Links pill */
.navbar_links-wrap {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 0.5rem 0.5rem 0.5rem 1.75rem;
  border-radius: 1.5rem;
  background-color: var(--color-nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navbar_links { display: flex; align-items: center; gap: 1.5rem; }

.navbar_link {
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.2s;
}
.navbar_link:hover { opacity: 0.65; }

/* ── Navbar button (bianco) ── */
.button-solid {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 1.5rem;
  border: none;
  border-radius: 1rem;
  background: var(--color-white);
  color: #000;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 250ms ease;
  z-index: 0;
}

/* Gradient blu che appare sull'hover */
.button-solid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsla(235,100%,50%,1), hsla(210,100%,60%,1));
  opacity: 0;
  transition: opacity 250ms ease;
  z-index: -1;
}

.button-solid:hover { color: var(--color-white); }
.button-solid:hover::before { opacity: 1; }

/* Hamburger */
.navbar_hamburger-wrap { display: none; }
.navbar_hamburger {
  position: relative; z-index: 101;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  width: 1.75rem; height: 1.75rem;
  gap: 6px; cursor: pointer;
}
.navbar_hamburger-line {
  width: 100%; height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}


/* ══════════════════════════════
   HERO SECTION
══════════════════════════════ */
.section_home-header {
  position: relative;
  display: flex;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  overflow: hidden;
}

.home-header_component {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}


/* ── Ring orbiting ── */
.home-header_imgs-wrapper {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 0;
}

/* Quadrato che RUOTA — lentamente */
.home-header_imgs-wrap {
  position: absolute;
  display: flex;
  height: 100%;
  min-height: 70rem;
  aspect-ratio: 1 / 1;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  animation: ringRotate var(--ring-duration) linear infinite;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Ogni foto wrap: posizione assoluta nel quadrato */
.home-header_img-wrap {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 8 posizioni esatte da Webflow */
.p1 { top: 0;    left: 50%; transform: translateX(-50%); }
.p2 { top: 15%;  right: 15%; }
.p3 { right: 0;  top: 50%;  transform: translateY(-50%); }
.p4 { right: 15%; bottom: 15%; }
.p5 { bottom: 0; left: 50%; transform: translateX(-50%); }
.p6 { left: 15%; bottom: 15%; }
.p7 { left: 0;   top: 50%;  transform: translateY(-50%); }
.p8 { left: 15%; top: 15%; }

/* Foto: COUNTER-RUOTA per restare dritte */
.home-header_img {
  display: block;
  height: 9rem;
  width: auto;
  aspect-ratio: 1 / 1.3;
  object-fit: cover;
  border-radius: 1.25rem;
  border-left:   4px solid var(--color-blue);
  border-bottom: 1px solid #000;
  flex-shrink: 0;
  animation: imgCounter var(--ring-duration) linear infinite;
}

@keyframes imgCounter {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}


/* ── Headings (uno alla volta) ── */
.home-header_headings {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 32rem;
  justify-content: center;
  align-items: center;
  height: 6rem;
}

.home-header_heading {
  position: absolute;
  font-family: var(--font-primary);
  font-size: 4.5rem;
  line-height: 100%;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.home-header_heading.active {
  opacity: 1;
  transform: translateY(0);
}


/* ── Sottotitolo ── */
.home-header_text {
  max-width: 25.625rem;
  color: var(--color-grey-200);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}


/* ── CTA button (bianco → hover gradient blu) ── */
.home-header_button { position: relative; z-index: 2; }

.button {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--color-white);
  color: #000;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 250ms ease, box-shadow 250ms ease;
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
}

/* Gradient blu nascosto */
.button_gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 300ms ease;
  overflow: hidden;
  border-radius: inherit;
}

.button:hover .button_gradient { opacity: 1; }
.button:hover { color: var(--color-white); }

.button_gradient-ball {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  filter: blur(24px);
}
.ball-1 {
  bottom: -20%; left: -10%;
  background: linear-gradient(135deg, hsla(235,100%,50%,1), hsla(200,100%,60%,1));
}
.ball-2 {
  top: -20%; right: -10%;
  background: linear-gradient(135deg, hsla(220,100%,65%,1), hsla(235,100%,45%,1));
}

.button_inner {
  position: relative;
  z-index: 2;
  padding: 1rem 2rem;
}

.button_text {
  position: relative;
  z-index: 5;
}


/* ── Bottom labels ── */
.home-header_labels-wrap {
  position: absolute;
  left: 0; right: 0; bottom: 2rem;
  z-index: 3;
  width: 100%;
}

.home-header_labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-header_location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.home-header_location-globe {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: hsla(231, 99%, 49%, 1);
  flex-shrink: 0;
}

.home-header_label {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
}


/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 991px) {
  :root { --padding-global: 1.5rem; }

  .navbar_links-wrap { display: none; }
  .navbar_hamburger-wrap { display: flex; }

  .home-header_imgs-wrap { height: 90%; min-height: 60rem; }
  .home-header_heading   { font-size: 3.5rem; }
}

@media (max-width: 600px) {
  :root { --padding-global: 1.25rem; }

  .home-header_imgs-wrap  { height: 130vw; min-height: unset; }
  .home-header_heading    { font-size: 2.5rem; white-space: normal; }
  .home-header_img        { height: 6rem; }
}

/* Mobile menu aperto */
.navbar_links-wrap.mobile-open {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 4rem;
  right: var(--padding-global);
  padding: 1rem 1.5rem;
  gap: 1rem;
  border-radius: 1rem;
  z-index: 100;
}


/* ══════════════════════════════
   SEZIONE CLIENTI / BRANDS
══════════════════════════════ */

/* Spacer utilities (riusabili) */
.padding-section-small  { padding-top: 2rem; }
.padding-section-medium { padding-top: 5rem; }
.spacer-xxlarge         { width: 100%; padding-top: 4rem; }

.line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsla(0,0%,100%,0.1) 15%, hsla(0,0%,100%,0.1) 85%, transparent);
  border: none;
}

.container-medium {
  width: 100%;
  max-width: 90rem;
  margin-right: auto;
  margin-left: auto;
}

.padding-global.is-tiny {
  padding-right: 1.25rem;
  padding-left:  1.25rem;
}

/* Header grid 2 colonne */
.brands_head {
  display: grid;
  width: 100%;
  justify-items: start;
  align-items: start;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-columns: 0.4fr 1fr;
  grid-template-rows: auto;
}

/* Label (linea + testo) */
.label_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}

.label_globe {
  position: relative;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--color-blue);
  flex-shrink: 0;
  box-shadow: 0 0 10px hsla(235,100%,50%,0.7);
}

.label_globe::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid hsla(235,100%,75%,0.55);
  border-right-color: transparent;
  animation: globeSpin 1.8s linear infinite;
}

.label_globe::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid hsla(235,100%,75%,0.2);
  border-left-color: transparent;
  animation: globeSpin 3.2s linear infinite reverse;
}

@keyframes globeSpin {
  to { transform: rotate(360deg); }
}

.text-style-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
}

/* Sottotitolo */
.brands_heading { max-width: 56rem; }

.heading-style-h4 {
  font-family: var(--font-primary);
  font-size: 2.75rem;
  line-height: 1.15;
  font-weight: 500;
  color: var(--color-white);
}

/* Marquee wrapper */
.brands_list-wrapper {
  position: relative;
  display: flex;
  max-width: 120rem;
  margin-right: auto;
  margin-left: auto;
  justify-content: flex-start;
  align-items: center;
  mask: linear-gradient(270deg, rgba(0,0,0,0), black 15%, black 85%, rgba(0,0,0,0));
  -webkit-mask: linear-gradient(270deg, rgba(0,0,0,0), black 15%, black 85%, rgba(0,0,0,0));
  overflow: hidden;
}

/* Marquee track */
.brands_list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0;
  animation: brandsScroll 40s linear infinite;
}

@keyframes brandsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brands_list-wrapper:hover .brands_list {
  animation-play-state: paused;
}

/* Riga inversa */
.brands_list-wrapper--reverse .brands_list {
  animation-direction: reverse;
}

/* Contenitore doppia riga */
.brands_marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Singola card brand — logo only */
.brands_item-block {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3.5rem;
  flex-shrink: 0;
}

/* Logo wrap — trasparente */
.brands_item-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo */
.brands_item-logo {
  display: block;
  height: 2.25rem;
  width: auto;
  filter: invert(1) grayscale(1);
  opacity: 0.45;
  transition: opacity 0.3s ease;
}

.brands_item-block:hover .brands_item-logo {
  opacity: 0.9;
}

/* ── Responsive brands ── */
@media (max-width: 991px) {
  .brands_head {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .heading-style-h4 { font-size: 2.25rem; }
  .label_line { width: 1.75rem; }
}

@media (max-width: 600px) {
  .heading-style-h4 { font-size: 1.75rem; }
  .spacer-xxlarge { padding-top: 3rem; }
}

/* ══════════════════════════════
   SEZIONE HOME ABOUT (sticky)
══════════════════════════════ */
#about {
  position: relative;
  height: 400vh;
}

#about-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#about-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.about-h {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3.5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

#about-img {
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22vw;
  height: 30vh;
  border-radius: 1.5rem;
  position: relative;
}

#about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#about-text {
  position: absolute;
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3.5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: center;
  white-space: nowrap;
  color: var(--color-white);
  opacity: 0;
  z-index: 2;
}

.about-label {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  color: var(--color-grey);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  #about { height: 350vh; }
}

@media (max-width: 600px) {
  #about { height: 300vh; }
  #about-text { white-space: normal; width: 80vw; }
}

/* ══════════════════════════════
   SEZIONE SERVICES
══════════════════════════════ */
.section_services {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 6rem;
}

/* Grid 2 colonne */
.services_component {
  display: grid;
  justify-items: start;
  align-items: start;
  grid-auto-columns: 1fr;
  grid-column-gap: 5rem;
  grid-row-gap: 3rem;
  grid-template-columns: 1fr 0.6fr;
  grid-template-rows: auto;
}

/* Colonna SX — sticky */
.services_content {
  position: sticky;
  top: 3rem;
}

.spacer-large {
  width: 100%;
  padding-top: 2rem;
}

/* Heading H3 */
.heading-style-h3 {
  font-family: var(--font-primary);
  font-size: 2.75rem;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-grey);
}

/* Parole singole per reveal progressivo */
.heading-style-h3 .word {
  color: var(--color-grey);
  transition: color 0.15s ease;
}

.heading-style-h3 .word.is-lit {
  color: var(--color-white);
}

/* Colonna DX — lista servizi */
.services_items {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 3rem;
}

/* Singolo servizio */
.services_item {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 0.75rem;
}

/* Immagine wrap */
.services_img-wrap {
  position: relative;
  overflow: clip;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 1.25rem;
}

.services_img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.services_item:hover .services_img {
  transform: scale(1.05);
}

/* Info sotto immagine */
.services_item-infos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

/* Heading H6 */
.heading-style-h6 {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 500;
  color: var(--color-white);
}

.services_desc {
  color: var(--color-grey);
  font-size: 0.75rem;
  font-weight: 500;
}

/* ── Responsive services ── */
@media (max-width: 991px) {
  .services_component {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  .services_content {
    position: relative;
    top: auto;
  }
  .services_items {
    display: grid;
    grid-auto-columns: 1fr;
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
}

@media (max-width: 600px) {
  .heading-style-h3 { font-size: 2rem; }
  .services_items {
    display: flex;
    flex-direction: column;
  }
  .services_img-wrap {
    border-radius: 0.875rem;
  }
}

/* ══════════════════════════════
   SEZIONE TESTIMONIALS — CIRCULAR
══════════════════════════════ */
.section_testimonials {
  position: relative;
  padding-bottom: 4rem;
}

.testimonials_layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.testimonials_content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonials_heading {
  font-family: var(--font-primary);
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-white);
}

.testimonials_quote-area {
  min-height: 8rem;
  position: relative;
}

.testimonials_quote {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.testimonials_quote.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonials_quote-text {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-grey-200);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonials_quote-author {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.testimonials_name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-white);
}

.testimonials_role {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-grey);
}

.testimonials_nav {
  display: flex;
  gap: 0.75rem;
}

.testimonials_nav-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  border: 1px solid hsla(0,0%,100%,0.15);
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.testimonials_nav-btn:hover {
  border-color: var(--color-blue);
  background: hsla(235,100%,50%,0.15);
}

.testimonials_nav-btn svg {
  width: 1.25rem; height: 1.25rem;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.testimonials_counter {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-grey);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonials_counter-line {
  width: 3rem; height: 1px;
  background: hsla(0,0%,100%,0.15);
  position: relative;
  overflow: hidden;
}

.testimonials_counter-fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  background: var(--color-blue);
  transition: width 0.5s ease;
}

/* Carosello circolare 3D */
.testimonials_stack {
  position: relative;
  width: 100%;
  height: 32rem;
  max-width: 40rem;
  margin: 0 auto;
  perspective: 1000px;
}

.testimonials_card {
  position: absolute;
  width: 18rem;
  height: 25rem;
  left: 50%;
  top: 50%;
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: pointer;
  will-change: transform, filter, opacity;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1),
              filter 0.7s ease,
              opacity 0.7s ease;
}

.testimonials_card img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.testimonials_play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: hsla(0,0%,100%,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid hsla(0,0%,100%,0.2);
  display: flex; justify-content: center; align-items: center;
  transition: background 0.3s, transform 0.3s;
  z-index: 2;
  pointer-events: none;
}

.testimonials_play svg {
  width: 1.25rem; height: 1.25rem;
  fill: var(--color-white);
  margin-left: 2px;
}

.testimonials_duration {
  position: absolute;
  bottom: 1rem; right: 1rem;
  padding: 0.25rem 0.625rem;
  border-radius: 0.5rem;
  background: hsla(0,0%,0%,0.6);
  backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  font-size: 0.7rem; font-weight: 500;
  color: var(--color-white);
  z-index: 2;
}

/* Modal */
.testimonials_modal {
  position: fixed; left: 0; top: 0;
  width: 100%; height: 100%; z-index: 200;
  display: none; justify-content: center; align-items: center;
  background: hsla(0,0%,0%,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}

.testimonials_modal.is-open { display: flex; }

.testimonials_modal-video {
  position: relative; width: 90vw; max-width: 24rem;
  aspect-ratio: 9 / 16; border-radius: 1.25rem;
  overflow: hidden; background: #000;
}

.testimonials_modal-video video {
  width: 100%; height: 100%; object-fit: cover;
}

.testimonials_modal-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: hsla(0,0%,100%,0.1);
  border: 1px solid hsla(0,0%,100%,0.2);
  color: #fff; cursor: pointer;
  display: flex; justify-content: center; align-items: center;
  font-size: 1.25rem; z-index: 201;
  transition: background 0.3s;
}

.testimonials_modal-close:hover {
  background: hsla(0,0%,100%,0.25);
}

/* ── Responsive testimonials ── */
@media (max-width: 991px) {
  .testimonials_layout { gap: 2rem; }
  .testimonials_heading { font-size: 2.25rem; }
  .testimonials_stack { height: 28rem; max-width: 34rem; }
  .testimonials_card { width: 15rem; height: 21rem; }
  .testimonials_quote-area { min-height: 10rem; }
  .testimonials_nav-btn { width: 2.5rem; height: 2.5rem; }
  .testimonials_nav-btn svg { width: 1rem; height: 1rem; }
}

@media (max-width: 600px) {
  .testimonials_layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .testimonials_heading { font-size: 1.75rem; }
  .testimonials_stack { height: 22rem; max-width: 24rem; }
  .testimonials_card { width: 12rem; height: 17rem; }
  .testimonials_quote-area { min-height: 12rem; }
  .testimonials_play { width: 3rem; height: 3rem; }
  .testimonials_play svg { width: 1rem; height: 1rem; }
  .testimonials_nav-btn { width: 2.5rem; height: 2.5rem; }
}

/* ══════════════════════════════
   CTA SECTION
══════════════════════════════ */
.section_cta {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  margin: 0 var(--padding-global);
}

.cta_video-bg {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.cta_overlay {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg,
    hsla(235, 100%, 15%, 0.6) 0%,
    hsla(235, 100%, 8%, 0.85) 100%);
}

.cta_content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem;
  gap: 1.5rem;
}

.cta_label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-grey-200);
}

.cta_heading {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  max-width: 40rem;
  color: var(--color-white);
}

.cta_button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 1.5rem;
  background: var(--color-white);
  color: #000;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

.cta_button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsla(235,100%,50%,1), hsla(210,100%,60%,1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.cta_button:hover { color: var(--color-white); }
.cta_button:hover::before { opacity: 1; }
.cta_button span { position: relative; z-index: 1; }


/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer_top {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr auto;
  gap: 3rem;
  align-items: start;
  padding-bottom: 3rem;
}

.footer_info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer_logo-main {
  height: 1.5rem;
  width: auto;
}

.footer_desc {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-grey);
  line-height: 1.6;
  max-width: 22rem;
}

.footer_nav-title {
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.footer_nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer_nav-link {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--color-grey);
  transition: color 0.2s ease;
}

a.footer_nav-link:hover {
  color: var(--color-white);
}

.footer_social-col {
  display: flex;
  flex-direction: column;
}

.footer_social {
  display: flex;
  gap: 0.75rem;
}

.footer_social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  border: 1px solid hsla(0,0%,100%,0.1);
  transition: border-color 0.3s, background 0.3s;
}

.footer_social-link:hover {
  border-color: var(--color-blue);
  background: hsla(235,100%,50%,0.15);
}

.footer_social-link svg {
  width: 1rem; height: 1rem;
  fill: var(--color-white);
}

.footer_bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 1.5rem;
  border-top: 1px solid hsla(0,0%,100%,0.06);
}

.footer_copyright {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-grey);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.footer_email {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-grey);
  transition: color 0.2s ease;
}

.footer_email:hover {
  color: var(--color-white);
}

/* ── Responsive CTA + Footer ── */
@media (max-width: 991px) {
  .footer_top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .cta_content { padding: 6rem 1.5rem; }
}

@media (max-width: 600px) {
  .section_cta { border-radius: 1rem; }

  .footer_top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer_bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .cta_content { padding: 5rem 1.25rem; }
}

/* ══════════════════════════════
   CUSTOM CURSOR
══════════════════════════════ */
#cursor {
  position: fixed;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 1.5px solid var(--color-blue);
  background: hsla(235,100%,50%,0.12);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .25s ease, height .25s ease, background .25s ease, border-color .25s ease;
  opacity: 0;
  will-change: left, top;
}
#cursor.is-visible { opacity: 1; }
#cursor.is-hovering {
  width: 3rem;
  height: 3rem;
  background: hsla(235,100%,50%,0.08);
  border-color: hsla(235,100%,70%,0.6);
}
@media (pointer: coarse) { #cursor { display: none; } }

