  :root {
    --bg: #161616;
    --surface: #1f1e1a;
    --surface2: #1e1e1e;
    --glow: #f5c842;
    --glow2: #e89a2a;
    --glow3: #ff8c4b;
    --text: #f0ead6;
    --muted: #8a8070;
    --border: rgba(245,200,66,0.15);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom cursor */
  .cursor {
    position: fixed;
    width: 12px; height: 12px;
    background: var(--glow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.15s ease;
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid rgba(245,200,66,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.25s ease;
  }

  /* ---- NAV ---- */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 48px;
    background: linear-gradient(to bottom, rgba(13,13,13,0.95), transparent);
  }
  .logo-wrap {
    display: flex; align-items: center;
  }
  .logo-svg { height: 44px; width: auto; }
  nav ul {
    list-style: none;
    display: flex; gap: 36px;
  }
  nav ul a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  nav ul a:hover { color: var(--glow); }
  .nav-cta {
    background: var(--glow);
    color: #000 !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 500 !important;
  }
  .nav-cta:hover { background: var(--glow2) !important; color: #000 !important; }

  /* ---- HERO ---- */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center;
    position: relative;
    padding: 120px 24px 60px;
    overflow: hidden;
  }

  /* Glowing orbs */
  .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: floatOrb 8s ease-in-out infinite;
  }
  .orb-1 { width: 500px; height: 500px; background: var(--glow); top: -100px; left: -150px; animation-delay: 0s; }
  .orb-2 { width: 350px; height: 350px; background: var(--glow3); bottom: 0; right: -100px; animation-delay: -3s; }
  .orb-3 { width: 250px; height: 250px; background: #c77dff; top: 50%; left: 60%; animation-delay: -6s; }

  @keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.05); }
  }

  .hero-label {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--glow);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 18px;
    margin-bottom: 32px;
    animation: fadeUp 0.8s ease both;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 8vw, 100px);
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease 0.1s both;
  }
  .hero-title em {
    font-style: italic;
    color: var(--glow);
    display: block;
  }

  .hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--muted);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 48px;
    animation: fadeUp 0.8s ease 0.2s both;
  }

  .hero-btns {
    display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
    animation: fadeUp 0.8s ease 0.3s both;
  }
  .btn-primary {
    background: var(--glow);
    color: #000;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    display: flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: var(--glow2); transform: translateY(-2px); }
  .btn-ghost {
    border: 1px solid var(--border);
    color: var(--text);
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
  }
  .btn-ghost:hover { border-color: var(--glow); color: var(--glow); }

  .hero-scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    animation: fadeUp 0.8s ease 0.5s both;
  }
  .hero-scroll span { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
  .scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--glow), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ---- STATS ---- */
  .stats-bar {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 48px;
    display: flex; justify-content: center; gap: 80px;
    flex-wrap: wrap;
  }
  .stat { text-align: center; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--glow);
    display: block;
  }
  .stat-label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

  /* ---- SECTION COMMONS ---- */
  section { padding: 100px 48px; }
  .section-label {
    font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--glow); margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .section-desc { color: var(--muted); font-size: 17px; line-height: 1.7; max-width: 500px; }

  /* ---- ABOUT ---- */
  .about {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .about-visual {
    position: relative; aspect-ratio: 4/5;
    border-radius: 24px; overflow: hidden;
    background: var(--surface2);
    display: grid; place-items: center;
    border: 1px solid var(--border);
  }
  .lightbox-demo {
    width: 200px; height: 260px;
    background: #000;
    border: 6px solid #c8a96e;
    border-radius: 8px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    position: relative;
    box-shadow: 0 0 60px rgba(245,200,66,0.5), inset 0 0 40px rgba(245,200,66,0.1);
    animation: glowPulse 3s ease-in-out infinite;
  }
  @keyframes glowPulse {
    0%,100% { box-shadow: 0 0 40px rgba(245,200,66,0.4), inset 0 0 30px rgba(245,200,66,0.08); }
    50% { box-shadow: 0 0 80px rgba(245,200,66,0.7), inset 0 0 50px rgba(245,200,66,0.15); }
  }
  .demo-inner {
    font-family: 'Playfair Display', serif;
    font-size: 22px; color: var(--glow);
    text-align: center;
    line-height: 1.3;
  }
  .demo-stars {
    font-size: 28px; display: block; margin-bottom: 12px;
    animation: twinkle 2s ease-in-out infinite;
  }
  @keyframes twinkle {
    0%,100% { opacity: 1; } 50% { opacity: 0.5; }
  }
  .about-tag {
    position: absolute; bottom: 24px; right: 24px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; padding: 14px 20px;
    font-size: 13px;
  }
  .about-tag strong { color: var(--glow); display: block; font-size: 18px; }

  .about-pills {
    display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px;
  }
  .pill {
    background: var(--surface2); border: 1px solid var(--border);
    border-radius: 100px; padding: 8px 18px; font-size: 13px; color: var(--muted);
  }

  /* ---- PRODUCTS ---- */
  .products { max-width: 1200px; margin: 0 auto; }
  .products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
  .products-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: visible;
    transition: all 0.3s ease;
    position: relative;
  }
  .product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245,200,66,0.4);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(245,200,66,0.1);
  }
  .product-card.featured {
    grid-row: span 2;
  }
  .card-img {
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    font-size: 64px;
    position: relative;
    overflow: hidden;
  }
  .product-card.featured .card-img { aspect-ratio: unset; min-height: 320px; }
  .card-glow {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, var(--glow-color, rgba(245,200,66,0.15)) 0%, transparent 70%);
  }
  .card-emoji { position: relative; z-index: 1; font-size: 72px; }
  .card-body { padding: 24px; }
  .card-tag {
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--glow); margin-bottom: 8px;
  }
  .card-name { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 8px; }
  .card-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
  .card-arrow {
    position: absolute; top: 20px; right: 20px;
    width: 36px; height: 36px;
    background: var(--surface2); border: 1px solid var(--border);
    border-radius: 50%; display: grid; place-items: center;
    font-size: 14px; transition: all 0.2s;
    opacity: 0;
  }
  .product-card:hover .card-arrow { opacity: 1; background: var(--glow); color: #000; }

  /* ---- PROCESS ---- */
  .process-section { background: var(--surface); }
  .process { max-width: 1200px; margin: 0 auto; }
  .steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 56px;
  }
  .step {
    position: relative;
    padding-top: 60px;
  }
  .step::before {
    content: attr(data-n);
    position: absolute; top: 0; left: 0;
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    color: rgba(245,200,66,0.12);
    line-height: 1;
  }
  .step-icon {
    width: 48px; height: 48px;
    background: var(--surface2); border: 1px solid var(--border);
    border-radius: 12px; display: grid; place-items: center;
    font-size: 22px; margin-bottom: 20px;
  }
  .step h3 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 10px; }
  .step p { font-size: 14px; color: var(--muted); line-height: 1.7; }

  /* ---- TESTIMONIAL ---- */
  .testimonial-section { max-width: 800px; margin: 0 auto; text-align: center; padding: 80px 48px; }
  .quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 120px; line-height: 0.5;
    color: var(--glow); opacity: 0.3;
    margin-bottom: 32px; display: block;
  }
  .quote-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3vw, 32px);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 32px;
  }
  .quote-author { color: var(--muted); font-size: 14px; letter-spacing: 0.1em; }
  .stars-row { color: var(--glow); font-size: 20px; margin-bottom: 24px; }

  /* ---- CONTACT ---- */
  .contact-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
  }
  .contact { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .contact-cards { display: flex; flex-direction: column; gap: 16px; }
  .contact-card {
    background: var(--surface2); border: 1px solid var(--border);
    border-radius: 16px; padding: 24px 28px;
    display: flex; align-items: center; gap: 20px;
    text-decoration: none; color: var(--text);
    transition: all 0.2s;
  }
  .contact-card:hover { border-color: var(--glow); transform: translateX(4px); }
  .contact-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: grid; place-items: center; font-size: 22px;
    flex-shrink: 0;
  }
  .contact-icon.wa { background: rgba(37,211,102,0.15); }
  .contact-icon.ig { background: rgba(245,200,66,0.15); }
  .contact-card-text strong { display: block; font-size: 15px; margin-bottom: 3px; }
  .contact-card-text span { font-size: 13px; color: var(--muted); }

  /* ---- FOOTER ---- */
  footer {
    border-top: 1px solid var(--border);
    padding: 40px 48px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 20px;
  }
  .footer-copy { font-size: 13px; color: var(--muted); }
  .footer-copy a { color: var(--glow); text-decoration: none; }
  .footer-links { display: flex; gap: 28px; }
  .footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; }
  .footer-links a:hover { color: var(--glow); }

  /* ---- FLOATING WA ---- */
  .wa-float {
    position: fixed; bottom: 32px; right: 32px; z-index: 50;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%; display: grid; place-items: center;
    font-size: 26px; text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.2s;
    animation: waFloat 3s ease-in-out infinite;
  }
  .wa-float:hover { transform: scale(1.1); }
  @keyframes waFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  /* ---- RESPONSIVE ---- */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    nav ul { display: none; }
    section { padding: 70px 24px; }
    .about { grid-template-columns: 1fr; gap: 40px; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .product-card.featured { grid-row: auto; }
    .steps { grid-template-columns: 1fr 1fr; }
    .contact { grid-template-columns: 1fr; gap: 40px; }
    .stats-bar { gap: 40px; }
    footer { flex-direction: column; text-align: center; }
    .products-header { flex-direction: column; gap: 16px; align-items: flex-start; }
  }
  @media (max-width: 600px) {
    .products-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; width: 100%; }
    .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
  }

.lightbox-demo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(245,200,66,0.5));
}