  :root {
    --yellow: #FFD700;
    --amber: #FFA500;
    --gold: #C8A600;
    --dark: #0A0A0A;
    --dark2: #111111;
    --dark3: #1A1A1A;
    --cream: #FAFAF0;
    --grey: #888888;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--cream);
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor {
    width: 12px; height: 12px;
    background: var(--yellow);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
  }
  .cursor-ring {
    width: 40px; height: 40px;
    border: 2px solid var(--yellow);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
    opacity: 0.5;
  }
  .cursor-ring.hover { width: 60px; height: 60px; opacity: 1; border-color: var(--amber); }

  /* SPOTLIGHT */
  .spotlight {
    position: fixed;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,0,0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: left 0.3s ease, top 0.3s ease;
  }

  .whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #FFD54F, #7a5a0f);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(255, 179, 0, 0.35);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: whatsappPulse 2.2s ease-in-out infinite;
  }

  .whatsapp-float:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 16px 36px rgba(255, 179, 0, 0.42);
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }

  @keyframes whatsappPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  @media (max-width: 768px) {
    .whatsapp-float {
      right: 18px;
      bottom: 18px;
      width: 56px;
      height: 56px;
    }
  }

  /* NAV — clean top bar, rebuilt */
  /* full styles in the MAIN NAV block below */

  /* HERO */
  .hero {
    min-height: 100vh;
    padding-top: 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-left: 60px;
    padding-right: 60px;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(255,215,0,0.06) 0%, transparent 70%);
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,215,0,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,215,0,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridShift 20s linear infinite;
  }
  @keyframes gridShift {
    0% { transform: translate(0,0); }
    100% { transform: translate(60px, 60px); }
  }

  .hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    max-width: 700px;
  }
  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 40px; height: 1px;
    background: var(--yellow);
  }
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 10vw, 140px);
    line-height: 0.92;
    letter-spacing: 2px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.5s forwards;
  }
  .hero-title .line-yellow { color: var(--yellow); display: block; }
  .hero-sub {
    font-size: 15px;
    line-height: 1.8;
    color: var(--grey);
    max-width: 440px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.7s forwards;
  }
  .hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.9s forwards;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--yellow);
    color: var(--dark);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--amber);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary span { position: relative; z-index: 1; }
  .btn-secondary {
    color: var(--cream);
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
  }
  .btn-secondary:hover { color: var(--yellow); }
  .btn-secondary .arrow { transition: transform 0.3s; }
  .btn-secondary:hover .arrow { transform: translateX(5px); }

  /* EQUIPMENT SCENE */
  .hero-visual {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 520px; height: 560px;
  }

  /* TRIPOD SVG */
  .equip-tripod {
    position: absolute;
    bottom: 20px; right: 80px;
    animation: float1 6s ease-in-out infinite;
  }
  @keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-18px) rotate(1deg); }
  }

  /* RING LIGHT SVG */
  .equip-ringlight {
    position: absolute;
    top: 20px; left: 30px;
    animation: float2 7s ease-in-out infinite 1s;
  }
  @keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-22px) rotate(-2deg); }
  }

  /* GIMBAL SVG */
  .equip-gimbal {
    position: absolute;
    bottom: 60px; left: 40px;
    animation: float3 5s ease-in-out infinite 0.5s;
  }
  @keyframes float3 {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-14px) rotate(-1deg); }
  }

  /* SPARKLES */
  .sparkle {
    position: absolute;
    width: 6px; height: 6px;
    background: var(--yellow);
    border-radius: 50%;
    animation: sparkleAnim 3s ease-in-out infinite;
  }
  .sparkle:nth-child(1) { top: 20%; left: 50%; animation-delay: 0s; }
  .sparkle:nth-child(2) { top: 60%; left: 20%; animation-delay: 0.8s; }
  .sparkle:nth-child(3) { top: 35%; right: 15%; animation-delay: 1.5s; width: 4px; height: 4px; }
  .sparkle:nth-child(4) { bottom: 30%; right: 30%; animation-delay: 0.4s; width: 8px; height: 8px; }
  @keyframes sparkleAnim {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
  }

  /* SCROLL INDICATOR */
  .scroll-indicator {
    position: absolute;
    bottom: 40px; left: 60px;
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
  }
  .scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--yellow), transparent);
    animation: scrollLineAnim 2s ease-in-out infinite;
  }
  @keyframes scrollLineAnim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }
  .scroll-text {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--grey);
    writing-mode: vertical-rl;
  }

  /* SECTIONS COMMON */
  section { position: relative; }
  .section-tag {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }

  /* TICKER */
  .ticker-wrap {
    overflow: hidden;
    border-top: 1px solid rgba(255,215,0,0.1);
    border-bottom: 1px solid rgba(255,215,0,0.1);
    padding: 18px 0;
    background: var(--dark2);
  }
  .ticker-track {
    display: flex;
    gap: 0;
    animation: tickerScroll 20s linear infinite;
    white-space: nowrap;
  }
  @keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .ticker-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    padding: 0 40px;
    color: var(--grey);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
  }
  .ticker-item .dot {
    width: 6px; height: 6px;
    background: var(--yellow);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* SERVICES */
  #services {
    padding: 130px 60px 120px;
    background:
      radial-gradient(circle at 15% 0%, rgba(255,215,0,0.06), transparent 28%),
      radial-gradient(circle at 85% 18%, rgba(255,165,0,0.05), transparent 24%),
      var(--dark2);
  }
  .services-header {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: 80px;
    margin-bottom: 70px;
    align-items: start;
  }
  .services-heading .section-tag {
    margin-bottom: 16px;
  }
  .services-heading .section-title {
    margin-bottom: 0;
  }
  .services-intro {
    display: grid;
    justify-items: end;
    align-content: start;
  }
  .services-intro p {
    color: var(--grey);
    font-size: 15px;
    line-height: 1.8;
    max-width: 640px;
    margin-top: 6px;
  }
  .services-note {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
    justify-content: flex-end;
  }
  .services-note span {
    padding: 9px 14px;
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 999px;
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.72);
    font-size: 11px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .service-card {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.02), transparent 26%),
      var(--dark3);
    padding: 52px 42px 44px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,215,0,0.06);
    border-radius: 16px;
    min-height: 250px;
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    cursor: default;
  }
  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow), var(--amber));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .service-card:hover {
    background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent 24%), #222;
    transform: translateY(-8px);
    border-color: rgba(255,215,0,0.18);
    box-shadow: 0 20px 50px rgba(0,0,0,0.28);
  }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    width: 56px; height: 56px;
    margin-bottom: 28px;
    color: var(--yellow);
  }
  .service-num {
    position: absolute;
    top: 32px; right: 36px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    color: rgba(255,215,0,0.05);
    line-height: 1;
    transition: color 0.4s;
  }
  .service-card:hover .service-num { color: rgba(255,215,0,0.1); }
  .service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--cream);
  }
  .service-card p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(250,250,240,0.68);
    max-width: 240px;
  }
  .hover-preview {
    margin-top: 36px;
    height: 420px;
    border-radius: 24px;
    border: 1px solid rgba(255,215,0,0.08);
    background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,215,0,0.03));
    overflow: hidden;
    position: relative;
  }
  .hover-preview iframe,
  .hover-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.92;
    filter: saturate(1.08) contrast(1.02);
    border: 0;
  }
  .hover-preview-hint {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(10,10,10,0.62);
    color: rgba(255,255,255,0.78);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
  }

  /* WORK / PORTFOLIO */
  #work {
    padding: 120px 60px;
  }
  .work-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
  }
  .work-header a {
    color: var(--yellow);
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--yellow);
    padding-bottom: 2px;
  }
  .work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
  }
  .work-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: var(--dark3);
    cursor: pointer;
  }
  .work-card:first-child {
    grid-column: 1 / 3;
    grid-row: 1;
  }
  .work-card:nth-child(3) { grid-row: 1 / 3; grid-column: 3; }
  .work-thumb {
    width: 100%; padding-top: 65%;
    position: relative;
    overflow: hidden;
  }
  .work-card:first-child .work-thumb { padding-top: 50%; }
  .work-card:nth-child(3) .work-thumb { padding-top: 100%; }
  .work-thumb-bg {
    position: absolute; inset: 0;
    transition: transform 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .work-card:hover .work-thumb-bg { transform: scale(1.06); }

  /* Gradient backgrounds for work cards */
  .wbg1 { background: linear-gradient(135deg, #1a1400, #3d2e00, #1a1400); }
  .wbg2 { background: linear-gradient(135deg, #0d1a0d, #1a3300, #0d1a0d); }
  .wbg3 { background: linear-gradient(135deg, #1a000d, #330014, #1a000d); }
  .wbg4 { background: linear-gradient(135deg, #001a1a, #003333, #001a1a); }

  .work-icon-scene {
    position: absolute; inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
  }
  .work-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 28px;
  }
  .work-card:hover .work-overlay { opacity: 1; }
  .work-overlay-inner { transform: translateY(10px); transition: transform 0.4s ease; }
  .work-card:hover .work-overlay-inner { transform: translateY(0); }
  .work-info { padding: 20px 24px 24px; }
  .work-cat {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 6px;
  }
  .work-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
  }

  /* STATS */
  .stats-band {
    padding: 80px 60px;
    background: var(--yellow);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }
  .stat-item {
    background: var(--yellow);
    padding: 40px;
    text-align: center;
    position: relative;
  }
  .stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(0,0,0,0.15);
  }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: var(--dark);
    line-height: 1;
    display: block;
  }
  .stat-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.55);
    margin-top: 8px;
    display: block;
  }

  /* ABOUT / PROCESS */
  #process {
    padding: 120px 60px;
    background: var(--dark2);
  }
  .process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-top: 60px;
  }
  .process-steps { display: flex; flex-direction: column; gap: 0; }
  .process-step {
    padding: 36px 0;
    border-bottom: 1px solid rgba(255,215,0,0.08);
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    align-items: start;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.45s ease, border-color 0.45s ease, background 0.45s ease, box-shadow 0.45s ease;
    cursor: default;
  }
  .process-step:first-child { border-top: 1px solid rgba(255,215,0,0.08); }
  .process-step::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at var(--glow-x, 18%) 50%, rgba(255,215,0,0.18), transparent 34%),
      linear-gradient(90deg, rgba(255,215,0,0.16), transparent 42%);
    opacity: 0;
    transform: translateX(-18%);
    transition: opacity 0.45s ease, transform 0.65s ease;
    pointer-events: none;
  }
  .process-step::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -24%;
    width: 18%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
    transform: skewX(-18deg);
    opacity: 0;
    pointer-events: none;
  }
  .process-step:hover {
    background: rgba(255,215,0,0.035);
    border-color: rgba(255,215,0,0.26);
    box-shadow: 0 18px 44px rgba(0,0,0,0.36), inset 0 0 0 1px rgba(255,215,0,0.09);
    transform: translateX(12px) scale(1.015);
  }
  .process-step:hover::before {
    opacity: 1;
    transform: translateX(0);
  }
  .process-step:hover::after {
    animation: processShine 0.95s ease forwards;
  }
  .process-step:hover .step-num {
    color: var(--yellow);
    text-shadow: 0 0 16px rgba(255,215,0,0.7), 0 0 36px rgba(255,165,0,0.28);
    transform: rotate(-8deg) scale(1.18);
  }
  .process-step:hover .step-content h3 {
    color: var(--yellow);
  }
  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: rgba(255,215,0,0.2);
    line-height: 1;
    position: relative;
    z-index: 1;
    transition: color 0.35s ease, text-shadow 0.35s ease, transform 0.45s cubic-bezier(.2,.8,.2,1);
  }
  .step-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: color 0.35s ease;
  }
  .step-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--grey);
    position: relative;
    z-index: 1;
  }
  @keyframes processShine {
    0% { left: -24%; opacity: 0; }
    18% { opacity: 1; }
    100% { left: 112%; opacity: 0; }
  }
  @media (max-width: 720px) {
    .process-step:hover {
      transform: translateY(-4px) scale(1.01);
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .process-step,
    .process-step::before,
    .process-step::after,
    .step-num,
    .step-content h3 {
      transition: none;
      animation: none;
    }
  }
  .process-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .process-circle {
    width: 320px; height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(255,215,0,0.15);
    position: relative;
    animation: slowSpin 25s linear infinite;
  }
  @keyframes slowSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  .process-circle::before {
    content: '';
    position: absolute;
    top: -4px; left: 50%; transform: translateX(-50%);
    width: 8px; height: 8px;
    background: var(--yellow);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--yellow);
  }
  .process-center {
    position: absolute;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,0,0.12) 0%, rgba(255,215,0,0.02) 100%);
    border: 1px solid rgba(255,215,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .process-center-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--yellow);
    letter-spacing: 2px;
  }

  /* TEAM / ABOUT */
  #about {
    padding: 120px 60px;
  }
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
  }
  .about-text .section-title { margin-bottom: 24px; }
  .about-text p {
    color: var(--grey);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
  }
  .about-text p span { color: var(--yellow); font-weight: 600; }
  .about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
  }
  .about-tag {
    padding: 8px 20px;
    border: 1px solid rgba(255,215,0,0.25);
    border-radius: 40px;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--yellow);
    transition: all 0.3s;
  }
  .about-tag:hover { background: rgba(255,215,0,0.1); }
  .about-visual {
    position: relative;
    height: 480px;
  }
  .about-img-box {
    width: 100%; height: 100%;
    border-radius: 4px;
    background: var(--dark3);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(255,215,0,0.1) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
  }
  @keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }
  .about-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 120px; height: 120px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: badgeSpin 12s linear infinite;
  }
  @keyframes badgeSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  .about-badge-inner {
    transform: rotate(0deg);
    animation: badgeCounter 12s linear infinite;
    text-align: center;
  }
  @keyframes badgeCounter {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
  }
  .about-badge-inner .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--dark);
    line-height: 1;
  }
  .about-badge-inner .lbl {
    font-size: 9px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* TESTIMONIALS */
  #testimonials {
    padding: 120px 60px;
    background: var(--dark2);
    overflow: hidden;
  }
  .testimonials-header { text-align: center; margin-bottom: 64px; }
  .testimonials-track {
    display: flex;
    gap: 24px;
    animation: testimonialScroll 30s linear infinite;
    width: max-content;
  }
  .testimonials-track:hover { animation-play-state: paused; }
  @keyframes testimonialScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .testi-card {
    position: relative;
    background: var(--dark3);
    border: 1px solid rgba(255,215,0,0.08);
    border-radius: 4px;
    padding: 28px 30px;
    width: 340px;
    flex-shrink: 0;
    transition: border-color 0.3s;
  }
  .testi-card:hover { border-color: rgba(255,215,0,0.25); }
  .testi-card[data-reel],
  .testi-video-card {
    overflow: hidden;
  }
  .testi-card[data-reel] .testi-stars,
  .testi-card[data-reel] .testi-text,
  .testi-card[data-reel] .testi-author,
  .testi-video-card .testi-stars,
  .testi-video-card .testi-text,
  .testi-video-card .testi-author {
    transition: opacity 0.28s ease, transform 0.28s ease;
  }
  .testi-card[data-reel].reel-hovering .testi-stars,
  .testi-card[data-reel].reel-hovering .testi-text,
  .testi-card[data-reel].reel-hovering .testi-author {
    opacity: 0;
    transform: translateY(8px);
  }
  .testi-video-card:hover .testi-stars,
  .testi-video-card:hover .testi-text,
  .testi-video-card:hover .testi-author {
    opacity: 0;
    transform: translateY(8px);
  }
  .testi-reel-preview {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.35s ease, transform 0.45s ease;
    pointer-events: none;
  }
  .testi-reel-preview iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }
  .testi-card[data-reel] > *:not(.testi-reel-preview) {
    position: relative;
    z-index: 2;
  }
  .testi-video-card > *:not(.testi-bg-video):not(.testi-video-overlay) {
    position: relative;
    z-index: 2;
  }
  .testi-card[data-reel].reel-hovering .testi-reel-preview {
    opacity: 1;
    transform: scale(1);
  }
  .testi-video-card {
    overflow: hidden;
  }
  .testi-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.35s ease, transform 0.45s ease;
    pointer-events: none;
  }
  .testi-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(10,10,10,0.28), rgba(10,10,10,0.82));
    pointer-events: none;
  }
  .testi-video-card:hover .testi-bg-video {
    opacity: 1;
    transform: scale(1);
  }
  .testi-video-card > *:not(.testi-bg-video):not(.testi-video-overlay) {
    position: relative;
    z-index: 2;
  }
  .testi-stars { color: var(--yellow); font-size: 16px; margin-bottom: 20px; }
  .testi-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--cream);
    margin-bottom: 22px;
    font-style: italic;
  }
  .testi-author { display: flex; align-items: center; gap: 14px; }
  .testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,215,0,0.15);
    border: 2px solid var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--yellow);
  }
  .testi-name { font-weight: 600; font-size: 14px; }
  .testi-role { font-size: 12px; color: var(--grey); margin-top: 2px; }
  .testi-reel-link {
    display: inline-flex;
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,215,0,0.18);
    color: var(--yellow);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  }
  .testi-reel-link:hover {
    background: var(--yellow);
    color: var(--dark);
    border-color: var(--yellow);
    transform: translateY(-2px);
  }

  /* CTA */
  #contact {
    padding: 150px 60px 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(circle at 18% 18%, rgba(255,215,0,0.14), transparent 24%),
      radial-gradient(circle at 82% 30%, rgba(255,165,0,0.10), transparent 22%),
      linear-gradient(180deg, #121212 0%, #0d0d0d 100%);
  }
  .cta-glow {
    position: absolute;
    width: 980px; height: 980px;
    border-radius: 50%;
    background:
      radial-gradient(circle, rgba(255,215,0,0.12) 0%, rgba(255,215,0,0.04) 32%, transparent 72%);
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: ctaPulse 9s ease-in-out infinite;
  }
  @keyframes ctaPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(0.92); opacity: 0.55; }
    50% { transform: translate(-50%, -50%) scale(1.06); opacity: 1; }
  }
  .cta-ring {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255,215,0,0.10);
    border-radius: 50%;
    animation: ringExpand 4s ease-in-out infinite;
  }
  .cta-ring:nth-child(1) { width: 320px; height: 320px; animation-delay: 0s; }
  .cta-ring:nth-child(2) { width: 560px; height: 560px; animation-delay: 1s; }
  .cta-ring:nth-child(3) { width: 820px; height: 820px; animation-delay: 2s; }
  @keyframes ringExpand {
    0% { opacity: 0.45; transform: translate(-50%, -50%) scale(0.94); }
    50% { opacity: 0.95; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0.45; transform: translate(-50%, -50%) scale(0.94); }
  }
  .cta-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
    padding: 42px 40px 48px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,215,0,0.10);
    box-shadow: 0 24px 80px rgba(0,0,0,0.30);
    backdrop-filter: blur(16px);
  }
  .cta-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent 42%);
    pointer-events: none;
  }
  .cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 7vw, 108px);
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 24px;
  }
  .cta-title em { color: var(--yellow); font-style: normal; }
  .cta-sub {
    font-size: 16px;
    color: rgba(250,250,240,0.72);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 48px;
  }
  .cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  /* FOOTER */
  footer {
    padding: 72px 60px 56px;
    border-top: 1px solid rgba(255,215,0,0.10);
    background:
      radial-gradient(circle at 15% 15%, rgba(255,215,0,0.14), transparent 22%),
      radial-gradient(circle at 85% 12%, rgba(255,165,0,0.10), transparent 20%),
      linear-gradient(180deg, #171717 0%, #0b0b0b 100%);
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    position: relative;
    overflow: hidden;
  }
  footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(120deg, rgba(255,255,255,0.03), transparent 35%),
      radial-gradient(circle at 50% 100%, rgba(255,215,0,0.08), transparent 34%);
    pointer-events: none;
  }
  footer > * {
    position: relative;
    z-index: 1;
  }
  .footer-logo {
    display: inline-flex;
    margin-bottom: 18px;
  }
  .footer-logo img {
    width: 118px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 18px rgba(255,215,0,0.18));
  }
  .footer-brand p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(250,250,240,0.72);
    max-width: 300px;
  }
  .footer-socials { display: flex; gap: 12px; margin-top: 24px; }
  .footer-social {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,215,0,0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.02);
  }
  .footer-social:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(255,215,0,0.10); transform: translateY(-2px); }
  .footer-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
  }
  .footer-highlight span {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,215,0,0.14);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.76);
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
  }
  .footer-col h4 {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 24px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col a {
    color: rgba(250,250,240,0.68);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }
  .footer-col a:hover { color: var(--cream); }
  .footer-bottom {
    padding: 20px 60px 28px;
    border-top: 1px solid rgba(255,215,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.25));
  }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.38); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* HAMBURGER MOBILE */
  .hamburger { display: none; }


  .hero{
    position:relative;
    min-height:100vh;
    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:0 5vw;
}

