 :root {
    --black: #0a0a0a;
    --white: #f5f5f0;
    --silver: #c8c8c4;
    --ink: #1a1a1a;
    --accent: #e8e0d0;
    --paint-red: #c0392b;
    --paint-gold: #b8960c;
    --paint-teal: #1a7a6e;
    --grain-opacity: 0.045;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
  }

  /* ─── CUSTOM CURSOR ─────────────────────────────── */
  .cursor {
    width: 12px; height: 12px;
    background: var(--white);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, background 0.2s;
    mix-blend-mode: difference;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  }

  /* ─── GRAIN OVERLAY ─────────────────────────────── */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: var(--grain-opacity);
    pointer-events: none;
    z-index: 9997;
  }

  /* ─── NAV ───────────────────────────────────────── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    transition: background 0.4s, padding 0.3s;
  }
  nav.scrolled {
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(12px);
    padding: 16px 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  .nav-logo .logo-brush {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 0.12em;
    color: var(--white);
    position: relative;
  }
  .nav-logo .logo-brush::before {
    content: '/';
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 22px;
    margin-right: 2px;
    opacity: 0.5;
  }
  .nav-logo .logo-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 9px;
    letter-spacing: 0.35em;
    color: var(--silver);
    text-transform: uppercase;
    margin-top: 2px;
  }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }
  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--silver);
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--white);
    transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--white);
    border: none;
    padding: 10px 24px;
    cursor: none;
    transition: background 0.2s, transform 0.15s;
  }
  .nav-cta:hover {
    background: var(--silver);
    transform: translateY(-1px);
  }

  /* ─── HERO ──────────────────────────────────────── */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 120px 48px 80px;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(80px, 10vw, 160px);
    line-height: 0.92;
    letter-spacing: 0.02em;
    color: var(--white);
    opacity: 0;
    animation: fadeUp 0.9s 0.5s forwards;
  }
  .hero-title .stroke-text {
    -webkit-text-stroke: 1px var(--white);
    color: transparent;
  }

  .hero-desc {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--silver);
    max-width: 380px;
    margin-top: 32px;
    opacity: 0;
    animation: fadeUp 0.9s 0.7s forwards;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    opacity: 0;
    animation: fadeUp 0.9s 0.9s forwards;
  }

  .btn-primary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--white);
    border: none;
    padding: 14px 36px;
    cursor: none;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover {
    background: var(--silver);
    transform: translateY(-2px);
  }

  .btn-outline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 14px 36px;
    cursor: none;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, transform 0.15s;
  }
  .btn-outline:hover {
    border-color: var(--white);
    transform: translateY(-2px);
  }

  .hero-right {
    position: relative;
    overflow: hidden;
  }

  .hero-canvas {
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(ellipse 60% 70% at 70% 40%, rgba(184,150,12,0.12) 0%, transparent 60%),
      radial-gradient(ellipse 50% 60% at 30% 80%, rgba(26,122,110,0.1) 0%, transparent 50%),
      linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  }

  .hero-circle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 55%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 80px rgba(255,255,255,0.08);
  }

  .hero-circle-inner {
    text-align: center;
  }
  .hero-circle-inner .big-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1;
    color: var(--black);
    letter-spacing: 0.04em;
  }
  .hero-circle-inner .brand-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: #555;
    text-transform: uppercase;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .hero-circle-inner .brand-name::before {
    content: '';
    display: inline-block;
    width: 24px; height: 1px;
    background: #555;
  }
  .hero-circle-inner .brand-name::after {
    content: '';
    display: inline-block;
    width: 24px; height: 1px;
    background: #555;
  }

  /* Paint splash decorations */
  .splash {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.25;
    animation: pulseSplash 4s ease-in-out infinite alternate;
  }
  .splash-1 {
    width: 200px; height: 120px;
    background: var(--paint-red);
    top: 15%; right: 5%;
    animation-delay: 0s;
  }
  .splash-2 {
    width: 150px; height: 180px;
    background: var(--paint-gold);
    bottom: 20%; left: 5%;
    animation-delay: 1.5s;
  }
  .splash-3 {
    width: 120px; height: 120px;
    background: var(--paint-teal);
    bottom: 40%; right: 20%;
    animation-delay: 0.8s;
  }

  .hero-scroll-hint {
    position: absolute;
    bottom: 40px; left: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    opacity: 0;
    animation: fadeUp 0.9s 1.2s forwards;
  }
  .hero-scroll-hint .scroll-line {
    width: 40px; height: 1px;
    background: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
  }
  .hero-scroll-hint .scroll-line::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--white);
    animation: scanLine 2s ease-in-out infinite;
  }

  /* ─── MARQUEE ───────────────────────────────────── */
  .marquee-section {
    padding: 20px 0;
    background: var(--white);
    overflow: hidden;
    position: relative;
  }
  .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 18s linear infinite;
    white-space: nowrap;
  }
  .marquee-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.08em;
    color: var(--black);
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .marquee-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--black);
    opacity: 0.3;
  }

  /* ─── SERVICES ──────────────────────────────────── */
  #layanan {
    padding: 120px 48px;
    position: relative;
  }

  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .section-label::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--silver);
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 7vw, 96px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 64px;
  }
  .section-title .outline {
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
    color: transparent;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .service-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #111;
    cursor: none;
  }

  .service-card-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .service-card:hover .service-card-bg {
    transform: scale(1.06);
  }

  .s-shoes .service-card-bg {
    background: 
      radial-gradient(ellipse at 30% 70%, rgba(192,57,43,0.3) 0%, transparent 60%),
      linear-gradient(160deg, #1a1a1a 0%, #0d0d0d 100%);
  }
  .s-clothes .service-card-bg {
    background:
      radial-gradient(ellipse at 70% 30%, rgba(184,150,12,0.25) 0%, transparent 60%),
      linear-gradient(160deg, #181818 0%, #0e0e0e 100%);
  }
  .s-bag .service-card-bg {
    background:
      radial-gradient(ellipse at 50% 60%, rgba(26,122,110,0.3) 0%, transparent 60%),
      linear-gradient(160deg, #151515 0%, #0c0c0c 100%);
  }

  .service-card-number {
    position: absolute;
    top: 28px; left: 28px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    line-height: 1;
    -webkit-text-stroke: 1px rgba(255,255,255,0.08);
    color: transparent;
    letter-spacing: 0.02em;
  }

  .service-card-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -55%);
    font-size: 64px;
    opacity: 0.12;
    transition: opacity 0.3s, transform 0.4s;
  }
  .service-card:hover .service-card-icon {
    opacity: 0.2;
    transform: translate(-50%, -58%) scale(1.1);
  }

  .service-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    transform: translateY(20px);
    transition: transform 0.4s;
  }
  .service-card:hover .service-card-content { transform: translateY(0); }

  .service-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 8px;
  }

  .service-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    letter-spacing: 0.04em;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
  }

  .service-desc {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s 0.1s, max-height 0.4s;
  }
  .service-card:hover .service-desc {
    opacity: 1;
    max-height: 80px;
  }

  .service-arrow {
    position: absolute;
    top: 28px; right: 28px;
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    transition: background 0.3s, border-color 0.3s, color 0.3s;
  }
  .service-card:hover .service-arrow {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
  }

  /* ─── PROCESS ───────────────────────────────────── */
  #proses {
    padding: 120px 48px;
    background: #0d0d0d;
    position: relative;
    overflow: hidden;
  }

  #proses::before {
    content: 'PROCESS';
    position: absolute;
    top: 40px; right: -20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 180px;
    color: rgba(255,255,255,0.02);
    letter-spacing: 0.05em;
    pointer-events: none;
  }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-top: 72px;
  }

  .process-step {
    position: relative;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
  }
  .process-step.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .process-step:nth-child(1) { transition-delay: 0.1s; }
  .process-step:nth-child(2) { transition-delay: 0.2s; }
  .process-step:nth-child(3) { transition-delay: 0.3s; }
  .process-step:nth-child(4) { transition-delay: 0.4s; }

  .step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    line-height: 1;
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    color: transparent;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
  }

  .step-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
  }

  .step-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
  }

  /* ─── GALLERY ───────────────────────────────────── */
  #portofolio {
    padding: 120px 0 120px 48px;
    overflow: hidden;
  }

  .gallery-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-right: 48px;
    margin-bottom: 56px;
  }

  .gallery-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-right: 48px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .gallery-scroll::-webkit-scrollbar { display: none; }

  .gallery-item {
    flex: 0 0 320px;
    aspect-ratio: 3/4;
    background: #111;
    position: relative;
    overflow: hidden;
    cursor: none;
  }
  .gallery-item:nth-child(1) .gi-bg { background: radial-gradient(ellipse at 40% 60%, rgba(192,57,43,0.4) 0%, #111 60%); }
  .gallery-item:nth-child(2) .gi-bg { background: radial-gradient(ellipse at 60% 40%, rgba(184,150,12,0.35) 0%, #111 60%); }
  .gallery-item:nth-child(3) .gi-bg { background: radial-gradient(ellipse at 50% 50%, rgba(26,122,110,0.4) 0%, #111 60%); }
  .gallery-item:nth-child(4) .gi-bg { background: radial-gradient(ellipse at 30% 70%, rgba(100,60,180,0.3) 0%, #111 60%); }
  .gallery-item:nth-child(5) .gi-bg { background: radial-gradient(ellipse at 70% 30%, rgba(192,57,43,0.25) 0%, #111 60%); }

  .gi-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .gallery-item:hover .gi-bg { transform: scale(1.04); }

  .gi-label {
    position: absolute;
    bottom: 24px; left: 24px;
  }
  .gi-label .gi-cat {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
  }
  .gi-label .gi-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 0.05em;
    color: var(--white);
  }

  .gi-emoji {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 72px;
    opacity: 0.08;
    filter: grayscale(1);
    transition: opacity 0.3s;
  }
  .gallery-item:hover .gi-emoji { opacity: 0.15; }

  /* ─── TESTIMONIALS ──────────────────────────────── */
  #testimoni {
    padding: 120px 48px;
    background: #0d0d0d;
  }

  .testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 72px;
  }

  .testi-card {
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    transition: border-color 0.3s;
  }
  .testi-card:hover { border-color: rgba(255,255,255,0.15); }

  .testi-quote {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    line-height: 0.7;
    color: rgba(255,255,255,0.05);
    position: absolute;
    top: 20px; left: 30px;
  }

  .testi-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
  }

  .testi-author {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }
  .testi-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
  }
  .testi-role {
    font-size: 12px;
    color: var(--silver);
    margin-top: 2px;
  }

  /* ─── CTA SECTION ───────────────────────────────── */
  #kontak {
    padding: 120px 48px;
    position: relative;
    overflow: hidden;
  }

  .cta-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184,150,12,0.12) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 20% 60%, rgba(192,57,43,0.1) 0%, transparent 50%);
  }

  .cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 8vw, 110px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--white);
  }
  .cta-title .stroke {
    -webkit-text-stroke: 1px rgba(255,255,255,0.4);
    color: transparent;
  }

  .cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .form-field label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--silver);
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 300;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s;
    cursor: none;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: rgba(255,255,255,0.35);
  }
  .form-field select option { background: #1a1a1a; }
  .form-field textarea { resize: none; height: 100px; }

  .btn-submit {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--white);
    border: none;
    padding: 16px 40px;
    cursor: none;
    align-self: flex-start;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-submit:hover {
    background: var(--silver);
    transform: translateY(-2px);
  }

  /* ─── FOOTER ────────────────────────────────────── */
  footer {
    padding: 48px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
  }

  .footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.25);
  }

  .footer-copy {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    text-align: center;
  }

  .footer-social {
    display: flex;
    gap: 24px;
    justify-content: flex-end;
  }
  .footer-social a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-social a:hover { color: var(--white); }

  /* ─── STATS STRIP ───────────────────────────────── */
  .stats-strip {
    padding: 64px 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.02);
  }

  .stat-item {
    padding: 40px;
    border-right: 1px solid rgba(255,255,255,0.06);
    text-align: center;
  }
  .stat-item:last-child { border-right: none; }

  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--white);
    display: block;
  }
  .stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--silver);
    margin-top: 6px;
  }

  /* ─── ANIMATIONS ────────────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-16px); }
  }

  @keyframes pulseSplash {
    from { opacity: 0.15; }
    to { opacity: 0.35; }
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  @keyframes scanLine {
    0% { left: -100%; }
    100% { left: 100%; }
  }

  /* ─── RESPONSIVE ────────────────────────────────── */
  @media (max-width: 900px) {
    #hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 120px 32px 80px; }
    nav { padding: 20px 32px; }
    .nav-links { display: none; }
    #layanan, #proses, #portofolio, #testimoni, #kontak { padding: 80px 32px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { aspect-ratio: 16/9; }
    .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .testi-grid { grid-template-columns: 1fr; }
    .cta-inner { grid-template-columns: 1fr; gap: 48px; }
    .stats-strip { grid-template-columns: 1fr 1fr; }
    footer { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
  }