:root {
      --bg: #000000;
      --panel: #13131a;
      --text: #eaeaf0;
      --muted: #9a9ab0;
      --accent: #c9a24d;
      --accent-soft: rgba(201, 162, 77, 0.15);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: radial-gradient(1200px 600px at 20% -10%, #000000, transparent), var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    header {
      padding: 28px 0;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 0.4px;
    }

    .badge {
      font-size: 12px;
      padding: 4px 10px;
      border-radius: 999px;
      background: var(--accent-soft);
      color: var(--accent);
      margin-left: 10px;
    }

    .hero {
      padding: 96px 0 72px;
      text-align: center;
    }

    .hero h1 {
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 700;
      margin-bottom: 16px;
    }

    .highlight {
      color: var(--accent);
    }

    .hero p {
      font-size: 18px;
      color: var(--muted);
      max-width: 760px;
      margin: 0 auto 36px;
    }

    .cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--accent);
      color: #000;
      padding: 14px 28px;
      border-radius: 10px;
      font-weight: 600;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
      box-shadow: 0 10px 30px rgba(201, 162, 77, 0.35);
    }

    .cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 40px rgba(201, 162, 77, 0.45);
    }

    .section {
      padding: 72px 0;
    }

    .section h2 {
      font-size: 32px;
      margin-bottom: 14px;
      text-align: center;
    }

    .section p.lead {
      text-align: center;
      color: var(--muted);
      max-width: 720px;
      margin: 0 auto 48px;
    }

    .grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr 1fr;
      gap: 24px;
      margin-bottom: 48px;
    }



    /* Image card */
    .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .card {
      background: linear-gradient(180deg, #181824, var(--panel));
      border: 1px solid #1f1f2d;
      border-radius: 16px;
      padding: 20px;
      overflow: hidden;
    }

    .card1 {
      border-radius: 16px;
      padding: 0px;
      overflow: hidden;
    }

    .card image {
      border-radius: 16px;
    }

    .card h3 {
      font-size: 18px;
      margin-bottom: 8px;
    }

    .card p {
      color: var(--muted);
      font-size: 15px;
    }

    .steps {
      counter-reset: step;
    }

    .step {
      position: relative;
      padding-left: 52px;
    }

    .step::before {
      counter-increment: step;
      content: counter(step);
      position: absolute;
      left: 0;
      top: 0;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--accent-soft);
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
    }

    footer {
      padding: 48px 0 64px;
      border-top: 1px solid #1f1f2d;
      text-align: center;
      color: var(--muted);
      font-size: 14px;
    }

    .video-card {
      position: relative;
      height: 360px;
      background: #000;
      /* ⬅️ full card background */
      overflow: hidden;
      /* ⬅️ clip video */
      border-radius: 16px;
      /* optional */
    }

    .video-card.small {
      height: 260px;
      overflow: hidden;
    }

    .video-card video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* ⬅️ fills card */
    }

    .underline-link {
      text-decoration: none;
      border-bottom: 1px solid currentColor;
      padding-bottom: 2px;
    }

    @media (max-width: 640px) {
      .hero {
        padding: 72px 0 56px;
      }

      h1 {
        font-size: 42px !important;
      }

      .hero p {
        padding: 10px;
      }
      
    }

    /* Tablet */
    @media (max-width: 1024px) {
      .grid {
        grid-template-columns: 1fr 1fr;
      }

      .video-card.small {
        aspect-ratio: 16 / 9;
        width: 100%;
      }
    }

    /* Mobile */
    @media (max-width: 640px) {
      .grid {
        grid-template-columns: 1fr;
      }
    }

.video-player {
  width: 100%;
  max-width: 600px;   /* keeps desktop size */
  margin: 40px auto;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* keep video responsive */
video {
  width: 95%;
  height: auto;
  display: block;
  background: black;
  margin:0 auto
}

/* controls container */
.controls {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 14px;

  display: flex;
  justify-content: center;

  opacity: 0;
  transform: translateY(25px);
  transition: all 0.35s ease;
}

/* show slider on hover (desktop) */
.video-player:hover .controls {
  opacity: 1;
  transform: translateY(0);
}

/* ALWAYS show on mobile (no hover) */
@media (max-width: 768px) {
  .controls {
    opacity: 1;
    transform: translateY(0);
    padding: 10px;
  }
}

/* slider */
#slider {
  width: 85%;
  max-width: 500px;
  appearance: none;
  height: 6px;
  background: #c9a24d;
  border-radius: 10px;
  outline: none;
  cursor: pointer;
}

/* thumb */
#slider::-webkit-slider-thumb {
  appearance: none;
  width: 8px;
  height: 22px;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
}

#slider::-moz-range-thumb {
  width: 8px;
  height: 22px;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
}