.hero-video{
    position:absolute;
    inset:0;
    z-index:-3;
}

.hero-video video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to bottom,
        rgba(12,12,12,.22),
        rgba(12,12,12,.48)
    );

    z-index:-2;
}

.hero-grid{
    position:absolute;
    inset:0;

    background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);

    background-size:80px 80px;

    z-index:-1;
}

.hero-content{
    max-width:1000px;
}

.hero-eyebrow{
    color:#999;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:30px;
}

.hero-title{
    font-size:clamp(4rem,10vw,10rem);
    line-height:.9;
    font-weight:700;
    text-transform:uppercase;
}

.line-yellow{
    color:#FFD700;
}

.hero-sub{
    width:min(700px,100%);
    margin:40px auto 0;

    color:#c5c5c5;

    line-height:1.8;

    font-size:1.05rem;
}

.hero-actions{
    margin-top:60px;

    display:flex;
    justify-content:center;
    gap:20px;
}
/* =============================================================
   services-hover.css
   Link this stylesheet in your page. Your HTML stays untouched.
   The JS file (services-hover.js) injects visuals dynamically.
   ============================================================= */

/* ── Card base overrides ─────────────────────────────────── */
.service-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg);
  transition: background 0.4s ease, transform 0.12s ease;
}

/* Mouse-follow radial glow */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(200, 255, 0, 0.08) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}
.service-card:hover::before {
  opacity: 1;
}

