    :root {
      --ink: #060c1d;
      --ink-mid: #0b1530;
      --ink-card: #101e42;
      --ink-glass: rgba(11, 21, 48, 0.72);
      --purple: #7c3aed;
      --purple-lt: #a855f7;
      --purple-xs: rgba(124, 58, 237, 0.12);
      --purple-glow: rgba(124, 58, 237, 0.35);
      --violet: #6d28d9;
      --gold: #f59e0b;
      --gold-lt: #fbbf24;
      --gold-dim: rgba(245, 158, 11, 0.14);
      --white: #ffffff;
      --muted: rgba(255, 255, 255, 0.52);
      --border: rgba(124, 58, 237, 0.22);
      --border-g: rgba(245, 158, 11, 0.18);
      --radius-lg: 20px;
      --radius-md: 14px;
      --shadow-card: 0 24px 64px rgba(0, 0, 0, 0.55);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Cairo', sans-serif;
      background: var(--ink);
      color: var(--white);
      min-height: 100vh;
      overflow-x: hidden;
      direction: rtl;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      text-decoration: none;
    }

    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--ink);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--purple);
      border-radius: 10px;
    }

    /* BG */
    .bg-hero-img {
      position: absolute;
      inset: 0;
      background: url('../Images/boslacareerhero.avif') center/cover no-repeat;
      z-index: 0;
    }

    .bg-hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(180deg, rgba(6, 12, 29, 0.72) 0%, rgba(6, 12, 29, 0.55) 40%, rgba(6, 12, 29, 0.97) 100%), linear-gradient(90deg, rgba(124, 58, 237, 0.28) 0%, transparent 60%);
    }

    .bg-noise {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      opacity: .028;
      background-image: url("../Images/noise.svg");
    }

    .bg-grid {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background-image: linear-gradient(rgba(124, 58, 237, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(124, 58, 237, 0.05) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: radial-gradient(ellipse 120% 80% at 50% 40%, #000 10%, transparent 75%);
    }

    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
      z-index: 0;
      animation: orb-drift 18s ease-in-out infinite alternate;
    }

    .orb-1 {
      width: 500px;
      height: 500px;
      top: -15%;
      right: -8%;
      background: rgba(124, 58, 237, 0.22);
      animation-delay: 0s;
    }

    .orb-2 {
      width: 380px;
      height: 380px;
      bottom: 10%;
      left: -5%;
      background: rgba(109, 40, 217, 0.18);
      animation-delay: -8s;
    }

    .orb-3 {
      width: 280px;
      height: 280px;
      top: 40%;
      left: 50%;
      background: rgba(245, 158, 11, 0.09);
      animation-delay: -4s;
    }

    @keyframes orb-drift {
      0% {
        transform: translate(0, 0) scale(1)
      }

      50% {
        transform: translate(40px, -30px) scale(1.1)
      }

      100% {
        transform: translate(-20px, 20px) scale(0.9)
      }
    }

    /* NAV */
    #navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 999;
      padding: 0 52px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background .4s, box-shadow .4s;
    }

    #navbar.scrolled {
      background: rgba(6, 12, 29, 0.93);
      backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 var(--border);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .nav-emblem {
      width: 50px;
      height: 50px;
      position: relative;
      flex-shrink: 0;
    }

    .nav-emblem .ring-svg {
      position: absolute;
      inset: 0;
      animation: spin-slow 10s linear infinite;
    }

    @keyframes spin-slow {
      to {
        transform: rotate(360deg);
      }
    }

    .nav-emblem .em-core {
      position: absolute;
      inset: 9px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--purple) 0%, #6d28d9 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Tajawal', sans-serif;
      font-size: 14px;
      font-weight: 900;
      color: #fff;
      box-shadow: 0 0 20px var(--purple-glow);
    }

    .nav-title b {
      display: block;
      font-family: 'Tajawal', sans-serif;
      font-size: 17px;
      font-weight: 900;
      color: var(--white);
    }

    .nav-title strong {
      font-size: 17px !important;
      color: var(--muted);
      letter-spacing: 2.5px;
      text-transform: uppercase;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .nav-link {
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 700;
      color: var(--muted);
      transition: color .2s;
    }

    .nav-link:hover {
      color: var(--white);
    }

    .nav-cta {
      padding: 10px 24px;
      border-radius: 50px;
      background: linear-gradient(135deg, var(--purple) 0%, #6d28d9 100%);
      font-size: 13px;
      font-weight: 900;
      color: #fff;
      box-shadow: 0 4px 20px var(--purple-glow);
      transition: transform .2s, box-shadow .2s;
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px var(--purple-glow);
    }

    /* HERO */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 120px 40px 80px;
      overflow: hidden;
    }

    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(124, 58, 237, 0.18);
      border: 1px solid rgba(124, 58, 237, 0.35);
      border-radius: 50px;
      padding: 8px 20px;
      margin-bottom: 30px;
      font-size: 12px;
      font-weight: 700;
      color: rgba(168, 85, 247, 0.95);
      letter-spacing: .8px;
      text-transform: uppercase;
      position: relative;
      z-index: 2;
      animation: fade-up .8s .2s ease both;
    }

    .live-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #22c55e;
      animation: live-pulse 1.4s ease-in-out infinite;
      flex-shrink: 0;
    }

    @keyframes live-pulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
      }

      50% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
      }
    }

    .hero-title {
      font-family: 'Tajawal', sans-serif;
      font-size: clamp(42px, 7vw, 88px);
      font-weight: 900;
      line-height: 1.07;
      position: relative;
      z-index: 2;
      animation: fade-up .9s .35s ease both;
    }

    .hero-title .line-1 {
      display: block;
      color: var(--white);
    }

    .hero-title .line-2 {
      display: block;
      background: linear-gradient(100deg, var(--purple-lt) 0%, #c084fc 40%, #f5a623 85%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: 17px;
      color: rgba(255, 255, 255, 0.65);
      max-width: 620px;
      line-height: 1.95;
      margin: 24px auto 44px;
      position: relative;
      z-index: 2;
      animation: fade-up .9s .5s ease both;
    }

    .countdown-wrap {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-bottom: 50px;
      position: relative;
      z-index: 2;
      animation: fade-up .9s .65s ease both;
    }

    .cd-unit {
      display: flex;
      flex-direction: column;
      align-items: center;
      background: rgba(11, 21, 48, 0.7);
      border: 1px solid var(--border);
      backdrop-filter: blur(12px);
      border-radius: var(--radius-md);
      padding: 18px 22px;
      min-width: 80px;
    }

    .cd-num {
      font-family: 'Tajawal', sans-serif;
      font-size: 36px;
      font-weight: 900;
      color: var(--white);
      line-height: 1;
      background: linear-gradient(180deg, #fff 40%, rgba(168, 85, 247, .6));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .cd-label {
      font-size: 11px;
      color: var(--muted);
      font-weight: 700;
      margin-top: 6px;
      letter-spacing: .5px;
    }

    .cd-sep {
      font-size: 32px;
      font-weight: 900;
      color: var(--purple-lt);
      align-self: flex-start;
      padding-top: 20px;
      animation: blink 1s ease-in-out infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .15
      }
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 2;
      animation: fade-up .9s .8s ease both;
    }

    .btn-hero-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 36px;
      border-radius: 50px;
      background: linear-gradient(135deg, var(--purple) 0%, #6d28d9 100%);
      font-size: 16px;
      font-weight: 900;
      color: #fff;
      border: none;
      cursor: pointer;
      box-shadow: 0 8px 32px var(--purple-glow);
      transition: transform .25s, box-shadow .25s;
      font-family: 'Cairo', sans-serif;
    }

    .btn-hero-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 44px var(--purple-glow);
    }

    .btn-hero-ghost {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 32px;
      border-radius: 50px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.2);
      font-size: 15px;
      font-weight: 700;
      color: var(--white);
      cursor: pointer;
      transition: background .2s, border-color .2s;
      font-family: 'Cairo', sans-serif;
      backdrop-filter: blur(8px);
    }

    .btn-hero-ghost:hover {
      background: rgba(124, 58, 237, 0.18);
      border-color: var(--purple);
    }

    .stats-bar {
      position: relative;
      z-index: 2;
      display: flex;
      gap: 0;
      background: rgba(11, 21, 48, 0.75);
      border: 1px solid var(--border);
      backdrop-filter: blur(16px);
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-top: 64px;
      max-width: 900px;
      width: 100%;
      animation: fade-up .9s 1s ease both;
    }

    .stat-item {
      flex: 1;
      padding: 24px 20px;
      text-align: center;
      border-left: 1px solid var(--border);
    }

    .stat-item:last-child {
      border: none;
    }

    .stat-num {
      font-family: 'Tajawal', sans-serif;
      font-size: 32px;
      font-weight: 900;
      background: linear-gradient(135deg, var(--purple-lt), #f5a623);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stat-lbl {
      font-size: 12px;
      color: var(--muted);
      font-weight: 700;
      margin-top: 4px;
    }

    .scroll-cue {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      animation: scroll-bounce 2s ease-in-out infinite;
      color: var(--muted);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1px;
    }

    @keyframes scroll-bounce {

      0%,
      100% {
        transform: translateX(-50%) translateY(0)
      }

      50% {
        transform: translateX(-50%) translateY(8px)
      }
    }

    @keyframes fade-up {
      from {
        opacity: 0;
        transform: translateY(28px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* SECTION */
    .section {
      position: relative;
      z-index: 1;
      padding: 100px 52px;
      max-width: 1160px;
      margin: 0 auto;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 900;
      color: var(--purple-lt);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .section-label::before {
      content: '';
      width: 28px;
      height: 2px;
      background: linear-gradient(90deg, var(--purple), transparent);
      border-radius: 2px;
    }

    .section-title {
      font-family: 'Tajawal', sans-serif;
      font-size: clamp(26px, 3.5vw, 44px);
      font-weight: 900;
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .section-title .accent {
      background: linear-gradient(100deg, var(--purple-lt) 0%, #f5a623 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-sub {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.9;
      max-width: 600px;
    }

    .section-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--border) 30%, var(--border) 70%, transparent 100%);
      margin: 0 52px;
    }

    /* PERKS */
    .perks-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 56px;
    }

    .perk-card {
      background: var(--ink-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      transition: transform .3s, box-shadow .3s, border-color .3s;
      position: relative;
      overflow: hidden;
    }

    .perk-card::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0;
      background: radial-gradient(circle at 30% 30%, var(--purple-xs) 0%, transparent 70%);
      transition: opacity .3s;
    }

    .perk-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(124, 58, 237, 0.2);
      border-color: rgba(124, 58, 237, 0.45);
    }

    .perk-card:hover::before {
      opacity: 1;
    }

    .perk-icon-wrap {
      width: 58px;
      height: 58px;
      border-radius: 16px;
      margin-bottom: 20px;
      background: var(--purple-xs);
      border: 1px solid rgba(124, 58, 237, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .perk-icon-wrap svg {
      width: 28px;
      height: 28px;
    }

    .perk-title {
      font-size: 17px;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .perk-desc {
      font-size: 13.5px;
      color: var(--muted);
      line-height: 1.85;
    }

    /* SPEAKERS */
    .speakers-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      margin-top: 56px;
    }

    .speaker-card {
      background: var(--ink-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: transform .25s, border-color .25s;
      text-align: center;
    }

    .speaker-card:hover {
      transform: translateY(-5px);
      border-color: rgba(124, 58, 237, 0.5);
    }

    .speaker-avatar {
      width: 100%;
      aspect-ratio: 1/1;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.3) 0%, rgba(109, 40, 217, 0.5) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .speaker-avatar .av-icon {
      width: 42px;
      height: 42px;
      opacity: .45;
    }

    .speaker-info {
      padding: 14px 12px;
    }

    .speaker-name {
      font-size: 13px;
      font-weight: 900;
      margin-bottom: 4px;
    }

    .speaker-role {
      font-size: 11px;
      color: var(--purple-lt);
      font-weight: 700;
    }

    /* VIDEOS */
    .videos-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 56px;
    }

    .video-card {
      background: var(--ink-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform .3s, box-shadow .3s;
      cursor: pointer;
    }

    .video-card:hover {
      transform: scale(1.02);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    }

    .video-thumb {
      position: relative;
      aspect-ratio: 16/9;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.25) 0%, rgba(6, 12, 29, 0.9) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .video-thumb-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .55;
      transition: transform .4s, opacity .4s;
    }

    .video-card:hover .video-thumb-img {
      transform: scale(1.07);
      opacity: .7;
    }

    .video-thumb-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 30%, rgba(6, 12, 29, 0.8) 100%);
    }

    .play-btn {
      position: relative;
      z-index: 2;
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: rgba(124, 58, 237, 0.85);
      border: 2px solid rgba(168, 85, 247, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform .25s, background .25s;
      backdrop-filter: blur(8px);
    }

    .video-card:hover .play-btn {
      transform: scale(1.12);
      background: var(--purple);
    }

    .play-btn svg {
      width: 26px;
      height: 26px;
      margin-right: -3px;
    }

    .video-badge {
      position: absolute;
      bottom: 14px;
      right: 14px;
      z-index: 3;
      background: rgba(6, 12, 29, 0.85);
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 5px 14px;
      font-size: 11px;
      font-weight: 700;
      color: var(--muted);
      backdrop-filter: blur(8px);
    }

    .video-info {
      padding: 22px 24px;
    }

    .video-info h4 {
      font-size: 16px;
      font-weight: 900;
      margin-bottom: 8px;
    }

    .video-info p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.7;
    }

    .vid-meta {
      display: flex;
      gap: 16px;
      margin-top: 14px;
      font-size: 12px;
      font-weight: 700;
      color: var(--purple-lt);
    }

    .vid-meta span {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* Video Modal */
    .vid-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(0, 0, 0, 0.92);
      backdrop-filter: blur(8px);
      align-items: center;
      justify-content: center;
    }

    .vid-modal.active {
      display: flex;
      animation: fade-in .3s ease;
    }

    @keyframes fade-in {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    .vid-inner {
      position: relative;
      width: 90%;
      max-width: 900px;
      background: var(--ink-card);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      overflow: hidden;
    }

    .vid-inner iframe {
      width: 100%;
      aspect-ratio: 16/9;
      display: block;
      border: none;
    }

    .vid-close {
      position: absolute;
      top: 14px;
      left: 14px;
      z-index: 2;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #fff;
      font-size: 18px;
      font-weight: 900;
      transition: background .2s;
    }

    .vid-close:hover {
      background: rgba(255, 0, 0, 0.4);
    }

    .tickets-section {
      position: relative;
      z-index: 1;
      padding: 100px 48px;
      background: linear-gradient(180deg, transparent 0%, rgba(109, 40, 217, 0.05) 50%, transparent 100%);
    }

    .tickets-inner {
      /* Increased width to accommodate 3 cards comfortably */
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .tickets-grid {
      display: grid;
      /* This creates 3 equal columns */
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    /* Responsive fix: Stack them on mobile devices */
    @media (max-width: 992px) {
      .tickets-grid {
        grid-template-columns: 1fr;
        /* Stacks cards on small screens */
      }

      .tickets-inner {
        max-width: 500px;
      }
    }

    .ticket-card {
      position: relative;
      border-radius: var(--r-xl);
      overflow: hidden;
      padding: 40px 32px;
      transition: transform .3s, box-shadow .3s;
      border-radius: 25px;
    }

    .ticket-card:hover {
      transform: translateY(-8px);
    }

    /* Standard ticket */
    .tk-standard {
      background: var(--bg-card);
      border: 1px solid rgba(109, 40, 217, 0.25);
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    }

    /* Premium ticket */
    .tk-premium {
      background: linear-gradient(145deg, #1a0b3b 0%, #2d1265 50%, #1a0b3b 100%);
      border: 1px solid rgba(245, 166, 35, 0.4);
      box-shadow: 0 8px 60px rgba(109, 40, 217, 0.35), 0 0 0 1px rgba(245, 166, 35, 0.1);
    }

    .tk-premium-glow {
      position: absolute;
      top: -40px;
      right: -40px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .tk-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 50px;
      padding: 5px 14px;
      margin-bottom: 24px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .tk-badge-v {
      background: rgba(109, 40, 217, 0.18);
      border: 1px solid rgba(109, 40, 217, 0.25);
      color: #8b5cf6;
    }

    .tk-badge-g {
      background: rgba(109, 40, 217, 0.18);
      border: 1px solid rgba(245, 166, 35, 0.2);
      color: #f5a623;
    }

    .tk-name {
      font-family: 'Cairo Play', sans-serif;
      font-size: 26px;
      font-weight: 900;
      margin-bottom: 6px;
    }

    .tk-price {
      font-family: 'Cairo Play', sans-serif;
      font-size: 48px;
      font-weight: 900;
      line-height: 1;
      margin-bottom: 6px;
    }

    .tk-price .curr {
      font-size: 20px;
      font-weight: 700;
      vertical-align: top;
      margin-top: 12px;
      display: inline-block;
    }

    .tk-price .egp {
      font-size: 18px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.4);
      margin-right: 6px;
    }

    .tk-price-standard {
      color: var(--white);
    }

    .tk-price-premium {
      color: #f5a623;
    }

    .tk-per {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 28px;
    }

    .tk-features {
      list-style: none;
      margin-bottom: 32px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .tk-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
      font-weight: 600;
    }

    .tk-features li .tk-check {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
    }

    /* Ticket divider */
    .tk-divider {
      display: flex;
      align-items: center;
      gap: 0;
      margin: 24px 0;
      position: relative;
    }

    .tk-divider::before,
    .tk-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(109, 40, 217, 0.25);
    }

    .tk-circ {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #04050f;
      flex-shrink: 0;
      border: 1px solid rgba(109, 40, 217, 0.25);
    }

    .btn-ticket-standard {
      width: 100%;
      padding: 14px;
      border-radius: 50px;
      background: rgba(109, 40, 217, 0.18);
      border: 1.5px solid rgba(109, 40, 217, 0.25);
      color: #8b5cf6;
      font-size: 15px;
      font-weight: 900;
      cursor: pointer;
      transition: all .2s;
      font-family: 'Cairo', sans-serif;
    }

    .btn-ticket-standard:hover {
      background: #6d28d9;
      color: #fff;
      border-color: #6d28d9;
    }

    .btn-ticket-premium {
      width: 100%;
      padding: 14px;
      border-radius: 50px;
      background: linear-gradient(135deg, #f5a623 0%, #d97706 100%);
      border: none;
      color: #04050f;
      font-size: 15px;
      font-weight: 900;
      cursor: pointer;
      transition: all .2s;
      font-family: 'Cairo', sans-serif;
      box-shadow: 0 6px 28px rgba(245, 166, 35, 0.3);
    }

    .btn-ticket-premium:hover {
      transform: scale(1.02);
      box-shadow: 0 10px 40px rgba(245, 166, 35, 0.3);
    }

    .btn-primary {
      padding: 15px 40px;
      border-radius: 50px;
      background: linear-gradient(135deg, #6d28d9 0%, #4c1d95 100%);
      color: #fff;
      font-size: 16px;
      font-weight: 900;
      border: none;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 6px 32px rgba(109, 40, 217, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
      transition: all .3s;
      font-family: 'Cairo', sans-serif;
      letter-spacing: .3px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 48px rgba(109, 40, 217, 0.35);
    }

    .btn-gold {
      padding: 15px 40px;
      border-radius: 50px;
      background: linear-gradient(135deg, #f5a623 0%, #d97706 100%);
      color: #04050f;
      font-size: 16px;
      font-weight: 900;
      border: none;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 6px 32px rgba(245, 166, 35, 0.3);
      transition: all .3s;
      font-family: 'Cairo', sans-serif;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn-gold:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 48px rgba(245, 166, 35, 0.3);
    }

    .btn-ghost {
      padding: 14px 32px;
      border-radius: 50px;
      background: transparent;
      border: 1.5px solid rgba(109, 40, 217, 0.25);
      color: rgba(255, 255, 255, 0.7);
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      transition: all .2s;
      font-family: 'Cairo', sans-serif;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn-ghost:hover {
      border-color: #8b5cf6;
      color: #fff;
      background: rgba(109, 40, 217, 0.18);
    }


    /* FORM CARD */
    .form-section {
      position: relative;
      z-index: 1;
      padding: 100px 48px;
      max-width: 820px;
      margin: 0 auto;
    }

    .form-wrapper {
      background: var(--bg-card);
      border: 1px solid rgba(109, 40, 217, 0.25);
      border-radius: 25px;
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(109, 40, 217, 0.1);
    }

    /* Progress bar */
    .form-progress {
      height: 3px;
      background: rgba(109, 40, 217, 0.25);
    }

    .fp-fill {
      height: 100%;
      background: linear-gradient(90deg, #6d28d9 0%, #f5a623 100%);
      transition: width .5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Steps */
    .form-steps {
      display: flex;
      padding: 24px 32px;
      border-bottom: 1px solid var(--border-w);
      background: rgba(109, 40, 217, 0.05);
      gap: 0;
      overflow-x: auto;
    }

    .f-step {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .f-step-num {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 2px solid rgba(109, 40, 217, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 900;
      color: rgba(255, 255, 255, 0.4);
      transition: all .3s;
    }

    .f-step-lbl {
      font-size: 13px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.4);
      white-space: nowrap;
      transition: color .3s;
    }

    .f-step-sep {
      flex: 1;
      min-width: 28px;
      height: 1px;
      background: rgba(109, 40, 217, 0.25);
      margin: 0 8px;
    }

    .f-step.active .f-step-num {
      background: #6d28d9;
      border-color: #6d28d9;
      color: #fff;
      box-shadow: 0 0 16px rgba(109, 40, 217, 0.35);
    }

    .f-step.active .f-step-lbl {
      color: var(--white);
    }

    .f-step.done .f-step-num {
      background: rgba(109, 40, 217, 0.3);
      border-color: #6d28d9;
      color: #8b5cf6;
    }

    .f-step.done .f-step-lbl {
      color: #8b5cf6;
    }

    /* Form header */
    .form-hdr {
      padding: 28px 32px 0;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .fhdr-icon {
      width: 50px;
      height: 50px;
      border-radius: var(--r-sm);
      background: rgba(109, 40, 217, 0.18);
      border: 1px solid rgba(109, 40, 217, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .fhdr-icon svg {
      width: 24px;
      height: 24px;
    }

    .fhdr-title {
      font-size: 18px;
      font-weight: 900;
      margin-bottom: 3px;
    }

    .fhdr-sub {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.4);
    }

    /* Form body */
    .form-body {
      padding: 24px 32px 0;
    }

    .form-page {
      display: none;
    }

    .form-page.active {
      display: block;
    }

    .f-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      margin-bottom: 18px;
    }

    .f-group {
      margin-bottom: 18px;
    }

    .f-label {
      display: block;
      font-size: 12px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.75);
      margin-bottom: 8px;
      letter-spacing: .5px;
      text-transform: uppercase;
    }

    .f-req {
      color: #f5a623;
    }

    .f-input,
    .f-select,
    .f-textarea {
      width: 100%;
      background: rgba(255, 255, 255, 0.04);
      border: 1.5px solid var(--border-w);
      border-radius: var(--r-sm);
      padding: 13px 16px;
      font-family: 'Cairo', sans-serif;
      font-size: 14px;
      color: var(--white);
      outline: none;
      transition: border-color .2s, box-shadow .2s, background .2s;
      -webkit-appearance: none;
    }

    .f-input::placeholder,
    .f-textarea::placeholder {
      color: rgba(255, 255, 255, 0.2);
    }

    .f-input:focus,
    .f-select:focus,
    .f-textarea:focus {
      border-color: #8b5cf6;
      background: rgba(109, 40, 217, 0.06);
      box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.15);
    }

    .f-input.error {
      border-color: #ef4444;
      box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
    }

    .f-select {
      cursor: pointer;
    }

    .f-select option {
      background: #0e0c24;
    }

    .f-textarea {
      resize: vertical;
      min-height: 88px;
    }

    /* Radio cards */
    .radio-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .radio-cards.three {
      grid-template-columns: repeat(3, 1fr);
    }

    .rc {
      position: relative;
    }

    .rc input {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
    }

    .rc label {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      padding: 16px 12px;
      border-radius: 25px;
      border: 1.5px solid var(--border-w);
      background: rgba(255, 255, 255, 0.03);
      cursor: pointer;
      text-align: center;
      transition: all .2s;
      font-size: 13px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.7);
      min-height: 80px;
      justify-content: center;
    }

    .rc label .rc-ico {
      font-size: 24px;
    }

    .rc input:checked+label {
      border-color: #6d28d9;
      background: rgba(109, 40, 217, 0.18);
      color: #8b5cf6;
      box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.12);
    }

    .rc label:hover {
      border-color: rgba(109, 40, 217, 0.4);
    }

    /* Ticket selection cards */
    .ticket-select-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .tsc {
      position: relative;
    }

    .tsc input {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
    }

    .tsc label {
      display: block;
      padding: 20px;
      border-radius: 25px;
      border: 2px solid var(--border-w);
      cursor: pointer;
      transition: all .2s;
      background: rgba(255, 255, 255, 0.03);
    }

    .tsc-name {
      font-size: 16px;
      font-weight: 900;
      margin-bottom: 4px;
    }

    .tsc-price {
      font-family: 'Cairo Play', sans-serif;
      font-size: 28px;
      font-weight: 900;
      margin-bottom: 8px;
    }

    .tsc-desc {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.4);
      line-height: 1.7;
    }

    .tsc-standard input:checked+label {
      border-color: #6d28d9;
      background: rgba(109, 40, 217, 0.18);
      box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.12);
    }

    .tsc-premium input:checked+label {
      border-color: #f5a623;
      background: rgba(109, 40, 217, 0.18);
      box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.12);
    }

    .tsc-premium label .tsc-price {
      color: #f5a623;
    }

.tsc-transport input:checked + label {
  border-color: #8b5cf6;
  background: rgba(139, 92, 246, 0.05);
}

.tsc-transport .tsc-name {
  color: #8b5cf6;
}

    /* Summary card */
    .summary-card {
      background: rgba(109, 40, 217, 0.08);
      border: 1px solid rgba(109, 40, 217, 0.25);
      border-radius: 25px;
      padding: 20px;
      margin-bottom: 18px;
    }

    .sc-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 0;
      border-bottom: 1px solid var(--border-w);
      font-size: 13px;
    }

    .sc-row:last-child {
      border: none;
    }

    .sc-lbl {
      color: rgba(255, 255, 255, 0.4);
      font-weight: 600;
    }

    .sc-val {
      color: var(--white);
      font-weight: 700;
    }

    /* Form nav */
    .form-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 32px;
      border-top: 1px solid var(--border-w);
      background: rgba(4, 5, 15, 0.5);
      margin-top: 24px;
    }

    .f-nav-back {
      background: transparent;
      border: 1.5px solid rgba(109, 40, 217, 0.25);
      color: rgba(255, 255, 255, 0.7);
      padding: 12px 28px;
      border-radius: 50px;
      font-family: 'Cairo', sans-serif;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      transition: all .2s;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .f-nav-back:hover {
      border-color: #8b5cf6;
      color: var(--white);
    }

    .f-nav-back:disabled {
      opacity: .3;
      cursor: not-allowed;
    }

    .f-nav-next {
      background: linear-gradient(135deg, #6d28d9 0%, #4c1d95 100%);
      color: #fff;
      border: none;
      padding: 12px 36px;
      border-radius: 50px;
      font-family: 'Cairo', sans-serif;
      font-size: 14px;
      font-weight: 900;
      cursor: pointer;
      transition: all .2s;
      box-shadow: 0 4px 20px rgba(109, 40, 217, 0.35);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .f-nav-next:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(109, 40, 217, 0.35);
    }

    /* ── SUCCESS ── */
    .success-wrap {
      display: none;
      padding: 60px 32px;
      text-align: center;
      animation: hero-item .6s ease both;
    }

    .success-wrap.show {
      display: block;
    }

    .suc-anim {
      width: 110px;
      height: 110px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(109, 40, 217, 0.2) 0%, rgba(76, 29, 149, 0.3) 100%);
      border: 2px solid #6d28d9;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 52px;
      margin: 0 auto 28px;
      box-shadow: 0 0 60px rgba(109, 40, 217, 0.4);
      animation: suc-pop .6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
    }

    @keyframes suc-pop {
      from {
        transform: scale(0);
        opacity: 0
      }

      to {
        transform: scale(1);
        opacity: 1
      }
    }

    .suc-title {
      font-family: 'Cairo Play', sans-serif;
      font-size: 30px;
      font-weight: 900;
      color: #8b5cf6;
      margin-bottom: 12px;
    }

    .suc-sub {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.9;
      max-width: 480px;
      margin: 0 auto 32px;
    }

    .booking-id {
      display: inline-block;
      background: rgba(109, 40, 217, 0.18);
      border: 1px solid rgba(109, 40, 217, 0.25);
      border-radius: 25px;
      padding: 14px 32px;
      margin-bottom: 32px;
    }

    .bid-label {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.4);
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .bid-num {
      font-family: 'Cairo Play', sans-serif;
      font-size: 26px;
      font-weight: 900;
      color: #f5a623;
    }

    /* ══════════════════════════════════════════════
   INSTAPAY BOX
   ══════════════════════════════════════════════ */
    .instapay-box {
      background: linear-gradient(145deg, rgba(245, 166, 35, 0.06) 0%, rgba(12, 15, 34, 0.8) 60%);
      border: 1.5px solid rgba(245, 166, 35, 0.3);
      border-radius: 25px;
      padding: 24px;
      position: relative;
      overflow: hidden;
    }

    .instapay-box::before {
      content: '';
      position: absolute;
      top: -40px;
      left: -40px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .ip-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 18px;
      gap: 12px;
    }

    .ip-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .ip-name {
      font-size: 16px;
      font-weight: 900;
      color: #f5a623;
    }

    .ip-sub {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.4);
      margin-top: 1px;
    }

    .ip-price-badge {
      background: rgba(109, 40, 217, 0.18);
      border: 1px solid rgba(245, 166, 35, 0.2);
      border-radius: 50px;
      padding: 6px 18px;
      font-family: 'Cairo Play', sans-serif;
      font-size: 18px;
      font-weight: 900;
      color: #f5a623;
      white-space: nowrap;
      transition: all .3s;
    }

    .ip-account {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(245, 166, 35, 0.08);
      border: 1px solid rgba(245, 166, 35, 0.2);
      border-radius: var(--r-sm);
      padding: 12px 16px;
      margin-bottom: 18px;
    }

    .ip-account-label {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.4);
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .ip-account-val {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      font-weight: 900;
      color: #f5a623;
      font-family: 'Cairo Play', sans-serif;
      direction: ltr;
    }

    .ip-steps {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 20px;
    }

    .ip-step-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .ip-step-num {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      flex-shrink: 0;
      background: rgba(245, 166, 35, 0.2);
      border: 1px solid rgba(245, 166, 35, 0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 900;
      color: #f5a623;
    }

    .ip-step-txt {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.6;
      padding-top: 2px;
    }

    .ip-step-txt strong {
      color: #f5a623;
    }

    .ip-pay-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, #d97706 0%, #f5a623 50%, #fbbf24 100%);
      background-size: 200% 100%;
      color: #04050f;
      border: none;
      border-radius: 50px;
      font-family: 'Cairo', sans-serif;
      font-size: 15px;
      font-weight: 900;
      text-decoration: none;
      cursor: pointer;
      transition: all .3s;
      box-shadow: 0 6px 28px rgba(245, 166, 35, 0.35);
      animation: gold-shimmer 2.5s ease-in-out infinite;
    }

    @keyframes gold-shimmer {

      0%,
      100% {
        background-position: 0% 50%;
        box-shadow: 0 6px 28px rgba(245, 166, 35, 0.35);
      }

      50% {
        background-position: 100% 50%;
        box-shadow: 0 8px 40px rgba(245, 166, 35, 0.6);
      }
    }

    .ip-pay-btn:hover {
      transform: translateY(-2px) scale(1.01);
    }

    .ip-note {
      margin-top: 14px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.4);
      text-align: center;
      line-height: 1.7;
      padding: 10px 14px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: var(--r-sm);
      border: 1px solid var(--border-w);
    }

    .toast {
      position: fixed;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%) translateY(100px);
      background: var(--bg-card);
      border: 1px solid rgba(109, 40, 217, 0.25);
      border-radius: 50px;
      padding: 14px 28px;
      font-size: 14px;
      font-weight: 700;
      color: var(--white);
      z-index: 1000;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
      transition: transform .3s, opacity .3s;
      opacity: 0;
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }

    .toast.show {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }

    .toast.error {
      border-color: rgba(239, 68, 68, 0.4);
    }

    /* LOCATION */
    .location-layout {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 48px;
      margin-top: 56px;
      align-items: start;
    }

    .location-info-items {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 32px;
    }

    .loc-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .loc-icon {
      width: 46px;
      height: 46px;
      border-radius: 13px;
      flex-shrink: 0;
      background: var(--purple-xs);
      border: 1px solid rgba(124, 58, 237, .3);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .loc-icon svg {
      width: 22px;
      height: 22px;
    }

    .loc-text h4 {
      font-size: 15px;
      font-weight: 900;
      margin-bottom: 4px;
    }

    .loc-text p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.7;
    }

    .map-card {
      background: var(--ink-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .map-grid-lines {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(124, 58, 237, .1) 1px, transparent 1px), linear-gradient(90deg, rgba(124, 58, 237, .1) 1px, transparent 1px);
      background-size: 40px 40px;
    }

    .map-placeholder {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(11, 21, 48, .9) 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
    }

    .map-placeholder svg {
      width: 48px;
      height: 48px;
      opacity: .5;
    }

    .map-placeholder p {
      font-size: 14px;
      color: var(--muted);
      font-weight: 700;
      text-align: center;
    }

    .map-dot {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--purple);
      box-shadow: 0 0 0 6px rgba(124, 58, 237, .25), 0 0 0 12px rgba(124, 58, 237, .1);
      animation: map-ping 2s ease-in-out infinite;
    }

    @keyframes map-ping {

      0%,
      100% {
        box-shadow: 0 0 0 4px rgba(124, 58, 237, .35), 0 0 0 10px rgba(124, 58, 237, .12)
      }

      50% {
        box-shadow: 0 0 0 8px rgba(124, 58, 237, .2), 0 0 0 18px rgba(124, 58, 237, .06)
      }
    }

    /* FOOTER */
    footer {
      position: relative;
      z-index: 1;
      background: var(--ink-mid);
      border-top: 1px solid var(--border);
      padding: 52px 52px 32px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 44px;
    }

    .footer-brand-title {
      font-family: 'Tajawal', sans-serif;
      font-size: 20px;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .footer-brand-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.9;
      max-width: 280px;
    }

    .footer-socials {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }

    .social-btn {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: rgba(124, 58, 237, .12);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s, border-color .2s;
    }

    .social-btn:hover {
      background: rgba(124, 58, 237, .28);
      border-color: var(--purple);
    }

    .social-btn svg {
      width: 18px;
      height: 18px;
    }

    .footer-col h4 {
      font-size: 13px;
      font-weight: 900;
      color: var(--white);
      margin-bottom: 16px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col li a {
      font-size: 13px;
      color: var(--muted);
      transition: color .2s;
    }

    .footer-col li a:hover {
      color: var(--purple-lt);
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-copy {
      font-size: 12px;
      color: var(--muted);
    }

    .footer-powered a {
      color: var(--purple-lt);
    }

    /* RESPONSIVE */
    @media(max-width:1024px) {
      .section {
        padding: 80px 32px;
      }

      .section-divider {
        margin: 0 32px;
      }

      .perks-grid {
        grid-template-columns: 1fr 1fr;
      }

      .speakers-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .booking-layout {
        grid-template-columns: 1fr;
      }

      .booking-aside {
        position: static;
      }

      .location-layout {
        grid-template-columns: 1fr;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }

      #navbar {
        padding: 0 24px;
      }

      .nav-menu .nav-link {
        display: none;
      }
    }

    @media(max-width:720px) {
      .hero-title {
        font-size: clamp(32px, 9vw, 54px);
      }

      .stats-bar {
        flex-direction: column;
      }

      .stat-item {
        border-left: none;
        border-bottom: 1px solid var(--border);
      }

      .stat-item:last-child {
        border: none;
      }

      .perks-grid {
        grid-template-columns: 1fr;
      }

      .speakers-grid {
        grid-template-columns: 1fr 1fr;
      }

      .videos-grid {
        grid-template-columns: 1fr;
      }

      .field-row-2 {
        grid-template-columns: 1fr;
      }

      .rcard-grid-3 {
        grid-template-columns: 1fr 1fr;
      }

      .countdown-wrap {
        gap: 10px;
      }

      .cd-unit {
        padding: 14px 14px;
        min-width: 64px;
      }

      .cd-num {
        font-size: 28px;
      }

      .footer-top {
        grid-template-columns: 1fr;
      }

      footer {
        padding: 40px 24px 24px;
      }
    }
