

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');


*,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    :root {
      --orange: #f5a623;
      --orange2: #e8870a;
      --dark: #111111;
      --dark2: #181818;
      --dark3: #222222;
      --text: #f0f0f0;
      --muted: #999;
      --white: #ffffff;
    }

    html {
      scroll-behavior: smooth
    }

    body {
      background: var(--dark);
      color: var(--text);
      font-family: 'Barlow', sans-serif;
      overflow-x: hidden
    }

    ::-webkit-scrollbar {
      width: 5px
    }

    ::-webkit-scrollbar-track {
      background: #111
    }

    ::-webkit-scrollbar-thumb {
      background: var(--orange);
      border-radius: 3px
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(8, 8, 8, 0.96);
      backdrop-filter: blur(14px);
      border-bottom: 2px solid var(--orange);
      padding: 0 6%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 76px;
      transition: all 0.3s;
    }

    nav.scrolled {
      height: 62px;
      background: rgba(4, 4, 4, 0.99)
    }

    .nav-logo img {
      height: 90px !important;
      width: auto;
      transition: height 0.3s;
      object-fit: contain
    }

    nav.scrolled .nav-logo img {
      height: 48px
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      list-style: none
    }

    .nav-links a {
      color: var(--text);
      text-decoration: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 8px 16px;
      border-radius: 4px;
      transition: color 0.2s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 16px;
      right: 16px;
      height: 2px;
      background: var(--orange);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s
    }

    .nav-links a:hover {
      color: var(--orange)
    }

    .nav-links a:hover::after {
      transform: scaleX(1)
    }

    .nav-cta {
      background: var(--orange) !important;
      color: var(--dark) !important;
      font-weight: 800 !important;
      border-radius: 4px
    }

    .nav-cta::after {
      display: none !important
    }

    .nav-cta:hover {
      background: var(--orange2) !important
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px
    }

    .hamburger span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--orange);
      transition: all 0.3s;
      border-radius: 2px
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg)
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg)
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 76px;
      left: 0;
      right: 0;
      background: rgba(6, 6, 6, 0.99);
      backdrop-filter: blur(14px);
      border-bottom: 2px solid var(--orange);
      padding: 16px 6%;
      z-index: 999;
      flex-direction: column;
      gap: 2px;
    }

    .mobile-menu.open {
      display: flex
    }

    .mobile-menu a {
      color: var(--text);
      text-decoration: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 13px 0;
      border-bottom: 1px solid #1e1e1e;
      transition: color 0.2s;
    }

    .mobile-menu a:hover {
      color: var(--orange)
    }

    /* ── HERO ── */


    #home {
      min-height: 100vh;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      padding: 100px 6% 60px;
    }



    /* ════════════════════════════
   HERO SLIDER
════════════════════════════ */
    .hero-slider {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 580px;
      overflow: hidden;
    }

    /* ── SLIDES ── */
    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.2s ease;
      display: flex;
      align-items: center;
    }

    .slide.active {
      opacity: 1;
      z-index: 2
    }

    .slide.prev {
      opacity: 0;
      z-index: 1
    }

    /* Slide backgrounds */
    .slide-1 .slide-bg {
      position: absolute;
    }

    .slide-2 .slide-bg {
      position: absolute;
      inset: 0;
    }

    .slide-3 .slide-bg {
      position: absolute;
      inset: 0;

    }

    .slide-bg-img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0.15;
    }

    .slide-1 .slide-bg-img {
      background-image: url('img/slider.jpeg')
    }

    .slide-2 .slide-bg-img {
      background-image: url('img/slider-2.png')
    }

 

    /* Overlay gradient */
    .slide-overlay {
      position: absolute;
      inset: 0;
      /* background: linear-gradient( rgba(0, 0, 0, 0.1) ); */
    }

    /* Subtle pattern */
    .slide-pattern {
      position: absolute;
      inset: 0;
      /* background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255, 255, 255, 0.012) 40px, rgba(255, 255, 255, 0.012) 41px); */
      pointer-events: none;
    }

    /* ── SLIDE INNER LAYOUT ── */
    .slide-inner {
      position: relative;
      z-index: 3;
      width: 100%;
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 5%;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 40px;
      align-items: center;
      height: 100%;
    }

    /* ── LEFT CONTENT ── */
    .slide-content {
      color: var(--white);
      padding-top: 20px;
    }

    .slide-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(200, 144, 42, 0.25);
      border: 1px solid rgba(200, 144, 42, 0.6);
      color: var(--gold2);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 6px 18px;
      border-radius: 999px;
      margin-bottom: 24px;
    }

    .slide-badge::before {
      content: '✦';
      font-size: 8px
    }

    .slide-content h1 {
    
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 900;
      line-height: 1.12;
      margin-bottom: 10px;
      color: var(--white);
    }

    .slide-content h1 em {
      /* font-style: italic; */
      color: var(--gold2);
      display: block;
    }

    .slide-content p {
      font-size: clamp(0.88rem, 1.5vw, 1rem);
      color: var(--muted);
      line-height: 1.8;
      max-width: 520px;
      margin-bottom: 36px;
    }

    .slide-btns {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center
    }

    .btn-green {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--green2);
      color: var(--white);
      font-size: 0.88rem;
      font-weight: 600;
      padding: 14px 28px;
      border-radius: 6px;
      text-decoration: none;
      border: 2px solid var(--green-light);
      transition: all 0.25s;
      white-space: nowrap;
    }

    .btn-green:hover {
      background: var(--green-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(45, 122, 58, 0.4)
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--white);
      font-size: 0.88rem;
      font-weight: 600;
      padding: 14px 28px;
      border-radius: 6px;
      text-decoration: none;
      border: 2px solid rgba(255, 255, 255, 0.35);
      transition: all 0.25s;
      white-space: nowrap;
    }

    .btn-ghost:hover {
      border-color: var(--white);
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-2px)
    }

    /* Slide logo */
    .slide-logo {
      position: absolute;
      bottom: 30px;
      left: 5%;
      display: flex;
      align-items: center;
      gap: 14px;
      opacity: 0.55;
    }

    .slide-logo img {
      height: 48px;
      width: auto;
      filter: brightness(0) invert(1)
    }

    .slide-logo-text {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.3;
    }

    /* ── RIGHT: FORM CARD ── */
    .slide-form {
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 18px;
      padding: 32px 28px;
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    }

    .form-head {
      margin-bottom: 22px
    }

    .form-head h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 4px;
    }

    .form-head p {
      font-size: 0.8rem;
      color: var(--muted)
    }

    .form-field {
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      padding: 13px 16px;
      color: var(--white);
      font-size: 0.88rem;
      font-family: 'Poppins', sans-serif;
      width: 100%;
      outline: none;
      margin-bottom: 14px;
      transition: border-color 0.2s, background 0.2s;
    }

    .form-field::placeholder {
      color: rgba(255, 255, 255, 0.55)
    }

    .form-field:focus {
      border-color: var(--gold2);
      background: rgba(255, 255, 255, 0.18)
    }

    .form-field option {
      background: #1a2d14;
      color: #fff
    }

    .form-submit {
      width: 100%;
      background: linear-gradient(135deg, var(--green2), var(--green-light));
      color: var(--white);
      font-size: 0.95rem;
      font-weight: 700;
      padding: 15px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
      letter-spacing: 0.5px;
      transition: all 0.25s;
      margin-bottom: 12px;
    }

    .form-submit:hover {
      background: linear-gradient(135deg, var(--green-light), #5db86a);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(45, 122, 58, 0.5)
    }

    .form-note {
      text-align: center;
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .form-note i {
      color: var(--gold2)
    }

    /* ════════════════════════════
   SLIDER CONTROLS
════════════════════════════ */
    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: var(--white);
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.25s;
    }

    .slider-arrow:hover {
      background: var(--green2);
      border-color: var(--green2);
      transform: translateY(-50%) scale(1.08)
    }

    .arrow-prev {
      left: 20px
    }

    .arrow-next {
      right: 20px
    }

    /* Slide counter */
    .slide-counter {
      position: absolute;
      bottom: 28px;
      right: 5%;
      z-index: 10;
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.78rem;
      font-weight: 600;
    }

    .slide-counter .current {
      font-size: 1.4rem;
      font-weight: 900;
      color: var(--gold2);
      line-height: 1
    }

    .slide-counter .sep {
      width: 40px;
      height: 1px;
      background: rgba(255, 255, 255, 0.3)
    }

    .slide-counter .total {
      color: rgba(255, 255, 255, 0.4)
    }

    /* Dots */
    .slide-dots {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      gap: 8px;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      border: none;
      cursor: pointer;
      transition: all 0.3s;
      padding: 0;
    }

    .dot.active {
      width: 28px;
      border-radius: 4px;
      background: var(--gold2)
    }

    /* Progress bar */
    .slide-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: 10;
      height: 3px;
      background: var(--gold2);
      animation: progress 5s linear infinite;
      transform-origin: left;
    }

    @keyframes progress {
      from {
        width: 0%
      }

      to {
        width: 100%
      }
    }

    /* ════════════════════════════
   FLOATING BUTTONS
════════════════════════════ */
    .float-btns {
      position: fixed;
      left: 16px;
      bottom: 30%;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .float-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 22px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
      transition: transform 0.2s;
    }

    .float-btn:hover {
      transform: scale(1.12)
    }

    .float-wa {
      background: #25d366;
      color: #fff
    }

    .float-call {
      background: #e53935;
      color: #fff;
      font-size: 18px
    }

    /* ════════════════════════════
   SLIDE-IN ANIMATIONS
════════════════════════════ */
    .slide-content .slide-badge,
    .slide-content h1,
    .slide-content p,
    .slide-content .slide-btns {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .slide.active .slide-badge {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.2s
    }

    .slide.active h1 {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.4s
    }

    .slide.active p {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.55s
    }

    .slide.active .slide-btns {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.7s
    }

    .slide-form {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
    }

    .slide.active .slide-form {
      opacity: 1;
      transform: translateX(0)
    }

    /* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
    @media(max-width:900px) {
      .slide-inner {
        grid-template-columns: 1fr;
        padding: 20px 5%;
        gap: 28px
      }

      .hero-slider {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 80px
      }

      .slide {
        position: relative;
        display: none;
        align-items: flex-start
      }

      .slide.active {
        display: flex
      }

      .slide-form {
        transform: none;
        max-width: 480px;
        margin: 0 auto
      }

      .slide-counter {
        display: none
      }

      .slide-logo {
        display: none
      }
    }

    @media(max-width:600px) {
      .hero-slider {
        padding: 80px 0 70px
      }

      .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 13px
      }

      .arrow-prev {
        left: 10px
      }

      .arrow-next {
        right: 10px
      }

      .slide-btns {
        flex-direction: column;
        gap: 12px
      }

      .btn-green,
      .btn-ghost {
        width: 100%;
        justify-content: center
      }
    }

    /* ── SECTIONS COMMON ── */
    section {
      padding: 90px 6%
    }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(245, 166, 35, 0.1);
      border: 1px solid rgba(245, 166, 35, 0.3);
      color: var(--orange);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 999px;
      margin-bottom: 16px
    }

    .section-title {
      font-family: 'Oswald';
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.05;
      margin-bottom: 14px
    }

    .section-title span {
      color: var(--orange)
    }

    .section-desc {
      font-size: 0.92rem;
      color: var(--muted);
      line-height: 1.8
    }

    .center {
      text-align: center
    }

    .center .section-desc {
      margin: 0 auto
    }

    /* ── ABOUT ── */
    #about {
      background: var(--dark2)
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      max-width: 1300px;
      margin: 0 auto
    }

    .about-text .section-desc {
      margin-bottom: 14px;
      max-width: 100%
    }

    .mvv-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 28px
    }

    .mvv-card {
      background: var(--dark3);
      border: 1px solid #282828;
      border-radius: 10px;
      padding: 22px 18px;
      border-top: 3px solid var(--orange);
      transition: transform 0.3s
    }

    .mvv-card:hover {
      transform: translateY(-4px)
    }

    .mvv-card i {
      font-size: 22px;
      color: var(--orange);
      margin-bottom: 12px;
      display: block
    }

    .mvv-card h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 8px
    }

    .mvv-card p {
      font-size: 0.8rem;
      color: var(--muted);
      line-height: 1.6
    }

    .about-img-wrap {
      position: relative
    }

    .about-img-wrap img {
      width: 100%;
      border-radius: 14px;
      object-fit: cover;
      height: 480px;
      border: 2px solid #282828
    }

    .about-badge {
      position: absolute;
      bottom: -18px;
      left: -18px;
      background: var(--orange);
      color: var(--dark);
      width: 110px;
      height: 110px;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-family: 'Barlow Condensed', sans-serif;
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
      z-index: 2
    }

    .about-badge .num {
      font-size: 2rem;
      font-weight: 900;
      line-height: 1
    }

    .about-badge .lbl {
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-align: center
    }

    /* ── COUNTER ── */
    #counter {
      background: var(--orange);
      padding: 60px 6%
    }

    .counter-inner {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0
    }

    .counter-item {
      text-align: center;
      padding: 28px 20px;
      border-right: 1px solid rgba(0, 0, 0, 0.18)
    }

    .counter-item:last-child {
      border-right: none
    }

    .counter-item .num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 3.2rem;
      font-weight: 900;
      color: var(--dark);
      line-height: 1
    }

    .counter-item .suffix {
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--dark)
    }

    .counter-item .lbl {
      font-size: 0.8rem;
      font-weight: 700;
      color: rgba(0, 0, 0, 0.6);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-top: 6px
    }

    .counter-item i {
      font-size: 2rem;
      /* color: rgba(0, 0, 0, 0.2); */
      margin-bottom: 10px;
      display: block
    }

    /* ── SERVICES ── */
    #services {
      background: var(--dark)
    }

    .services-head {
      max-width: 1300px;
      margin: 0 auto 48px;
      text-align: center
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      max-width: 1300px;
      margin: 0 auto
    }

    .svc-card {
      background: var(--dark2);
      border: 1px solid #242424;
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s
    }

    .svc-card:hover {
      transform: translateY(-6px);
      border-color: var(--orange);
      box-shadow: 0 20px 50px rgba(245, 166, 35, 0.1)
    }

    .svc-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 2px solid #242424;
      transition: transform 0.4s
    }

    .svc-card:hover .svc-img {
      transform: scale(1.04)
    }

    .svc-img-wrap {
      overflow: hidden;
      height: 200px
    }

    .svc-body {
      padding: 22px 20px
    }

    .svc-body h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.2rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 10px
    }

    .svc-body p {
      font-size: 0.83rem;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 18px
    }

    .svc-btns {
      display: flex;
      gap: 10px;
      flex-wrap: wrap
    }

    .btn-wa {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: #25d366;
      color: #fff;
      font-size: 0.78rem;
      font-weight: 700;
      padding: 9px 36px;
      border-radius: 4px;
      text-decoration: none;
      transition: all 0.2s
    }

    .btn-wa:hover {
      background: #1eb455;
      transform: translateY(-2px)
    }

    .btn-call {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: transparent;
      color: var(--orange);
      font-size: 0.78rem;
      font-weight: 700;
      padding: 9px 36px;
      border-radius: 4px;
      text-decoration: none;
      border: 1px solid var(--orange);
      transition: all 0.2s
    }

    .btn-call:hover {
      background: var(--orange);
      color: var(--dark);
      transform: translateY(-2px)
    }

    /* ── WHY ── */
    #why {
      background: var(--dark2)
    }

    .why-inner {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center
    }

    .why-features {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 32px
    }

    .why-item {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      background: var(--dark3);
      border: 1px solid #242424;
      border-radius: 10px;
      padding: 20px;
      border-left: 3px solid var(--orange);
      transition: transform 0.3s
    }

    .why-item:hover {
      transform: translateX(6px)
    }

    .why-item-icon {
      width: 46px;
      height: 46px;
      min-width: 46px;
      background: rgba(245, 166, 35, 0.1);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: var(--orange)
    }

    .why-item h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 6px
    }

    .why-item p {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.6
    }

    .why-visual {
      display: flex;
      flex-direction: column;
      gap: 16px
    }

    .why-big-stat {
      background: linear-gradient(135deg, var(--orange), var(--orange2));
      border-radius: 12px;
      padding: 36px;
      text-align: center
    }

    .why-big-stat .num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 4.5rem;
      font-weight: 900;
      color: var(--dark);
      line-height: 1
    }

    .why-big-stat .lbl {
      font-size: 1rem;
      font-weight: 700;
      color: rgba(0, 0, 0, 0.55);
      margin-top: 6px
    }

    .why-mini-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px
    }

    .mini-stat {
      background: var(--dark3);
      border: 1px solid #282828;
      border-radius: 10px;
      padding: 22px;
      text-align: center
    }

    .mini-stat .num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2rem;
      font-weight: 900;
      color: var(--orange)
    }

    .mini-stat .lbl {
      font-size: 0.72rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 4px
    }

   /* ── GALLERY ── */