/* Keep existing text elements above the visual layer */
.service-card .service-num,
.service-card h3,
.service-card p {
  position: relative;
  z-index: 3;
}

/* h3 accent on hover */
.service-card:hover h3 {
  color: #c8ff00;
  transition: color 0.3s ease;
}

/* p slide-up on hover */
.service-card p {
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: translateY(5px);
  opacity: 0.65;
}
.service-card:hover p {
  transform: translateY(0);
  opacity: 1;
}


/* ── Injected visual container (added by JS) ─────────────── */
.svc-visual-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.service-card:hover .svc-visual-layer {
  opacity: 1;
}

/* Injected arrow badge */
.svc-arrow {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 4;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.35);
  transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.4s;
  text-decoration: none;
}
.service-card:hover .svc-arrow {
  border-color: #c8ff00;
  background: #c8ff00;
  color: #000;
  transform: rotate(-45deg);
}


/* ============================================================
   CARD 1 — VIDEO EDITING — Ring Light
   ============================================================ */
.ring-light-wrap {
  position: absolute;
  top: -25px;
  right: -35px;
  width: 230px;
  height: 230px;
}
.rl-glow {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,255,0,0.07) 0%, transparent 65%);
  animation: rlPulse 2.2s ease-in-out infinite;
}
.rl-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
}
.rl-ring-1 {
  inset: 0;
  border-color: rgba(200,255,0,0.6) rgba(200,255,0,0.08) rgba(200,255,0,0.08) rgba(200,255,0,0.08);
  animation: rlSpin 3.2s linear infinite;
  filter: blur(0.3px);
}
.rl-ring-2 {
  inset: 22px;
  border-color: rgba(200,255,0,0.3) transparent rgba(200,255,0,0.3) transparent;
  animation: rlSpin 2s linear infinite reverse;
}
.rl-ring-3 {
  inset: 44px;
  border-color: rgba(255,255,255,0.15) rgba(255,255,255,0.04) rgba(255,255,255,0.15) rgba(255,255,255,0.04);
  animation: rlSpin 4.5s linear infinite;
}
.rl-ring-4 {
  inset: 66px;
  border-color: rgba(200,255,0,0.45) transparent transparent transparent;
  animation: rlSpin 1.6s linear infinite;
}
.rl-center {
  position: absolute;
  inset: 84px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,255,0,0.55) 0%, rgba(200,255,0,0.1) 55%, transparent 80%);
}
@keyframes rlSpin   { to { transform: rotate(360deg); } }
@keyframes rlPulse  {
  0%,100% { transform: scale(1);    opacity: 0.55; }
  50%     { transform: scale(1.06); opacity: 1;    }
}


/* ============================================================
   CARD 2 — SEO — Bar chart
   ============================================================ */
.seo-visual {
  position: absolute;
  top: 12px;
  right: 10px;
  width: 195px;
  height: 155px;
}
.seo-visual svg { width: 100%; height: 100%; }

.seo-bar {
  transform-origin: bottom;
  transform: scaleY(0);
  animation: seoBarUp 0.55s cubic-bezier(0.22,1,0.36,1) forwards;
}
.seo-trend {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: seoDraw 1s ease forwards 0.35s;
}
.seo-peak {
  animation: seoPop 0.3s ease forwards 1s;
  r: 0;
}
@keyframes seoBarUp { to { transform: scaleY(1); } }
@keyframes seoDraw  { to { stroke-dashoffset: 0; } }
@keyframes seoPop   { to { r: 4; } }


/* ============================================================
   CARD 3 — GOOGLE ADS — Donut
   ============================================================ */
