/* ─── RESET & BASE ─────────────────────────────────────── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --red:      #e53e3e;
      --red-dim:  #9b1c1c;
      --red-glow: rgba(229, 62, 62, 0.18);
      --bg:       #080808;
      --surface:  #111111;
      --border:   rgba(255,255,255,0.07);
      --muted:    #6b7280;
      --white:    #f5f5f5;
      --font-display: 'Syne', sans-serif;
      --font-body:    'DM Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--white);
      font-family: var(--font-body);
      font-weight: 400;
      overflow-x: hidden;
      cursor: none;
    }

    /* ─── CUSTOM CURSOR ─────────────────────────────────────── */
    .cursor {
      position: fixed;
      width: 10px; height: 10px;
      background: var(--red);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
    }
    .cursor-ring {
      position: fixed;
      width: 38px; height: 38px;
      border: 1.5px solid rgba(229,62,62,0.5);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: transform 0.15s ease, width 0.3s, height 0.3s;
    }
    body:has(a:hover) .cursor,
    body:has(button:hover) .cursor { width: 6px; height: 6px; background: #fff; }
    body:has(a:hover) .cursor-ring,
    body:has(button:hover) .cursor-ring { width: 52px; height: 52px; border-color: rgba(255,255,255,0.4); }

    /* ─── SCROLLBAR ─────────────────────────────────────────── */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--red-dim); border-radius: 2px; }

    /* ─── GRAIN OVERLAY ─────────────────────────────────────── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.025;
      pointer-events: none;
      z-index: 0;
    }

    /* ─── NAVBAR ─────────────────────────────────────────────── */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 22px 48px;
      position: fixed;
      width: 100%;
      z-index: 200;
      transition: background 0.4s, border-bottom 0.4s;
    }
    header.scrolled {
      background: rgba(8,8,8,0.92);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(16px);
    }

    .logo {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.04em;
      color: var(--white);
      text-decoration: none;
    }
    .logo span { color: var(--red); }
    .logo-img {
      height: 40px; /* Adjust based on your navbar height */
      width: auto;
      display: block;
    }

    nav { display: flex; gap: 36px; }
    nav a {
      font-size: 0.85rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      position: relative;
      transition: color 0.25s;
    }
    nav a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 1px;
      background: var(--red);
      transition: width 0.3s;
    }
    nav a:hover { color: var(--white); }
    nav a:hover::after { width: 100%; }

    .btn-primary {
      background: var(--red);
      color: #fff;
      border: none;
      padding: 10px 22px;
      border-radius: 8px;
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 500;
      cursor: none;
      transition: background 0.25s, transform 0.2s, box-shadow 0.3s;
    }
    .btn-primary:hover {
      background: #c53030;
      transform: translateY(-1px);
      box-shadow: 0 8px 28px rgba(229,62,62,0.35);
    }

    /* ─── HERO ─────────────────────────────────────────────── */
    #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0 24px;
      position: relative;
      overflow: hidden;
    }

    /* GLOW BLOBS */
    .glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(110px); }
    .glow-1 {
      width: 650px; height: 650px;
      background: radial-gradient(circle, rgba(229,62,62,0.45), transparent 70%);
      top: 38%; left: 50%;
      transform: translate(-50%,-50%);
      animation: g1 11s ease-in-out infinite alternate;
    }
    .glow-2 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(155,28,28,0.35), transparent 70%);
      top: 65%; left: 35%;
      transform: translate(-50%,-50%);
      animation: g2 14s ease-in-out infinite alternate;
    }
    .glow-3 {
      width: 350px; height: 350px;
      background: radial-gradient(circle, rgba(229,62,62,0.2), transparent 70%);
      top: 25%; left: 75%;
      animation: g3 9s ease-in-out infinite alternate;
    }
    @keyframes g1 { to { transform: translate(-45%,-58%) scale(1.2); } }
    @keyframes g2 { to { transform: translate(-62%,-42%) scale(1.3); } }
    @keyframes g3 { to { transform: translate(5%,15%) scale(1.15); } }

    /* Hero grid lines */
    #hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
      pointer-events: none;
    }

    .hero-inner { position: relative; z-index: 10; max-width: 820px; }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(229,62,62,0.1);
      border: 1px solid rgba(229,62,62,0.25);
      color: #fca5a5;
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 28px;
    }
    .badge-dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; animation: blink 1.5s infinite; }
    @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

    .hero-title {
      font-family: 'IBM Plex Serif', serif;
      font-size: clamp(2.8rem, 6vw, 5.2rem);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -0.03em;
      margin-bottom: 22px;
    }
    .hero-title .accent { color: var(--red); }

    .hero-sub {
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.7;
      max-width: 560px;
      margin: 0 auto 36px;
    }

    .hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

    .btn-outline {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--white);
      padding: 11px 24px;
      border-radius: 8px;
      font-family: var(--font-body);
      font-size: 0.88rem;
      font-weight: 400;
      cursor: none;
      transition: background 0.25s, border-color 0.25s;
    }
    .btn-outline:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.18); }

    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 48px;
      margin-top: 64px;
      padding-top: 40px;
      border-top: 1px solid var(--border);
    }
    .stat-num {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 800;
      color: var(--white);
    }
    .stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 2px; letter-spacing: 0.04em; }

    /* ─── MARQUEE ─────────────────────────────────────────── */
    .marquee-section {
      padding: 18px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
      position: relative;
      z-index: 2;
    }
    .marquee-section::before, .marquee-section::after {
      content: ''; position: absolute; top: 0; width: 120px; height: 100%; z-index: 3;
    }
    .marquee-section::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
    .marquee-section::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

    .marquee-track {
      display: flex;
      gap: 0;
      animation: marquee 30s linear infinite;
      width: max-content;
    }
    .marquee-track:hover { animation-play-state: paused; }

    .marquee-item {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 0 36px;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      white-space: nowrap;
    }
    .marquee-sep { width: 4px; height: 4px; background: var(--red); border-radius: 50%; opacity: 0.6; }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ─── SECTION LABELS ──────────────────────────────────── */
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 20px;
    }
    .section-label::before {
      content: '';
      width: 20px; height: 1px;
      background: var(--red);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }
    .section-sub {
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.7;
      max-width: 520px;
    }

    /* ─── ABOUT ─────────────────────────────────────────────── */
    #about { padding: 120px 48px; max-width: 1200px; margin: 0 auto; }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: start;
    }

    .about-left {}
    .about-right { padding-top: 12px; }

    .about-desc {
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 32px;
    }

    .pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
    .pill {
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 0.78rem;
      color: var(--muted);
      transition: border-color 0.25s, color 0.25s;
    }
    .pill:hover { border-color: rgba(229,62,62,0.5); color: var(--white); }

    /* ─── TEAM ─────────────────────────────────────────────── */
    .team-title {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .team-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }

    .team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    .team-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 12px;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    }
    .team-card:hover {
      border-color: rgba(229,62,62,0.3);
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(229,62,62,0.1);
    }

    .team-avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      overflow: hidden;
      border: 2px solid var(--border);
      background: #1a1a1a;
      position: relative;
    }
    .team-avatar img {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      object-fit: cover;
      display: block;
    }
    .team-avatar svg {
      width: 100%;
      height: 100%;
    }
    .team-name {
      font-family: var(--font-display);
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--white);
    }
    .team-role {
      font-size: 0.72rem;
      color: var(--red);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 500;
    }
    .team-bio { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

    /* ─── SERVICES ──────────────────────────────────────────── */
    #services {
      padding: 120px 48px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .services-header { text-align: center; margin-bottom: 72px; display: flex; flex-direction: column; align-items: center; }

    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

    .service-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px 28px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, transform 0.3s;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(229,62,62,0.5), transparent);
      transform: scaleX(0);
      transition: transform 0.4s;
    }
    .service-card:hover { border-color: rgba(229,62,62,0.2); transform: translateY(-6px); }
    .service-card:hover::before { transform: scaleX(1); }

    .service-icon {
      width: 48px; height: 48px;
      background: rgba(229,62,62,0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      font-size: 1.4rem;
    }

    .service-name {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .service-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

    /* ─── CAROUSEL ──────────────────────────────────────────── */
    #work {
      padding: 120px 0;
      text-align: center;
      overflow: hidden;
    }
    #work .section-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 56px;
    }

    /* Carousel */
    .carousel {
      overflow: hidden;
      position: relative;
    }

    .carousel-track {
      display: flex;
      gap: 20px;
      width: max-content;
      animation: scroll 25s linear infinite;
    }

    /* Pause on hover */
    .carousel:hover .carousel-track {
      animation-play-state: paused;
    }

    @keyframes scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* Reel Card */
    .carousel-item {
      flex: 0 0 auto;
    }

    .reel-card {
      position: relative;
      width: 260px;
      height: 460px;
      border-radius: 18px;
      overflow: hidden;
      background: #000;
    }

    .reel-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .reel-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 14px;
      background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    }

    /* ─── HOW IT WORKS ─────────────────────────────────────── */
    #process { padding: 120px 48px; max-width: 1100px; margin: 0 auto; }
    .process-header { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 72px; }

    .process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
    .process-steps::after {
      content: '';
      position: absolute;
      top: 28px;
      left: calc(16.6% + 14px);
      right: calc(16.6% + 14px);
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(229,62,62,0.3), var(--red), rgba(229,62,62,0.3), transparent);
    }

    .step { text-align: center; }
    .step-num {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--surface);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px;
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 800;
      color: var(--red);
      position: relative;
      z-index: 2;
    }
    .step-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
    .step-desc { color: var(--muted); font-size: 0.88rem; line-height: 1.7; }

    /* ─── PLANS ────────────────────────────────────────────── */
    #plans { padding: 120px 48px; max-width: 1100px; margin: 0 auto; }
    .plans-header { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 72px; }
    .plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: center; }

    .plan-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px 28px;
      transition: transform 0.3s;
    }
    .plan-card.featured {
      border-color: var(--red);
      background: linear-gradient(160deg, #150a0a 0%, var(--surface) 100%);
      transform: scale(1.04);
      box-shadow: 0 0 60px rgba(229,62,62,0.12);
      position: relative;
    }
    .plan-card.featured::before {
      content: 'Most Popular';
      position: absolute;
      top: -12px; left: 50%; transform: translateX(-50%);
      background: var(--red);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 100px;
    }

    .plan-name {
      font-family: var(--font-display);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 16px;
    }
    .plan-price {
      font-family: var(--font-display);
      font-size: 2.4rem;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 6px;
    }
    .plan-period { font-size: 0.8rem; color: var(--muted); margin-bottom: 24px; }
    .plan-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
    .plan-features { list-style: none; space: 0; margin-bottom: 32px; }
    .plan-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.88rem;
      color: var(--muted);
      padding: 7px 0;
    }
    .plan-features li::before {
      content: '';
      width: 16px; height: 16px;
      border-radius: 50%;
      background: rgba(229,62,62,0.12);
      border: 1px solid rgba(229,62,62,0.25);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23e53e3e' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-size: 10px;
      background-repeat: no-repeat;
      background-position: center;
      flex-shrink: 0;
    }
    .plan-btn {
      width: 100%;
      padding: 12px;
      border-radius: 10px;
      font-family: var(--font-body);
      font-size: 0.88rem;
      font-weight: 500;
      cursor: none;
      transition: all 0.25s;
      border: none;
    }
    .plan-btn.outline {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--white);
    }
    .plan-btn.outline:hover { border-color: rgba(229,62,62,0.4); background: rgba(229,62,62,0.05); }
    .plan-btn.filled { background: var(--red); color: #fff; }
    .plan-btn.filled:hover { background: #c53030; box-shadow: 0 8px 24px rgba(229,62,62,0.3); }

    /* ─── CTA ───────────────────────────────────────────────── */
    #cta {
      padding: 120px 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    #cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(229,62,62,0.07), transparent);
      pointer-events: none;
    }
    .cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
    #cta .section-title { font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 16px; }
    #cta .section-sub { margin: 0 auto 40px; text-align: center; }
    .cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

    /* ─── CONTACT ──────────────────────────────────────────── */
    #contact { padding: 120px 48px; max-width: 1100px; margin: 0 auto; }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 72px;
      align-items: start;
    }

    .contact-left {
    }
    .contact-meta { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      transition: border-color 0.3s;
    }
    .contact-item:hover { border-color: rgba(229,62,62,0.25); }
    .contact-icon {
      width: 36px; height: 36px;
      background: rgba(229,62,62,0.1);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .contact-label { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
    .contact-value { font-size: 0.9rem; color: var(--white); }

    /* Form */
    .contact-form { display: flex; flex-direction: column; gap: 14px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-label { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
    .form-input, .form-textarea {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 12px 16px;
      color: var(--white);
      font-family: var(--font-body);
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.25s, box-shadow 0.25s;
      cursor: none;
    }
    .form-input:focus, .form-textarea:focus {
      border-color: rgba(229,62,62,0.45);
      box-shadow: 0 0 0 3px rgba(229,62,62,0.07);
    }
    .form-input::placeholder, .form-textarea::placeholder { color: #3d3d3d; }
    .form-textarea { resize: vertical; min-height: 120px; }

    .form-submit {
      background: var(--red);
      color: #fff;
      border: none;
      padding: 14px 28px;
      border-radius: 10px;
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 500;
      cursor: none;
      transition: background 0.25s, transform 0.2s, box-shadow 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .form-submit:hover {
      background: #c53030;
      transform: translateY(-1px);
      box-shadow: 0 10px 30px rgba(229,62,62,0.3);
    }
    .form-submit.success { background: #16a34a; }

    /* ─── FOOTER ────────────────────────────────────────────── */
    footer {
      border-top: 1px solid var(--border);
      padding: 40px 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-copy { font-size: 0.8rem; color: var(--muted); }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a {
      font-size: 0.8rem;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.25s;
    }
    .footer-links a:hover { color: var(--white); }

    /* ─── REVEAL ON SCROLL ──────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }
    .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; }

    /* ─── MOBILE / TABLET ───────────────────────────────────── */
    @media (max-width: 900px) {
      /* Use normal system cursor on smaller screens */
      body {
        cursor: auto;
      }
      .cursor,
      .cursor-ring {
        display: none;
      }

      /* Ensure interactive elements show standard cursors */
      a,
      button,
      .btn-primary,
      .btn-outline,
      .plan-btn,
      .form-input,
      .form-textarea,
      .form-submit {
        cursor: auto;
      }

      header { padding: 18px 24px; }
      nav { display: none; }
      #about, #services, #process, #plans, #contact { padding: 80px 24px; }
      .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
      .services-grid, .process-steps, .plans-grid { grid-template-columns: 1fr; }
      .plan-card.featured { transform: none; }
      .process-steps::after { display: none; }
      .team-grid { grid-template-columns: 1fr 1fr; }
      .hero-stats { gap: 24px; flex-wrap: wrap; }
      footer { flex-direction: column; gap: 16px; text-align: center; }
      .form-row { grid-template-columns: 1fr; }
    }

    .marquee-logo {
      height: 120px;       /* adjust to your design */
      width: auto;   
      max-width: 160px;   /* prevents huge logos */
      display: block;
      object-fit: contain;
    }

    /* optional nice touch */
    .marquee-item {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 2rem;
    }
    .marquee-item .marquee-logo {
      filter: grayscale(1) opacity(0.7);
      transition: filter 0.3s ease, opacity 0.3s ease;
    }
    .marquee-item:hover .marquee-logo {
      filter: grayscale(0) opacity(1);
    }

    .insta-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 999;
  width: 55px;
  height: 55px;
  transition: all 0.3s ease;
  animation: floatSmooth 3s ease-in-out infinite;
}

.insta-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 0, 150, 0.25));
  transition: all 0.3s ease;
}

.insta-float:hover {
  transform: scale(1.2) translateY(-6px) rotate(6deg);
}

.insta-float:hover img {
  filter: drop-shadow(0 0 15px rgba(255, 50, 180, 0.45));
}

/* Floating animation */
@keyframes floatSmooth {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .insta-float {
    width: 50px;
    height: 50px;
    left: 15px;
    bottom: 15px;
  }
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 999;
  display: block;
  animation: floatSmooth 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 255, 70, 0.25));
  transition: all 0.3s ease;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: scale(1.15) translateY(-6px) rotate(-6deg);
}

.whatsapp-float:hover img {
  filter: drop-shadow(0 0 15px rgba(0, 255, 100, 0.45));
}

/* Floating animation */
@keyframes floatSmooth {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Responsive (mobile) */
@media (max-width: 640px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    right: 15px;
    bottom: 15px;
  }
}

    /* ─── WORK CAROUSEL – MOBILE SCROLL SNAP ──────────────── */
    @media (max-width: 768px) {
      /* Make sure the section itself is visible and padded on mobile */
      #work {
        padding: 80px 0;
        overflow: visible;
      }

      /* Enable horizontal swipe with scroll-snap on mobile */
      #work .carousel {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 24px;
      }

      /* Stop desktop-style auto-scroll animation on mobile */
      #work .carousel-track {
        animation: none;
        transform: none;
        gap: 16px;
        width: auto;
      }

      /* Each reel snaps to center and takes ~80–90% width */
      #work .carousel-item {
        scroll-snap-align: center;
        flex: 0 0 82%;
      }

      #work .reel-card {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
      }

      /* Hide scrollbar for cleaner mobile UI */
      #work .carousel::-webkit-scrollbar {
        display: none;
      }
      #work .carousel {
        scrollbar-width: none;
      }
    }