#gallery {
  background: var(--dark);
}

.gallery-head {
  max-width: 1300px;
  margin: 0 auto 40px;
  text-align: center;
}

.gallery-grid {
  display: grid;   /* flex hata ke grid karo */
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1300px;
  margin: 0 auto;
}

.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #222;
  cursor: pointer;
  height: 220px;   /* sab same height */
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.gal-item:hover img {
  transform: scale(1.08);
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.88));
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.gal-item:hover .gal-overlay {
  opacity: 1;
}

.gal-overlay span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
}



/* ── RESPONSIVE GALLERY ── */

/* Tablet */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gal-item {
    height: 200px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;   /* 1 column */
    gap: 12px;
    padding: 0 15px;
  }

  .gal-item {
    height: auto;              /* fixed height hata diya */
  }

  .gal-item img {
    height: 220px;             /* consistent mobile height */
  }

  .gallery-head {
    padding: 0 15px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-desc {
    font-size: 0.95rem;
  }
}
    /* ── CONTACT ── */
    #contact {
      background: var(--dark2)
    }

    .contact-inner {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 60px
    }

    .contact-info .section-desc {
      margin-bottom: 28px;
      max-width: 100%
    }

    .contact-items {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 28px
    }

    .ci {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: var(--dark3);
      border: 1px solid #242424;
      border-radius: 10px;
      padding: 16px;
      transition: border-color 0.3s
    }

    .ci:hover {
      border-color: var(--orange)
    }

    .ci-icon {
      width: 42px;
      height: 42px;
      min-width: 42px;
      background: rgba(245, 166, 35, 0.1);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      color: var(--orange)
    }

    .ci-text strong {
      display: block;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--orange);
      margin-bottom: 3px
    }

    .ci-text span {
      font-size: 0.86rem;
      color: var(--muted)
    }

    .social-row {
      display: flex;
      gap: 10px
    }

    .soc-btn {
      width: 42px;
      height: 42px;
      border-radius: 8px;
      background: var(--dark3);
      border: 1px solid #282828;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      font-size: 16px;
      text-decoration: none;
      transition: all 0.2s
    }

    .soc-btn:hover {
      border-color: var(--orange);
      color: var(--orange);
      background: rgba(245, 166, 35, 0.08)
    }

    .contact-form-map {
      display: flex;
      flex-direction: column;
      gap: 22px
    }

    .form-card {
      background: var(--dark3);
      border: 1px solid #242424;
      border-radius: 12px;
      padding: 30px
    }

    .form-card h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.4rem;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 22px
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 7px;
      margin-bottom: 14px
    }

    .form-group label {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--muted)
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      background: #181818;
      border: 1px solid #303030;
      border-radius: 6px;
      padding: 11px 14px;
      color: var(--text);
      font-size: 0.88rem;
      font-family: 'Barlow', sans-serif;
      transition: border-color 0.2s;
      outline: none
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--orange)
    }

    .form-group textarea {
      resize: vertical;
      min-height: 95px
    }

    .form-group select option {
      background: #181818
    }

    .submit-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: var(--orange);
      color: var(--dark);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 14px;
      border-radius: 6px;
      border: none;
      cursor: pointer;
      width: 100%;
      transition: all 0.2s
    }

    .submit-btn:hover {
      background: var(--orange2);
      transform: translateY(-2px)
    }

    .map-wrap {
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #242424;
      height: 240px
    }

    .map-wrap iframe {
      width: 100%;
      height: 100%;
      border: none;
      filter: grayscale(15%) contrast(1.05)
    }

    /* ── FOOTER ── */
    footer {
      background: #070707;
      border-top: 2px solid var(--orange)
    }

    .footer-top {
      max-width: 1300px;
      margin: 0 auto;
      padding: 60px 6% 40px;
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 40px
    }

    .footer-brand img {
      height: 128px;
      margin-bottom: 16px;
      display: block;
      object-fit: contain
    }

    .footer-brand p {
      font-size: 0.83rem;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 20px
    }

    .footer-col h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.95rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--orange);
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 1px solid #1a1a1a
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .footer-col ul li a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.84rem;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 8px
    }

    .footer-col ul li a::before {
      content: '›';
      color: var(--orange)
    }

    .footer-col ul li a:hover {
      color: var(--orange)
    }

    .footer-col .fc-info {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.83rem;
      color: var(--muted);
      margin-bottom: 11px;
      line-height: 1.5
    }

    .footer-col .fc-info i {
      color: var(--orange);
      margin-top: 2px;
      min-width: 14px
    }

    .footer-bottom {
      max-width: 1300px;
      margin: 0 auto;
      padding: 20px 6%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid #141414;
      font-size: 0.8rem;
      color: var(--muted);
      flex-wrap: wrap;
      gap: 10px
    }

    .footer-bottom a {
      color: var(--orange);
      text-decoration: none
    }

    /* ── FLOAT WA ── */
    .float-wa {
      position: fixed;
      bottom: 26px;
      right: 26px;
      z-index: 999;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25d366;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 26px;
      text-decoration: none;
      box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
      animation: pulseWa 2.2s ease-in-out infinite
    }

    @keyframes pulseWa {

      0%,
      100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45)
      }

      50% {
        box-shadow: 0 6px 44px rgba(37, 211, 102, 0.75)
      }
    }

    /* ── FADE IN ── */
    .fade-in {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s, transform 0.65s
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0)
    }

    /* ── RESPONSIVE ── */
    @media(max-width:1024px) {
      .hero-content {
        grid-template-columns: 1fr;
        text-align: center
      }

      .hero-sub {
        margin: 0 auto 32px
      }

      .hero-btns {
        justify-content: center
      }

      .hero-stats {
        justify-content: center
      }

      .hero-img-wrap {
        order: -1;
        margin-bottom: 20px
      }

      .hero-img-ring,
      .hero-img-ring2 {
        width: 300px;
        height: 300px
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 40px
      }

      .about-img-wrap {
        order: -1
      }

      .counter-inner {
        grid-template-columns: repeat(2, 1fr)
      }

      .counter-item {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.15)
      }

      .counter-item:nth-child(odd) {
        border-right: 1px solid rgba(0, 0, 0, 0.15)
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .why-inner {
        grid-template-columns: 1fr
      }

      .why-visual {
        order: -1
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .gal-item.tall {
        grid-row: span 1
      }

      .gal-item.wide {
        grid-column: span 1
      }

      .contact-inner {
        grid-template-columns: 1fr
      }

      .footer-top {
        grid-template-columns: 1fr 1fr
      }

      .mvv-grid {
        grid-template-columns: 1fr
      }
    }

    @media(max-width:768px) {
      .nav-links {
        display: none
      }

      .hamburger {
        display: flex
      }

      section {
        padding: 65px 5%
      }

      #counter {
        padding: 50px 5%
      }

      .services-grid {
        grid-template-columns: 1fr
      }

      .form-row {
        grid-template-columns: 1fr
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px
      }
    }

    @media(max-width:480px) {
      .hero-stats {
        flex-direction: column;
        gap: 18px;
        align-items: center
      }

      .counter-inner {
        grid-template-columns: 1fr
      }

      .counter-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.15)
      }

      .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px
      }

      .footer-top {
        grid-template-columns: 1fr
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center
      }
    }










    
 

  #testimonials {
    background: var(--dark2);
    padding: 90px 6%;
    overflow: hidden;
  }

  .testi-head {
    max-width: 1300px;
    margin: 0 auto 56px;
    text-align: center;
  }

  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,166,35,0.1);
    border: 1px solid rgba(245,166,35,0.3);
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 14px;
  }

  .section-title span { color: var(--orange); }

  .section-desc {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto;
  }


  .testi-slider-outer {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
  }

  .testi-track-wrap {
    overflow: hidden;
    border-radius: 14px;
  }

  .testi-track {
    display: flex;
    transition: transform 0.65s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
  }

  /* Each SLIDE — 3 cards in a row */
  .testi-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .testi-card {
    background: var(--dark3);
    border: 1px solid #282828;
    border-radius: 14px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    border-top: 3px solid var(--orange);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
  }

  .testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(245,166,35,0.1);
  }

  .testi-quote {
    position: absolute;
    top: 22px;
    right: 24px;
    font-size: 3.5rem;
    color: rgba(245,166,35,0.15);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
  }

  .testi-stars { display: flex; gap: 4px; }
  .testi-stars i { color: var(--orange); font-size: 0.85rem; }

  .testi-text {
    font-size: 0.88rem;
    color: #ccc;
    line-height: 1.8;
    flex: 1;
    font-style: italic;
  }

  .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid #2a2a2a;
  }

  .testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--dark);
    flex-shrink: 0;
    border: 2px solid rgba(245,166,35,0.4);
  }

  .testi-info strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
  }

  .testi-info span {
    font-size: 0.76rem;
    color: var(--orange);
    font-weight: 600;
  }

  .testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
  }

  .testi-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--dark3);
    border: 1px solid #303030;
    color: var(--white);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s;
    flex-shrink: 0;
  }

  .testi-arrow:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--dark);
    transform: scale(1.08);
  }

  .testi-dots { display: flex; gap: 8px; align-items: center; }

  .tdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
  }

  .tdot.active {
    width: 28px;
    border-radius: 4px;
    background: var(--orange);
  }

  .testi-progress {
    height: 2px;
    background: #222;
    max-width: 1300px;
    margin: 0 auto 36px;
    border-radius: 1px;
    overflow: hidden;
  }

  .testi-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--orange2));
    border-radius: 1px;
    width: 0%;
  }

  .testi-summary {
    max-width: 1300px;
    margin: 48px auto 0;
    background: var(--dark3);
    border: 1px solid #282828;
    border-radius: 12px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }






  
  .summary-score { text-align: center; flex-shrink: 0; }

  .summary-score .big-num {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
  }

  .summary-score .stars-row {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin: 6px 0 4px;
  }

  .summary-score .stars-row i { color: var(--orange); font-size: 1rem; }

  .summary-score .reviews-lbl {
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .summary-divider {
    width: 1px;
    height: 70px;
    background: #2a2a2a;
    flex-shrink: 0;
  }

  .summary-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 220px;
  }

  .bar-row { display: flex; align-items: center; gap: 10px; }

  .bar-label {
    font-size: 0.75rem;
    color: var(--muted);
    width: 30px;
    text-align: right;
    flex-shrink: 0;
  }

  .bar-label i { color: var(--orange); font-size: 0.65rem; }

  .bar-track {
    flex: 1;
    height: 6px;
    background: #2a2a2a;
    border-radius: 3px;
    overflow: hidden;
  }

  .bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--orange2));
    border-radius: 3px;
    transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
    width: 0;
  }

  .bar-count { font-size: 0.72rem; color: var(--muted); width: 22px; flex-shrink: 0; }

  .summary-platforms { flex-shrink: 0; display: flex; flex-direction: column; gap: 10px; }

  .plat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--muted);
  }

  .plat-item i { font-size: 1.1rem; width: 20px; text-align: center; }
  .plat-item .pscore { color: var(--orange); font-weight: 700; font-size: 0.85rem; }

  @media(max-width:1024px) {
    .testi-slide { grid-template-columns: repeat(2, 1fr); }
  }

  @media(max-width:640px) {
    .testi-slide { grid-template-columns: 1fr; }
    .summary-divider { display:none; }
    .testi-summary { gap:24px; }
    #testimonials { padding:65px 5%; }
  }


  