.ads-visual {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 185px;
  height: 185px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ads-donut-wrap {
  position: relative;
  width: 128px;
  height: 128px;
  flex-shrink: 0;
}
.ads-donut-wrap svg { width: 100%; height: 100%; }
.ads-seg {
  stroke-dasharray: 0 314;
  animation: adsFill 0.75s ease forwards;
}
.ads-center-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ads-center-label span {
  font-size: 1.35rem;
  font-weight: 700;
  color: #c8ff00;
  line-height: 1;
}
.ads-center-label small {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ads-legend {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-left: 12px;
}
.ads-leg-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
}
.ads-leg-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes adsFill { to { stroke-dasharray: var(--seg) 314; } }


/* ============================================================
   CARD 4 — INSTAGRAM REELS — Scrolling phone
   ============================================================ */
.reels-visual {
  position: absolute;
  top: 8px;
  right: 28px;
  width: 94px;
  height: 166px;
}
.phone-shell {
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  background: #000;
  overflow: hidden;
  position: relative;
}
.phone-notch {
  width: 28px;
  height: 5px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  margin: 6px auto;
}
.reel-feed {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 4px;
  animation: reelScroll 1.9s linear infinite;
}
@keyframes reelScroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
.reel-frame { height: 36px; border-radius: 5px; flex-shrink: 0; }
.rf-a { background: linear-gradient(135deg,#ff6b35,#ff3d71); }
.rf-b { background: linear-gradient(135deg,#c8ff00,#00d4ff); }
.rf-c { background: linear-gradient(135deg,#a855f7,#3b82f6); }
.rf-d { background: linear-gradient(135deg,#f59e0b,#ef4444); }
.rf-e { background: linear-gradient(135deg,#10b981,#06b6d4); }
.rf-f { background: linear-gradient(135deg,#ec4899,#8b5cf6); }

.phone-play {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
}
.phone-play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%,-50%);
  width: 0; height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid rgba(255,255,255,0.7);
}
.reel-stats {
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.reel-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.52rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.2;
}
.reel-stat-icon {
  font-size: 13px;
  line-height: 1;
}


/* ============================================================
   CARD 5 — WEBSITE — Code editor
   ============================================================ */
.web-visual {
  position: absolute;
  top: 10px;
  right: 8px;
  width: 198px;
  height: 158px;
}
.code-editor {
  width: 100%;
  height: 100%;
  background: #0d1117;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  overflow: hidden;
  padding: 7px 8px;
  box-sizing: border-box;
}
.editor-titlebar {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 7px;
}
.etb-dot { width: 5px; height: 5px; border-radius: 50%; }
.editor-url {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  margin-left: 4px;
}
.code-ln {
  height: 4px;
  border-radius: 2px;
  margin-bottom: 4px;
  opacity: 0;
  animation: codeAppear 0.6s ease forwards;
}
.code-ln.indent { margin-left: 10px; }
@keyframes codeAppear { to { opacity: 1; } }

.ln-1  { width: 52%; background: rgba(200,255,0,0.45);  animation-delay: 0.00s; }
.ln-2  { width: 78%; background: rgba(0,212,255,0.35);  animation-delay: 0.08s; }
.ln-3  { width: 38%; background: rgba(255,107,53,0.35); animation-delay: 0.16s; }
.ln-4  { width: 62%; background: rgba(0,212,255,0.25);  animation-delay: 0.24s; }
.ln-5  { width: 43%; background: rgba(200,255,0,0.3);   animation-delay: 0.32s; }
.ln-6  { width: 68%; background: rgba(168,85,247,0.35); animation-delay: 0.40s; }
.ln-7  { width: 33%; background: rgba(255,107,53,0.25); animation-delay: 0.48s; }
.ln-8  { width: 52%; background: rgba(0,212,255,0.3);   animation-delay: 0.56s; }
.ln-9  { width: 76%; background: rgba(200,255,0,0.22);  animation-delay: 0.64s; }
.ln-10 { width: 44%; background: rgba(168,85,247,0.28); animation-delay: 0.72s; }

.editor-cursor {
  display: inline-block;
  width: 2px;
  height: 8px;
  background: #c8ff00;
  vertical-align: middle;
  margin-left: 2px;
  animation: cursorBlink 0.75s step-end infinite;
}
@keyframes cursorBlink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.mini-preview {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 58px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  background: #1a1a2e;
  overflow: hidden;
  padding: 3px 4px;
  box-sizing: border-box;
}
.mp-hero { height: 12px; background: linear-gradient(90deg,rgba(200,255,0,0.18),transparent); border-radius: 2px; margin-bottom: 3px; }
.mp-ln   { height: 3px; background: rgba(255,255,255,0.06); border-radius: 1px; margin-bottom: 2px; }
.mp-ln.s { width: 55%; }


/* ============================================================
   CARD 6 — BRANDING — Geometry + Palette
   ============================================================ */
.brand-visual {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 178px;
  height: 178px;
}
.brand-visual svg { width: 100%; height: 100%; }

.brand-stroke {
  stroke-dashoffset: var(--d);
  stroke-dasharray:  var(--d);
  animation: brandTrace 0.8s ease forwards;
}
.brand-reveal {
  opacity: 0;
  animation: brandShow 0.6s ease forwards 0.55s;
}
.brand-dot {
  transform: scale(0);
  transform-origin: center;
  animation: dotPop 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes brandTrace { to { stroke-dashoffset: 0; } }
@keyframes brandShow  { to { opacity: 1; } }
@keyframes dotPop     { to { transform: scale(1); } }

/* ── HERO AURORA BLOBS ──────────────────────────────────── */
.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0;
  animation: auroraPulse 10s ease-in-out infinite;
}

.aurora-1 {
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255,215,0,0.55) 0%, rgba(255,140,0,0.25) 45%, transparent 75%);
  top: -15%;
  left: -8%;
  animation-delay: 0s;
  animation-duration: 13s;
}

.aurora-2 {
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(255,190,0,0.45) 0%, rgba(255,120,0,0.18) 45%, transparent 75%);
  top: 15%;
  right: -12%;
  animation-delay: 3.5s;
  animation-duration: 17s;
}

.aurora-3 {
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(255,220,0,0.40) 0%, rgba(255,180,0,0.15) 45%, transparent 75%);
  bottom: -8%;
  left: 20%;
  animation-delay: 7s;
  animation-duration: 15s;
}

/* extra top-right accent */
.aurora-4 {
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,180,0.30) 0%, rgba(255,215,0,0.12) 50%, transparent 80%);
  top: 5%;
  right: 10%;
  animation-delay: 1.5s;
  animation-duration: 11s;
  filter: blur(40px);
}

@keyframes auroraPulse {
  0%   { opacity: 0;    transform: scale(0.82) translate(0px, 0px); }
  20%  { opacity: 1;    transform: scale(1.06) translate(28px, -18px); }
  50%  { opacity: 0.80; transform: scale(0.94) translate(-18px, 26px); }
  80%  { opacity: 1;    transform: scale(1.10) translate(18px, 8px); }
  100% { opacity: 0;    transform: scale(0.82) translate(0px, 0px); }
}

/* ensure hero canvas fills full section */
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: -2;
  pointer-events: none;
}

/* hero must clip the zoom-out NOON overshoot */
.hero {
  overflow: hidden;
  /* ensure page starts locked at top */
  position: relative;
}

/* lighten overlay — let the canvas light through */
.svc-hero .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.45) 60%,
    rgba(0,0,0,0.70) 100%
  ) !important;
}

/* index.html video hero needs stronger overlay for text legibility */
.hero .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.40) 55%,
    rgba(0,0,0,0.72) 100%
  ) !important;
}

/* ── MOBILE RESPONSIVE HERO ── */
@media (max-width: 768px) {
  .hero {
    padding-left: 24px;
    padding-right: 24px;
    text-align: center;
  }
  .hero-title {
    font-size: clamp(52px, 16vw, 90px) !important;
  }
  .hero-sub {
    font-size: 14px;
    max-width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .svc-hero-title {
    font-size: clamp(3.5rem, 16vw, 7rem) !important;
  }
  .svc-hero-sub {
    font-size: 14px;
    padding: 0 8px;
  }
  .scroll-indicator {
    display: none;
  }
  .aurora-1 { width: 350px; height: 300px; }
  .aurora-2 { width: 300px; height: 300px; }
  .aurora-3 { width: 280px; height: 250px; }
  .aurora-4 { width: 200px; height: 200px; }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(42px, 18vw, 72px) !important;
    line-height: 0.95;
  }
  .svc-hero-title {
    font-size: clamp(3rem, 18vw, 5.5rem) !important;
  }
  .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .btn-secondary {
    justify-content: center;
  }
}

/* ================================================
   GLOBAL MOBILE RESPONSIVE — index + all pages
   ================================================ */

@media (max-width: 900px) {
  nav {
    padding: 16px 24px;
  }
  nav.scrolled {
    padding: 12px 24px;
  }
  .nav-links {
    display: none; /* hide desktop nav on mobile */
  }

  #services {
    padding: 80px 24px;
  }
  .services-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .stats-band {
    grid-template-columns: 1fr 1fr;
    padding: 48px 24px;
    gap: 2px;
  }

  #process {
    padding: 80px 24px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .process-visual {
    width: 100% !important;
    max-width: 420px;
    height: 420px !important;
    margin: 0 auto;
  }

  #about {
    padding: 80px 24px;
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-visual {
    height: 320px;
  }

  #testimonials {
    padding: 80px 24px;
  }

  #contact {
    padding: 80px 24px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 48px 24px;
  }
  .footer-bottom {
    padding: 20px 24px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .cta-title {
    font-size: clamp(40px, 10vw, 72px) !important;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 36px 28px;
  }

  .stats-band {
    grid-template-columns: 1fr 1fr;
    padding: 36px 16px;
  }
  .stat-num {
    font-size: 52px !important;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-title {
    font-size: clamp(36px, 10vw, 56px) !important;
  }

  .testi-card {
    width: 300px;
    padding: 28px 24px;
  }

  /* service page grids */
  .svc-cards-grid {
    grid-template-columns: 1fr !important;
  }
  .svc-packages-grid {
    grid-template-columns: 1fr !important;
  }
  .svc-what,
  .svc-process,
  .svc-why,
  .svc-packages {
    padding: 60px 20px !important;
  }
  .flow-grid {
    grid-template-columns: 1fr !important;
  }
  .services-showcase .services-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── HAMBURGER + MOBILE NAV ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: flex !important;           /* override the display:none above */
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: min(300px, 80vw);
    height: 100vh;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255,215,0,0.12);
    padding: 90px 36px 40px;
    gap: 28px;
    z-index: 1050;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.16,1,0.3,1);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateX(0);
    pointer-events: all;
  }
  .nav-links a {
    font-size: 16px !important;
    letter-spacing: 2px;
  }
  .nav-links .nav-cta {
    margin-top: 8px;
    text-align: center;
    padding: 14px 24px !important;
  }
}

/* ============================================================
   HERO — PURE CSS ANIMATED BACKGROUND
   Dark stage with sweeping gold light beams, glowing orbs,
   floating dust and a slow scan line. No JS, no video file.
   ============================================================ */

