    /* ══════════════════════════════════════════
       CSS CUSTOM PROPERTIES
    ══════════════════════════════════════════ */
    :root {
      --ink: #0a0f1e;
      --ink2: #0d1530;
      --gold: #f5c518;
      --gold2: #e8a800;
      --gold3: #ffd96a;
      --cyan: #00d4ff;
      --cyan2: #00a8cc;
      --white: #f0f4ff;
      --muted: #8899bb;
      --card: rgba(255,255,255,0.04);
      --card-border: rgba(245,197,24,0.18);
      --glow: 0 0 40px rgba(245,197,24,0.25);
      --glow-cyan: 0 0 30px rgba(0,212,255,0.2);
      --radius: 18px;
      --transition: cubic-bezier(0.23, 1, 0.32, 1);
    }

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

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'Raleway', sans-serif;
      background: var(--ink);
      color: var(--white);
      overflow-x: hidden;
      cursor: none;
    }

    /* ══════════════════════════════════════════
       CUSTOM CURSOR
    ══════════════════════════════════════════ */
    .cursor-dot {
      width: 8px; height: 8px;
      background: var(--gold);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none; z-index: 99999;
      transform: translate(-50%,-50%);
      transition: transform 0.1s;
    }
    .cursor-ring {
      width: 36px; height: 36px;
      border: 2px solid rgba(245,197,24,0.5);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none; z-index: 99998;
      transform: translate(-50%,-50%);
      transition: all 0.15s var(--transition);
    }
    body:hover .cursor-ring { opacity: 1; }

    /* ══════════════════════════════════════════
       SCROLLBAR
    ══════════════════════════════════════════ */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--ink2); }
    ::-webkit-scrollbar-thumb { background: var(--gold2); border-radius: 3px; }

    /* ══════════════════════════════════════════
       CANVAS BACKGROUND
    ══════════════════════════════════════════ */
    #star-canvas {
      position: fixed; top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 0; pointer-events: none;
    }

    /* ══════════════════════════════════════════
       NAVBAR
    ══════════════════════════════════════════ */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0 5%;
      height: 72px;
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(10,15,30,0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(245,197,24,0.1);
      transition: all 0.4s var(--transition);
    }
    nav.scrolled {
      height: 60px;
      background: rgba(10,15,30,0.97);
      border-bottom-color: rgba(245,197,24,0.25);
    }
    .nav-logo {
      display: flex; align-items: center; gap: 12px;
      text-decoration: none;
    }
    .nav-logo-img {
      width: 42px; height: 42px;
      border-radius: 10px;
      border: 2px solid var(--gold);
      object-fit: cover;
      background: linear-gradient(135deg, var(--gold2), var(--cyan2));
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cinzel Decorative', serif;
      font-size: 14px; font-weight: 700; color: var(--ink);
    }
    .nav-brand {
      font-family: 'Cinzel Decorative', serif;
      font-size: 1rem; font-weight: 700;
      background: linear-gradient(135deg, var(--gold), var(--gold3));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .nav-links {
      display: flex; align-items: center; gap: 32px;
      list-style: none;
    }
    .nav-links a {
      color: var(--muted); text-decoration: none;
      font-size: 0.88rem; font-weight: 600; letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: var(--ink) !important;
      padding: 8px 20px; border-radius: 50px;
      font-weight: 700 !important;
      transition: transform 0.3s, box-shadow 0.3s !important;
    }
    .nav-cta:hover { transform: translateY(-2px); box-shadow: var(--glow); }

    .nav-hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 4px;
    }
    .nav-hamburger span {
      width: 24px; height: 2px;
      background: var(--gold);
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* ══════════════════════════════════════════
       MOBILE NAV
    ══════════════════════════════════════════ */
    .mobile-menu {
      display: none;
      position: fixed; top: 72px; left: 0; right: 0;
      background: rgba(10,15,30,0.98);
      backdrop-filter: blur(20px);
      padding: 24px 5%;
      z-index: 999;
      border-bottom: 1px solid rgba(245,197,24,0.15);
      flex-direction: column; gap: 20px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      color: var(--white); text-decoration: none;
      font-size: 1rem; font-weight: 600;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    /* ══════════════════════════════════════════
       HERO SECTION
    ══════════════════════════════════════════ */
    .hero {
      position: relative; z-index: 1;
      min-height: 100vh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
      padding: 120px 5% 80px;
      overflow: hidden;
    }
    .hero-glow {
      position: absolute;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(245,197,24,0.12) 0%, transparent 65%);
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      pointer-events: none;
      animation: breathe 4s ease-in-out infinite;
    }
    .hero-glow2 {
      position: absolute;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 65%);
      top: 30%; left: 20%;
      pointer-events: none;
      animation: breathe 6s ease-in-out infinite reverse;
    }
    @keyframes breathe {
      0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.7; }
      50% { transform: translate(-50%,-50%) scale(1.15); opacity: 1; }
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(245,197,24,0.1);
      border: 1px solid rgba(245,197,24,0.3);
      padding: 8px 20px; border-radius: 50px;
      font-size: 0.8rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
      margin-bottom: 28px;
      animation: fadeSlideDown 0.8s var(--transition) forwards;
      opacity: 0;
    }
    .badge-dot {
      width: 8px; height: 8px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse 1.5s ease infinite;
    }
    @keyframes pulse {
      0%,100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.5); opacity: 0.6; }
    }

    .hero-logo {
      width: 110px; height: 110px;
      border-radius: 24px;
      margin: 0 auto 32px;
      border: 3px solid var(--gold);
      box-shadow: var(--glow), 0 0 0 6px rgba(245,197,24,0.07);
      object-fit: cover;
      animation: fadeSlideDown 0.9s var(--transition) 0.1s forwards;
      opacity: 0;
      background: linear-gradient(135deg, #1a2240, #0d1530);
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .hero-logo-placeholder {
      font-family: 'Cinzel Decorative', serif;
      font-size: 1.6rem; font-weight: 900;
      background: linear-gradient(135deg, var(--gold), var(--gold3));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
    }

    .hero-title {
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(2.4rem, 6vw, 5rem);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 12px;
      animation: fadeSlideUp 1s var(--transition) 0.2s forwards;
      opacity: 0;
    }
    .title-gold {
      background: linear-gradient(135deg, var(--gold), var(--gold3), var(--gold2));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .title-white { color: var(--white); }

    .hero-sub {
      font-family: 'Amiri', serif;
      font-size: clamp(1.1rem, 2.5vw, 1.5rem);
      color: var(--muted);
      margin-bottom: 20px;
      animation: fadeSlideUp 1s var(--transition) 0.35s forwards;
      opacity: 0;
      letter-spacing: 0.02em;
    }
    .sub-accent { color: var(--cyan); font-style: italic; }

    .hero-desc {
      font-size: clamp(0.95rem, 2vw, 1.1rem);
      color: rgba(240,244,255,0.65);
      max-width: 600px;
      line-height: 1.7;
      margin: 0 auto 40px;
      animation: fadeSlideUp 1s var(--transition) 0.5s forwards;
      opacity: 0;
    }

    .hero-btns {
      display: flex; flex-wrap: wrap; gap: 16px;
      justify-content: center;
      animation: fadeSlideUp 1s var(--transition) 0.65s forwards;
      opacity: 0;
      margin-bottom: 60px;
    }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: var(--ink);
      padding: 16px 36px; border-radius: 50px;
      font-size: 1rem; font-weight: 800;
      text-decoration: none;
      transition: transform 0.3s var(--transition), box-shadow 0.3s;
      box-shadow: 0 8px 30px rgba(245,197,24,0.3);
    }
    .btn-primary:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(245,197,24,0.45); }

    .btn-secondary {
      display: inline-flex; align-items: center; gap: 10px;
      background: transparent;
      color: var(--white);
      padding: 15px 34px; border-radius: 50px;
      border: 2px solid rgba(255,255,255,0.2);
      font-size: 1rem; font-weight: 700;
      text-decoration: none;
      transition: all 0.3s;
    }
    .btn-secondary:hover {
      border-color: var(--cyan);
      color: var(--cyan);
      box-shadow: var(--glow-cyan);
      transform: translateY(-4px);
    }

    .btn-whatsapp {
      display: inline-flex; align-items: center; gap: 10px;
      background: linear-gradient(135deg, #25D366, #128C7E);
      color: white;
      padding: 15px 34px; border-radius: 50px;
      font-size: 1rem; font-weight: 700;
      text-decoration: none;
      transition: all 0.3s;
      box-shadow: 0 8px 30px rgba(37,211,102,0.3);
    }
    .btn-whatsapp:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(37,211,102,0.4); }

    /* ══════════════════════════════════════════
       STATS BAR
    ══════════════════════════════════════════ */
    .stats-bar {
      position: relative; z-index: 1;
      display: flex; justify-content: center; flex-wrap: wrap; gap: 0;
      background: rgba(255,255,255,0.03);
      border-top: 1px solid rgba(245,197,24,0.12);
      border-bottom: 1px solid rgba(245,197,24,0.12);
      padding: 40px 5%;
      animation: fadeSlideUp 1s var(--transition) 0.8s forwards;
      opacity: 0;
    }
    .stat-item {
      flex: 1; min-width: 160px; max-width: 250px;
      text-align: center;
      padding: 20px;
      position: relative;
    }
    .stat-item:not(:last-child)::after {
      content: '';
      position: absolute; right: 0; top: 20%; bottom: 20%;
      width: 1px;
      background: rgba(245,197,24,0.15);
    }
    .stat-num {
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      background: linear-gradient(135deg, var(--gold), var(--gold3));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-label {
      color: var(--muted); font-size: 0.82rem;
      font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    }
    .stat-icon { font-size: 1.5rem; margin-bottom: 6px; display: block; }

    /* ══════════════════════════════════════════
       SECTION COMMON
    ══════════════════════════════════════════ */
    section { position: relative; z-index: 1; padding: 100px 5%; }

    .section-label {
      display: inline-block;
      color: var(--gold); font-size: 0.75rem;
      font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
      margin-bottom: 16px;
      padding: 6px 16px;
      background: rgba(245,197,24,0.08);
      border-radius: 50px;
      border: 1px solid rgba(245,197,24,0.2);
    }
    .section-title {
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-title .highlight {
      background: linear-gradient(135deg, var(--gold), var(--gold3));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .section-sub {
      color: var(--muted); font-size: 1.05rem;
      line-height: 1.7; max-width: 560px;
    }
    .section-header { margin-bottom: 60px; }
    .text-center { text-align: center; }
    .text-center .section-sub { margin: 0 auto; }

    .reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s var(--transition); }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ══════════════════════════════════════════
       FEATURES GRID
    ══════════════════════════════════════════ */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }
    .feature-card {
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: var(--radius);
      padding: 36px 28px;
      position: relative; overflow: hidden;
      transition: transform 0.4s var(--transition), border-color 0.3s, box-shadow 0.4s;
      cursor: default;
    }
    .feature-card::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(245,197,24,0.06), transparent);
      opacity: 0; transition: opacity 0.4s;
    }
    .feature-card:hover { transform: translateY(-8px); border-color: rgba(245,197,24,0.4); box-shadow: var(--glow); }
    .feature-card:hover::before { opacity: 1; }

    .feature-icon {
      width: 60px; height: 60px;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem;
      margin-bottom: 24px;
      position: relative;
    }
    .feature-card h3 {
      font-family: 'Cinzel Decorative', serif;
      font-size: 1rem; font-weight: 700;
      color: var(--white); margin-bottom: 12px;
    }
    .feature-card p {
      color: var(--muted); font-size: 0.92rem; line-height: 1.7;
    }
    .feature-tag {
      display: inline-block;
      margin-top: 16px;
      padding: 4px 12px;
      border-radius: 50px;
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
    }

    /* Individual card colors */
    .fc-1 .feature-icon { background: rgba(245,197,24,0.12); }
    .fc-2 .feature-icon { background: rgba(0,212,255,0.12); }
    .fc-3 .feature-icon { background: rgba(168,85,247,0.12); }
    .fc-4 .feature-icon { background: rgba(34,197,94,0.12); }
    .fc-5 .feature-icon { background: rgba(251,146,60,0.12); }
    .fc-6 .feature-icon { background: rgba(239,68,68,0.12); }

    .tag-gold { background: rgba(245,197,24,0.12); color: var(--gold); }
    .tag-cyan { background: rgba(0,212,255,0.12); color: var(--cyan); }
    .tag-purple { background: rgba(168,85,247,0.12); color: #a855f7; }
    .tag-green { background: rgba(34,197,94,0.12); color: #22c55e; }
    .tag-orange { background: rgba(251,146,60,0.12); color: #fb923c; }
    .tag-red { background: rgba(239,68,68,0.12); color: #ef4444; }

    /* ══════════════════════════════════════════
       ABOUT / MARQUEE
    ══════════════════════════════════════════ */
    .marquee-wrap {
      overflow: hidden; padding: 24px 0;
      border-top: 1px solid rgba(245,197,24,0.1);
      border-bottom: 1px solid rgba(245,197,24,0.1);
      background: rgba(245,197,24,0.04);
    }
    .marquee-track {
      display: flex; gap: 60px;
      width: max-content;
      animation: marquee 25s linear infinite;
    }
    @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    .marquee-item {
      display: flex; align-items: center; gap: 12px;
      white-space: nowrap;
      color: var(--muted); font-size: 0.9rem; font-weight: 600;
      letter-spacing: 0.06em;
    }
    .marquee-item span { color: var(--gold); font-size: 1rem; }

    /* ══════════════════════════════════════════
       VIDEOS SECTION
    ══════════════════════════════════════════ */
    .videos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 24px;
    }
    .video-card {
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: transform 0.4s var(--transition), box-shadow 0.4s;
    }
    .video-card:hover { transform: translateY(-6px); box-shadow: var(--glow); }
    .video-thumb {
      position: relative; width: 100%;
      padding-bottom: 56.25%;
      overflow: hidden; background: #1a2240;
    }
    .video-thumb img {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.5s var(--transition);
    }
    .video-card:hover .video-thumb img { transform: scale(1.05); }
    .video-play {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      background: rgba(10,15,30,0.4);
      opacity: 0; transition: opacity 0.3s;
    }
    .video-card:hover .video-play { opacity: 1; }
    .play-circle {
      width: 60px; height: 60px;
      background: var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      transform: scale(0.8); transition: transform 0.3s;
    }
    .video-card:hover .play-circle { transform: scale(1); }
    .video-info { padding: 18px 20px; }
    .video-info h4 {
      font-size: 0.92rem; font-weight: 700;
      color: var(--white); line-height: 1.4;
      margin-bottom: 8px;
      display: -webkit-box;
      -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    }
    .video-meta {
      display: flex; align-items: center; justify-content: space-between;
      color: var(--muted); font-size: 0.78rem;
    }
    .video-loading {
      display: flex; align-items: center; justify-content: center;
      min-height: 200px; flex-direction: column; gap: 16px;
      color: var(--muted); font-size: 0.9rem;
    }
    .spinner {
      width: 40px; height: 40px;
      border: 3px solid rgba(245,197,24,0.2);
      border-top-color: var(--gold);
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* ══════════════════════════════════════════
       TESTIMONIAL / QUOTE
    ══════════════════════════════════════════ */
    .cta-block {
      background: linear-gradient(135deg, rgba(245,197,24,0.08), rgba(0,212,255,0.05));
      border: 1px solid rgba(245,197,24,0.2);
      border-radius: 28px;
      padding: 70px 60px;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-block::before {
      content: '❝';
      position: absolute; top: -10px; left: 40px;
      font-size: 8rem; color: rgba(245,197,24,0.07);
      line-height: 1; font-family: Georgia, serif;
    }
    .cta-block h2 {
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(1.6rem, 3.5vw, 2.6rem);
      margin-bottom: 20px;
    }
    .cta-block p {
      color: var(--muted); font-size: 1.05rem;
      max-width: 600px; margin: 0 auto 36px;
      line-height: 1.7;
    }

    /* ══════════════════════════════════════════
       SOCIAL LINKS
    ══════════════════════════════════════════ */
    .socials-grid {
      display: flex; flex-wrap: wrap;
      gap: 16px; justify-content: center;
    }
    .social-pill {
      display: flex; align-items: center; gap: 10px;
      padding: 12px 22px; border-radius: 50px;
      text-decoration: none; font-size: 0.9rem; font-weight: 700;
      transition: all 0.3s var(--transition);
      border: 1px solid transparent;
    }
    .social-pill .icon { font-size: 1.1rem; }
    .sp-yt { background: rgba(255,0,0,0.1); color: #ff4444; border-color: rgba(255,0,0,0.2); }
    .sp-fb { background: rgba(24,119,242,0.1); color: #4f9cf9; border-color: rgba(24,119,242,0.2); }
    .sp-tw { background: rgba(29,161,242,0.1); color: #1da1f2; border-color: rgba(29,161,242,0.2); }
    .sp-ig { background: rgba(228,64,95,0.1); color: #e4405f; border-color: rgba(228,64,95,0.2); }
    .sp-li { background: rgba(0,119,181,0.1); color: #0e76a8; border-color: rgba(0,119,181,0.2); }
    .social-pill:hover { transform: translateY(-4px); filter: brightness(1.3); }

    /* ══════════════════════════════════════════
       FAQ
    ══════════════════════════════════════════ */
    .faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
    .faq-item {
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: 14px; overflow: hidden;
    }
    .faq-q {
      display: flex; align-items: center; justify-content: space-between;
      padding: 22px 24px; cursor: pointer;
      font-weight: 700; font-size: 0.97rem;
      transition: color 0.3s;
    }
    .faq-q:hover { color: var(--gold); }
    .faq-arrow {
      width: 28px; height: 28px; flex-shrink: 0;
      background: rgba(245,197,24,0.1);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.8rem; color: var(--gold);
      transition: transform 0.3s;
    }
    .faq-item.open .faq-arrow { transform: rotate(180deg); }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height 0.4s var(--transition), padding 0.4s;
      color: var(--muted); font-size: 0.92rem; line-height: 1.7;
    }
    .faq-item.open .faq-a { max-height: 200px; padding: 0 24px 22px; }

    /* ══════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════ */
    footer {
      position: relative; z-index: 1;
      background: rgba(255,255,255,0.02);
      border-top: 1px solid rgba(245,197,24,0.12);
      padding: 60px 5% 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px; margin-bottom: 48px;
    }
    .footer-brand p {
      color: var(--muted); font-size: 0.9rem;
      line-height: 1.7; margin: 16px 0 24px;
    }
    .footer-col h5 {
      font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul a {
      color: var(--muted); text-decoration: none; font-size: 0.9rem;
      transition: color 0.3s;
    }
    .footer-col ul a:hover { color: var(--white); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 28px;
      display: flex; flex-wrap: wrap; gap: 16px;
      align-items: center; justify-content: space-between;
      color: var(--muted); font-size: 0.82rem;
    }
    .footer-bottom a { color: var(--gold); text-decoration: none; }

    /* ══════════════════════════════════════════
       WHATSAPP FLOAT BUTTON
    ══════════════════════════════════════════ */
    .whatsapp-float {
      position: fixed; bottom: 30px; right: 30px;
      z-index: 500;
      width: 60px; height: 60px;
      background: linear-gradient(135deg, #25D366, #128C7E);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      box-shadow: 0 8px 25px rgba(37,211,102,0.4);
      animation: wa-bounce 2s ease infinite;
      transition: transform 0.3s;
    }
    .whatsapp-float:hover { transform: scale(1.12); animation: none; }
    .whatsapp-float svg { width: 30px; height: 30px; fill: white; }
    @keyframes wa-bounce {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    .wa-tooltip {
      position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
      background: #25D366; color: white;
      padding: 8px 14px; border-radius: 8px;
      font-size: 0.82rem; font-weight: 700; white-space: nowrap;
      opacity: 0; pointer-events: none; transition: opacity 0.3s;
    }
    .wa-tooltip::after {
      content: ''; position: absolute; left: 100%; top: 50%;
      transform: translateY(-50%);
      border: 6px solid transparent;
      border-left-color: #25D366;
    }
    .whatsapp-float:hover .wa-tooltip { opacity: 1; }

    /* ══════════════════════════════════════════
       ANIMATIONS
    ══════════════════════════════════════════ */
    @keyframes fadeSlideDown {
      from { opacity: 0; transform: translateY(-24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      body { cursor: auto; }
      .cursor-dot, .cursor-ring { display: none; }
      section { padding: 70px 5%; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .stat-item:not(:last-child)::after { display: none; }
      .cta-block { padding: 48px 28px; }
      .cta-block::before { display: none; }
    }
    @media (max-width: 480px) {
      .hero-btns { flex-direction: column; align-items: center; }
      .btn-primary, .btn-secondary, .btn-whatsapp { width: 100%; justify-content: center; }
    }

    /* ══════════════════════════════════════════
       DIVIDER
    ══════════════════════════════════════════ */
    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(245,197,24,0.2), transparent);
      margin: 0 5%;
    }

    /* ══════════════════════════════════════════
       ABOUT STRIP
    ══════════════════════════════════════════ */
    .about-strip {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .about-img-wrap {
      position: relative;
    }
    .about-img-main {
      width: 100%; border-radius: 24px;
      border: 2px solid rgba(245,197,24,0.2);
      background: linear-gradient(135deg, rgba(245,197,24,0.06), rgba(0,212,255,0.04));
      min-height: 380px;
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 16px;
      text-align: center; padding: 40px;
    }
    .about-channel-icon {
      font-size: 4rem;
      filter: drop-shadow(0 0 20px rgba(245,197,24,0.4));
    }
    .about-channel-name {
      font-family: 'Cinzel Decorative', serif;
      font-size: 1.4rem; font-weight: 700;
      background: linear-gradient(135deg, var(--gold), var(--gold3));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .about-year {
      color: var(--muted); font-size: 0.85rem; font-weight: 600;
      letter-spacing: 0.1em;
    }
    .about-badge-corner {
      position: absolute; top: -12px; right: -12px;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: var(--ink); border-radius: 12px;
      padding: 10px 16px; font-size: 0.78rem; font-weight: 800;
      letter-spacing: 0.05em; box-shadow: var(--glow);
    }
    .about-content { }
    .about-points { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
    .about-point {
      display: flex; align-items: flex-start; gap: 14px;
    }
    .ap-icon {
      width: 36px; height: 36px; flex-shrink: 0;
      border-radius: 10px; background: rgba(245,197,24,0.1);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
    }
    .ap-text strong {
      display: block; font-size: 0.92rem; font-weight: 700;
      margin-bottom: 2px; color: var(--white);
    }
    .ap-text span { color: var(--muted); font-size: 0.85rem; line-height: 1.5; }

    @media (max-width: 768px) {
      .about-strip { grid-template-columns: 1fr; gap: 40px; }
    }
