    :root {
      --bg: #050505;
      --text: #f5f5f7;
      --text-muted: rgba(255, 255, 255, 0.45);
      --accent: #d8b87d;
      --glass: rgba(15, 15, 15, 0.5);
      --border: rgba(255, 255, 255, 0.08);
      
      --font-display: 'Bebas Neue', sans-serif;
      --font-serif: 'Bodoni Moda', serif;
      --font-sans: 'Inter', sans-serif;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    
    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: var(--font-sans);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      cursor: none; 
    }

    ::selection { background: var(--accent); color: #000; }

    /* ---- CUSTOM CURSOR ---- */
    .cursor-dot, .cursor-ring {
      position: fixed; top: 0; left: 0; border-radius: 50%;
      pointer-events: none; z-index: 9999; transform: translate(-50%, -50%);
    }
    .cursor-dot { width: 5px; height: 5px; background: var(--accent); }
    .cursor-ring {
      width: 36px; height: 36px; border: 1px solid rgba(216, 184, 125, 0.5);
      transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s;
    }

    /* ---- EDITORIAL BACKGROUNDS & OVERLAYS ---- */
    .noise {
      position: fixed; inset: 0; z-index: 999; pointer-events: none; opacity: 0.035;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    }

    /* Grid Line Pattern */
    .grid-overlay {
      position: fixed; inset: 0; pointer-events: none; z-index: 0;
      background-image: linear-gradient(var(--border) 1px, transparent 1px),
                        linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 80px 80px;
      opacity: 0.4;
      mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
      -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
    }

    /* Ambient Light Leaks */
    .light-leak {
      position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 0; opacity: 0.15;
    }
    .light-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: var(--accent); }
    .light-2 { bottom: -20%; left: 30%; width: 60vw; height: 60vw; background: #2a3b4c; }

    /* Aesthetic UI Ticks */
    .ui-ticks {
      position: absolute; font-family: monospace; font-size: 0.6rem; color: var(--text-muted);
      letter-spacing: 0.2em; text-transform: uppercase; z-index: 10; pointer-events: none;
    }
    .tick-tl { top: 2rem; left: 2rem; }
    .tick-bl { bottom: 2rem; left: 2rem; writing-mode: vertical-rl; transform: rotate(180deg); }

    /* ---- SCROLL LAYOUT (SPLIT SCREEN) ---- */
    .scroll-track {
      position: relative; width: 100vw; height: 500vh;
    }

    .pin-container {
      position: relative; width: 100vw; height: 100vh; overflow: hidden; display: flex;
    }

    /* Lado Esquerdo - Textos e Conteúdo */
    .split-left {
      position: relative; width: 45%; height: 100%; display: flex; flex-direction: column;
      justify-content: center; padding: 2rem 4rem 2rem 6rem; z-index: 10;
      border-right: 1px solid rgba(255,255,255,0.05);
    }

    /* Lado Direito - Mídia */
    .split-right {
      position: relative; width: 55%; height: 100%; z-index: 5; background: #000; overflow: hidden;
    }

    /* ---- MEDIA ---- */
    #hero-canvas, #hero-video-fallback {
      position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
      filter: grayscale(25%) contrast(1.15) brightness(0.85); transform: scale(1.05);
    }
    #hero-video-fallback { display: none; }

    .video-overlay {
      position: absolute; inset: 0; pointer-events: none; z-index: 1;
      background: linear-gradient(90deg, var(--bg) 0%, transparent 20%),
                  radial-gradient(circle at center, transparent 30%, rgba(5,5,5,0.7) 100%);
    }

    #loading-overlay {
      position: absolute; inset: 0; background: var(--bg); z-index: 20;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      font-family: var(--font-display); font-size: 2rem; color: var(--text-muted);
    }
    .spinner {
      width: 40px; height: 40px; border: 2px solid rgba(255,255,255,0.05);
      border-top-color: var(--accent); border-radius: 50%; margin-bottom: 1rem;
      animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* ---- MARQUEE ---- */
    .marquee-bg {
      position: absolute; top: 50%; left: -30%; width: 250%;
      transform: translateY(-50%) rotate(-90deg);
      z-index: 0; opacity: 0.02; pointer-events: none; display: flex; white-space: nowrap;
    }
    .marquee-bg h2 {
      font-family: var(--font-display); font-size: 18vw; line-height: 0.8;
      color: transparent; -webkit-text-stroke: 1px #fff;
      animation: scrollMarquee 40s linear infinite;
    }

    /* ---- FLOATING LAB ELEMENTS (Parallax in Background of Left Panel) ---- */
    .parallax-el {
      position: absolute; background: var(--glass); border: 1px solid var(--border);
      backdrop-filter: blur(8px); border-radius: 12px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.5); pointer-events: none; opacity: 0; z-index: 0;
    }
    .panel-code {
      top: 15%; right: 10%; width: 220px; padding: 1.2rem;
      font-family: monospace; font-size: 0.65rem; color: #a9c7b9;
    }
    .panel-code .kw { color: var(--accent); }
    .panel-ring {
      bottom: 15%; left: 10%; width: 100px; height: 100px; background: transparent; border: none; box-shadow: none; backdrop-filter: none;
    }
    .orbit-circle {
      position: absolute; inset: 0; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.15); animation: spin 20s linear infinite;
    }
    .orbit-circle::before {
      content: ''; position: absolute; top: -3px; left: 50%; width: 6px; height: 6px;
      background: var(--accent); border-radius: 50%; box-shadow: 0 0 15px var(--accent);
    }

    /* ---- CONTENT SECTIONS (GSAP TARGETS) ---- */
    .seq-layer {
      position: absolute; left: 6rem; right: 4rem; top: 50%; transform: translateY(-50%); z-index: 10;
    }
    
    .seq-intro { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
    
    /* Interactive Badge */
    .hero__context {
      font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.25em;
      color: var(--accent); margin-bottom: 2.5rem; display: flex; align-items: center; gap: 0.8rem;
      padding: 0.6rem 1.2rem; border: 1px solid rgba(216, 184, 125, 0.2); border-radius: 100px;
      background: rgba(216, 184, 125, 0.05); backdrop-filter: blur(4px);
    }
    .hero__context i { font-size: 1.2rem; animation: pulseGlow 2s infinite alternate; }
    @keyframes pulseGlow { from { text-shadow: 0 0 5px var(--accent); } to { text-shadow: 0 0 20px var(--accent); } }

    .hero__headline {
      font-family: var(--font-display); font-size: clamp(2.5rem, 6.5vw, 6.5rem);
      line-height: 0.82; text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 2rem;
      /* SplitType takes care of the internal spans */
    }
    .hero__headline .char {
      transform: translateY(100%) rotateX(-90deg);
      transform-origin: bottom center;
      opacity: 0;
    }
    .color-accent { color: var(--accent); }

    .hero__subheadline {
      font-family: var(--font-serif); font-size: 1.15rem; color: var(--text-muted);
      max-width: 500px; line-height: 1.7; font-style: italic; opacity: 0; transform: translateY(20px);
    }

    /* Conceptual Titles */
    .seq-concept { display: flex; flex-direction: column; align-items: flex-start; text-align: left; opacity: 0; pointer-events: none; }
    .concept-title {
      font-family: var(--font-display); font-size: clamp(5rem, 12vw, 14rem);
      color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.9);
      line-height: 0.8; letter-spacing: 0.02em; text-transform: uppercase;
      position: relative;
    }
    /* Pseudo-element to fill the text on scroll */
    .concept-title::before {
      content: attr(data-text); position: absolute; left: 0; top: 0;
      color: #fff; -webkit-text-stroke: 0; overflow: hidden; width: 0%;
      transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .seq-concept.is-active .concept-title::before { width: 100%; transition-delay: 0.2s; }
    
    .concept-desc {
      font-family: var(--font-sans); color: var(--accent); font-size: 0.8rem;
      letter-spacing: 0.3em; text-transform: uppercase; margin-top: 1.5rem;
      display: flex; align-items: center; gap: 1rem;
    }
    .concept-desc::before { content: ''; width: 30px; height: 1px; background: var(--accent); }

    /* Outro & ID Card */
    .seq-outro { display: flex; flex-direction: column; align-items: flex-start; opacity: 0; pointer-events: none; top: 35%; }

    /* Interactive Glass Card with Spotlight */
    .id-section {
      position: relative; display: flex; align-items: center; gap: 2.5rem; margin-bottom: 1.5rem;
      background: rgba(10, 10, 10, 0.4); padding: 1.5rem 2rem; border-radius: 24px;
      border: 1px solid var(--border); backdrop-filter: blur(25px);
      box-shadow: 0 30px 60px rgba(0,0,0,0.8), inset 0 0 0 1px rgba(255,255,255,0.02);
      width: 100%; max-width: 550px; overflow: hidden;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
    }
    .id-section:hover { border-color: rgba(216, 184, 125, 0.3); transform: translateY(-5px); }
    
    /* Spotlight overlay via JS */
    .id-section-glow {
      position: absolute; inset: 0; pointer-events: none; z-index: 0;
      background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(216, 184, 125, 0.08) 0%, transparent 60%);
      opacity: 0; transition: opacity 0.3s;
    }
    .id-section:hover .id-section-glow { opacity: 1; }

    .id-photo-wrapper {
      position: relative; width: 100px; height: 130px; border-radius: 12px; overflow: visible; flex-shrink: 0; z-index: 2;
    }
    .id-photo-wrapper::before {
      content: ''; position: absolute; top: 50%; left: 50%; width: 150%; height: 150%;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
      border-radius: 50%; z-index: -1;
    }
    .id-photo {
      width: 100%; height: 100%; object-fit: cover; border-radius: 12px;
      filter: grayscale(100%) contrast(1.2) brightness(0.9); box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
    }


    .id-content { position: relative; z-index: 2; display: flex; flex-direction: column; text-align: left; gap: 1.2rem; }
    .id-roles {
      display: flex; flex-direction: column; gap: 0.2rem; font-family: var(--font-display);
      font-size: 2rem; line-height: 0.9; letter-spacing: 0.02em;
    }
    .id-roles span { color: rgba(255,255,255,0.2); transition: color 0.3s; }
    .id-roles span:hover { color: #fff; }
    .id-roles span.active { color: #fff; text-shadow: 0 0 15px rgba(255,255,255,0.3); }
    .id-quote { font-family: var(--font-sans); font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; position: relative; }
    .id-quote::before {
      content: '“'; position: absolute; top: -12px; left: -12px; font-family: var(--font-serif); font-size: 1.8rem; color: var(--accent); opacity: 0.5;
    }
    .id-quote strong {
      display: block; margin-top: 0.8rem; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.3);
    }

    /* ---- CTAS ---- */
    .hero__actions { display: flex; gap: 1.2rem; align-items: center; z-index: 2; position: relative;}
    .btn {
      position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.8rem;
      padding: 1.3rem 2.2rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
      letter-spacing: 0.15em; border-radius: 100px; cursor: pointer; text-decoration: none;
      overflow: hidden; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .btn--primary { background: #fff; color: #000; }
    /* Advanced Swipe Hover */
    .btn--primary::before {
      content: ''; position: absolute; top: 0; left: 0; width: 150%; height: 100%; background: var(--accent);
      transform: translateX(-100%) skewX(-15deg); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); z-index: 0;
    }
    .btn--primary span, .btn--primary i { position: relative; z-index: 1; transition: color 0.3s; }
    .btn--primary:hover::before { transform: translateX(0) skewX(-15deg); }
    
    .btn--secondary { background: transparent; color: #fff; border: 1px solid var(--border); }
    .btn--secondary::before {
      content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #fff;
      transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); z-index: 0;
    }
    .btn--secondary span { position: relative; z-index: 1; transition: color 0.3s; }
    .btn--secondary:hover { border-color: transparent; }
    .btn--secondary:hover::before { transform: translateY(0); }
    .btn--secondary:hover span { color: #000; }

    .next-section {
      height: 100vh; background: var(--bg); display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-size: 4rem; color: var(--text-muted); border-top: 1px solid var(--border);
      position: relative; overflow: hidden;
    }

    @media (max-width: 900px) {
      .pin-container { flex-direction: column; }
      .split-left { width: 100%; height: 50%; padding: 2rem; align-items: center; text-align: center; border-right: none; }
      .split-right { width: 100%; height: 50%; border-left: none; border-top: 1px solid rgba(255,255,255,0.05); }
      .seq-layer { left: 2rem; right: 2rem; align-items: center; }
      .hero__headline { font-size: 14vw; text-align: center; }
      .concept-title { font-size: 16vw; }
      .id-section { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
      .id-content { text-align: center; align-items: center; }
      .hero__actions { flex-direction: column; width: 100%; }
      .btn { width: 100%; }
      body { cursor: auto; }
      .cursor-dot, .cursor-ring { display: none; }
    }

    /* ---- WORKS SECTION (HORIZONTAL SCROLL) ---- */
    .works-section {
      position: relative;
      background: var(--bg);
      color: var(--text);
      overflow: hidden; 
    }
    
    .works-intro {
      position: absolute; top: 15%; left: 6rem; z-index: 10; pointer-events: none;
    }
    
    .works-intro h2 {
      font-family: var(--font-display); font-size: clamp(4rem, 8vw, 7rem);
      text-transform: uppercase; line-height: 0.85; letter-spacing: -0.01em; margin-bottom: 1.5rem;
    }
    
    .works-intro p {
      font-family: var(--font-serif); font-size: 1.15rem; color: var(--text-muted);
      max-width: 450px; line-height: 1.7; font-style: italic;
    }
    
    .works-track {
      display: flex; width: 400vw; height: 100vh;
    }
    
    .work-panel {
      width: 100vw; height: 100vh; display: flex; align-items: center; justify-content: center;
      position: relative; padding: 10rem 5rem 5rem 10rem;
    }
    
    .work-panel.panel-1 { justify-content: flex-end; padding-right: 10rem; }
    
    .work-card {
      position: relative; width: 75vw; max-width: 1200px; height: 65vh; border-radius: 12px;
      overflow: hidden; border: 1px solid rgba(255,255,255,0.05); cursor: pointer;
    }
    
    .work-card .img-container { width: 100%; height: 100%; overflow: hidden; position: relative; }
    .work-card .img-container::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 40%, transparent 70%);
      pointer-events: none; z-index: 2;
    }
    .work-card img {
      width: 100%; height: 120%; object-fit: cover; transform: translateY(-10%);
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s;
    }
    .work-card:hover img { transform: translateY(-10%) scale(1.02); filter: brightness(1.1); }
    
    .work-card.locked { cursor: not-allowed; }
    .work-card.locked::after {
      content: ''; position: absolute; inset: 0; background: rgba(10, 10, 10, 0.6);
      backdrop-filter: blur(15px); z-index: 1;
    }
    .work-card.locked i {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      font-size: 4rem; color: rgba(255,255,255,0.5); z-index: 2;
    }
    
    .work-info {
      position: absolute; bottom: 2rem; left: 2rem; right: 2rem; z-index: 3;
      display: flex; justify-content: space-between; align-items: flex-end; pointer-events: none;
    }
    
    .work-title-wrap h3 {
      font-family: var(--font-display); font-size: 3.5rem; text-transform: uppercase;
      line-height: 1; margin-bottom: 0.5rem; text-shadow: 0 5px 15px rgba(0,0,0,0.8);
    }
    
    .work-category {
      font-family: var(--font-sans); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em;
      color: var(--accent); background: rgba(10, 10, 10, 0.8); padding: 0.4rem 1rem;
      border-radius: 100px; backdrop-filter: blur(5px); border: 1px solid rgba(216, 184, 125, 0.2);
      display: inline-block; margin-bottom: 0.5rem;
    }
    
    .work-meta {
      display: flex; gap: 3rem; background: rgba(10, 10, 10, 0.85); padding: 1.5rem 2rem;
      border-radius: 12px; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1);
      transform: translateY(20px); opacity: 0; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
    }
    .work-card:hover .work-meta { transform: translateY(0); opacity: 1; }
    
    .meta-col h4 {
      font-family: var(--font-sans); font-size: 0.65rem; text-transform: uppercase;
      letter-spacing: 0.15em; color: var(--accent); margin-bottom: 0.5rem;
    }
    .meta-col p { font-family: var(--font-sans); font-size: 0.85rem; line-height: 1.5; color: #e0e0e0; max-width: 150px; }

    .cursor-view-text {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      font-family: var(--font-sans); font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.1em; color: #000; opacity: 0; transition: opacity 0.2s;
    }
    
    /* ---- MARQUEE BACKGROUND ---- */
    .works-marquee-bg {
      position: absolute; top: 50%; left: 0; width: 100%; transform: translateY(-50%);
      font-family: var(--font-display); font-size: 30vw; white-space: nowrap; pointer-events: none;
      color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.03); line-height: 0.8; z-index: 0;
    }
    
    /* ---- PROCESS SECTION ---- */
    .process-section {
      position: relative; background: var(--bg); color: var(--text);
      padding: 15rem 0 10rem 0; min-height: 100vh; display: flex; flex-direction: column;
      border-top: 1px solid rgba(255,255,255,0.05); overflow: hidden;
    }

    /* Process Background Polish */
    .process-bg-grid {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
      background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 100px 100px;
      mask-image: radial-gradient(ellipse at center, black 10%, transparent 80%);
      -webkit-mask-image: radial-gradient(ellipse at center, black 10%, transparent 80%);
      pointer-events: none;
    }
    
    .process-ambient-light {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      width: 70vw; height: 70vw; border-radius: 50%;
      background: radial-gradient(circle, rgba(216, 184, 125, 0.08) 0%, transparent 60%);
      filter: blur(80px); pointer-events: none; z-index: 0;
      animation: ambientDrift 20s infinite alternate ease-in-out;
    }
    @keyframes ambientDrift { 0% { transform: translate(-50%, -50%) scale(1); } 100% { transform: translate(-30%, -70%) scale(1.3); } }
    
    .process-header, .process-accordion, .process-quote { position: relative; z-index: 2; }
    
    .process-header { text-align: center; margin-bottom: 8rem; }
    .process-header h2 {
      font-family: var(--font-display); font-size: clamp(3rem, 6vw, 6rem);
      text-transform: uppercase; line-height: 0.9;
    }
    
    .process-accordion { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 4rem; display: flex; flex-direction: column; }
    
    .process-huge-bg {
      position: absolute; top: 15%; left: 5%;
      font-family: var(--font-display); font-size: 20vw; color: transparent;
      -webkit-text-stroke: 1px rgba(255,255,255,0.02); pointer-events: none; z-index: 0;
      white-space: nowrap; font-weight: 700;
    }

    .process-row {
      border-top: 1px solid rgba(255,255,255,0.1); padding: 2rem 0;
      display: grid; grid-template-columns: 80px 1fr 2fr; gap: 2rem;
      align-items: flex-start; cursor: pointer; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative; height: 100px; overflow: hidden; /* start compact */
      background: transparent;
    }
    .process-row::before {
      content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.03), transparent 40%);
      opacity: 0; transition: opacity 0.5s; z-index: -1; pointer-events: none;
    }
    .process-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
    
    .process-num {
      font-family: var(--font-sans); font-size: 1rem; color: var(--text-muted); padding-top: 0.5rem;
    }
    
    .process-title h3 {
      font-family: var(--font-display); font-size: 4rem; text-transform: uppercase;
      margin: 0; color: rgba(255,255,255,0.3); transition: color 0.4s;
    }
    
    .process-content {
      opacity: 0; transform: translateY(20px); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex; gap: 4rem; margin-top: 0.5rem;
    }
    
    .process-text {
      font-family: var(--font-sans); font-size: 1.1rem; line-height: 1.6; color: #ccc;
      max-width: 400px;
    }
    
    .process-visual {
      flex: 1; height: 300px; border-radius: 12px; background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.05); position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    
    /* Hover State */
    .process-row:hover { height: 400px; padding-left: 2rem; padding-right: 2rem; }
    .process-row:hover::before { opacity: 1; }
    .process-row:hover .process-title h3 { color: var(--accent); }
    .process-row:hover .process-content { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
    
    /* Visuals specific */
    .vis-discover .circle { width: 100px; height: 100px; border-radius: 50%; border: 1px solid var(--accent); position: absolute; }
    .vis-define .grid { width: 100%; height: 100%; background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px); background-size: 20px 20px; }
    .vis-design .mockup { width: 60%; height: 70%; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); display: flex; flex-direction: column; gap: 10px; padding: 10px; }
    .vis-design .mock-line { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; }
    .vis-build .code { font-family: monospace; font-size: 1rem; color: #a9dc76; white-space: pre; opacity: 0.7; }
    .vis-refine .sparkle { font-size: 3rem; color: var(--accent); animation: pulse 2s infinite; }
    @keyframes pulse { 0% { opacity: 0.3; transform: scale(0.9); } 50% { opacity: 1; transform: scale(1.1); } 100% { opacity: 0.3; transform: scale(0.9); } }

    .process-quote {
      text-align: center; margin-top: 10rem; padding: 0 2rem;
    }
    .process-quote h4 {
      font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 4rem);
      font-weight: 400; font-style: italic; color: var(--text); line-height: 1.2;
      max-width: 800px; margin: 0 auto;
    }
    
    /* ---- ABOUT SECTION (DOBRA 4) ---- */
    .about-section {
      background: var(--bg); color: var(--text); padding: 15rem 0 10rem 0;
      border-top: 1px solid rgba(255,255,255,0.05); position: relative; overflow: hidden;
    }
    .about-header { padding: 0 4rem; margin-bottom: 8rem; }
    .about-header h2 { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 6rem); text-transform: uppercase; line-height: 0.9; }
    
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding: 0 4rem; margin-bottom: 10rem; }
    
    .about-text p { font-family: var(--font-serif); font-size: 1.8rem; line-height: 1.6; color: #ccc; margin-bottom: 2rem; max-width: 600px; }
    .about-text strong { color: var(--text); font-weight: normal; }
    
    .about-skills { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 3rem; }
    .skill-badge { font-family: var(--font-sans); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.75rem 1.5rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 30px; color: var(--accent); background: rgba(255,255,255,0.02); transition: all 0.3s; }
    .skill-badge:hover { background: var(--accent); color: var(--bg); transform: translateY(-3px); }
    
    .about-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
    .metric-box { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; position: relative; }
    .metric-box h3 { font-family: var(--font-display); font-size: 8rem; line-height: 0.8; margin-bottom: 1rem; color: var(--accent); }
    .metric-box p { font-family: var(--font-sans); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-muted); }
    
    .about-map-container { padding: 8rem 4rem; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; border-top: 1px dashed rgba(255,255,255,0.1); border-bottom: 1px dashed rgba(255,255,255,0.1); }
    
    .map-track { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 1200px; position: relative; z-index: 2; }
    .map-node { text-align: center; position: relative; }
    .map-node .dot { width: 16px; height: 16px; background: var(--bg); border: 2px solid var(--accent); border-radius: 50%; margin: 0 auto 1.5rem auto; position: relative; z-index: 2; box-shadow: 0 0 20px rgba(216, 184, 125, 0.3); transition: transform 0.3s; }
    .map-node:hover .dot { transform: scale(1.5); background: var(--accent); }
    .map-node span { font-family: var(--font-sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; color: #fff; }
    
    .map-line-bg { position: absolute; top: calc(50% - 15px); left: 5%; width: 90%; height: 2px; background: rgba(255,255,255,0.05); z-index: 1; }
    .map-line-fill { position: absolute; top: calc(50% - 15px); left: 5%; width: 0%; height: 2px; background: var(--accent); z-index: 1; box-shadow: 0 0 15px var(--accent); }

    .fluent-badge {
      position: absolute; right: 4rem; top: 10rem; width: 140px; height: 140px;
      background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      text-align: center; font-family: var(--font-sans); font-size: 0.75rem; text-transform: uppercase;
      letter-spacing: 0.1em; color: var(--accent); backdrop-filter: blur(10px);
      animation: floatBadge 6s infinite ease-in-out; cursor: pointer;
    }
    .fluent-badge:hover { background: rgba(255,255,255,0.05); }
    @keyframes floatBadge { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(10deg); } }

    .glass-panel {
      background: rgba(10, 10, 10, 0.2); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; padding: 2rem;
    }

    /* ---- TESTIMONIALS SECTION (DOBRA 5) ---- */
    .testimonials-section {
      background: radial-gradient(circle at 50% 0%, rgba(216, 184, 125, 0.05) 0%, transparent 60%), var(--bg);
      color: var(--text); padding: 10rem 0 10rem 0;
      border-top: 1px solid rgba(255,255,255,0.05); position: relative; overflow: hidden;
    }
    .testimonials-bg-glow {
      position: absolute; top: 20%; left: 10%; width: 50vw; height: 50vw;
      background: radial-gradient(circle, rgba(216,184,125,0.08) 0%, transparent 70%);
      border-radius: 50%; filter: blur(60px); animation: pulseGlow 8s infinite alternate ease-in-out; z-index: 0; pointer-events: none;
    }
    .testimonials-bg-glow-2 {
      position: absolute; bottom: 10%; right: 10%; width: 40vw; height: 40vw;
      background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
      border-radius: 50%; filter: blur(50px); animation: pulseGlow 10s infinite alternate-reverse ease-in-out; z-index: 0; pointer-events: none;
    }
    @keyframes pulseGlow { 0% { transform: scale(1) translate(0, 0); } 100% { transform: scale(1.2) translate(50px, -50px); } }

    .testimonials-marquee {
      position: absolute; top: 5%; left: 0; width: 100%; white-space: nowrap; pointer-events: none;
      font-family: var(--font-display); font-size: 20vw; color: transparent;
      -webkit-text-stroke: 1px rgba(255,255,255,0.02); opacity: 0.5; z-index: 0;
    }
    .testimonials-header { text-align: center; margin-bottom: 8rem; position: relative; z-index: 2; padding: 0 2rem; }
    .testimonials-header h2 { font-family: var(--font-display); font-size: clamp(3rem, 5vw, 5rem); text-transform: uppercase; line-height: 0.9; }

    .testimonials-track-wrapper { position: relative; width: 100%; overflow: hidden; z-index: 2; padding-bottom: 5rem; }
    .testimonials-track { display: flex; gap: 4rem; padding: 0 4vw; width: max-content; }
    
    .atropos-card { width: 800px; max-width: 90vw; height: auto; }
    .testimonial-card {
      width: 100%; height: 100%; background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
      padding: 4rem; position: relative; display: flex; flex-direction: column; gap: 3rem;
      backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
      transition: border-color 0.3s ease;
    }
    .atropos-card:hover .testimonial-card { border-color: rgba(216,184,125,0.4); }
    .testimonial-quote-mark {
      position: absolute; top: 1rem; right: 2rem;
      font-family: var(--font-serif); font-size: 15rem; line-height: 1;
      color: rgba(255,255,255,0.03); pointer-events: none; font-style: italic;
    }
    .testimonial-text { font-family: var(--font-serif); font-size: 2rem; line-height: 1.4; color: #fff; position: relative; z-index: 2; }
    
    .testimonial-author { display: flex; align-items: center; gap: 1.5rem; position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; }
    .author-avatar { width: 60px; height: 60px; border-radius: 50%; background: #222; border: 1px solid rgba(255,255,255,0.2); overflow: hidden; }
    .author-avatar img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); opacity: 0.5; }
    .author-info h4 { font-family: var(--font-display); font-size: 1.5rem; margin: 0; color: var(--accent); }
    .author-info p { font-family: var(--font-sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin: 0; }
    
    .testimonials-footer { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding: 5rem 4rem 0 4rem; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 8rem; position: relative; z-index: 2; }
    .t-metric h5 { font-family: var(--font-display); font-size: 4rem; margin: 0; color: #fff; }
    .t-metric p { font-family: var(--font-sans); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
    @media (max-width: 1000px) { .testimonials-footer { grid-template-columns: 1fr 1fr; } .testimonial-card { width: 85vw; padding: 2.5rem; } .testimonial-text { font-size: 1.5rem; } }

    /* ---- CTA SECTION / FOOTER (DOBRA 6) ---- */
    .cta-section {
      background: linear-gradient(180deg, #050505 0%, #110d05 100%); color: #fff; padding: 15rem 4rem 4rem 4rem;
      min-height: 100vh; display: flex; flex-direction: column; justify-content: space-between;
      position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,0.05); overflow: hidden;
    }
    .cta-geometric-bg {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
      background-image: 
        radial-gradient(circle at 15% 50%, rgba(216,184,125,0.05) 0%, transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(255,255,255,0.02) 0%, transparent 50%),
        linear-gradient(rgba(216,184,125,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(216,184,125,0.03) 1px, transparent 1px);
      background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px;
      pointer-events: none; animation: subtlePan 20s linear infinite alternate;
    }
    @keyframes subtlePan { 0% { background-position: 0% 0%, 0% 0%, 0 0, 0 0; } 100% { background-position: 100% 100%, -50% 50%, 25px 25px, 25px 25px; } }
    
    .cta-fluid-bg {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
      background: radial-gradient(circle at 50% 50%, rgba(216,184,125,0) 0%, transparent 40%);
      pointer-events: none; transition: background 0.2s ease-out; mix-blend-mode: screen;
    }
    .cta-header { margin-bottom: 8rem; position: relative; z-index: 2; }
    .cta-header h2 { font-family: var(--font-display); font-size: clamp(4rem, 8vw, 9rem); text-transform: uppercase; line-height: 0.9; margin: 0 0 2rem 0; color: #fff; cursor: default; }
    .cta-header p { font-family: var(--font-serif); font-size: 1.5rem; color: #aaa; max-width: 600px; line-height: 1.5; }
    
    .cta-content { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; margin-bottom: 8rem; position: relative; z-index: 2; }
    
    /* Editorial Form */
    .editorial-form { display: flex; flex-direction: column; gap: 3.5rem; }
    .input-group { position: relative; }
    .input-group input, .input-group textarea {
      width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.2);
      color: #fff; font-family: var(--font-serif); font-size: 1.5rem; padding: 1rem 0;
      outline: none; transition: border-color 0.3s; border-radius: 0;
    }
    .input-group textarea { resize: none; min-height: 60px; overflow: hidden; }
    .input-group label {
      position: absolute; left: 0; top: 1rem; font-family: var(--font-sans); font-size: 1rem;
      color: rgba(255,255,255,0.4); pointer-events: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      text-transform: uppercase; letter-spacing: 0.05em;
    }
    .input-group input:focus, .input-group textarea:focus { border-bottom-color: var(--accent); }
    .input-group input:focus ~ label, .input-group input:valid ~ label,
    .input-group textarea:focus ~ label, .input-group textarea:valid ~ label {
      top: -1.5rem; font-size: 0.75rem; color: var(--accent);
    }
    
    /* Giant Submit Button */
    .submit-btn-wrapper { margin-top: 2rem; display: flex; align-items: center; gap: 2rem; }
    .submit-btn {
      width: 100px; height: 100px; border-radius: 50%; background: var(--accent); border: none;
      display: flex; align-items: center; justify-content: center; cursor: pointer;
      color: var(--bg); transition: transform 0.3s;
    }
    .submit-btn:hover { transform: scale(1.1); }
    .submit-btn i { font-size: 2.5rem; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
    .submit-btn:hover i { transform: translate(10px, -10px); }
    .submit-text { font-family: var(--font-serif); font-size: 2.5rem; color: #fff; font-style: italic; }
    
    /* Social Links */
    .cta-socials { display: flex; flex-direction: column; gap: 1.5rem; justify-content: center; }
    .social-link { font-family: var(--font-display); font-size: 3rem; color: #fff; text-decoration: none; text-transform: uppercase; transition: color 0.3s; display: inline-block; width: max-content; }
    .social-link:hover { color: var(--accent); }
    
    .cta-footer { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: #888; }
    @media (max-width: 1000px) { .cta-content { grid-template-columns: 1fr; gap: 4rem; } .cta-footer { flex-direction: column; gap: 1rem; text-align: center; } }