.hero-bg-animated {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%,   #1a1200 0%, #0a0a0a 55%),
    radial-gradient(ellipse 60%  60% at 80% 100%, #120e00 0%, transparent 70%),
    #0a0a0a;
}

/* ── LIGHT RAYS ─────────────────────────────────────────── */
.hb-ray {
  position: absolute;
  top: -10%;
  width: 3px;
  height: 130%;
  border-radius: 0 0 50% 50%;
  transform-origin: top center;
  filter: blur(18px);
  opacity: 0;
}

/* Ray colours alternate gold / warm-white */
.hb-ray-1 {
  left: 18%;
  background: linear-gradient(180deg, rgba(255,215,0,0.9) 0%, rgba(255,180,0,0.3) 40%, transparent 100%);
  width: 160px;
  filter: blur(22px);
  animation: raySwing1 9s ease-in-out infinite;
  animation-delay: 0s;
}
.hb-ray-2 {
  left: 38%;
  background: linear-gradient(180deg, rgba(255,255,200,0.7) 0%, rgba(255,215,0,0.2) 40%, transparent 100%);
  width: 90px;
  filter: blur(14px);
  animation: raySwing2 11s ease-in-out infinite;
  animation-delay: 1.5s;
}
.hb-ray-3 {
  left: 55%;
  background: linear-gradient(180deg, rgba(255,200,0,0.85) 0%, rgba(255,150,0,0.25) 40%, transparent 100%);
  width: 200px;
  filter: blur(28px);
  animation: raySwing1 13s ease-in-out infinite reverse;
  animation-delay: 0.8s;
}
.hb-ray-4 {
  left: 72%;
  background: linear-gradient(180deg, rgba(255,240,150,0.6) 0%, rgba(255,200,0,0.18) 40%, transparent 100%);
  width: 80px;
  filter: blur(12px);
  animation: raySwing2 8s ease-in-out infinite;
  animation-delay: 3s;
}
.hb-ray-5 {
  left: 85%;
  background: linear-gradient(180deg, rgba(255,215,0,0.75) 0%, rgba(255,160,0,0.22) 35%, transparent 100%);
  width: 130px;
  filter: blur(20px);
  animation: raySwing1 10s ease-in-out infinite reverse;
  animation-delay: 2s;
}

@keyframes raySwing1 {
  0%   { opacity: 0;    transform: rotate(-18deg) scaleY(0.7); }
  15%  { opacity: 1;    transform: rotate(-8deg)  scaleY(1); }
  45%  { opacity: 0.85; transform: rotate(10deg)  scaleY(1.05); }
  75%  { opacity: 1;    transform: rotate(-4deg)  scaleY(0.95); }
  100% { opacity: 0;    transform: rotate(-18deg) scaleY(0.7); }
}
@keyframes raySwing2 {
  0%   { opacity: 0;    transform: rotate(14deg)  scaleY(0.75); }
  20%  { opacity: 0.9;  transform: rotate(4deg)   scaleY(1); }
  55%  { opacity: 0.75; transform: rotate(-12deg) scaleY(1.08); }
  80%  { opacity: 0.9;  transform: rotate(6deg)   scaleY(0.92); }
  100% { opacity: 0;    transform: rotate(14deg)  scaleY(0.75); }
}

/* ── GLOWING ORBS ────────────────────────────────────────── */
.hb-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat 0s ease-in-out infinite alternate;
}

.hb-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,215,0,0.30) 0%, rgba(255,160,0,0.10) 50%, transparent 75%);
  top: -15%; left: -10%;
  animation: orbFloat1 18s ease-in-out infinite alternate;
}
.hb-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,190,0,0.25) 0%, rgba(200,120,0,0.08) 50%, transparent 75%);
  top: 30%; right: -8%;
  animation: orbFloat2 22s ease-in-out infinite alternate;
}
.hb-orb-3 {
  width: 600px; height: 350px;
  background: radial-gradient(ellipse, rgba(255,215,0,0.18) 0%, rgba(255,140,0,0.06) 50%, transparent 75%);
  bottom: -10%; left: 20%;
  animation: orbFloat3 15s ease-in-out infinite alternate;
}
.hb-orb-4 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(255,255,180,0.28) 0%, rgba(255,215,0,0.10) 50%, transparent 75%);
  top: 15%; right: 20%;
  filter: blur(40px);
  animation: orbFloat4 12s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
  0%   { transform: translate(0px,   0px)   scale(1);    opacity: 0.7; }
  33%  { transform: translate(40px, -30px)  scale(1.08); opacity: 1; }
  66%  { transform: translate(-20px, 50px)  scale(0.94); opacity: 0.8; }
  100% { transform: translate(60px,  20px)  scale(1.05); opacity: 1; }
}
@keyframes orbFloat2 {
  0%   { transform: translate(0px,   0px)   scale(1);    opacity: 0.6; }
  40%  { transform: translate(-50px, 30px)  scale(1.12); opacity: 1; }
  100% { transform: translate(30px, -40px)  scale(0.92); opacity: 0.75; }
}
@keyframes orbFloat3 {
  0%   { transform: translate(0px,  0px)   scale(1);    opacity: 0.5; }
  50%  { transform: translate(-40px,-20px) scale(1.06); opacity: 0.85; }
  100% { transform: translate(50px,  30px) scale(0.97); opacity: 0.65; }
}
@keyframes orbFloat4 {
  0%   { transform: translate(0px, 0px)   scale(1);    opacity: 0.6; }
  60%  { transform: translate(30px,-25px) scale(1.15); opacity: 1; }
  100% { transform: translate(-20px,20px) scale(0.9);  opacity: 0.7; }
}

/* ── FLOATING DUST / SPARKLE FIELD ──────────────────────── */
.hb-dust {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12%  18%, rgba(255,215,0,0.7) 0%, transparent 100%),
    radial-gradient(1px   1px   at 25%  72%, rgba(255,215,0,0.5) 0%, transparent 100%),
    radial-gradient(2px   2px   at 38%  35%, rgba(255,240,100,0.6) 0%, transparent 100%),
    radial-gradient(1px   1px   at 48%  88%, rgba(255,200,0,0.45) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 58%  22%, rgba(255,215,0,0.65) 0%, transparent 100%),
    radial-gradient(1px   1px   at 67%  60%, rgba(255,220,50,0.5) 0%, transparent 100%),
    radial-gradient(2px   2px   at 74%  14%, rgba(255,200,0,0.55) 0%, transparent 100%),
    radial-gradient(1px   1px   at 82%  78%, rgba(255,215,0,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 90%  42%, rgba(255,230,80,0.6) 0%, transparent 100%),
    radial-gradient(1px   1px   at 6%   55%, rgba(255,215,0,0.45) 0%, transparent 100%),
    radial-gradient(2px   2px   at 32%  92%, rgba(255,210,0,0.5) 0%, transparent 100%),
    radial-gradient(1px   1px   at 44%  48%, rgba(255,240,120,0.55) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 62%  8%,  rgba(255,215,0,0.6) 0%, transparent 100%),
    radial-gradient(1px   1px   at 78%  95%, rgba(255,200,30,0.45) 0%, transparent 100%),
    radial-gradient(2px   2px   at 94%  68%, rgba(255,215,0,0.5) 0%, transparent 100%),
    radial-gradient(1px   1px   at 18%  82%, rgba(255,230,0,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 52%  30%, rgba(255,215,0,0.55) 0%, transparent 100%),
    radial-gradient(1px   1px   at 86%  25%, rgba(255,200,0,0.5) 0%, transparent 100%);
  animation: dustDrift 30s linear infinite;
}
@keyframes dustDrift {
  0%   { transform: translateY(0px)   translateX(0px); }
  25%  { transform: translateY(-18px) translateX(8px); }
  50%  { transform: translateY(-8px)  translateX(-12px); }
  75%  { transform: translateY(-24px) translateX(6px); }
  100% { transform: translateY(0px)   translateX(0px); }
}

/* ── SLOW SCAN LINE ──────────────────────────────────────── */
.hb-scan {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,215,0,0.06) 20%,
    rgba(255,215,0,0.18) 50%,
    rgba(255,215,0,0.06) 80%,
    transparent 100%
  );
  animation: scanMove 8s linear infinite;
  pointer-events: none;
}
@keyframes scanMove {
  0%   { top: -2px; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* overlay for video-off hero on index page */
.hero .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.30) 55%,
    rgba(0,0,0,0.65) 100%
  ) !important;
  pointer-events: none;
}

/* ── MOBILE: scale down expensive effects ────────────────── */
@media (max-width: 768px) {
  .hb-ray-3, .hb-ray-5 { display: none; }
  .hb-orb-1 { width: 280px; height: 280px; }
  .hb-orb-2 { width: 220px; height: 220px; }
  .hb-orb-3 { width: 320px; height: 200px; }
  .hb-orb-4 { width: 150px; height: 150px; }
  .hb-ray   { filter: blur(12px); }
}

/* ============================================================
   SITE LOGO — fixed top-left
   ============================================================ */
.site-logo {
  position: fixed;
  top: 22px;
  left: 32px;
  z-index: 1100;
  transition: opacity 0.4s ease;
}
.site-logo a { display: block; text-decoration: none; }
.site-logo img { width: 100px; height: 50px; object-fit: contain; display: block; }

/* ============================================================
   SIDE NAV — right edge vertical pill
   ============================================================ */
.side-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
  display: flex;
  align-items: center;
}

/* the pill container */
.side-nav-track {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 10px;
  background: rgba(15, 12, 5, 0.55);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 40px;
  box-shadow:
    0 8px 40px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,215,0,0.06) inset,
    0 2px 8px rgba(255,215,0,0.08) inset;
  position: relative;
  overflow: hidden;
}

/* shimmer sweep on hover */
.side-nav-track::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,215,0,0.07) 0%,
    transparent 50%,
    rgba(255,215,0,0.04) 100%
  );
  border-radius: inherit;
  pointer-events: none;
}