@media (max-width: 768px) {
  .testi-slide {
    grid-template-columns: 1fr;
  }
  
  .testi-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 20px;
  }
}

  * ── SECTION ── */
  #lifting-units {
    width: 100%;
    background: var(--dark);
    padding: 70px 5%;
  }

  .lu-inner {
    max-width: 1280px;
    margin: 0 auto;
  }

  /* ── HEADER ROW ── */
  .lu-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }


  .lu-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }

  .lu-tag-line {
    width: 32px;
    height: 2px;
    background: var(--orange);
  }

  .lu-tag-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
  }

  .lu-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: -1px;
  }

  .lu-title .white { color: var(--white); display: block; }
  .lu-title .orange { color: var(--orange); display: block; }

  /* Compliance badge */
  .lu-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 12px 18px;
    background: #111;
    flex-shrink: 0;
    align-self: center;
  }

  .lu-badge-label {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
  }

  .lu-badge-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--orange);
  }

  /* ── GRID ── */
  .lu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* ── CARD ── */
  .lu-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 26px 24px 28px;
    position: relative;
    cursor: pointer;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
  }

  .lu-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245,166,35,0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .lu-card:hover {
    border-color: rgba(245,166,35,0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,166,35,0.1);
  }

  .lu-card:hover::before { opacity: 1; }

  /* Card top row: icon + badge */
  .lu-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .lu-icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(245,166,35,0.1);
    border: 1px solid rgba(245,166,35,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  /* Pill badges */
  .lu-pill {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid;
  }

  .pill-hot    { color: #ff6b35; border-color: rgba(255,107,53,0.4); background: rgba(255,107,53,0.08); }
  .pill-top    { color: #3b9eff; border-color: rgba(59,158,255,0.4); background: rgba(59,158,255,0.08); }
  .pill-custom { color: #22d3a5; border-color: rgba(34,211,165,0.4); background: rgba(34,211,165,0.08); }
  .pill-fast   { color: #f5a623; border-color: rgba(245,166,35,0.4); background: rgba(245,166,35,0.08); }
  .pill-end    { color: #a855f7; border-color: rgba(168,85,247,0.4); background: rgba(168,85,247,0.08); }
  .pill-wide   { color: #3b9eff; border-color: rgba(59,158,255,0.4); background: rgba(59,158,255,0.08); }

  /* Card content */
  .lu-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .lu-card-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.7;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .lu-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 560px) {
    .lu-grid { grid-template-columns: 1fr; }
    .lu-header { flex-direction: column; }
    .lu-badge { align-self: flex-start; align-items: flex-start; }
  }


  