    :root {
      --navy: #1B2A45;
      --navy-light: #28406B;
      --orange: #E8592D;
      --orange-dark: #C2431B;
      --cream: #FFF8F0;
      --ink: #12141C;
      --line: #EAE1D2;
      --white: #FFFFFF;
      --muted: #5B5B66;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--cream);
      color: var(--ink);
      line-height: 1.55;
    }

    h1,
    h2,
    h3,
    .display {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      color: var(--ink);
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ---------- HEADER ---------- */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 248, 240, 0.94);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--line);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 32px;
      max-width: 1180px;
      margin: 0 auto;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-mark {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--navy);
      position: relative;
      flex-shrink: 0;
    }

    .logo-mark::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 4px;
      bottom: 4px;
      width: 0;
      border-left: 1.5px dashed var(--orange);
      transform: translateX(-50%) rotate(20deg);
    }

    .logo-text {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 1.2rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      line-height: 1.05;
    }

    .logo-text span {
      display: block;
      font-size: 0.62rem;
      font-weight: 500;
      color: var(--orange-dark);
      letter-spacing: 2px;
    }

    nav ul {
      display: flex;
      gap: 30px;
      list-style: none;
    }

    nav ul li a {
      font-size: 0.88rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.4px;
      transition: color .2s;
    }

    nav ul li a:hover {
      color: var(--navy);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 22px;
    }

    .btn {
      display: inline-block;
      padding: 12px 24px;
      background: var(--orange);
      color: var(--ink);
      border-radius: 2px;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      border: 1px solid var(--orange);
      cursor: pointer;
      transition: background .2s, color .2s, border-color .2s;
    }

    .btn:hover {
      background: var(--orange-dark);
      border-color: var(--orange-dark);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.55);
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: var(--white);
    }

    .btn-dark {
      background: var(--navy);
      color: var(--white);
      border-color: var(--navy);
    }

    .btn-dark:hover {
      background: var(--navy-light);
      border-color: var(--navy-light);
    }

    .menu-toggle {
      display: none;
      font-size: 1.6rem;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--ink);
    }

    @media (max-width:920px) {
      nav {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      nav.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        padding: 20px 32px;
      }

      nav.open ul {
        flex-direction: column;
        gap: 18px;
      }
    }

    /* ---------- HERO SLIDER ---------- */
    .hero-slider {
      position: relative;
      overflow: hidden;
      padding: 0;
    }

    .hero-track {
      display: flex;
      transition: transform .6s cubic-bezier(.4, 0, .2, 1);
    }

    .hero-slide {
      flex: 0 0 100%;
      min-width: 0;
      position: relative;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-color: var(--navy);
      color: var(--white);
      min-height: 92vh;
      display: flex;
      align-items: center;
    }

    .hero-slide::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(8, 12, 9, 0.62) 0%, rgba(8, 12, 9, 0.38) 45%, rgba(8, 12, 9, 0.12) 75%);
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 940px;
      width: 100%;
    }

    .eyebrow {
      font-family: 'Oswald', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 2px;
      color: var(--orange);
      text-transform: uppercase;
      margin-bottom: 18px;
      font-weight: 600;
    }

    .hero-slide h1 {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 4.1rem;
      line-height: 1.03;
      letter-spacing: 0.5px;
      margin-bottom: 22px;
      color: var(--white);
    }

    .hero-slide h1 em {
      font-style: normal;
      color: var(--orange);
    }

    .hero-tagline {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-weight: 500;
      font-size: 1.35rem;
      color: var(--orange);
      margin-bottom: 32px;
    }

    .hero-slide p.lead {
      font-size: 1.05rem;
      color: #DADFEA;
      max-width: 48ch;
      margin-bottom: 34px;
    }

    .hero-cta {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .btn-split {
      display: inline-flex;
      align-items: stretch;
    }

    .btn-split-label {
      background: var(--white);
      color: var(--ink);
      padding: 17px 28px;
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      display: flex;
      align-items: center;
      transition: background .2s;
    }

    .btn-split-arrow {
      background: var(--orange);
      color: var(--ink);
      width: 54px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
      transition: background .2s;
    }

    .btn-split:hover .btn-split-label {
      background: #EFEBDE;
    }

    .btn-split:hover .btn-split-arrow {
      background: var(--orange-dark);
      color: var(--white);
    }

    .hero-slider-controls {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 22px;
      z-index: 3;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 22px;
    }

    .hero-arrow {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.4);
      background: rgba(255, 255, 255, 0.08);
      color: var(--white);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.05rem;
      transition: background .2s, border-color .2s;
    }

    .hero-arrow:hover {
      background: var(--orange);
      border-color: var(--orange);
    }

    .hero-dots {
      display: flex;
      gap: 8px;
    }

    .hero-dot {
      width: 8px;
      height: 8px;
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.4);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: width .3s, background .3s;
    }

    .hero-dot.active {
      background: var(--orange);
      width: 22px;
    }

    .hero-stats-bar {
      background: var(--navy);
      border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hero-stats {
      display: flex;
      gap: 0;
      flex-wrap: wrap;
      padding: 22px 0;
    }

    .hero-stats div {
      padding-right: 44px;
    }

    .hero-stats div strong {
      display: block;
      font-family: 'Oswald', sans-serif;
      font-size: 1.7rem;
      color: var(--orange);
    }

    .hero-stats div span {
      font-size: 0.78rem;
      color: #C9CEDA;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    @media (max-width:640px) {
      .hero-slide {
        min-height: 78vh;
      }

      .hero-slide h1 {
        font-size: 2.3rem;
      }

      .hero-slider-controls {
        bottom: 14px;
        gap: 14px;
      }

      .hero-arrow {
        width: 36px;
        height: 36px;
      }
    }

    /* ---------- SECTION GENERIC ---------- */
    section {
      padding: 92px 0;
    }

    .section-head {
      margin-bottom: 44px;
      max-width: 640px;
    }

    .section-head .eyebrow {
      color: var(--orange-dark);
    }

    .section-head h2 {
      font-size: 2rem;
      margin-bottom: 14px;
    }

    .section-head p {
      color: var(--muted);
      font-size: 1rem;
    }

    .section-head.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    /* ---------- ABOUT ---------- */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-bottom: 64px;
    }

    .about-text p {
      color: var(--muted);
      font-size: 1rem;
      margin-bottom: 16px;
    }

    .about-media {
      position: relative;
    }

    .about-media img {
      width: 100%;
      height: 360px;
      object-fit: cover;
      border-radius: 3px;
    }

    .about-media-tag {
      position: absolute;
      bottom: -20px;
      left: -20px;
      background: var(--navy);
      color: var(--white);
      padding: 16px 22px;
      border-radius: 2px;
      max-width: 210px;
    }

    .about-media-tag strong {
      display: block;
      font-family: 'Oswald', sans-serif;
      font-size: 1.3rem;
      color: var(--orange);
    }

    .about-media-tag span {
      font-size: 0.8rem;
      color: #C9CEDA;
    }

    .feature-grid {
      background: var(--navy);
      border-radius: 6px;
      padding: 48px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .feature-card {
      background: var(--white);
      border-radius: 4px;
      border-top: 3px solid var(--orange);
      padding: 32px 26px;
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
    }

    .feature-icon {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 2px solid var(--orange);
      background: transparent;
      color: var(--orange);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
    }

    .feature-card h3 {
      font-size: 1.08rem;
      margin-bottom: 12px;
      color: var(--ink);
    }

    .feature-card p {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.65;
    }

    @media (max-width:920px) {
      .about-grid {
        grid-template-columns: 1fr;
      }

      .about-media {
        order: -1;
      }

      .about-media-tag {
        display: none;
      }

      .feature-grid {
        grid-template-columns: 1fr;
        padding: 28px;
      }
    }

    /* ---------- ONGOING TOURNAMENTS (alt) ---------- */
    .tournaments-alt {
      background: #EDECE5;
    }

    .tournaments-alt-title {
      text-align: center;
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 2.6rem;
      line-height: 1.18;
      letter-spacing: 5px;
      color: var(--navy);
      margin-bottom: 56px;
    }

    .tournaments-alt-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .tournaments-alt-col {
      text-align: center;
      padding: 0 24px;
    }

    .tournaments-alt-icon {
      color: var(--navy);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 50px;
    }

    .tournaments-alt-col h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 1.1rem;
      letter-spacing: 0.4px;
      margin-bottom: 12px;
      color: var(--ink);
    }

    .tournaments-alt-tagline {
      font-weight: 600;
      font-size: 0.98rem;
      color: var(--ink);
      margin-bottom: 20px;
      line-height: 1.5;
    }

    .tournaments-alt-info p {
      font-size: 0.85rem;
      color: var(--navy);
      font-weight: 500;
      margin-bottom: 8px;
    }

    .btn-pill {
      display: inline-block;
      margin-top: 16px;
      background: var(--navy);
      color: var(--white);
      padding: 14px 34px;
      border-radius: 30px;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 0.88rem;
      letter-spacing: 0.3px;
      transition: background .2s, color .2s;
    }

    .btn-pill:hover {
      background: var(--orange);
      color: var(--ink);
    }

    @media (max-width:768px) {
      .tournaments-alt-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .tournaments-alt-title {
        font-size: 2rem;
        letter-spacing: 2px;
      }
    }

    /* ---------- VIDEO SHOWCASE ---------- */
    .video-showcase {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 12% 15%, rgba(120, 60, 190, 0.35), transparent 55%),
        radial-gradient(circle at 88% 85%, rgba(120, 60, 190, 0.28), transparent 55%),
        linear-gradient(160deg, #14101F 0%, #0A0912 60%, #060509 100%);
      padding: 80px 0 70px;
    }

    .video-showcase-head {
      text-align: center;
      margin-bottom: 46px;
    }

    .video-showcase-head h2 {
      color: var(--white);
      font-size: 2.3rem;
      margin-bottom: 16px;
    }

    .video-underline {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 6px;
    }

    .video-underline .thick {
      width: 70px;
      height: 4px;
      background: var(--white);
      display: block;
    }

    .video-underline .thin {
      width: 150px;
      height: 2px;
      background: rgba(255, 255, 255, 0.45);
      display: block;
    }

    .video-slider {
      position: relative;
      max-width: 1180px;
      margin: 0 auto;
    }

    .video-viewport {
      overflow: hidden;
    }

    .video-track {
      display: flex;
      gap: 4px;
      transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    }

    .video-slide {
      flex: 0 0 100%;
      min-width: 0;
    }

    .video-thumb {
      position: relative;
      aspect-ratio: 4/3.1;
      overflow: hidden;
      cursor: pointer;
      background: #000;
    }

    .video-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.82;
      transition: opacity .2s;
    }

    .video-thumb:hover img {
      opacity: 0.95;
    }

    .video-play {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .video-play span {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.14);
      border: 2px solid rgba(255, 255, 255, 0.85);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.05rem;
    }

    .video-like {
      position: absolute;
      left: 14px;
      bottom: 14px;
      color: var(--white);
      font-size: 1.3rem;
      line-height: 1;
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    }

    .video-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.7);
      font-size: 2.1rem;
      line-height: 1;
      cursor: pointer;
      z-index: 5;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: color .2s;
    }

    .video-arrow:hover {
      color: var(--white);
    }

    .video-arrow.prev {
      left: -6px;
    }

    .video-arrow.next {
      right: -6px;
    }

    @media (max-width:640px) {
      .video-showcase-head h2 {
        font-size: 1.7rem;
      }

      .video-arrow {
        width: 34px;
        height: 34px;
        font-size: 1.6rem;
      }
    }

    /* ---------- SELECTED PLAYERS SLIDER ---------- */
    .players-slider {
      position: relative;
      max-width: 1180px;
      margin: 0 auto;
    }

    .players-viewport {
      overflow: hidden;
    }

    .players-track {
      display: flex;
      align-items: stretch;
      transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    }

    .player-slide {
      flex: 0 0 100%;
      min-width: 0;
      padding: 0 7px;
    }

    .player-card {
      position: relative;
      border-radius: 3px;
      overflow: hidden;
      height: 360px;
      max-height: 46vh;
    }

    .player-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    @media (max-width:640px) {
      .player-card {
        height: 260px;
      }
    }

    .player-tag {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(0deg, rgba(15, 18, 28, 0.88), transparent);
      color: var(--white);
      font-size: 0.72rem;
      font-weight: 500;
      padding: 22px 10px 10px;
      text-align: center;
    }

    .players-slider-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      margin-top: 30px;
    }

    .players-arrow {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: var(--white);
      color: var(--ink);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.05rem;
      transition: background .2s, color .2s, border-color .2s;
      flex-shrink: 0;
    }

    .players-arrow:hover {
      background: var(--navy);
      color: var(--white);
      border-color: var(--navy);
    }

    .players-dots {
      display: flex;
      gap: 8px;
    }

    .players-dot {
      width: 8px;
      height: 8px;
      border-radius: 4px;
      background: var(--line);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: width .3s, background .3s;
    }

    .players-dot.active {
      background: var(--orange);
      width: 22px;
    }

    /* ---------- OUR TEAMS ---------- */
   .teams-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:36px 24px;
}
.team-badge{
  display:flex; flex-direction:column; align-items:center;
  text-align:center;
}
.team-badge img{
  width:140px; height:140px; object-fit:contain; margin-bottom:14px;
}
.team-badge span{
  font-family:'Oswald',sans-serif; font-size:0.92rem; font-weight:700;
  color:var(--navy);
  text-transform:uppercase; letter-spacing:0.3px; line-height:1.3;
}