/* each nav button */
.snav-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  text-decoration: none;
  color: rgba(255, 215, 0, 0.55);
  transition:
    color          0.30s cubic-bezier(0.34,1.56,0.64,1),
    background     0.30s cubic-bezier(0.34,1.56,0.64,1),
    transform      0.30s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow     0.30s cubic-bezier(0.34,1.56,0.64,1),
    width          0.40s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden;
  white-space: nowrap;
}

/* icon inside button */
.snav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  z-index: 1;
  position: relative;
  transition: transform 0.30s cubic-bezier(0.34,1.56,0.64,1);
}

/* label — hidden by default, slides in on hover */
.snav-label {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: rgba(12, 10, 2, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,215,0,0.22);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity   0.25s ease,
    transform 0.30s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.45);
}

/* hover state — button bubbles up */
.snav-btn:hover {
  color: var(--dark);
  background: var(--yellow);
  transform: scale(1.18);
  box-shadow:
    0 0 18px rgba(255,215,0,0.65),
    0 0 36px rgba(255,215,0,0.25),
    0 4px 12px rgba(0,0,0,0.40);
}
.snav-btn:hover .snav-icon {
  transform: scale(1.12) rotate(-5deg);
}
.snav-btn:hover .snav-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0px);
}

/* active / current section highlight */
.snav-btn.active {
  color: var(--dark);
  background: rgba(255,215,0,0.22);
  box-shadow: 0 0 12px rgba(255,215,0,0.35);
}

/* CTA button — always gold-outlined */
.snav-btn.snav-cta {
  color: var(--yellow);
  background: rgba(255,215,0,0.10);
  border: 1.5px solid rgba(255,215,0,0.45);
  box-shadow: 0 0 12px rgba(255,215,0,0.15);
}
.snav-btn.snav-cta:hover {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
  box-shadow:
    0 0 22px rgba(255,215,0,0.75),
    0 0 44px rgba(255,215,0,0.30);
}

/* entrance animation */
.side-nav {
  animation: sideNavIn 0.9s cubic-bezier(0.34,1.56,0.64,1) both;
  animation-delay: 0.4s;
}
@keyframes sideNavIn {
  0%   { opacity: 0; transform: translateY(-50%) translateX(60px); }
  100% { opacity: 1; transform: translateY(-50%) translateX(0); }
}

/* ── LOGO ENTRANCE ── */
.site-logo {
  animation: logoIn 0.7s cubic-bezier(0.34,1.56,0.64,1) both;
  animation-delay: 0.2s;
}
@keyframes logoIn {
  0%   { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   HAMBURGER — mobile only, bottom right corner
   ============================================================ */
.hamburger {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1200;
  flex-direction: column;
  gap: 5px;
  background: rgba(15,12,5,0.80);
  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255,215,0,0.30);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.50), 0 0 12px rgba(255,215,0,0.12);
  transition: all 0.3s ease;
}
.hamburger:hover {
  background: rgba(255,215,0,0.15);
  box-shadow: 0 4px 28px rgba(0,0,0,0.55), 0 0 20px rgba(255,215,0,0.28);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
@media (max-width: 900px) {
  .side-nav { display: none; }
  .hamburger { display: flex; }

  /* mobile drawer */
  #mobileDrawer {
    position: fixed;
    inset: 0;
    z-index: 1150;
    background: rgba(8,6,0,0.96);
    backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
    pointer-events: none;
  }
  #mobileDrawer.open {
    transform: translateX(0);
    pointer-events: all;
  }
  #mobileDrawer .snav-btn {
    width: auto;
    height: auto;
    padding: 14px 36px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,215,0,0.75);
    border: 1px solid rgba(255,215,0,0.18);
    background: rgba(255,215,0,0.05);
    gap: 14px;
    justify-content: flex-start;
    min-width: 220px;
  }
  #mobileDrawer .snav-btn:hover {
    transform: scale(1.04);
    background: rgba(255,215,0,0.15);
    color: var(--yellow);
  }
  #mobileDrawer .snav-label {
    position: static;
    opacity: 1;
    transform: none;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    font-size: 15px;
    letter-spacing: 2px;
  }
}


/* ================================================================
   MAIN NAV — Logo left · Links right · Full rewrite
   ================================================================ */

/* reset any conflicting old rules */
#nav, .main-nav { all: unset; }

.main-nav {
  display: flex !important;
  align-items: center;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2000;
  padding: 0 36px;
  height: 70px;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.main-nav.scrolled {
  background: rgba(8, 8, 8, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255, 215, 0, 0.10);
}

/* ── Logo — pinned to LEFT ── */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  margin-right: auto;        /* pushes everything else to the right */
}
.nav-logo img {
  width: 90px;
  height: 45px;
  object-fit: contain;
  display: block;
}

/* ── Nav links — sits on RIGHT side ── */
.nav-links {
  display: flex !important;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li { display: block; }

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease;
  position: relative;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.nav-links a.active {
  color: var(--yellow);
  background: rgba(255, 215, 0, 0.08);
}

/* ── CTA button — far RIGHT ── */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
  padding: 10px 24px;
  border-radius: 100px;
  background: var(--yellow);
  color: #0A0A0A !important;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
}
.nav-cta-btn:hover {
  background: #FFC200;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.40);
  transform: translateY(-1px);
}
.nav-cta-btn:active {
  transform: translateY(0);
}

/* ── Hamburger — hidden on desktop ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  margin-left: 16px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin: 0 auto;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ── */
.mobile-nav-drawer {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 70px; right: 0;
  width: min(280px, 85vw);
  padding: 16px 12px 24px;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(255, 215, 0, 0.12);
  border-bottom: 1px solid rgba(255, 215, 0, 0.12);
  border-bottom-left-radius: 16px;
  z-index: 1999;
  gap: 4px;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  pointer-events: none;
}
.mobile-nav-drawer.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-drawer a {
  display: block;
  padding: 13px 18px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.mobile-nav-drawer a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.mobile-nav-drawer a.mobile-cta {
  margin-top: 8px;
  background: var(--yellow);
  color: #0A0A0A !important;
  font-weight: 700;
  text-align: center;
  border-radius: 100px;
}
.mobile-nav-drawer a.mobile-cta:hover {
  background: #FFC200;
}

/* ── Hero dark background — hero needs a background since video removed ── */
.hero {
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(40,28,0,1) 0%, rgba(10,10,10,1) 60%);
  overflow: hidden;
}

/* overlay stays light */
.hero .hero-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.55) 100%) !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .main-nav { padding: 0 20px; }
  .nav-links { display: none !important; }
  .nav-cta-btn { display: none; }
  .nav-hamburger { display: flex; }
}

@media (min-width: 861px) {
  .mobile-nav-drawer { display: none !important; }
  .nav-hamburger { display: none !important; }
}


/* ================================================================
   NAV v2 — Bigger, proper sizing
   ================================================================ */
.main-nav {
  height: 80px !important;
  padding: 0 56px !important;
}
.nav-logo img {
  width: 110px !important;
  height: 55px !important;
}
.nav-links a {
  font-size: 14px !important;
  padding: 10px 20px !important;
  letter-spacing: 0.6px !important;
}
.nav-cta-btn {
  font-size: 14px !important;
  padding: 12px 28px !important;
  margin-left: 16px !important;
}
.mobile-nav-drawer {
  top: 80px !important;
}
@media (max-width: 860px) {
  .main-nav { padding: 0 24px !important; }
}

/* ================================================================
   HERO ANIMATION — floating orbs + particle dots + animated grid
   ================================================================ */

/* hero base */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0A0A0A !important;
  overflow: hidden;
}

