    :root {
      --black: #060607;
      --dark1: #0d0c0e;
      --dark2: #131115;
      --dark3: #1c191e;
      --dark4: #241f27;
      --red: #d72323;
      --red-dk: #a41a1a;
      --red-glow: rgba(215, 35, 35, .18);
      --teal: #0b4c64;
      --cream: #f5eded;
      --white: #ffffff;
      --glass: rgba(255, 255, 255, .04);
      --glass2: rgba(255, 255, 255, .07);
      --border: rgba(255, 255, 255, .08);
      --border2: rgba(255, 255, 255, .14);
      --muted: rgba(255, 255, 255, .38);
      --soft: rgba(255, 255, 255, .60);
      --gold: #c8a96e;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html,
    body {
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--dark1);
      color: var(--white);
      overflow-x: hidden;

    }

    /* ══════════════════════════════════════
                                   NOISE TEXTURE OVERLAY (premium depth)
                                ══════════════════════════════════════ */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 0;
      opacity: .025;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-size: 200px 200px;
    }

    /* ══════════════════════════════════════
                                   KEYFRAMES
                                ══════════════════════════════════════ */
    @keyframes marquee {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    @keyframes pulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(215, 35, 35, .5)
      }

      50% {
        box-shadow: 0 0 0 16px rgba(215, 35, 35, 0)
      }
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-10px)
      }
    }

    @keyframes ripple {
      from {
        transform: scale(0);
        opacity: 1
      }

      to {
        transform: scale(4);
        opacity: 0
      }
    }

    @keyframes shimmer {
      0% {
        background-position: -200% center
      }

      100% {
        background-position: 200% center
      }
    }

    @keyframes redLine {
      from {
        transform: scaleX(0)
      }

      to {
        transform: scaleX(1)
      }
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes rotSlow {
      from {
        transform: rotate(0deg)
      }

      to {
        transform: rotate(360deg)
      }
    }

    @keyframes borderGlow {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(215, 35, 35, 0), inset 0 0 0 1px rgba(215, 35, 35, .15)
      }

      50% {
        box-shadow: 0 0 40px 0 rgba(215, 35, 35, .12), inset 0 0 0 1px rgba(215, 35, 35, .35)
      }
    }

    @keyframes scanLine {
      0% {
        transform: translateY(-100%);
      }

      100% {
        transform: translateY(200vh);
      }
    }

    @keyframes linePulse {

      0%,
      100% {
        opacity: .3
      }

      50% {
        opacity: 1
      }
    }

    /* ══════════════════════════════════════
                                   LAYOUT
                                ══════════════════════════════════════ */
    .wrap {
      max-width: 1320px;
      margin: auto;
      padding: 0 2.5rem;
    }

    /* ══════════════════════════════════════
                                   TYPOGRAPHY
                                ══════════════════════════════════════ */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: .9rem;
    }

    .eyebrow::before {
      content: '';
      display: block;
      width: 32px;
      height: 1.5px;
      background: linear-gradient(90deg, var(--red), transparent);
    }

    .eyebrow span {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--red);
    }

    .eyebrow-c {
      justify-content: center;
    }

    .eyebrow-c::before {
      display: none;
    }

    .eyebrow-c::after {
      content: '';
      display: block;
      width: 32px;
      height: 1.5px;
      background: linear-gradient(270deg, var(--red), transparent);
    }

    .sec-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.4rem, 4.5vw, 4rem);
      line-height: .92;
      letter-spacing: 2px;
      color: var(--white);
    }

    .sec-title .red {
      color: var(--red);
    }

    .sec-title .outline {
      -webkit-text-stroke: 1.5px rgba(255, 255, 255, .5);
      color: transparent;
    }

    /* ══════════════════════════════════════
                                   BUTTONS
                                ══════════════════════════════════════ */
    .btn-red {
      padding: 14px 32px;
      border-radius: 4px;
      background: linear-gradient(135deg, var(--red) 0%, var(--red-dk) 100%);
      color: #fff;
      font-weight: 700;
      font-size: .88rem;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      transition: all .3s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 28px rgba(215, 35, 35, .3), 0 0 0 1px rgba(215, 35, 35, .2);
      letter-spacing: .5px;
    }

    .btn-red::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, .12), transparent);
      opacity: 0;
      transition: opacity .3s;
    }

    .btn-red:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(215, 35, 35, .45), 0 0 0 1px rgba(215, 35, 35, .4);
    }

    .btn-red:hover::after {
      opacity: 1;
    }

    .btn-ghost {
      padding: 13px 30px;
      border-radius: 4px;
      border: 1px solid rgba(215, 35, 35, .35);
      color: rgba(255, 255, 255, .8);
      font-weight: 600;
      font-size: .88rem;
      background: rgba(215, 35, 35, .05);
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      transition: all .3s ease;
      backdrop-filter: blur(8px);
      letter-spacing: .5px;
    }

    .btn-ghost:hover {
      border-color: var(--red);
      color: #fff;
      background: rgba(215, 35, 35, .12);
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(215, 35, 35, .2);
    }

    .btn-outline-red {
      padding: 13px 30px;
      border-radius: 4px;
      border: 1px solid rgba(215, 35, 35, .4);
      color: var(--red);
      font-weight: 600;
      font-size: .88rem;
      background: transparent;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      transition: all .3s ease;
      letter-spacing: .5px;
    }

    .btn-outline-red:hover {
      background: var(--red);
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(215, 35, 35, .35);
    }

    /* ══════════════════════════════════════
                                   HERO SLIDER
                                ══════════════════════════════════════ */
    .hero-wrap {
      position: relative;
      height: calc(100vh - 40px);
      /* minus marquee */
      min-height: 520px;
      overflow: hidden;
      padding-top: 75px;
      /* clear fixed navbar */
    }

    .swiper,
    .swiper-wrapper,
    .swiper-slide {
      height: 100%;
      width: 100%;
    }

    .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 7s ease-out;
    }

    .swiper-slide video {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .slide-cadre video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain !important;
      object-position: center center !important;
      display: block;
      background: #000;
    }

    /* ── Premium video slide ── */
    .swiper-slide-video {
      position: relative;
      overflow: hidden;
      background: #060607;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 50px 80px;
    }

    /* dark textured background behind the cadre */
    .swiper-slide-video::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(215, 35, 35, .06) 0%, transparent 70%),
        repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255, 255, 255, .012) 40px, rgba(255, 255, 255, .012) 41px),
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255, 255, 255, .012) 40px, rgba(255, 255, 255, .012) 41px);
      z-index: 0;
    }

    /* the cadre wrapper — sized to 1600/700 ratio = 2.286 */
    .slide-cadre {
      position: relative;
      z-index: 2;
      width: min(92vw, 1200px);
      aspect-ratio: 16 / 7;
      border: 1px solid rgba(215, 35, 35, .25);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, .04),
        0 0 60px rgba(215, 35, 35, .12),
        0 30px 80px rgba(0, 0, 0, .7),
        inset 0 0 0 1px rgba(255, 255, 255, .04);
      border-radius: 3px;
      overflow: hidden;
    }

    /* gradient top line on cadre */
    .slide-cadre::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, #d72323 30%, #0b4c64 70%, transparent);
      z-index: 10;
    }

    /* gradient bottom line on cadre */
    .slide-cadre::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(11, 76, 100, .5) 30%, rgba(215, 35, 35, .5) 70%, transparent);
      z-index: 10;
    }

    /* video fills cadre, covered */
    /* subtle dark vignette inside cadre */
    .slide-cadre-overlay {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, .45) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .15) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, .25) 100%);
      z-index: 3;
      pointer-events: none;
    }

    /* corner brackets ON the cadre */
    .slide-cadre-corner {
      position: absolute;
      width: 22px;
      height: 22px;
      z-index: 11;
    }

    .slide-cadre-corner.tl {
      top: -1px;
      left: -1px;
      border-top: 2px solid #d72323;
      border-left: 2px solid #d72323;
    }

    .slide-cadre-corner.tr {
      top: -1px;
      right: -1px;
      border-top: 2px solid #0b4c64;
      border-right: 2px solid #0b4c64;
    }

    .slide-cadre-corner.bl {
      bottom: -1px;
      left: -1px;
      border-bottom: 2px solid #0b4c64;
      border-left: 2px solid #0b4c64;
    }

    .slide-cadre-corner.br {
      bottom: -1px;
      right: -1px;
      border-bottom: 2px solid #d72323;
      border-right: 2px solid #d72323;
    }

    /* VIDÉO badge inside cadre */
    .slide-cadre-badge {
      position: absolute;
      top: .9rem;
      right: .9rem;
      z-index: 12;
      font-family: 'Rajdhani', sans-serif;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: 2px;
      color: #fff;
      background: rgba(215, 35, 35, .88);
      border: 1px solid rgba(255, 255, 255, .15);
      padding: 4px 11px;
      border-radius: 2px;
      display: flex;
      align-items: center;
      gap: 5px;
      backdrop-filter: blur(8px);
    }

    .slide-cadre-badge i {
      font-size: .55rem;
    }

    /* decorative side lines left & right of cadre */
    .slide-side-line {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }

    .slide-side-line.left {
      left: 3%;
    }

    .slide-side-line.right {
      right: 3%;
    }

    .slide-side-line span {
      display: block;
      width: 1px;
      background: linear-gradient(180deg, transparent, rgba(215, 35, 35, .4), transparent);
    }

    .slide-side-line span:nth-child(1) {
      height: 60px;
    }

    .slide-side-line span:nth-child(2) {
      height: 4px;
      width: 4px;
      border-radius: 50%;
      background: rgba(215, 35, 35, .5);
    }

    .slide-side-line span:nth-child(3) {
      height: 30px;
    }

    /* bottom label under cadre */
    .slide-cadre-label {
      position: absolute;
      bottom: 1.2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      font-family: 'Rajdhani', sans-serif;
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: 3px;
      color: rgba(255, 255, 255, .35);
      text-transform: uppercase;
      white-space: nowrap;
    }

    .swiper-slide-active img {
      transform: scale(1.07);
    }

    /* Swiper controls */
    .swiper-button-next,
    .swiper-button-prev {
      color: white !important;
      background: rgba(0, 0, 0, .3) !important;
      width: 46px !important;
      height: 46px !important;
      border-radius: 2px !important;
      backdrop-filter: blur(8px);
      transition: all .3s ease;
      border: 1px solid rgba(255, 255, 255, .12) !important;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
      background: var(--red) !important;
      border-color: var(--red) !important;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
      font-size: 14px !important;
      font-weight: 900;
    }

    .swiper-pagination-bullet {
      background: rgba(255, 255, 255, .35) !important;
      width: 6px !important;
      height: 6px !important;
      opacity: .7 !important;
      transition: all .3s ease !important;
      border-radius: 0 !important;
    }

    .swiper-pagination-bullet-active {
      opacity: 1 !important;
      background: var(--red) !important;
      width: 20px !important;
      border-radius: 2px !important;
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: .4;
    }

    .scroll-indicator span {
      font-size: .58rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .6);
    }

    .scroll-line {
      width: 1px;
      height: 44px;
      background: linear-gradient(180deg, var(--red), transparent);
      animation: float 2s ease-in-out infinite;
    }

    /* ══════════════════════════════════════
                             MARQUEE
                          ══════════════════════════════════════ */
    .marquee-wrap {
      background: var(--red);
      overflow: hidden;
      padding: 11px 0;
      position: relative;
    }

    .marquee-wrap::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(90deg,
          rgba(0, 0, 0, .07) 0px,
          rgba(0, 0, 0, .07) 1px,
          transparent 1px,
          transparent 40px);
    }

    .marquee-track {
      display: flex;
      width: max-content;
      animation: marquee 28s linear infinite;
    }

    .m-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0 2.5rem;
      white-space: nowrap;
      font-family: 'Bebas Neue', sans-serif;
      font-size: .9rem;
      letter-spacing: 3.5px;
      color: rgba(255, 255, 255, .95);
    }

    .m-sep {
      color: rgba(255, 255, 255, .4);
      font-size: .35rem;
    }

    /* ══════════════════════════════════════
                             SECTION BASE
                          ══════════════════════════════════════ */
    .page-sec {
      padding: 2rem 0;
    }

    .sec-head {
      margin-bottom: 2.8rem;
    }

    .sec-head p {
      color: rgba(255, 255, 255, .5);
      font-size: .9rem;
      max-width: 520px;
      line-height: 1.75;
      font-weight: 300;
      margin-top: .5rem;
    }

    /* decorative section divider */
    .sec-divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .06) 30%, rgba(215, 35, 35, .25) 50%, rgba(255, 255, 255, .06) 70%, transparent);
    }

    /* ══════════════════════════════════════
                             ABOUT
                          ══════════════════════════════════════ */
    .about-sec {
      background: var(--dark1);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 440px 1fr;
      gap: 4rem;
      align-items: center;
    }

    .about-img-wrap {
      position: relative;
    }

    .about-img-wrap img {
      width: 100%;
      display: block;
      border-radius: 2px;
      object-fit: contain;
      filter: brightness(.95);
    }

    /* frame accent corners */
    .about-img-wrap::before,
    .about-img-wrap::after {
      content: '';
      position: absolute;
      width: 40px;
      height: 40px;
      border-color: var(--red);
      border-style: solid;
      z-index: 2;
    }

    .about-img-wrap::before {
      top: -8px;
      left: -8px;
      border-width: 2px 0 0 2px;
    }

    .about-img-wrap::after {
      bottom: -8px;
      right: -8px;
      border-width: 0 2px 2px 0;
    }

    .about-img-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      background: var(--red);
      border-radius: 2px;
      padding: .8rem 1.4rem;
      margin-top: .8rem;
      box-shadow: 0 8px 30px rgba(215, 35, 35, .3);
      position: relative;
      overflow: hidden;
    }

    .about-img-badge::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, .08), transparent);
    }

    .aib-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      line-height: 1;
      color: #fff;
    }

    .aib-lbl {
      font-size: .6rem;
      font-weight: 700;
      color: rgba(255, 255, 255, .75);
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    .about-list {
      list-style: none;
      margin-bottom: 1.5rem;
    }

    .about-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: .5rem;
      padding: .6rem .8rem;
      border-radius: 2px;
      border: 1px solid rgba(255, 255, 255, .05);
      background: rgba(255, 255, 255, .02);
      transition: all .25s;
    }

    .about-list li:hover {
      background: rgba(215, 35, 35, .06);
      border-color: rgba(215, 35, 35, .2);
      transform: translateX(4px);
    }

    .al-icon {
      width: 32px;
      height: 32px;
      border-radius: 2px;
      background: rgba(215, 35, 35, .1);
      border: 1px solid rgba(215, 35, 35, .2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--red);
      font-size: .75rem;
      flex-shrink: 0;
      transition: all .3s;
    }

    .about-list li:hover .al-icon {
      background: var(--red);
      color: #fff;
      border-color: var(--red);
    }

    .al-title {
      font-weight: 700;
      color: #fff;
      font-size: .82rem;
      margin-bottom: 1px;
    }

    .al-sub {
      color: rgba(255, 255, 255, .48);
      font-size: .7rem;
      font-weight: 300;
    }

    /* ══════════════════════════════════════
                             SALON — NEW PREMIUM SPLIT LAYOUT
                          ══════════════════════════════════════ */
    .salon-cinema-sec {
      background: var(--black);
      position: relative;
      overflow: hidden;
      padding: 2.5rem 0 3rem;
    }

    .salon-cinema-sec::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255, 255, 255, .012) 60px, rgba(255, 255, 255, .012) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255, 255, 255, .012) 60px, rgba(255, 255, 255, .012) 61px);
      pointer-events: none;
    }

    .salon-cinema-sec::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(215, 35, 35, .07) 0%, transparent 70%);
      pointer-events: none;
    }

    .salon-cinema-inner {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 2.5rem;
      position: relative;
      z-index: 2;
    }

    .salon-cinema-header {
      margin-bottom: 2rem;
    }

    /* ── TOP SPLIT: Left = 3 premium pics | Right = 1 video player switching ── */
    .salon-split {
      display: grid;
      grid-template-columns: 500px 520px;
      gap: 40px;
      margin-bottom: 12px;
      align-items: stretch;
      justify-content: center;
    }

    /* LEFT COLUMN — 2 stacked photos, matches video height */
    .salon-left-col {
      display: flex;
      flex-direction: column;
      gap: 8px;
      height: auto;
    }

    .salon-pic-card {
      position: relative;
      border-radius: 3px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .08);
      background: #000;
      box-shadow: 0 6px 24px rgba(0, 0, 0, .6);
      transition: border-color .4s, box-shadow .4s, transform .4s;
      flex: 1;
      cursor: pointer;
    }

    .salon-pic-card:hover {
      border-color: rgba(215, 35, 35, .4);
      box-shadow: 0 16px 44px rgba(0, 0, 0, .75), 0 0 0 1px rgba(215, 35, 35, .12);
      transform: translateX(4px);
    }

    /* animated red left bar */
    .salon-pic-card::after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(180deg, var(--red), var(--teal));
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform .4s cubic-bezier(.16, 1, .3, 1);
      z-index: 6;
    }

    .salon-pic-card:hover::after {
      transform: scaleY(1);
    }

    .salon-pic-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .7s ease;
    }

    .salon-pic-card:hover .salon-pic-img {
      transform: scale(1.06);
    }

    /* RIGHT COLUMN — single video player, videos switch one after one */
    .salon-right-col {
      position: relative;
      border-radius: 3px;
      overflow: hidden;
      border: 1px solid rgba(215, 35, 35, .28);
      background: #000;
      box-shadow: 0 0 0 1px rgba(255, 255, 255, .03), 0 24px 70px rgba(0, 0, 0, .8), 0 0 60px rgba(215, 35, 35, .1);
      height: 420px;
    }

    /* top + bottom accent lines on single video player */
    .salon-right-col::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, #d72323 30%, #0b4c64 70%, transparent);
      z-index: 10;
    }

    .salon-right-col::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(215, 35, 35, .5) 50%, transparent);
      z-index: 10;
    }

    /* corner brackets */
    .svp-corner {
      position: absolute;
      width: 18px;
      height: 18px;
      z-index: 11;
    }

    .svp-corner.tl {
      top: -1px;
      left: -1px;
      border-top: 2px solid #d72323;
      border-left: 2px solid #d72323;
    }

    .svp-corner.tr {
      top: -1px;
      right: -1px;
      border-top: 2px solid #0b4c64;
      border-right: 2px solid #0b4c64;
    }

    .svp-corner.bl {
      bottom: -1px;
      left: -1px;
      border-bottom: 2px solid #0b4c64;
      border-left: 2px solid #0b4c64;
    }

    .svp-corner.br {
      bottom: -1px;
      right: -1px;
      border-bottom: 2px solid #d72323;
      border-right: 2px solid #d72323;
    }

    /* videos inside single player — crossfade one after one */
    .svp-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      opacity: 0;
      transition: opacity .9s cubic-bezier(.4, 0, .2, 1);
      z-index: 1;
    }

    .svp-video.svp-active {
      opacity: 1;
    }

    /* vignette overlay */
    .svp-overlay {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, .4) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, transparent 20%, transparent 75%, rgba(0, 0, 0, .5) 100%);
      z-index: 3;
      pointer-events: none;
    }

    /* live badge */
    .svp-badge {
      position: absolute;
      top: .85rem;
      left: .85rem;
      z-index: 12;
      font-family: 'Rajdhani', sans-serif;
      font-size: .6rem;
      font-weight: 700;
      letter-spacing: 2px;
      color: #fff;
      background: rgba(215, 35, 35, .88);
      border: 1px solid rgba(255, 255, 255, .15);
      padding: 3px 11px;
      border-radius: 2px;
      display: flex;
      align-items: center;
      gap: 6px;
      backdrop-filter: blur(8px);
    }

    .svp-badge::before {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #fff;
      animation: pulse 1.5s ease infinite;
    }

    /* bottom info bar */
    .svp-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 2rem 1rem .85rem;
      background: linear-gradient(transparent, rgba(0, 0, 0, .8));
      z-index: 5;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
    }

    .svp-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.15rem;
      letter-spacing: 1.5px;
      color: #fff;
      line-height: 1;
    }

    .svp-subtitle {
      font-family: 'Rajdhani', sans-serif;
      font-size: .56rem;
      font-weight: 700;
      letter-spacing: 3px;
      color: rgba(255, 255, 255, .38);
      text-transform: uppercase;
      margin-top: 2px;
    }

    /* dot switcher */
    .svp-dots {
      display: flex;
      gap: 5px;
      align-items: center;
      flex-shrink: 0;
    }

    .svp-dot {
      width: 18px;
      height: 2px;
      background: rgba(255, 255, 255, .22);
      border-radius: 2px;
      cursor: pointer;
      transition: background .3s, width .3s;
    }

    .svp-dot.active {
      background: var(--red);
      width: 28px;
    }

    /* thin progress line at very bottom */
    .svp-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--red), rgba(215, 35, 35, .45));
      z-index: 8;
      width: 0%;
    }

    /* ── BOTTOM STRIP — polaroid-style cards ── */
    .salon-strip-section {
      margin-top: 8px;
    }

    .salon-strip-label {
      font-family: 'Rajdhani', sans-serif;
      font-size: .58rem;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .2);
      margin-bottom: .7rem;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .salon-strip-label::before {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: linear-gradient(90deg, var(--red), transparent);
      flex-shrink: 0;
    }

    .salon-strip-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, rgba(255, 255, 255, .05), transparent);
    }

    .salon-strip-overflow {
      overflow: hidden;
      position: relative;
      mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
    }

    .salon-strip-track {
      display: flex;
      gap: 10px;
      width: max-content;
      will-change: transform;
      padding: 4px 0 10px;
    }

    /* polaroid card */
    .salon-strip-item {
      flex-shrink: 0;
      width: 220px;
      background: var(--dark3);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: 2px;
      overflow: hidden;
      position: relative;
      transition: border-color .35s, transform .4s cubic-bezier(.16, 1, .3, 1), box-shadow .35s;
      cursor: pointer;
    }

    .salon-strip-item:hover {
      border-color: rgba(215, 35, 35, .3);
      transform: translateY(-7px) rotate(-0.4deg);
      box-shadow: 0 18px 38px rgba(0, 0, 0, .65), 0 0 0 1px rgba(215, 35, 35, .1);
    }

    .salon-strip-item:nth-child(even):hover {
      transform: translateY(-7px) rotate(0.4deg);
    }

    .salon-strip-img-wrap {
      position: relative;
      overflow: hidden;
      height: 140px;
    }

    .salon-strip-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .55s ease;
    }

    .salon-strip-item:hover img {
      transform: scale(1.09);
    }

    /* red tint sweep on hover */
    .salon-strip-img-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(215, 35, 35, .07) 100%);
      opacity: 0;
      transition: opacity .4s;
      z-index: 2;
    }

    .salon-strip-item:hover .salon-strip-img-wrap::after {
      opacity: 1;
    }

    /* foot bar — number only */
    .salon-strip-foot {
      padding: .3rem .6rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .salon-strip-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1rem;
      color: rgba(255, 255, 255, .2);
      line-height: 1;
      letter-spacing: 1px;
      transition: color .35s;
    }

    .salon-strip-item:hover .salon-strip-num {
      color: rgba(215, 35, 35, .6);
    }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .salon-left-col, .svp-wrap, .svp-player { width: 100% !important; max-width: 100% !important; overflow: hidden !important; }
      .salon-split {
        grid-template-columns: 1fr;
      }

      .salon-right-col {
        aspect-ratio: 16/9;
      }

      .salon-strip-item {
        width: 145px;
      }

      .salon-strip-img-wrap {
        height: 110px;
      }
    }

    @media (max-width: 480px) {
      .salon-left-col { height: 700px !important; min-height: 700px !important; }
      .salon-right-col { height: auto !important; }
      .salon-split { overflow: hidden !important; }
      .salon-strip-item { width: 160px !important; gap: 4px !important; margin-right: -20px !important; }
      .salon-strip-img-wrap { height: 110px !important; }
      .salon-cinema-inner {
        padding: 0 1rem;
      }

      .salon-strip-item {
        width: 125px;
      }

      .salon-strip-img-wrap {
        height: 90px;
      }
    }

    /* ══════════════════════════════════════
                             MACHINES
                          ══════════════════════════════════════ */
    .machines-sec {
      background: var(--dark2);
    }

    .machines-scroll-wrap {
      overflow: hidden;
      position: relative;
      mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
    }

    .machines-scroll-track {
      display: flex;
      width: max-content;
      gap: 1.2rem;
      will-change: transform;
    }

    .machine-card {
      flex-shrink: 0;
      width: 270px;
      background: var(--dark3);
      border: 1px solid var(--border);
      border-radius: 2px;
      overflow: hidden;
      transition: all .4s cubic-bezier(.16, 1, .3, 1);
      position: relative;
    }

    .machine-card:hover {
      border-color: rgba(215, 35, 35, .35);
      transform: translateY(-8px);
      box-shadow: 0 24px 50px rgba(0, 0, 0, .6), 0 0 0 1px rgba(215, 35, 35, .1);
    }

    .machine-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--red), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s ease;
      z-index: 2;
    }

    .machine-card:hover::before {
      transform: scaleX(1);
    }

    .machine-img-wrap {
      width: 100%;
      height: 175px;
      overflow: hidden;
      background: var(--dark4);
    }

    .machine-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s ease;
      filter: brightness(.85);
    }

    .machine-card:hover .machine-img-wrap img {
      transform: scale(1.08);
      filter: brightness(1);
    }

    .machine-info {
      padding: 1.1rem 1.2rem 1.2rem;
    }

    .machine-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(215, 35, 35, .1);
      border: 1px solid rgba(215, 35, 35, .22);
      border-radius: 2px;
      padding: 3px 10px;
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: .6rem;
    }

    .machine-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.05rem;
      letter-spacing: 1px;
      color: #fff;
      margin-bottom: .35rem;
      line-height: 1.15;
    }

    .machine-commande {
      font-size: .72rem;
      color: var(--muted);
      font-weight: 300;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .machine-commande i {
      color: var(--red);
      font-size: .62rem;
    }

    /* ══════════════════════════════════════
                             SERVICES PREVIEW
                          ══════════════════════════════════════ */
    .svc-prev-sec {
      background: var(--dark1);
    }

    .svc-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.8rem;
    }

    .svc-card {
      background: var(--dark2);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: 6px;
      position: relative;
      overflow: hidden;
      transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
      display: flex;
      flex-direction: column;
    }

    .svc-card::before,
    .svc-card::after {
      content: '';
      position: absolute;
      z-index: 3;
      pointer-events: none;
      width: 18px;
      height: 18px;
      border-color: var(--red);
      border-style: solid;
      opacity: 0;
      transition: opacity .35s ease;
    }

    .svc-card::before {
      top: 8px;
      left: 8px;
      border-width: 2px 0 0 2px;
    }

    .svc-card::after {
      bottom: 8px;
      right: 8px;
      border-width: 0 2px 2px 0;
    }

    .svc-card:hover::before,
    .svc-card:hover::after {
      opacity: 1;
    }

    .svc-card .svc-top-line {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      z-index: 4;
      background: linear-gradient(90deg, var(--red), var(--teal));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .45s ease;
    }

    .svc-card:hover .svc-top-line {
      transform: scaleX(1);
    }

    .svc-card:hover {
      transform: translateY(-6px);
      border-color: rgba(215, 35, 35, .3);
      box-shadow: 0 20px 50px rgba(0, 0, 0, .5), 0 0 0 1px rgba(215, 35, 35, .1);
    }

    .svc-img {
      width: 100%;
      height: 180px;
      overflow: hidden;
      background: #fff;
      position: relative;
    }

    .svc-img img {
      width: 100%;
      height: 100%;
      object-fit: fill;
      display: block;
      transition: transform .55s ease;
    }

    .svc-card:hover .svc-img img {
      transform: scale(1.06);
    }

    .svc-content {
      padding: 1.2rem;
      background: var(--dark2);
      position: relative;
      z-index: 2;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .svc-content::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 2px;
      background: var(--red);
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform .4s ease;
    }

    .svc-card:hover .svc-content::before {
      transform: scaleY(1);
    }

    .svc-icon {
      width: 34px;
      height: 34px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .9rem;
      margin-bottom: .6rem;
      background: rgba(215, 35, 35, .1);
      color: var(--red);
      border: 1px solid rgba(215, 35, 35, .2);
      transition: all .3s ease;
    }

    .svc-card:hover .svc-icon {
      background: var(--red);
      color: #fff;
      border-color: var(--red);
      transform: rotate(6deg) scale(1.08);
    }

    .svc-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.15rem;
      letter-spacing: .5px;
      color: #fff;
      margin-bottom: .35rem;
      line-height: 1.15;
    }

    .svc-desc {
      color: rgba(255, 255, 255, .38);
      font-size: .75rem;
      line-height: 1.55;
      font-weight: 300;
      margin-bottom: .6rem;
      flex: 1;
    }

    .svc-list {
      list-style: none;
      margin-bottom: .6rem;
    }

    .svc-list li {
      display: flex;
      align-items: center;
      gap: 6px;
      color: rgba(255, 255, 255, .55);
      font-size: .72rem;
      margin-bottom: .22rem;
    }

    .svc-list li i {
      color: var(--red);
      font-size: .5rem;
    }

    .svc-tag {
      display: inline-block;
      padding: 3px 9px;
      border-radius: 2px;
      background: rgba(215, 35, 35, .1);
      color: rgba(215, 35, 35, .9);
      font-family: 'Rajdhani', sans-serif;
      font-size: .66rem;
      font-weight: 700;
      letter-spacing: 1px;
      border: 1px solid rgba(215, 35, 35, .25);
      text-transform: uppercase;
      align-self: flex-start;
    }

    /* ══════════════════════════════════════
                             CTA SECTION
                          ══════════════════════════════════════ */
    .cta-sec {
      background: var(--dark1);
      position: relative;
      overflow: hidden;
      padding: 3rem 0;
    }

    .cta-sec::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 90% 70% at 50% 50%, rgba(215, 35, 35, .1) 0%, transparent 60%);
    }

    /* decorative background text */
    .cta-sec::after {
      content: 'AMIYASIMPORT';
      position: absolute;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(8rem, 18vw, 18rem);
      letter-spacing: 4px;
      color: rgba(255, 255, 255, .018);
      white-space: nowrap;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      z-index: 1;
    }

    .cta-inner {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .cta-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 6vw, 6rem);
      color: #fff;
      letter-spacing: 2px;
      line-height: .9;
      margin-bottom: 1.5rem;
    }

    .cta-title .red {
      color: var(--red);
    }

    .cta-title .outline {
      -webkit-text-stroke: 1.5px rgba(255, 255, 255, .5);
      color: transparent;
    }

    .cta-sub {
      color: rgba(255, 255, 255, .55);
      font-size: .95rem;
      max-width: 520px;
      margin: 0 auto 2.5rem;
      line-height: 1.75;
      font-weight: 300;
    }

    .cta-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ══════════════════════════════════════
                             REFERENCES
                          ══════════════════════════════════════ */
    .refs-sec {
      background: var(--dark2);
      padding: 1rem 0 1rem;
    }

    .refs-inner {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 2.5rem;
    }

    .refs-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .refs-header p {
      color: rgba(255, 255, 255, .42);
      font-size: .88rem;
      max-width: 400px;
      margin: .5rem auto 0;
      line-height: 1.75;
      font-weight: 300;
    }

    /* ── 2 rows of 10 ── */
    .refs-fixed-rows {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 2.5rem;
    }

    .refs-fixed-row {
      display: grid;
      grid-template-columns: repeat(10, 1fr);
      gap: 6px;
    }

    .refs-fixed-card {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 84px;
      background: #fff;
      border-radius: 2px;
      border: 1px solid rgba(255, 255, 255, .1);
      overflow: hidden;
      position: relative;
      transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s, border-color .3s;
    }

    .refs-fixed-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--red), var(--teal));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .35s ease;
    }

    .refs-fixed-card:hover {
      transform: translateY(-3px);
      border-color: rgba(215, 35, 35, .28);
      box-shadow: 0 10px 28px rgba(0, 0, 0, .3);
    }

    .refs-fixed-card:hover::after {
      transform: scaleX(1);
    }

    .refs-fixed-card img {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
      display: block;
      transition: transform .3s;
    }

    .refs-fixed-card:hover img {
      transform: scale(1.06);
    }

    @media (max-width: 1024px) {
      .refs-fixed-row {
        grid-template-columns: repeat(5, 1fr);
      }
    }

    @media (max-width: 540px) {
      .refs-fixed-row {
        grid-template-columns: repeat(4, 1fr);
      }

      .refs-fixed-card {
        height: 70px;
      }
    }

    /* ── Divider ── */
    .refs-band-divider {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      margin-bottom: 1.6rem;
    }

    .refs-band-divider::before,
    .refs-band-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
    }

    .refs-band-divider span {
      font-family: 'Rajdhani', sans-serif;
      font-size: .6rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .22);
      white-space: nowrap;
    }

    /* ── Single infinity band ── */
    .refs-band-row {
      position: relative;
      overflow: hidden;
    }

    .refs-band-row::before,
    .refs-band-row::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 120px;
      z-index: 3;
      pointer-events: none;
    }

    .refs-band-row::before {
      left: 0;
      background: linear-gradient(to right, var(--dark2), transparent);
    }

    .refs-band-row::after {
      right: 0;
      background: linear-gradient(to left, var(--dark2), transparent);
    }

    .refs-band-track {
      display: block;
      position: relative;
      will-change: transform;
    }

    .refs-band-tile {
      position: absolute;
      top: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      border-radius: 2px;
      border: 1px solid rgba(255, 255, 255, .08);
      padding: .5rem .8rem;
      transition: border-color .25s, box-shadow .25s, transform .25s;
    }

    .refs-band-tile:hover {
      border-color: rgba(215, 35, 35, .3);
      box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
      transform: translateY(-2px);
      z-index: 2;
    }

    .refs-band-tile img {
      display: block;
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
    }

    /* ── CTA ── */
    .refs-cta-row {
      text-align: center;
      margin-top: 2.5rem;
    }

    @media (max-width: 480px) {
      .salon-left-col { height: 700px !important; min-height: 700px !important; }
      .salon-right-col { height: auto !important; }
      .salon-split { overflow: hidden !important; }
      .refs-inner {
        padding: 0 1rem;
      }
    }

    /* ══════════════════════════════════════
                             TRUST BAR
                          ══════════════════════════════════════ */
    .trust-bar {
      background: var(--dark2);
      padding: 1.2rem 0;
      border-top: 1px solid var(--border);
    }

    .trust-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 7px;
      color: rgba(255, 255, 255, .65);
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .5px;
      transition: color .3s;
    }

    .trust-item:hover {
      color: #fff;
    }

    .trust-item i {
      color: var(--red);
    }

    /* ══════════════════════════════════════
                             REVEAL ANIMATION
                          ══════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ══════════════════════════════════════
                             RESPONSIVE
                          ══════════════════════════════════════ */
    @media(max-width:1024px) {
      .about-grid {
        grid-template-columns: 1fr;
      }

      .svc-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .stats-inner {
        grid-template-columns: repeat(2, 1fr);
      }

      .stat-cell {
        border-bottom: 1px solid var(--border);
      }
    }

    @media(max-width:768px) {
      .hero-title {
        font-size: 3rem;
      }

      .svc-grid {
        grid-template-columns: 1fr;
      }

      .salon-item {
        width: 290px;
        height: 195px;
      }

      .salon-strip-wrap::before,
      .salon-strip-wrap::after {
        width: 60px;
      }

      .machine-card {
        width: 220px;
      }

      .machine-img-wrap {
        height: 145px;
      }
    }

    @media(min-width:1025px) {
      .hero-wrap {
        height: calc(100vh - 40px);
        min-height: 520px;
      }

      .swiper-slide img {
        object-fit: cover;
        object-position: center;
      }
    }

    @media(max-width:1024px) and (min-width:769px) {
      .hero-wrap {
        height: auto !important;
        min-height: auto !important;
        padding-top: 70px !important;
      }

      .swiper-slide img {
        object-fit: contain !important;
        background: rgba(0, 0, 0, .8);
      }
    }

    @media(max-width:768px) {
      .hero-wrap {
        height: auto !important;
        min-height: auto !important;
        padding-bottom: 10px !important;
      }

      .swiper-slide img {
        object-fit: contain !important;
        background: rgba(0, 0, 0, .8);
      }

      .slide-content {
        padding: 0 1.5rem;
      }
    }

    @media(max-width:480px) {
      .hero-wrap {
        height: auto !important;
        min-height: auto !important;
        padding-bottom: 10px !important;
      }

      .swiper-slide img {
        object-fit: contain !important;
        background: rgba(0, 0, 0, .8);
      }

      .hero-ctas {
        flex-direction: column;
        gap: .7rem;
      }

      .stats-inner {
        grid-template-columns: repeat(2, 1fr);
      }

      .logo-slide {
        width: 160px;
        height: 80px;
      }
    }

    /* ══════════════════════
                       VIDEO SHOWCASE SECTION
                     ══════════════════════ */
    .video-showcase-sec {
      background: var(--black);
      padding: 1.5rem 0;
      position: relative;
      overflow: hidden;
    }

    /* subtle grid bg */
    .video-showcase-sec::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255, 255, 255, .018) 60px, rgba(255, 255, 255, .018) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255, 255, 255, .018) 60px, rgba(255, 255, 255, .018) 61px);
      pointer-events: none;
    }

    /* radial red glow center */
    .video-showcase-sec::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(215, 35, 35, .06) 0%, transparent 70%);
      pointer-events: none;
    }

    .video-showcase-inner {
      position: relative;
      z-index: 2;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 2.5rem;
    }

    .video-showcase-header {
      text-align: center;
      margin-bottom: 2.8rem;
    }

    /* THE CADRE */
    .video-cadre {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 7;
      border: 1px solid rgba(215, 35, 35, .3);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, .04),
        0 0 80px rgba(215, 35, 35, .14),
        0 40px 100px rgba(0, 0, 0, .8),
        inset 0 0 0 1px rgba(255, 255, 255, .03);
      border-radius: 3px;
      overflow: hidden;
      background: #000;
    }

    /* top gradient line */
    .video-cadre::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, #d72323 30%, #0b4c64 70%, transparent);
      z-index: 10;
    }

    /* bottom gradient line */
    .video-cadre::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(11, 76, 100, .5) 30%, rgba(215, 35, 35, .5) 70%, transparent);
      z-index: 10;
    }

    .video-cadre video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* vignette overlay */
    .video-cadre-overlay {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, .4) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .12) 0%, transparent 15%, transparent 85%, rgba(0, 0, 0, .2) 100%);
      z-index: 3;
      pointer-events: none;
    }

    /* corner brackets */
    .vcadre-corner {
      position: absolute;
      width: 24px;
      height: 24px;
      z-index: 11;
    }

    .vcadre-corner.tl {
      top: -1px;
      left: -1px;
      border-top: 2px solid #d72323;
      border-left: 2px solid #d72323;
    }

    .vcadre-corner.tr {
      top: -1px;
      right: -1px;
      border-top: 2px solid #0b4c64;
      border-right: 2px solid #0b4c64;
    }

    .vcadre-corner.bl {
      bottom: -1px;
      left: -1px;
      border-bottom: 2px solid #0b4c64;
      border-left: 2px solid #0b4c64;
    }

    .vcadre-corner.br {
      bottom: -1px;
      right: -1px;
      border-bottom: 2px solid #d72323;
      border-right: 2px solid #d72323;
    }

    /* LIVE badge */
    .vcadre-badge {
      position: absolute;
      top: .9rem;
      right: .9rem;
      z-index: 12;
      font-family: 'Rajdhani', sans-serif;
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: 2px;
      color: #fff;
      background: rgba(215, 35, 35, .85);
      border: 1px solid rgba(255, 255, 255, .15);
      padding: 3px 10px;
      border-radius: 2px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .vcadre-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #fff;
      animation: pulse 1.5s ease infinite;
    }

    @media (max-width: 768px) {
      .video-showcase-sec {
        padding: 3rem 0;
      }

      .video-cadre {
        aspect-ratio: 16 / 9;
      }
    }

    /* ══════════════════════════════════════
                       TESTIMONIALS
          ══════════════════════════════════════ */
    .testi-sec {
      background: var(--dark2);
      padding: 3.5rem 0;
      position: relative;
      overflow: hidden;
    }

    .testi-sec::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(215, 35, 35, .06) 0%, transparent 70%);
      pointer-events: none;
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 2.8rem;
    }

    .testi-card {
      background: var(--dark3);
      border: 1px solid var(--border);
      border-radius: 3px;
      padding: 1.8rem 1.6rem;
      position: relative;
      transition: border-color .35s, box-shadow .35s, transform .35s;
    }

    .testi-card:hover {
      border-color: rgba(215, 35, 35, .25);
      box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
      transform: translateY(-4px);
    }

    .testi-card::before {
      content: '\201C';
      position: absolute;
      top: .8rem;
      right: 1.2rem;
      font-family: Georgia, serif;
      font-size: 5rem;
      line-height: 1;
      color: rgba(215, 35, 35, .1);
      pointer-events: none;
    }

    .testi-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 1rem;
    }

    .testi-stars i {
      color: #f5a623;
      font-size: .65rem;
    }

    .testi-text {
      font-size: .84rem;
      line-height: 1.75;
      color: rgba(255, 255, 255, .6);
      font-weight: 300;
      margin-bottom: 1.4rem;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid var(--border);
      padding-top: 1rem;
    }

    .testi-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--red), var(--teal));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1rem;
      color: #fff;
      flex-shrink: 0;
    }

    .testi-name {
      font-weight: 700;
      font-size: .82rem;
      color: #fff;
    }

    .testi-company {
      font-size: .65rem;
      color: rgba(255, 255, 255, .35);
      font-weight: 300;
      margin-top: 1px;
    }

    @media(max-width:900px) {
      .testi-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ══════════════════════════════════════
                       FAQ
          ══════════════════════════════════════ */
    .faq-sec {
      background: var(--dark1);
      padding: 3.5rem 0;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 2.8rem;
    }

    .faq-item {
      background: var(--dark3);
      border: 1px solid var(--border);
      border-radius: 3px;
      overflow: hidden;
      transition: border-color .3s;
    }

    .faq-item:hover {
      border-color: rgba(215, 35, 35, .25);
    }

    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.2rem 1.4rem;
      cursor: pointer;
      user-select: none;
    }

    .faq-q-text {
      font-weight: 600;
      font-size: .88rem;
      color: #fff;
      line-height: 1.4;
    }

    .faq-icon {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: rgba(215, 35, 35, .1);
      border: 1px solid rgba(215, 35, 35, .2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--red);
      font-size: .6rem;
      flex-shrink: 0;
      transition: background .3s, transform .3s;
    }

    .faq-item.open .faq-icon {
      background: var(--red);
      color: #fff;
      transform: rotate(45deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease;
      padding: 0 1.4rem;
    }

    .faq-item.open .faq-a {
      max-height: 200px;
      padding: 0 1.4rem 1.2rem;
    }

    .faq-a p {
      color: rgba(255, 255, 255, .5);
      font-size: .82rem;
      line-height: 1.75;
      font-weight: 300;
      border-top: 1px solid var(--border);
      padding-top: .9rem;
    }

    @media(max-width:768px) {
      .faq-grid {
        grid-template-columns: 1fr;
      }
    }
  @media (max-width: 1024px) {
    }