@media (max-width:920px){
  .teams-grid{grid-template-columns:repeat(3,1fr);}
  .team-badge img{width:120px; height:120px;}
}
@media (max-width:560px){
  .teams-grid{grid-template-columns:repeat(2,1fr); gap:28px 14px;}
  .team-badge img{width:100px; height:100px;}
  .team-badge span{font-size:0.78rem;}
}


    /* .team-badge {
      position: relative;
      aspect-ratio: 1/1;
      border-radius: 50%;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 14px;
      border: 2px solid var(--orange);
    }

    .team-badge span {
      font-family: 'Oswald', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      line-height: 1.25;
    } */

    /* ---------- NUMBERS ---------- */
    .numbers-wrap {
      position: relative;
      background: linear-gradient(180deg, rgba(27, 42, 69, 0.92), rgba(15, 18, 28, 0.94)),
        url('https://images.unsplash.com/photo-1595435934819-5704d86fc7f5?q=80&w=1600&auto=format&fit=crop') center/cover;
      color: var(--white);
    }

    .numbers-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
    }

    .number-item {
      padding: 44px 20px;
      text-align: center;
      border-right: 1px solid rgba(255, 255, 255, 0.14);
    }

    .number-item:last-child {
      border-right: none;
    }

    .number-item strong {
      display: block;
      font-family: 'Oswald', sans-serif;
      font-size: 2.4rem;
      color: var(--orange);
      margin-bottom: 8px;
    }

    .number-item span {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      color: #C9CEDA;
    }

    @media (max-width:920px) {
      .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .number-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
      }

      .number-item:nth-child(2n) {
        border-right: none;
      }
    }

    /* ---------- PRIZE / SPONSORSHIP ---------- */
    .prize-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .prize-list {
      list-style: none;
    }

    .prize-list li {
      display: flex;
      gap: 14px;
      padding: 14px 0;
      border-top: 1px solid var(--line);
      font-size: 0.94rem;
      color: var(--muted);
    }

    .prize-list li:first-child {
      border-top: none;
    }

    .prize-list li::before {
      content: "✓";
      color: var(--orange-dark);
      font-weight: 700;
      flex-shrink: 0;
    }

    .prize-media img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: 3px;
    }

    @media (max-width:920px) {
      .prize-grid {
        grid-template-columns: 1fr;
      }

      .prize-media {
        order: -1;
      }
    }

    /* ---------- TESTIMONIALS SLIDER ---------- */
    .testi-wrap {
      background: var(--white);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .testi-slider {
      position: relative;
      max-width: 1180px;
      margin: 0 auto;
    }

    .testi-viewport {
      overflow: hidden;
    }

    .testi-track {
      display: flex;
      align-items: stretch;
      transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    }

    .testi-slide {
      flex: 0 0 100%;
      min-width: 0;
      padding: 0 8px;
    }

    .testi-card {
      background: var(--cream);
      border: 1px solid var(--line);
      border-radius: 4px;
      padding: 30px 26px;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .testi-card.featured {
      background: var(--navy);
      border-color: var(--navy);
    }

    .testi-card.featured .testi-quote,
    .testi-card.featured .testi-person strong {
      color: var(--white);
    }

    .testi-card.featured .testi-person span {
      color: #C9CEDA;
    }

    .testi-mark {
      font-family: 'Oswald', sans-serif;
      font-size: 2.4rem;
      color: var(--orange-dark);
      line-height: 1;
      margin-bottom: 10px;
    }

    .testi-card.featured .testi-mark {
      color: var(--orange);
    }

    .testi-quote {
      font-size: 0.98rem;
      line-height: 1.6;
      margin-bottom: 22px;
      flex-grow: 1;
      color: var(--ink);
    }

    .testi-card.featured .testi-quote {
      color: #EDEFF7;
    }

    .testi-person {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testi-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      object-fit: cover;
      border: 1px solid var(--line);
    }

    .testi-person strong {
      display: block;
      font-size: 0.88rem;
    }

    .testi-person span {
      font-size: 0.78rem;
      color: var(--muted);
    }

    @media (min-width:640px) {
      .testi-slider {
        max-width: 900px;
      }
    }

    @media (min-width:1024px) {
      .testi-slider {
        max-width: 1180px;
      }
    }

    .slider-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      margin-top: 30px;
    }

    .slider-arrow {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: var(--white);
      color: var(--ink);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.05rem;
      transition: background .2s, color .2s, border-color .2s;
      flex-shrink: 0;
    }

    .slider-arrow:hover {
      background: var(--navy);
      color: var(--white);
      border-color: var(--navy);
    }

    .slider-dots {
      display: flex;
      gap: 8px;
    }

    .slider-dot {
      width: 8px;
      height: 8px;
      border-radius: 4px;
      background: var(--line);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: width .3s, background .3s;
    }

    .slider-dot.active {
      background: var(--orange-dark);
      width: 22px;
    }

    /* ---------- GALLERY ---------- */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 150px;
      gap: 10px;
    }

    .gallery-item {
      position: relative;
      border-radius: 2px;
      overflow: hidden;
      cursor: pointer;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.06);
    }

    .gallery-caption {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(0deg, rgba(15, 18, 28, 0.85), transparent);
      color: var(--white);
      font-size: 0.78rem;
      font-weight: 500;
      padding: 24px 12px 10px;
      opacity: 0;
      transform: translateY(6px);
      transition: opacity .25s ease, transform .25s ease;
    }

    .gallery-item:hover .gallery-caption {
      opacity: 1;
      transform: translateY(0);
    }

    .gallery-grid .g-tall {
      grid-row: span 2;
    }

    .gallery-grid .g-wide {
      grid-column: span 2;
    }

    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 100;
      background: rgba(15, 18, 28, 0.92);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 32px;
    }

    .lightbox.open {
      display: flex;
    }

    .lightbox-inner {
      max-width: 900px;
      width: 100%;
    }

    .lightbox-inner img {
      width: 100%;
      max-height: 75vh;
      object-fit: contain;
      border-radius: 3px;
    }

    .lightbox-caption {
      color: var(--white);
      text-align: center;
      margin-top: 16px;
      font-size: 0.95rem;
    }

    .lightbox-close {
      position: absolute;
      top: 24px;
      right: 28px;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.4);
      background: rgba(255, 255, 255, 0.08);
      color: var(--white);
      font-size: 1.3rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s;
    }

    .lightbox-close:hover {
      background: var(--orange);
      border-color: var(--orange);
    }

    @media (max-width:920px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 130px;
      }
    }

    /* ---------- CTA BANNER ---------- */
    .cta-banner {
      background: linear-gradient(120deg, var(--navy), var(--navy-light));
      color: var(--white);
      text-align: center;
      padding: 80px 0;
    }

    .cta-banner h2 {
      font-size: 2.2rem;
      color: var(--white);
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .cta-banner h2 span {
      color: var(--orange);
    }

    .cta-banner p {
      color: #C9CEDA;
      margin-bottom: 32px;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* ---------- TRIAL STATES POSTER SLIDER ---------- */
    .states-poster-wrap {
      background: var(--white);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .states-poster-head {
      text-align: center;
      margin-bottom: 40px;
    }

    .states-poster-head h2 {
      color: var(--navy);
      font-size: 2rem;
      letter-spacing: 5px;
    }

    .states-slider {
      position: relative;
      max-width: 1180px;
      margin: 0 auto;
    }

    .states-viewport {
      overflow: hidden;
    }

    .states-track {
      display: flex;
      align-items: stretch;
      transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    }

    .state-slide {
      flex: 0 0 100%;
      min-width: 0;
      padding: 0 7px;
    }

    .state-card {
      position: relative;
      aspect-ratio: 3/4.3;
      border-radius: 4px;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      color: var(--white);
    }

    .state-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(15, 18, 28, 0.55) 0%, rgba(15, 18, 28, 0.35) 35%, rgba(15, 18, 28, 0.92) 100%);
    }

    .state-card-top {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 14px 14px 0;
    }

    .state-card-brand {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 0.72rem;
      letter-spacing: 1px;
    }

    .state-card-tag {
      background: var(--orange);
      color: var(--ink);
      font-family: 'Oswald', sans-serif;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      padding: 4px 8px;
      border-radius: 2px;
    }

    .state-card-body {
      position: relative;
      z-index: 2;
      padding: 12px 14px 16px;
    }

    .state-card-name {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 1.35rem;
      line-height: 1.12;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .state-card-tagline {
      font-size: 0.68rem;
      color: #D9DCE6;
      margin-bottom: 14px;
      font-style: italic;
    }

    .state-card-info {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 14px;
    }

    .state-card-info div {
      display: flex;
      justify-content: space-between;
      font-size: 0.74rem;
      border-top: 1px solid rgba(255, 255, 255, 0.18);
      padding-top: 6px;
    }

    .state-card-info div:first-child {
      border-top: none;
      padding-top: 0;
    }

    .state-card-info span {
      color: #C9CEDA;
    }

    .state-card-info strong {
      color: var(--white);
      font-weight: 600;
    }

    .state-card-btn {
      display: block;
      text-align: center;
      background: var(--orange);
      color: var(--ink);
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.5px;
      padding: 10px;
      border-radius: 2px;
      text-transform: uppercase;
      transition: background .2s;
    }

    .state-card-btn:hover {
      background: var(--orange-dark);
      color: var(--white);
    }

    .states-slider-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      margin-top: 30px;
    }

    .states-arrow {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: var(--white);
      color: var(--ink);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.05rem;
      transition: background .2s, color .2s, border-color .2s;
      flex-shrink: 0;
    }

    .states-arrow:hover {
      background: var(--navy);
      color: var(--white);
      border-color: var(--navy);
    }

    .states-dots {
      display: flex;
      gap: 8px;
    }

    .states-dot {
      width: 8px;
      height: 8px;
      border-radius: 4px;
      background: var(--line);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: width .3s, background .3s;
    }

    .states-dot.active {
      background: var(--orange);
      width: 22px;
    }

    @media (max-width:640px) {
      .states-poster-head h2 {
        font-size: 1.4rem;
        letter-spacing: 3px;
      }
    }

    /* ---------- FOOTER ---------- */
    footer {
      background: var(--ink);
      color: #B7BCC9;
      padding: 64px 0 28px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      margin-bottom: 28px;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-logo-mark {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--orange);
      position: relative;
      flex-shrink: 0;
    }

    .footer-logo-mark::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 4px;
      bottom: 4px;
      width: 0;
      border-left: 1.5px dashed var(--ink);
      transform: translateX(-50%) rotate(20deg);
    }

    .footer-logo-text {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--white);
      text-transform: uppercase;
    }

    .footer-tagline {
      font-size: 0.85rem;
      max-width: 30ch;
      line-height: 1.6;
    }

    .footer-social {
      display: flex;
      gap: 10px;
    }

    .footer-social a {
      width: 34px;
      height: 34px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #B7BCC9;
      transition: background .2s, color .2s, border-color .2s;
    }

    .footer-social a:hover {
      background: var(--orange);
      border-color: var(--orange);
      color: var(--ink);
    }

    .footer-col h4 {
      color: var(--white);
      font-size: 0.82rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 16px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px;
    }

    .footer-col ul li {
      font-size: 0.85rem;
    }

    .footer-col ul li a {
      transition: color .2s;
    }

    .footer-col ul li a:hover {
      color: var(--white);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.78rem;
      flex-wrap: wrap;
      gap: 12px;
    }

    @media (max-width:920px) {
      .footer-top {
        grid-template-columns: 1fr 1fr;
        row-gap: 32px;
      }

      .footer-brand {
        grid-column: 1/-1;
      }
    }

    @media (max-width:560px) {
      .footer-top {
        grid-template-columns: 1fr;
      }
    }