/* animated gradient orbs */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 20% 40%, rgba(255,180,0,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(255,215,0,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 65% 80%, rgba(200,120,0,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 90% 40% at 50% 50%, rgba(30,20,0,0.95) 0%, #0A0A0A 75%);
  animation: heroBgPulse 12s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes heroBgPulse {
  0%   { opacity: 0.8; transform: scale(1)     rotate(0deg); }
  33%  { opacity: 1;   transform: scale(1.04)  rotate(0.5deg); }
  66%  { opacity: 0.9; transform: scale(0.98)  rotate(-0.3deg); }
  100% { opacity: 1;   transform: scale(1.06)  rotate(0.8deg); }
}

/* animated grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,215,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,215,0,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: gridDrift 25s linear infinite;
  z-index: 1;
}
@keyframes gridDrift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(72px, 72px); }
}

/* overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.35) 50%,
    rgba(0,0,0,0.75) 100%
  ) !important;
  z-index: 2;
}

/* hero content above everything */
.hero-content {
  position: relative;
  z-index: 10;
}

/* floating gold particles — pure CSS */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 8%  15%, rgba(255,215,0,0.80) 0%, transparent 100%),
    radial-gradient(1px 1px at 22% 68%, rgba(255,215,0,0.55) 0%, transparent 100%),
    radial-gradient(2px 2px at 36% 30%, rgba(255,200,0,0.70) 0%, transparent 100%),
    radial-gradient(1px 1px at 47% 82%, rgba(255,215,0,0.45) 0%, transparent 100%),
    radial-gradient(2px 2px at 61% 12%, rgba(255,230,0,0.75) 0%, transparent 100%),
    radial-gradient(1px 1px at 73% 55%, rgba(255,210,0,0.50) 0%, transparent 100%),
    radial-gradient(2px 2px at 84% 28%, rgba(255,215,0,0.65) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 72%, rgba(255,200,0,0.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 90%, rgba(255,215,0,0.40) 0%, transparent 100%),
    radial-gradient(2px 2px at 55% 45%, rgba(255,230,0,0.60) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 50%, rgba(255,215,0,0.35) 0%, transparent 100%),
    radial-gradient(2px 2px at 78% 88%, rgba(255,200,0,0.55) 0%, transparent 100%),
    radial-gradient(1px 1px at 5%  42%, rgba(255,215,0,0.45) 0%, transparent 100%),
    radial-gradient(2px 2px at 42% 6%,  rgba(255,220,0,0.70) 0%, transparent 100%),
    radial-gradient(1px 1px at 68% 95%, rgba(255,215,0,0.40) 0%, transparent 100%),
    radial-gradient(2px 2px at 90% 10%, rgba(255,215,0,0.65) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 60%, rgba(255,200,0,0.38) 0%, transparent 100%),
    radial-gradient(2px 2px at 18% 35%, rgba(255,215,0,0.58) 0%, transparent 100%);
  animation: particleDrift 20s ease-in-out infinite alternate;
  z-index: 3;
  pointer-events: none;
}

@keyframes particleDrift {
  0%   { transform: translateY(0px)   translateX(0px); }
  25%  { transform: translateY(-22px) translateX(10px); }
  50%  { transform: translateY(-10px) translateX(-14px); }
  75%  { transform: translateY(-30px) translateX(8px); }
  100% { transform: translateY(-6px)  translateX(-6px); }
}

/* hero title entrance */
.hero-title {
  opacity: 0;
  animation: heroTitleIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
@keyframes heroTitleIn {
  0%   { opacity: 0; transform: translateY(50px) skewY(2deg); }
  100% { opacity: 1; transform: translateY(0)    skewY(0deg); }
}

/* sub text entrance */
.hero-sub {
  opacity: 0;
  animation: heroFadeUp 0.9s ease 0.75s forwards;
}

/* actions entrance */
.hero-actions {
  opacity: 0;
  animation: heroFadeUp 0.9s ease 1.0s forwards;
}

/* scroll indicator */
.scroll-indicator {
  opacity: 0;
  animation: heroFadeUp 0.9s ease 1.4s forwards;
}

@keyframes heroFadeUp {
  0%   { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* nav entrance */
.main-nav {
  animation: navSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
@keyframes navSlideDown {
  0%   { opacity: 0; transform: translateY(-100%); }
  100% { opacity: 1; transform: translateY(0); }
}

/* pulsing glow behind hero title */
.line-yellow {
  position: relative;
  display: inline-block;
}
.line-yellow::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  animation: lineGlow 3s ease-in-out infinite;
  border-radius: 2px;
}
@keyframes lineGlow {
  0%, 100% { opacity: 0.4; transform: scaleX(0.7); }
  50%       { opacity: 1;   transform: scaleX(1); }
}


/* ================================================================
   TESTIMONIALS — DEFINITIVE VERSION
   Default: dark card with text. Hover: video only, no text.
   ================================================================ */

/* Section */
#testimonials {
  padding: 100px 0;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 60px;
}

/* Nav */
.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.testi-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,215,0,0.30);
  background: rgba(255,215,0,0.06);
  color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s,
              transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
}
.testi-btn:hover {
  background: rgba(255,215,0,0.15);
  border-color: var(--yellow);
  transform: scale(1.12);
  box-shadow: 0 0 18px rgba(255,215,0,0.25);
}
.testi-btn svg { pointer-events: none; }

.testi-dots { display: flex; gap: 8px; align-items: center; }
.testi-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,215,0,0.22);
  cursor: pointer;
  transition: background 0.25s, width 0.25s;
  border: none; padding: 0;
}
.testi-dot.active {
  background: var(--yellow); width: 22px; border-radius: 4px;
}

/* Scroll container */
.testi-outer {
  overflow-x: auto;
  overflow-y: visible;
  width: 100%;
  padding: 40px 0 48px;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,215,0,0.50) rgba(255,215,0,0.08);
}
.testi-outer::-webkit-scrollbar { height: 4px; }
.testi-outer::-webkit-scrollbar-track {
  background: rgba(255,215,0,0.08); border-radius: 4px; margin: 0 60px;
}
.testi-outer::-webkit-scrollbar-thumb {
  background: rgba(255,215,0,0.50); border-radius: 4px;
}
.testi-outer::-webkit-scrollbar-thumb:hover { background: var(--yellow); }
.testi-outer:active { cursor: grabbing; }

/* Track */
.testi-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 0 60px;
  align-items: center;
  overflow: visible;
  animation: none;
}

/* ── BASE CARD ── */
.testi-card {
  flex-shrink: 0;
  width: 280px;
  height: 500px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  /* Solid dark background so text is always readable */
  background: #1a1a1a;
  border: 1px solid rgba(255,215,0,0.12);
  transform: perspective(1000px) translateZ(0) scale(1);
  transition:
    transform    0.45s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow   0.45s cubic-bezier(0.34,1.56,0.64,1),
    border-color 0.35s ease,
    opacity      0.35s ease,
    filter       0.35s ease;
}

/* Other cards dim when one is hovered */
.testi-track.has-hover .testi-card:not(.is-hovered) {
  opacity: 0.38;
  filter: blur(1.5px) brightness(0.55);
  transform: perspective(1000px) translateZ(-20px) scale(0.97);
}

/* Active hovered card — pops forward */
.testi-card.is-hovered {
  transform: perspective(1000px) translateZ(50px) translateY(-12px) scale(1.05);
  border-color: rgba(255,215,0,0.50);
  opacity: 1;
  filter: none;
  box-shadow:
    0 0 0 1.5px rgba(255,215,0,0.20),
    0 24px 50px rgba(0,0,0,0.65),
    0 50px 100px rgba(0,0,0,0.40),
    0 0 55px rgba(255,215,0,0.12);
  z-index: 5;
}

/* ── VIDEO LAYER — z-index 2, hidden by default ── */
.testi-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.50s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.testi-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 0.50s cubic-bezier(0.4,0,0.2,1);
}
/* fade overlay on video so it doesn't look flat */
.testi-video-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.60) 100%);
  z-index: 3;
}

/* Show video on hover */
.testi-card.is-hovered .testi-video-wrap {
  opacity: 1;
  pointer-events: auto;
}
.testi-card.is-hovered .testi-video-wrap video {
  transform: scale(1);
}

/* ── TEXT CONTENT LAYER — z-index 10, always on top ── */
.testi-text-content {
  position: absolute;
  inset: 0;
  z-index: 10;                /* always above video */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 24px;
  /* gradient so text is readable over the dark card bg */
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    transparent 30%,
    transparent 55%,
    rgba(0,0,0,0.70) 100%
  );
  transition: opacity 0.40s ease;
}

/* Fade text OUT on hover — let video show alone */
.testi-card.is-hovered .testi-text-content {
  opacity: 0;
  pointer-events: none;
}

/* Stars */
.testi-text-content .testi-stars {
  font-size: 15px;
  letter-spacing: 3px;
  color: #FFD700;
}

/* Quote */
.testi-text-content .testi-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.92);
  font-style: italic;
  margin: 16px 0;
  display: flex;
  align-items: center;
}

/* Author row */
.testi-text-content .testi-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.testi-text-content .testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,215,0,0.15);
  border: 2px solid rgba(255,215,0,0.45);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: #FFD700;
  flex-shrink: 0;
}
.testi-text-content .testi-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.testi-text-content .testi-role {
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,215,0,0.78);
  margin-top: 2px;
}

/* Edge fades */
.testi-fade-left, .testi-fade-right {
  position: absolute; top: 0; bottom: 0;
  width: 80px; pointer-events: none; z-index: 20;
}
.testi-fade-left  { left:  0; background: linear-gradient(to right, var(--dark2), transparent); }
.testi-fade-right { right: 0; background: linear-gradient(to left,  var(--dark2), transparent); }

/* Hide ALL old legacy elements */
.testi-body, .testi-hover-label, .testi-default-content,
.testi-hover-content, .testi-brand-badge, .testi-play-hint,
.testi-quote-big, .testi-author-overlay, .testi-card-bg-gradient,
.testi-quote-mark, .testi-author, .testi-author-info {
  display: none !important;
}

/* Mobile */
@media (max-width: 768px) {
  .testi-card { width: 220px; height: 390px; }
  .testi-card.is-hovered { transform: perspective(600px) translateZ(28px) translateY(-8px) scale(1.04); }
  .testi-track.has-hover .testi-card:not(.is-hovered) {
    opacity: 0.38; filter: blur(1.5px) brightness(0.55);
    transform: perspective(600px) translateZ(-18px) scale(0.97);
  }
  .testi-track { gap: 14px; padding: 0 20px; }
  .testimonials-header { padding: 0 24px; }
}

/* ── Nav buttons + dots ── */
.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.testi-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,215,0,0.30);
  background: rgba(255,215,0,0.06);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease,
              transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.25s ease;
  flex-shrink: 0;
}
.testi-btn:hover {
  background: rgba(255,215,0,0.15);
  border-color: var(--yellow);
  transform: scale(1.12);
  box-shadow: 0 0 18px rgba(255,215,0,0.25);
}
.testi-btn:active { transform: scale(0.95); }
.testi-btn svg { pointer-events: none; }

.testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.testi-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,215,0,0.22);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
  border: none;
  padding: 0;
}
.testi-dot.active {
  background: var(--yellow);
  width: 22px;
  border-radius: 4px;
}

/* Scrolling container */
.testi-outer {
  overflow-x: auto;
  overflow-y: visible;
  width: 100%;
  padding: 24px 0 48px;
  cursor: grab;
  position: relative;
  /* styled scrollbar */
  scrollbar-width: thin;
  scrollbar-color: rgba(255,215,0,0.55) rgba(255,215,0,0.08);
}
.testi-outer::-webkit-scrollbar {
  height: 4px;
}
.testi-outer::-webkit-scrollbar-track {
  background: rgba(255,215,0,0.08);
  border-radius: 4px;
  margin: 0 60px;
}
.testi-outer::-webkit-scrollbar-thumb {
  background: rgba(255,215,0,0.55);
  border-radius: 4px;
}
.testi-outer::-webkit-scrollbar-thumb:hover {
  background: var(--yellow);
}
.testi-outer:active { cursor: grabbing; }

/* Track — overflow visible so 3D pop is not clipped */
.testi-track {
  display: flex !important;
  gap: 20px !important;
  width: max-content !important;
  padding: 0 60px !important;
  align-items: flex-end !important;
  list-style: none !important;
  margin: 0 !important;
  animation: none !important;
  transition: none !important;
  overflow: visible !important;
  padding-top: 40px !important;   /* room for the card to pop up */
  padding-bottom: 40px !important; /* room for shadow */
}

/* ── Card base ── */
.testi-card {
  flex-shrink: 0 !important;
  width: 280px !important;
  height: 500px !important;              /* portrait / reel ratio */
  border-radius: 20px !important;
  background: var(--dark3) !important;
  border: 1px solid rgba(255,215,0,0.10) !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  cursor: pointer !important;
  transform-style: preserve-3d !important;
  transform: perspective(1000px) translateZ(0) translateY(0) scale(1) !important;
  transition:
    transform    0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow   0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.35s ease,
    opacity      0.40s ease,
    filter       0.40s ease !important;
  will-change: transform !important;
}

/* Non-hovered cards dim when another is active */
.testi-track.has-hover .testi-card:not(.is-hovered) {
  opacity: 0.42 !important;
  filter: blur(1.5px) brightness(0.60) !important;
  transform: perspective(1000px) translateZ(-24px) scale(0.97) !important;
}

/* Hovered card — 3D pop-out */
.testi-card.is-hovered {
  transform: perspective(1000px) translateZ(52px) translateY(-14px) scale(1.05) !important;
  border-color: rgba(255,215,0,0.50) !important;
  opacity: 1 !important;
  filter: none !important;
  box-shadow:
    0 0 0 1.5px rgba(255,215,0,0.22),
    0 24px 48px rgba(0,0,0,0.60),
    0 48px 96px rgba(0,0,0,0.38),
    0 0 60px rgba(255,215,0,0.14) !important;
  z-index: 5 !important;
}

/* ── Video wrap ── */
.testi-video-wrap {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.testi-video-wrap video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transform: scale(1.04) !important;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.testi-video-fade {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.50) 65%,
    rgba(0,0,0,0.82) 100%
  ) !important;
  z-index: 3 !important;
}
.testi-card.is-hovered .testi-video-wrap {
  opacity: 1 !important;
  pointer-events: auto !important;
}
.testi-card.is-hovered .testi-video-wrap video {
  transform: scale(1) !important;
}

/* ── Text body ── */
.testi-body {
  position: relative !important;
  z-index: 5 !important;
  padding: 28px 28px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.testi-card.is-hovered .testi-body { opacity: 0 !important; }
.testi-card--text.is-hovered .testi-body { opacity: 1 !important; }

/* Stars */
.testi-stars {
  color: var(--yellow) !important;
  font-size: 14px !important;
  letter-spacing: 3px !important;
  margin-bottom: 14px !important;
}
/* Quote text */
.testi-text {
  font-size: 14px !important;
  line-height: 1.75 !important;
  color: rgba(250,250,240,0.88) !important;
  font-style: italic !important;
  flex: 1 !important;
  margin-bottom: 18px !important;
}
/* Quote mark */
.testi-quote-mark {
  position: absolute !important;
  top: 10px !important;
  right: 18px !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 100px !important;
  line-height: 1 !important;
  color: rgba(255,215,0,0.05) !important;
  pointer-events: none !important;
  user-select: none !important;
  z-index: 0 !important;
}
/* Author row */
.testi-author {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding-top: 14px !important;
  border-top: 1px solid rgba(255,215,0,0.10) !important;
  margin-top: auto !important;
}
.testi-avatar {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: rgba(255,215,0,0.12) !important;
  border: 2px solid rgba(255,215,0,0.28) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 18px !important;
  color: var(--yellow) !important;
  flex-shrink: 0 !important;
}
.testi-author-info { display: flex !important; flex-direction: column !important; gap: 3px !important; }
.testi-name { font-family: 'Space Grotesk', sans-serif !important; font-size: 13px !important; font-weight: 700 !important; color: var(--cream) !important; }
.testi-role { font-size: 10px !important; letter-spacing: 1px !important; text-transform: uppercase !important; color: var(--yellow) !important; opacity: 0.72 !important; }

/* Author overlay over video */
.testi-author-overlay {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 10 !important;
  padding: 20px 24px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  opacity: 0 !important;
  transform: translateY(10px) !important;
  transition: opacity 0.50s cubic-bezier(0.4,0,0.2,1),
              transform 0.50s cubic-bezier(0.4,0,0.2,1) !important;
}
.testi-card.is-hovered .testi-author-overlay {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.testi-author-overlay .testi-name { color: #fff !important; }
.testi-author-overlay .testi-role { color: var(--yellow) !important; opacity: 0.85 !important; }
.testi-author-overlay .testi-avatar { background: rgba(255,215,0,0.20) !important; border-color: var(--yellow) !important; }

/* Hover label */
.testi-hover-label {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%,-50%) scale(0.8) !important;
  z-index: 10 !important;
  background: rgba(255,215,0,0.95) !important;
  color: #0a0a0a !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 13px !important;
  letter-spacing: 3px !important;
  padding: 7px 18px !important;
  border-radius: 100px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
  white-space: nowrap !important;
}
.testi-card.is-hovered .testi-hover-label {
  opacity: 1 !important;
  transform: translate(-50%,-50%) scale(1) !important;
}
.testi-card--text .testi-hover-label { display: none !important; }

/* Text-only card */
.testi-card--text { background: linear-gradient(145deg, #1d1d1d, var(--dark3)) !important; }

/* Edge fades */
.testi-fade-left,
.testi-fade-right {
  position: absolute !important;
  top: 0 !important; bottom: 0 !important;
  width: 80px !important;
  pointer-events: none !important;
  z-index: 20 !important;
}
.testi-fade-left  { left:  0 !important; background: linear-gradient(to right, var(--dark2), transparent) !important; }
.testi-fade-right { right: 0 !important; background: linear-gradient(to left,  var(--dark2), transparent) !important; }

/* Mobile */
@media (max-width: 768px) {
  .testi-card { width: 220px !important; height: 390px !important; }
  .testi-card.is-hovered {
    transform: perspective(600px) translateZ(28px) translateY(-10px) scale(1.04) !important;
  }
  .testi-track.has-hover .testi-card:not(.is-hovered) {
    opacity: 0.42 !important;
    filter: blur(1.5px) brightness(0.60) !important;
    transform: perspective(600px) translateZ(-20px) scale(0.97) !important;
  }
  .testi-track { gap: 14px !important; padding: 0 20px !important; }
  .testimonials-header { padding: 0 24px !important; }
}


/* ================================================================
   TESTIMONIAL CARD — simple: text default, video-only on hover
   ================================================================ */

/* ── TEXT CONTENT — always visible by default ── */
.testi-text-content {
  position: absolute !important;
  inset: 0 !important;
  z-index: 6 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  padding: 24px 22px !important;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.30) 0%,
    transparent 35%,
    transparent 50%,
    rgba(0,0,0,0.85) 100%
  ) !important;
  transition: opacity 0.40s ease !important;
}

/* On hover — text fades out completely */
.testi-card.is-hovered .testi-text-content {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Stars at top */
.testi-text-content .testi-stars {
  font-size: 14px !important;
  letter-spacing: 3px !important;
  color: var(--yellow) !important;
}

/* Quote */
.testi-text-content .testi-text {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  font-size: 13.5px !important;
  line-height: 1.70 !important;
  color: rgba(255,255,255,0.90) !important;
  font-style: italic !important;
  margin: 12px 0 !important;
}

/* Author row at bottom */
.testi-text-content .testi-author-row {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(255,255,255,0.12) !important;
}
.testi-text-content .testi-avatar {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(255,215,0,0.15) !important;
  border: 1.5px solid rgba(255,215,0,0.40) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 16px !important;
  color: var(--yellow) !important;
  flex-shrink: 0 !important;
}
.testi-text-content .testi-name {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #fff !important;
  line-height: 1.2 !important;
}
.testi-text-content .testi-role {
  font-size: 10px !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  color: rgba(255,215,0,0.75) !important;
  margin-top: 1px !important;
}

/* ── VIDEO — hidden by default, fills card on hover ── */
/* (already handled by .testi-video-wrap and .testi-card.is-hovered rules above) */

/* Hide all old/legacy elements */
.testi-body,
.testi-hover-label,
.testi-default-content,
.testi-hover-content,
.testi-brand-badge,
.testi-play-hint,
.testi-quote-big,
.testi-author-overlay,
.testi-card-bg-gradient,
.testi-quote-mark {
  display: none !important;
}
