 

 
  /* =========================================
     SECTION 02.4: REVENUE BLOCK (SCOPED)
     ========================================= */

  #cro-revenue-block {
    /* --- SCOPED VARIABLES --- */
    --cro-green: #22C55E;
    --cro-green-dim: rgba(34, 197, 94, 0.1);
    --cro-purple: #A855F7;
    --cro-slate: #64748B;
    --cro-bg-card: rgba(13, 17, 23, 0.6);
    --text-light: #F8FAFC;
    --text-dim: #94A3B8;

    /* --- FONT SYSTEM --- */
    --font-head: 'Mona Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'Space Grotesk', monospace;

    /* --- DYNAMIC LAYOUT VARS --- */
    --icon-size: 48px; /* Mobile Default */
    --line-width: 2px;

    position: relative;
    width: 100%;
    padding: 80px 20px;
    background: transparent;
    font-family: var(--font-body);
    color: var(--text-light);
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
  }
  
  #cro-revenue-block * { box-sizing: border-box; }

  /* --- ACCESSIBILITY: REDUCED MOTION --- */
  @media (prefers-reduced-motion: reduce) {
    .line-flow, .s2-icon, .a-step, .card-glow {
      animation: none !important;
      transition: none !important;
      transform: none !important;
    }
  }

  /* --- CONTAINER (MOBILE DEFAULT) --- */
  .rev-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Stack vertically on mobile */
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
  }

  /* --- LEFT: CONTENT --- */
  .rev-content-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .rev-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: var(--cro-green-dim);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    color: var(--cro-green);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
  }

  .rev-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 24px 0;
    color: #fff;
  }

  .rev-desc {
    font-size: 1.125rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 32px;
  }
  
  .rev-desc p { margin-bottom: 16px; }
  .rev-desc p:last-child { margin-bottom: 0; }
  .rev-desc strong { color: #fff; font-weight: 600; }

  /* Highlight Box */
  .rev-highlight-box {
    background: rgba(34, 197, 94, 0.05);
    border-left: 4px solid var(--cro-green);
    padding: 24px;
    border-radius: 0 12px 12px 0;
    width: 100%;
  }
  
  .rh-title { 
    color: var(--cro-green); 
    font-family: var(--font-mono);
    font-weight: 700; 
    font-size: 0.875rem; 
    margin-bottom: 8px; 
    text-transform: uppercase; 
    letter-spacing: 0.05em;
  }
  
  .rh-text { 
    font-size: 1rem; 
    color: #CBD5E1; 
    margin: 0;
  }

  /* --- RIGHT: VISUAL (The Alchemy Process) --- */
  .rev-visual-col {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .process-card {
    width: 100%;
    max-width: 500px;
    background: var(--cro-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
    padding: 32px 24px; /* Mobile Padding */
  }

  /* Background Glow inside card */
  .card-glow {
    position: absolute;
    bottom: -50px; 
    right: -50px;
    width: 250px; 
    height: 250px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.2), transparent 70%);
    filter: blur(60px);
    z-index: 0;
    will-change: opacity;
  }

  /* Process Steps */
  .alchemy-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    z-index: 2;
  }

  /* Connecting Line (Calculated Center) */
  .alchemy-line {
    position: absolute;
    /* (Icon Width / 2) - (Line Width / 2) */
    left: calc((var(--icon-size) / 2) - (var(--line-width) / 2));
    top: 30px;
    bottom: 30px;
    width: var(--line-width);
    background: rgba(255,255,255,0.1);
    z-index: 0;
    overflow: hidden;
  }
  
  .line-flow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 40%;
    background: linear-gradient(to bottom, transparent, var(--cro-green), transparent);
    animation: flowVertical 2.5s infinite linear;
    will-change: top, opacity;
  }

  /* Individual Steps */
  .a-step {
    display: flex;
    align-items: center;
    gap: 16px; /* Mobile Gap */
    padding: 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1;
  }
  
  .a-step:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  }

  .step-1:hover { border-color: var(--cro-slate); } 
  .step-2:hover { border-color: var(--cro-purple); } 
  .step-3:hover { border-color: var(--cro-green); }

  .as-icon-box {
    flex-shrink: 0;
    width: var(--icon-size); 
    height: var(--icon-size);
    border-radius: 50%;
    background: #0B0F19;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; /* Mobile Icon Size */
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 2; 
  }

  /* Text Content */
  .as-content { display: flex; flex-direction: column; }

  .as-label { 
    font-family: var(--font-mono); 
    font-weight: 700; 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 1px;
    margin-bottom: 4px; 
  }
  
  .as-val { 
    font-size: 1rem; 
    color: #fff; 
    font-weight: 700; 
  }

  /* State Specifics */
  .s1-icon { color: var(--cro-slate); }
  .s1-label { color: var(--cro-slate); }

  .s2-icon { color: var(--cro-purple); animation: spinSlow 8s infinite linear; }
  .s2-label { color: var(--cro-purple); }

  .s3-icon { 
    color: var(--cro-green); 
    box-shadow: 0 0 20px rgba(34,197,94,0.3); 
    border-color: var(--cro-green); 
  }
  .s3-label { color: var(--cro-green); }

  /* --- DESKTOP OPTIMIZATION (min-width: 1024px) --- */
  @media (min-width: 1024px) {
    #cro-revenue-block {
      padding: 100px 20px;
    }

    .rev-container {
      flex-direction: row;
      gap: 80px;
    }

    .rev-content-col {
      flex: 1;
    }

    .rev-visual-col {
      flex: 1;
      min-height: 500px;
    }

    /* Update Dynamic Vars for Desktop */
    #cro-revenue-block {
      --icon-size: 60px;
    }

    .process-card {
      padding: 40px;
    }

    .a-step {
      gap: 24px;
    }

    .as-icon-box {
      font-size: 1.25rem;
    }
    
    .as-val {
      font-size: 1.125rem;
    }
  }

  /* --- KEYFRAMES --- */
  @keyframes flowVertical { 
    0% { top: -40%; opacity: 0; } 
    30% { opacity: 1; }
    100% { top: 100%; opacity: 0; } 
  }
  
  @keyframes spinSlow { 
    100% { transform: rotate(360deg); } 
  }


  /* =========================================
     SECTION 02.5: METHODOLOGY STYLES (SCOPED)
     ========================================= */

  #cro-how {
    /* --- SCOPED VARIABLES --- */
    --cro-teal: #28CCCD;
    --cro-purple: #A855F7;
    --cro-green: #22C55E;
    --cro-blue: #2563EB;
    --cro-slate: #64748B;
    --cro-bg-card: rgba(13, 17, 23, 0.6);
    --text-light: #F8FAFC;
    --text-dim: #94A3B8;

    /* --- FONT SYSTEM --- */
    --font-head: 'Mona Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'Space Grotesk', monospace;

    position: relative;
    width: 100%;
    padding: 80px 20px;
    background: transparent;
    font-family: var(--font-body);
    color: var(--text-light);
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
  }
  
  #cro-how * { box-sizing: border-box; }

  /* --- ACCESSIBILITY: REDUCED MOTION --- */
  @media (prefers-reduced-motion: reduce) {
    .fusion-card, .outcome-arrow {
      animation: none !important;
      transition: none !important;
      transform: none !important;
    }
  }

  /* --- CONTAINER (MOBILE DEFAULT) --- */
  .how-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  /* --- HEADER --- */
  .how-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .how-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(40, 204, 205, 0.1);
    border: 1px solid rgba(40, 204, 205, 0.3);
    border-radius: 50px;
    color: var(--cro-teal);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
  }

  .how-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 24px 0;
    color: #fff;
  }
  
  .title-highlight { color: var(--cro-teal); }

  .how-text {
    font-size: 1.125rem;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
  }

  /* --- FUSION GRID (MOBILE: VERTICAL) --- */
  .fusion-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column stack */
    gap: 40px;
    width: 100%;
    position: relative;
  }

  /* Connecting Line (Mobile: Vertical) */
  .fusion-line {
    position: absolute;
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent, var(--cro-teal), transparent);
    z-index: 0;
    opacity: 0.3;
  }

  /* Cards */
  .fusion-card {
    background: var(--cro-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
  }
  
  .fusion-card:hover {
    transform: translateY(-5px);
    background: rgba(13, 17, 23, 0.8);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: rgba(255, 255, 255, 0.15);
  }

  /* Card Variants */
  .card-quant { border-top: 4px solid var(--cro-teal); }
  .card-qual { border-top: 4px solid var(--cro-purple); }
  .card-ai { border-top: 4px solid var(--cro-green); }

  /* Icons */
  .fc-icon-box {
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
    background: #0B0F19;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  }
  
  .card-quant .fc-icon-box { color: var(--cro-teal); border-color: rgba(40, 204, 205, 0.3); }
  .card-qual .fc-icon-box { color: var(--cro-purple); border-color: rgba(168, 85, 247, 0.3); }
  .card-ai .fc-icon-box { color: var(--cro-green); border-color: rgba(34, 197, 94, 0.3); }

  .fc-title {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
  }

  .fc-desc {
    font-size: 0.95rem;
    color: #CBD5E1;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
  }

  /* Tags */
  .fc-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  
  .fc-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    color: var(--text-dim);
    border: 1px solid rgba(255,255,255,0.05);
  }

  /* --- OUTCOME BAR (MOBILE: STACKED) --- */
  .outcome-bar {
    width: 100%;
    background: linear-gradient(90deg, rgba(40, 204, 205, 0.05), rgba(34, 197, 94, 0.1));
    border: 1px dashed rgba(40, 204, 205, 0.3);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column; /* Mobile stack */
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    text-align: center;
  }
  
  .outcome-text {
    font-family: var(--font-mono);
    font-weight: 700;
    color: #fff;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .outcome-arrow { 
    color: var(--cro-green); 
    font-size: 1.25rem; 
    transform: rotate(90deg); /* Downward for mobile */
    animation: pulseArrowVert 2s infinite ease-in-out; 
  }

  .outcome-metrics {
    display: flex; 
    gap: 12px; 
    flex-wrap: wrap; 
    justify-content: center;
    align-items: center;
  }

  /* Utility Colors for Outcome Metrics */
  .text-teal { color: var(--cro-teal); font-weight: 700; }
  .text-purple { color: var(--cro-purple); font-weight: 700; }
  .text-green { color: var(--cro-green); font-weight: 700; }
  .text-blue { color: var(--cro-blue); }

  /* --- DESKTOP OPTIMIZATION (min-width: 1024px) --- */
  @media (min-width: 1024px) {
    #cro-how {
      padding: 100px 20px;
    }

    .how-container {
      gap: 60px;
    }

    /* Grid to 3 columns */
    .fusion-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    /* Line to Horizontal */
    .fusion-line {
      width: 100%; height: 2px;
      left: 0; top: 50%;
      transform: translateY(-50%);
      background: linear-gradient(90deg, transparent, var(--cro-teal), transparent);
    }
    
    .fusion-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }

    /* Outcome Bar to Row */
    .outcome-bar {
      flex-direction: row;
      gap: 24px;
    }

    .outcome-arrow {
      transform: rotate(0deg); /* Point right */
      animation: pulseArrowHoriz 2s infinite ease-in-out;
    }
    
    .outcome-metrics {
        gap: 16px;
    }
  }

  /* --- KEYFRAMES --- */
  @keyframes pulseArrowVert { 
    0%, 100% { transform: rotate(90deg) translateY(0); opacity: 0.6; } 
    50% { transform: rotate(90deg) translateY(5px); opacity: 1; } 
  }

  @keyframes pulseArrowHoriz { 
    0%, 100% { transform: translateX(0); opacity: 0.6; } 
    50% { transform: translateX(5px); opacity: 1; } 
  }



  /* =========================================
     SECTION 02.6: COMPARISON STYLES (SCOPED)
     ========================================= */

  #cro-comparison {
    /* --- SCOPED VARIABLES --- */
    --trad-red: #FF5F56;
    --trad-dim: #64748B;
    --cro-teal: #28CCCD;
    --cro-green: #22C55E;
    --cro-bg-dark: #0B0F19;
    --text-light: #F8FAFC;
    --text-dim: #94A3B8;

    /* --- FONT SYSTEM --- */
    --font-head: 'Mona Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'Space Grotesk', monospace;

    position: relative;
    width: 100%;
    padding: 80px 20px;
    background: transparent;
    font-family: var(--font-body);
    color: var(--text-light);
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
  }
  
  #cro-comparison * { box-sizing: border-box; }

  /* --- ACCESSIBILITY: REDUCED MOTION --- */
  @media (prefers-reduced-motion: reduce) {
    .comp-card, .icon-cro, .vs-badge {
      animation: none !important;
      transition: none !important;
      transform: none !important;
    }
  }

  /* --- CONTAINER (MOBILE DEFAULT) --- */
  .comp-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  /* --- HEADER --- */
  .comp-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px auto;
  }

  .comp-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    margin: 0 0 16px 0;
    color: #fff;
    line-height: 1.2;
  }

  .comp-lead {
    font-size: 1.125rem;
    color: var(--text-dim);
    line-height: 1.6;
  }

  /* --- COMPARISON STAGE (MOBILE: VERTICAL STACK) --- */
  .comp-stage {
    display: flex;
    flex-direction: column; /* Vertical default */
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
  }

  /* Shared Card Styles */
  .comp-card {
    width: 100%;
    padding: 32px 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  /* TOP CARD: Traditional */
  .card-trad {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px 20px 0 0; /* Top rounded only */
    border-bottom: none; /* Merge effect */
    z-index: 1;
  }

  /* BOTTOM CARD: CRO */
  .card-cro {
    background: linear-gradient(180deg, rgba(13, 17, 23, 0.9), rgba(40, 204, 205, 0.08));
    border-radius: 0 0 20px 20px; /* Bottom rounded only */
    border-top: none; /* Merge effect */
    border-color: rgba(40, 204, 205, 0.3);
    z-index: 2;
  }

  /* VS BADGE (MOBILE POSITION) */
  .vs-badge {
    position: relative;
    width: 50px; height: 50px;
    background: var(--cro-bg-dark);
    border: 2px solid var(--trad-dim);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono); 
    font-weight: 900; 
    font-size: 0.9rem;
    color: #fff;
    z-index: 10;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    margin: -25px auto; /* Pulls into the seam */
  }

  /* --- CARD CONTENT --- */
  .cc-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .icon-trad { 
    color: var(--trad-dim); 
    filter: grayscale(1); 
    opacity: 0.7; 
  }
  
  .icon-cro { 
    color: var(--cro-teal); 
    filter: drop-shadow(0 0 10px rgba(40, 204, 205, 0.3)); 
    animation: pulseTeal 3s infinite alternate; 
  }

  .cc-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
  }
  .cl-trad { color: var(--trad-red); }
  .cl-cro { color: var(--cro-green); }

  .cc-heading {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px 0;
  }

  /* List Styles */
  .cc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
  }
  
  .cc-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.5;
  }
  .cc-list li:last-child { border-bottom: none; }
  
  .cc-list strong { color: #fff; font-weight: 600; }

  .li-icon { 
    font-size: 1rem; 
    flex-shrink: 0; 
    margin-top: 3px;
  }
  .li-trad { color: var(--trad-red); opacity: 0.8; }
  .li-cro { color: var(--cro-green); }

  /* Feature Pill */
  .feature-pill {
    margin-top: auto;
    padding-top: 24px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: 100%;
  }
  
  .fp-trad { color: var(--trad-dim); }
  .fp-cro { 
    color: var(--cro-teal); 
    background: rgba(40, 204, 205, 0.1); 
    padding: 12px 20px; 
    border-radius: 50px; 
    margin-top: 24px;
    border: 1px solid rgba(40, 204, 205, 0.2);
  }

  /* --- DESKTOP OPTIMIZATION (min-width: 1024px) --- */
  @media (min-width: 1024px) {
    #cro-comparison {
      padding: 100px 20px;
    }

    .comp-header {
      margin-bottom: 60px;
    }

    /* Switch to Horizontal Layout */
    .comp-stage {
      flex-direction: row;
      align-items: stretch;
    }

    .comp-card {
      flex: 1;
      padding: 48px 40px;
    }

    /* Left Card Desktop Styles */
    .card-trad {
      border-radius: 24px 0 0 24px;
      border-right: none; 
      border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Restore bottom border */
    }
    
    .card-trad:hover {
      background: rgba(255, 95, 86, 0.03);
    }

    /* Right Card Desktop Styles */
    .card-cro {
      background: linear-gradient(135deg, rgba(13, 17, 23, 0.9), rgba(40, 204, 205, 0.08));
      border-radius: 0 24px 24px 0;
      border-left: none; 
      border-top: 1px solid rgba(40, 204, 205, 0.3); /* Restore top border */
      box-shadow: 0 0 40px rgba(40, 204, 205, 0.05);
      transform: scale(1.05); /* Make larger */
      z-index: 5;
    }
    
    .card-cro:hover {
      box-shadow: 0 20px 60px rgba(40, 204, 205, 0.15);
      transform: scale(1.07);
    }

    /* Badge Desktop Positioning */
    .vs-badge {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      margin: 0;
      width: 56px; height: 56px;
      font-size: 1rem;
    }

    .cc-heading { font-size: 1.75rem; }
    .cc-icon { font-size: 3rem; }
    .feature-pill { font-size: 0.85rem; }
  }

  /* --- KEYFRAMES --- */
  @keyframes pulseTeal { 
    0% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(40, 204, 205, 0.2)); } 
    100% { transform: scale(1.05); filter: drop-shadow(0 0 15px rgba(40, 204, 205, 0.5)); } 
  }



  /* =========================================
     SECTION 03: THE LEAKS (SCOPED)
     ========================================= */

  #cro-leaks {
    /* --- SCOPED VARIABLES --- */
    --leak-red: #FF5F56;
    --leak-red-dim: rgba(255, 95, 86, 0.1);
    --leak-green: #22C55E;
    --leak-teal: #28CCCD;
    --leak-bg-card: rgba(13, 17, 23, 0.6);
    --text-light: #F8FAFC;
    --text-dim: #94A3B8;

    /* --- FONT SYSTEM --- */
    --font-head: 'Mona Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'Space Grotesk', monospace;

    position: relative;
    width: 100%;
    padding: 80px 20px;
    background: transparent;
    font-family: var(--font-body);
    color: var(--text-light);
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
  }
  
  #cro-leaks * { box-sizing: border-box; }

  /* --- ACCESSIBILITY: REDUCED MOTION --- */
  @media (prefers-reduced-motion: reduce) {
    .leak-stream, .gap-item {
      animation: none !important;
      transition: none !important;
      transform: none !important;
    }
  }

  /* --- CONTAINER (MOBILE DEFAULT) --- */
  .leak-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Mobile Stack */
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
  }

  /* --- VISUAL COL (The Funnel) --- */
  .leak-visual-col {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    order: 1; /* Visual top on mobile */
  }

  .funnel-card {
    width: 100%;
    max-width: 450px;
    background: var(--leak-bg-card);
    border: 1px solid rgba(255, 95, 86, 0.3);
    border-radius: 24px;
    padding: 32px 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Funnel Header inside card */
  .fc-header {
    text-align: center; 
    margin-bottom: 24px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* Funnel Body */
  .funnel-body {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; /* Tighter on mobile */
  }

  /* Flow Line */
  .flow-line {
    position: absolute;
    top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 2px;
    background: rgba(255,255,255,0.1);
    z-index: 0;
  }

  /* Stages */
  .f-stage {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    position: relative;
    height: 50px; /* Mobile height */
    z-index: 1;
  }

  /* Widths & Colors (Mobile optimized widths) */
  .fs-1 { width: 100%; border-color: var(--leak-teal); }
  .fs-2 { width: 92%; border-color: var(--leak-red); margin-top: 10px; }
  .fs-3 { width: 84%; border-color: var(--leak-red); margin-top: 10px; }
  .fs-4 { width: 76%; border-color: var(--leak-red); margin-top: 10px; }
  .fs-5 { width: 68%; border-color: var(--leak-green); margin-top: 10px; background: rgba(34,197,94,0.1); }

  /* Labels */
  .stage-label {
    position: absolute;
    left: 12px; top: 50%; transform: translateY(-50%);
    font-family: var(--font-mono); 
    font-size: 0.7rem; 
    font-weight: 700; 
    color: #fff; 
    text-transform: uppercase;
  }

  /* Leak Tags (Mobile: Inside/Overlay) */
  .leak-tag {
    position: absolute;
    right: 8px; top: 50%; transform: translateY(-50%);
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid var(--leak-red);
    color: var(--leak-red);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    white-space: nowrap;
    z-index: 2;
  }

  .fs-5 .stage-label { color: var(--leak-green); }

  /* Leak Streams (Hidden on Mobile) */
  .leak-stream {
    display: none;
  }

  /* --- CONTENT COL --- */
  .gap-content-col {
    width: 100%;
    order: 2;
  }

  .gap-header { margin-bottom: 32px; text-align: left; }

  .gap-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--leak-red-dim);
    border: 1px solid rgba(255, 95, 86, 0.3);
    border-radius: 50px;
    color: var(--leak-red);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .gap-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .gap-desc {
    font-size: 1.125rem;
    color: var(--text-dim);
    line-height: 1.6;
  }

  .gap-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .gap-item {
    background: rgba(255,255,255,0.03);
    border-left: 4px solid var(--leak-red);
    padding: 24px;
    border-radius: 0 16px 16px 0;
    transition: transform 0.3s ease;
  }
  
  .gap-item:hover {
    background: rgba(255, 95, 86, 0.05);
    transform: translateX(5px);
  }

  .gi-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
  }
  
  .gi-icon { color: var(--leak-red); font-size: 1.2rem; }
  
  .gi-title {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
  }

  .gi-desc {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: 12px;
  }
  
  .gi-stat {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--leak-red);
    font-weight: 700;
    background: var(--leak-red-dim);
    padding: 4px 10px;
    border-radius: 4px;
    font-family: var(--font-mono);
  }

  /* --- DESKTOP OPTIMIZATION (min-width: 1024px) --- */
  @media (min-width: 1024px) {
    #cro-leaks { padding: 100px 20px; }

    .leak-container {
      flex-direction: row;
      align-items: center;
      gap: 80px;
    }

    .leak-visual-col {
      flex: 1;
      order: 1; /* Visual Left */
    }

    .gap-content-col {
      flex: 1.2;
      order: 2; /* Content Right */
    }

    .funnel-card {
        padding: 40px;
        height: 520px;
    }

    /* Desktop Funnel Spacing & Shapes */
    .funnel-body { gap: 5px; }
    .f-stage { height: 60px; }
    
    /* Narrower funnel for desktop aesthetic */
    .fs-2 { width: 80%; margin-top: 20px; }
    .fs-3 { width: 60%; margin-top: 20px; }
    .fs-4 { width: 40%; margin-top: 20px; }
    .fs-5 { width: 20%; margin-top: 20px; }

    /* Show Leak Streams */
    .leak-stream {
      display: block;
      position: absolute;
      height: 4px;
      background: linear-gradient(90deg, var(--leak-red), transparent);
      right: -60px;
      top: 50%; transform: translateY(-50%);
      border-radius: 4px;
      animation: leakFlow 2s infinite linear;
      z-index: 0;
    }
    .ls-1 { width: 80px; } 
    .ls-2 { width: 60px; animation-delay: 0.5s; } 
    .ls-3 { width: 40px; animation-delay: 1s; }

    /* Move tags outside for desktop */
    .leak-tag {
        right: -110px;
        background: var(--leak-red-dim);
        border: none;
        padding: 4px 8px;
    }
    
    .gap-item:hover { transform: translateX(10px); }
  }

  /* --- KEYFRAMES --- */
  @keyframes leakFlow {
    0% { opacity: 0; transform: translateY(-50%) translateX(-20px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-50%) translateX(20px); }
  }


  /* =========================================
     SECTION 02.6: COMPARISON STYLES (SCOPED)
     ========================================= */

  #cro-comparison {
    /* --- SCOPED VARIABLES --- */
    --trad-red: #FF5F56;
    --trad-dim: #64748B;
    --cro-teal: #28CCCD;
    --cro-green: #22C55E;
    --cro-bg-dark: #0B0F19;
    --text-light: #F8FAFC;
    --text-dim: #94A3B8;

    /* --- FONT SYSTEM --- */
    --font-head: 'Mona Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'Space Grotesk', monospace;

    position: relative;
    width: 100%;
    padding: 80px 20px;
    background: transparent;
    font-family: var(--font-body);
    color: var(--text-light);
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
  }
  
  #cro-comparison * { box-sizing: border-box; }

  /* --- ACCESSIBILITY: REDUCED MOTION --- */
  @media (prefers-reduced-motion: reduce) {
    .comp-card, .icon-cro, .vs-badge {
      animation: none !important;
      transition: none !important;
      transform: none !important;
    }
  }

  /* --- CONTAINER (MOBILE DEFAULT) --- */
  .comp-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  /* --- HEADER --- */
  .comp-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px auto;
  }

  .comp-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    margin: 0 0 16px 0;
    color: #fff;
    line-height: 1.2;
  }

  .comp-lead {
    font-size: 1.125rem;
    color: var(--text-dim);
    line-height: 1.6;
  }

  /* --- COMPARISON STAGE (MOBILE: VERTICAL STACK) --- */
  .comp-stage {
    display: flex;
    flex-direction: column; /* Vertical default */
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
  }

  /* Shared Card Styles */
  .comp-card {
    width: 100%;
    padding: 32px 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  /* TOP CARD: Traditional */
  .card-trad {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px 20px 0 0; /* Top rounded only */
    border-bottom: none; /* Merge effect */
    z-index: 1;
  }

  /* BOTTOM CARD: CRO */
  .card-cro {
    background: linear-gradient(180deg, rgba(13, 17, 23, 0.9), rgba(40, 204, 205, 0.08));
    border-radius: 0 0 20px 20px; /* Bottom rounded only */
    border-top: none; /* Merge effect */
    border-color: rgba(40, 204, 205, 0.3);
    z-index: 2;
  }

  /* VS BADGE (MOBILE POSITION) */
  .vs-badge {
    position: relative;
    width: 50px; height: 50px;
    background: var(--cro-bg-dark);
    border: 2px solid var(--trad-dim);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono); 
    font-weight: 900; 
    font-size: 0.9rem;
    color: #fff;
    z-index: 10;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    margin: -25px auto; /* Pulls into the seam */
  }

  /* --- CARD CONTENT --- */
  .cc-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .icon-trad { 
    color: var(--trad-dim); 
    filter: grayscale(1); 
    opacity: 0.7; 
  }
  
  .icon-cro { 
    color: var(--cro-teal); 
    filter: drop-shadow(0 0 10px rgba(40, 204, 205, 0.3)); 
    animation: pulseTeal 3s infinite alternate; 
  }

  .cc-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
  }
  .cl-trad { color: var(--trad-red); }
  .cl-cro { color: var(--cro-green); }

  .cc-heading {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px 0;
  }

  /* List Styles */
  .cc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
  }
  
  .cc-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.5;
  }
  .cc-list li:last-child { border-bottom: none; }
  
  .cc-list strong { color: #fff; font-weight: 600; }

  .li-icon { 
    font-size: 1rem; 
    flex-shrink: 0; 
    margin-top: 3px;
  }
  .li-trad { color: var(--trad-red); opacity: 0.8; }
  .li-cro { color: var(--cro-green); }

  /* Feature Pill */
  .feature-pill {
    margin-top: auto;
    padding-top: 24px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: 100%;
  }
  
  .fp-trad { color: var(--trad-dim); }
  .fp-cro { 
    color: var(--cro-teal); 
    background: rgba(40, 204, 205, 0.1); 
    padding: 12px 20px; 
    border-radius: 50px; 
    margin-top: 24px;
    border: 1px solid rgba(40, 204, 205, 0.2);
  }

  /* --- DESKTOP OPTIMIZATION (min-width: 1024px) --- */
  @media (min-width: 1024px) {
    #cro-comparison {
      padding: 100px 20px;
    }

    .comp-header {
      margin-bottom: 60px;
    }

    /* Switch to Horizontal Layout */
    .comp-stage {
      flex-direction: row;
      align-items: stretch;
    }

    .comp-card {
      flex: 1;
      padding: 48px 40px;
    }

    /* Left Card Desktop Styles */
    .card-trad {
      border-radius: 24px 0 0 24px;
      border-right: none; 
      border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Restore bottom border */
    }
    
    .card-trad:hover {
      background: rgba(255, 95, 86, 0.03);
    }

    /* Right Card Desktop Styles */
    .card-cro {
      background: linear-gradient(135deg, rgba(13, 17, 23, 0.9), rgba(40, 204, 205, 0.08));
      border-radius: 0 24px 24px 0;
      border-left: none; 
      border-top: 1px solid rgba(40, 204, 205, 0.3); /* Restore top border */
      box-shadow: 0 0 40px rgba(40, 204, 205, 0.05);
      transform: scale(1.05); /* Make larger */
      z-index: 5;
    }
    
    .card-cro:hover {
      box-shadow: 0 20px 60px rgba(40, 204, 205, 0.15);
      transform: scale(1.07);
    }

    /* Badge Desktop Positioning */
    .vs-badge {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      margin: 0;
      width: 56px; height: 56px;
      font-size: 1rem;
    }

    .cc-heading { font-size: 1.75rem; }
    .cc-icon { font-size: 3rem; }
    .feature-pill { font-size: 0.85rem; }
  }

  /* --- KEYFRAMES --- */
  @keyframes pulseTeal { 
    0% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(40, 204, 205, 0.2)); } 
    100% { transform: scale(1.05); filter: drop-shadow(0 0 15px rgba(40, 204, 205, 0.5)); } 
  }


  /* =========================================
     SECTION 03: THE LEAKS (SCOPED)
     ========================================= */

  #cro-leaks {
    /* --- SCOPED VARIABLES --- */
    --leak-red: #FF5F56;
    --leak-red-dim: rgba(255, 95, 86, 0.1);
    --leak-green: #22C55E;
    --leak-teal: #28CCCD;
    --leak-bg-card: rgba(13, 17, 23, 0.6);
    --text-light: #F8FAFC;
    --text-dim: #94A3B8;

    /* --- FONT SYSTEM --- */
    --font-head: 'Mona Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'Space Grotesk', monospace;

    position: relative;
    width: 100%;
    padding: 80px 20px;
    background: transparent;
    font-family: var(--font-body);
    color: var(--text-light);
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
  }
  
  #cro-leaks * { box-sizing: border-box; }

  /* --- ACCESSIBILITY: REDUCED MOTION --- */
  @media (prefers-reduced-motion: reduce) {
    .leak-stream, .gap-item {
      animation: none !important;
      transition: none !important;
      transform: none !important;
    }
  }

  /* --- CONTAINER (MOBILE DEFAULT) --- */
  .leak-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Mobile Stack */
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
  }

  /* --- VISUAL COL (The Funnel) --- */
  .leak-visual-col {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    order: 1; /* Visual top on mobile */
  }

  .funnel-card {
    width: 100%;
    max-width: 450px;
    background: var(--leak-bg-card);
    border: 1px solid rgba(255, 95, 86, 0.3);
    border-radius: 24px;
    padding: 32px 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Funnel Header inside card */
  .fc-header {
    text-align: center; 
    margin-bottom: 24px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* Funnel Body */
  .funnel-body {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; /* Tighter on mobile */
  }

  /* Flow Line */
  .flow-line {
    position: absolute;
    top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 2px;
    background: rgba(255,255,255,0.1);
    z-index: 0;
  }

  /* Stages */
  .f-stage {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    position: relative;
    height: 50px; /* Mobile height */
    z-index: 1;
  }

  /* Widths & Colors (Mobile optimized widths) */
  .fs-1 { width: 100%; border-color: var(--leak-teal); }
  .fs-2 { width: 92%; border-color: var(--leak-red); margin-top: 10px; }
  .fs-3 { width: 84%; border-color: var(--leak-red); margin-top: 10px; }
  .fs-4 { width: 76%; border-color: var(--leak-red); margin-top: 10px; }
  .fs-5 { width: 68%; border-color: var(--leak-green); margin-top: 10px; background: rgba(34,197,94,0.1); }

  /* Labels */
  .stage-label {
    position: absolute;
    left: 12px; top: 50%; transform: translateY(-50%);
    font-family: var(--font-mono); 
    font-size: 0.7rem; 
    font-weight: 700; 
    color: #fff; 
    text-transform: uppercase;
  }

  /* Leak Tags (Mobile: Inside/Overlay) */
  .leak-tag {
    position: absolute;
    right: 8px; top: 50%; transform: translateY(-50%);
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid var(--leak-red);
    color: var(--leak-red);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    white-space: nowrap;
    z-index: 2;
  }

  .fs-5 .stage-label { color: var(--leak-green); }

  /* Leak Streams (Hidden on Mobile) */
  .leak-stream {
    display: none;
  }

  /* --- CONTENT COL --- */
  .gap-content-col {
    width: 100%;
    order: 2;
  }

  .gap-header { margin-bottom: 32px; text-align: left; }

  .gap-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--leak-red-dim);
    border: 1px solid rgba(255, 95, 86, 0.3);
    border-radius: 50px;
    color: var(--leak-red);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .gap-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .gap-desc {
    font-size: 1.125rem;
    color: var(--text-dim);
    line-height: 1.6;
  }

  .gap-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .gap-item {
    background: rgba(255,255,255,0.03);
    border-left: 4px solid var(--leak-red);
    padding: 24px;
    border-radius: 0 16px 16px 0;
    transition: transform 0.3s ease;
  }
  
  .gap-item:hover {
    background: rgba(255, 95, 86, 0.05);
    transform: translateX(5px);
  }

  .gi-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
  }
  
  .gi-icon { color: var(--leak-red); font-size: 1.2rem; }
  
  .gi-title {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
  }

  .gi-desc {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: 12px;
  }
  
  .gi-stat {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--leak-red);
    font-weight: 700;
    background: var(--leak-red-dim);
    padding: 4px 10px;
    border-radius: 4px;
    font-family: var(--font-mono);
  }

  /* --- DESKTOP OPTIMIZATION (min-width: 1024px) --- */
  @media (min-width: 1024px) {
    #cro-leaks { padding: 100px 20px; }

    .leak-container {
      flex-direction: row;
      align-items: center;
      gap: 80px;
    }

    .leak-visual-col {
      flex: 1;
      order: 1; /* Visual Left */
    }

    .gap-content-col {
      flex: 1.2;
      order: 2; /* Content Right */
    }

    .funnel-card {
        padding: 40px;
        height: 520px;
    }

    /* Desktop Funnel Spacing & Shapes */
    .funnel-body { gap: 5px; }
    .f-stage { height: 60px; }
    
    /* Narrower funnel for desktop aesthetic */
    .fs-2 { width: 80%; margin-top: 20px; }
    .fs-3 { width: 60%; margin-top: 20px; }
    .fs-4 { width: 40%; margin-top: 20px; }
    .fs-5 { width: 20%; margin-top: 20px; }

    /* Show Leak Streams */
    .leak-stream {
      display: block;
      position: absolute;
      height: 4px;
      background: linear-gradient(90deg, var(--leak-red), transparent);
      right: -60px;
      top: 50%; transform: translateY(-50%);
      border-radius: 4px;
      animation: leakFlow 2s infinite linear;
      z-index: 0;
    }
    .ls-1 { width: 80px; } 
    .ls-2 { width: 60px; animation-delay: 0.5s; } 
    .ls-3 { width: 40px; animation-delay: 1s; }

    /* Move tags outside for desktop */
    .leak-tag {
        right: -110px;
        background: var(--leak-red-dim);
        border: none;
        padding: 4px 8px;
    }
    
    .gap-item:hover { transform: translateX(10px); }
  }

  /* --- KEYFRAMES --- */
  @keyframes leakFlow {
    0% { opacity: 0; transform: translateY(-50%) translateX(-20px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-50%) translateX(20px); }
  }
  
  
    /* =========================================
     SECTION 04: SERVICES STYLES (SCOPED)
     ========================================= */

  #cro-services {
    /* --- SCOPED VARIABLES --- */
    --cro-red: #FF5F56;
    --cro-red-dim: rgba(255, 95, 86, 0.1);
    --cro-purple: #A855F7;
    --cro-purple-dim: rgba(168, 85, 247, 0.1);
    --cro-teal: #28CCCD;
    --cro-teal-dim: rgba(40, 204, 205, 0.1);
    --cro-bg-card: rgba(13, 17, 23, 0.6);
    --text-light: #F8FAFC;
    --text-dim: #94A3B8;

    /* --- FONT SYSTEM --- */
    --font-head: 'Mona Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'Space Grotesk', monospace;

    position: relative;
    width: 100%;
    padding: 80px 20px;
    background: transparent;
    font-family: var(--font-body);
    color: var(--text-light);
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
  }
  
  #cro-services * { box-sizing: border-box; }

  /* --- ACCESSIBILITY: REDUCED MOTION --- */
  @media (prefers-reduced-motion: reduce) {
    .cro-card, .sc-icon-box, .card-bg-visual {
      animation: none !important;
      transition: none !important;
      transform: none !important;
    }
  }

  /* --- CONTAINER (MOBILE DEFAULT) --- */
  .serv-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  /* --- HEADER --- */
  .serv-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .serv-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: var(--cro-teal-dim);
    border: 1px solid rgba(40, 204, 205, 0.3);
    border-radius: 50px;
    color: var(--cro-teal);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .serv-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
  }

  /* --- SERVICES GRID (MOBILE: STACK) --- */
  .serv-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column default */
    gap: 30px;
    width: 100%;
  }

  /* Card Base */
  .cro-card {
    background: var(--cro-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* Mobile: Auto height based on content */
    height: auto; 
  }
  
  .cro-card:hover {
    transform: translateY(-5px);
    background: rgba(13, 17, 23, 0.9);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }

  /* Card Accents */
  .card-audit:hover { border-color: var(--cro-red); box-shadow: 0 15px 40px rgba(255, 95, 86, 0.15); }
  .card-testing:hover { border-color: var(--cro-purple); box-shadow: 0 15px 40px rgba(168, 85, 247, 0.15); }
  .card-tech:hover { border-color: var(--cro-teal); box-shadow: 0 15px 40px rgba(40, 204, 205, 0.15); }

  /* Icon Box */
  .sc-icon-box {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    background: rgba(255,255,255,0.05);
    margin-bottom: 24px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
  }
  
  .card-audit .sc-icon-box { color: var(--cro-red); }
  .card-testing .sc-icon-box { color: var(--cro-purple); }
  .card-tech .sc-icon-box { color: var(--cro-teal); }
  
  .cro-card:hover .sc-icon-box { transform: scale(1.1) rotate(5deg); }

  /* Typography */
  .sc-title {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
    position: relative; z-index: 2;
  }

  .sc-sub {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: block;
    position: relative; z-index: 2;
  }
  
  .card-audit .sc-sub { color: var(--cro-red); }
  .card-testing .sc-sub { color: var(--cro-purple); }
  .card-tech .sc-sub { color: var(--cro-teal); }

  .sc-desc {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
    position: relative; z-index: 2;
  }

  /* Features List */
  .sc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    position: relative; z-index: 2;
  }
  
  .sc-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.85rem; color: var(--text-dim);
    margin-bottom: 12px;
    line-height: 1.4;
  }
  .sc-list li i { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
  
  .card-audit li i { color: var(--cro-red); }
  .card-testing li i { color: var(--cro-purple); }
  .card-tech li i { color: var(--cro-teal); }

  /* Background Visuals */
  .card-bg-visual {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
  }
  .cro-card:hover .card-bg-visual { opacity: 0.2; }
  
  /* CSS-Only Visuals (No Images) */
  .bg-heat { background: radial-gradient(circle at 80% 20%, rgba(255, 95, 86, 0.4), transparent 50%); }
  .bg-split { background-image: linear-gradient(90deg, transparent 49%, rgba(168, 85, 247, 0.2) 50%, transparent 51%); background-size: 20px 100%; }
  .bg-tech { background-image: radial-gradient(rgba(40, 204, 205, 0.2) 1px, transparent 1px); background-size: 20px 20px; }

  /* --- DESKTOP OPTIMIZATION (min-width: 1024px) --- */
  @media (min-width: 1024px) {
    #cro-services { padding: 120px 20px; }

    .serv-container { gap: 60px; }

    /* Switch to 3 Columns */
    .serv-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    /* Uniform Height for Desktop */
    .cro-card {
      min-height: 480px;
      padding: 40px 30px;
    }

    .sc-title { font-size: 1.6rem; }
    .sc-sub { font-size: 0.8rem; }
    .cro-card:hover { transform: translateY(-8px); }
  }
  
  
    /* =========================================
     SECTION 05: PROCESS STYLES (SCOPED)
     ========================================= */

  #cro-process {
    /* --- SCOPED VARIABLES --- */
    --proc-red: #FF5F56;
    --proc-purple: #A855F7;
    --proc-green: #22C55E;
    --proc-teal: #28CCCD;
    --proc-bg-dark: #0B0F19;
    --proc-border: rgba(255, 255, 255, 0.1);
    --text-light: #F8FAFC;
    --text-dim: #94A3B8;

    /* --- FONT SYSTEM --- */
    --font-head: 'Mona Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'Space Grotesk', monospace;

    position: relative;
    width: 100%;
    padding: 80px 20px;
    background: transparent;
    font-family: var(--font-body);
    color: var(--text-light);
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
  }
  
  #cro-process * { box-sizing: border-box; }

  /* --- ACCESSIBILITY: REDUCED MOTION --- */
  @media (prefers-reduced-motion: reduce) {
    .radar-sweep, .t-card, .sg-bar, .visual-layer, .pi-desc {
      animation: none !important;
      transition: none !important;
      transform: none !important;
      opacity: 1 !important;
      max-height: auto !important;
    }
  }

  /* Background Grid */
  .proc-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(rgba(168, 85, 247, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(168, 85, 247, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
    pointer-events: none;
  }

  /* --- CONTAINER (MOBILE DEFAULT) --- */
  .proc-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Stack on mobile */
    gap: 40px;
    position: relative;
    z-index: 2;
    align-items: center;
  }

  /* --- LEFT: TIMELINE (Content) --- */
  .proc-content-col {
    width: 100%;
    max-width: 600px;
  }

  .proc-header { margin-bottom: 40px; text-align: center; }

  .proc-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    color: var(--proc-purple);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .proc-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
  }

  /* Timeline List */
  .proc-list {
    position: relative;
    border-left: 2px solid var(--proc-border);
    padding-left: 24px;
    margin-left: 10px; /* Space for dots */
  }

  .proc-item {
    position: relative;
    padding-bottom: 32px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
  }

  .proc-item:last-child { padding-bottom: 0; }
  .proc-item.active { opacity: 1; }

  /* Timeline Dot */
  .proc-item::before {
    content: '';
    position: absolute;
    left: -31px; /* Aligns with border */
    top: 4px;
    width: 12px; height: 12px;
    background: var(--proc-bg-dark);
    border: 2px solid #525C75;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2;
  }

  /* Dot Active States */
  .proc-item.active::before {
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  }

  /* Step Headings */
  .pi-head {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    color: var(--text-dim);
  }
  
  /* Color changes per step when active */
  .proc-item:nth-child(1).active .pi-head { color: var(--proc-red); }
  .proc-item:nth-child(2).active .pi-head { color: var(--proc-purple); }
  .proc-item:nth-child(3).active .pi-head { color: var(--proc-green); }
  
  .proc-item:nth-child(1).active::before { border-color: var(--proc-red); background: var(--proc-red); box-shadow: 0 0 15px rgba(255, 95, 86, 0.5); }
  .proc-item:nth-child(2).active::before { border-color: var(--proc-purple); background: var(--proc-purple); box-shadow: 0 0 15px rgba(168, 85, 247, 0.5); }
  .proc-item:nth-child(3).active::before { border-color: var(--proc-green); background: var(--proc-green); box-shadow: 0 0 15px rgba(34, 197, 94, 0.5); }

  .pi-title {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
  }

  .pi-sub {
    font-size: 0.9rem;
    font-weight: 600;
    color: #CBD5E1;
    margin-bottom: 8px;
    display: block;
  }

  .pi-desc {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    /* On mobile, we might want to show a bit or just rely on click */
  }
  
  .proc-item.active .pi-desc { max-height: 200px; }

  /* --- RIGHT: VISUAL (Blueprint) --- */
  .proc-visual-col {
    width: 100%;
    position: relative;
    height: 350px; /* Mobile Height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    overflow: hidden;
    order: -1; /* Visual on top for mobile context or keep bottom? Let's keep bottom to match flow */
    order: 2; 
  }

  .visual-layer {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
    pointer-events: none;
    padding: 20px;
    text-align: center;
  }
  
  .visual-layer.active { opacity: 1; transform: scale(1); pointer-events: auto; }

  /* Visual 1: Audit (Radar) */
  .radar-grid {
    width: 200px; height: 200px;
    border: 1px dashed rgba(255, 95, 86, 0.3);
    border-radius: 50%;
    position: relative;
  }
  .radar-sweep {
    position: absolute; top: 0; left: 0; width: 50%; height: 50%;
    background: linear-gradient(135deg, rgba(255, 95, 86, 0.2), transparent);
    border-radius: 100% 0 0 0;
    transform-origin: 100% 100%;
    animation: scanRadar 3s linear infinite;
  }
  .audit-icon { font-size: 2.5rem; color: var(--proc-red); position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }

  /* Visual 2: Testing (A/B) */
  .test-cards {
    display: flex; gap: 20px;
  }
  .t-card {
    width: 90px; height: 130px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--proc-purple); font-weight: 700; font-family: var(--font-mono);
  }
  .t-card.win { 
    border-color: var(--proc-green); 
    color: var(--proc-green); 
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2); 
    animation: pulseGreen 2s infinite; 
  }

  /* Visual 3: Scale (Graph) */
  .scale-graph {
    display: flex; gap: 10px; align-items: flex-end; height: 120px; margin-top: 20px;
  }
  .sg-bar { width: 20px; background: var(--proc-green); border-radius: 4px; animation: growBar 1s ease-out forwards; }
  .sg-1 { height: 30%; } .sg-2 { height: 50%; animation-delay: 0.1s; } .sg-3 { height: 70%; animation-delay: 0.2s; } .sg-4 { height: 100%; animation-delay: 0.3s; }
  .scale-icon { font-size: 3rem; color: var(--proc-green); margin-bottom: 20px; }

  /* Label Styling in Visual */
  .vis-label {
      margin-top: 20px;
      font-family: var(--font-mono);
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-size: 0.9rem;
  }

  /* ANIMATIONS */
  @keyframes scanRadar { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
  @keyframes pulseGreen { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
  @keyframes growBar { from { height: 0; } }

  /* --- DESKTOP OPTIMIZATION (min-width: 1024px) --- */
  @media (min-width: 1024px) {
    #cro-process { padding: 120px 20px; }

    .proc-container {
      flex-direction: row;
      align-items: flex-start; /* Align top */
      gap: 60px;
    }

    .proc-header { text-align: left; }
    
    .proc-visual-col {
        height: 500px;
        flex: 1.2;
        border-radius: 32px;
        order: 2;
    }
    
    .proc-content-col {
        flex: 1;
    }

    .pi-title { font-size: 1.5rem; }
    .pi-desc { font-size: 1rem; }
    
    .proc-item { padding-bottom: 40px; }
  }
  
  
    /* =========================================
     SECTION 06: USE CASES (SCOPED)
     ========================================= */

  #cro-cases {
    /* --- SCOPED VARIABLES --- */
    --case-red: #FF5F56;
    --case-purple: #A855F7;
    --case-teal: #28CCCD;
    --case-green: #22C55E;
    --case-bg-card: rgba(13, 17, 23, 0.6);
    --text-light: #F8FAFC;
    --text-dim: #94A3B8;

    /* --- FONT SYSTEM --- */
    --font-head: 'Mona Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'Space Grotesk', monospace;

    position: relative;
    width: 100%;
    padding: 80px 20px;
    background: transparent;
    font-family: var(--font-body);
    color: var(--text-light);
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
  }
  
  #cro-cases * { box-sizing: border-box; }

  /* --- ACCESSIBILITY: REDUCED MOTION --- */
  @media (prefers-reduced-motion: reduce) {
    .cro-case-card, .cc-bar-main {
      animation: none !important;
      transition: none !important;
      transform: none !important;
    }
  }

  /* --- CONTAINER (MOBILE DEFAULT) --- */
  .case-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  /* --- HEADER --- */
  .case-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .case-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    color: var(--case-green);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .case-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .text-teal { color: var(--case-teal); }

  /* --- CASE STUDY GRID (MOBILE: STACK) --- */
  .case-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column default */
    gap: 30px;
    width: 100%;
  }

  /* Card Base */
  .cro-case-card {
    background: var(--case-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* Theme Variables Default */
    --card-accent: #fff; 
  }
  
  .cro-case-card:hover {
    transform: translateY(-5px);
    background: rgba(13, 17, 23, 0.9);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }

  /* Specific Card Themes */
  .card-ecom { --card-accent: var(--case-red); }
  .card-saas { --card-accent: var(--case-purple); }
  .card-serv { --card-accent: var(--case-teal); }

  .cro-case-card:hover {
    border-color: var(--card-accent);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.05); /* Fallback */
  }
  
  /* Dynamic colored shadows on hover */
  .card-ecom:hover { box-shadow: 0 15px 40px rgba(255, 95, 86, 0.15); }
  .card-saas:hover { box-shadow: 0 15px 40px rgba(168, 85, 247, 0.15); }
  .card-serv:hover { box-shadow: 0 15px 40px rgba(40, 204, 205, 0.15); }

  /* Card Header */
  .cc-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
  }

  .cc-icon-box {
    width: 50px; height: 50px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    background: rgba(255,255,255,0.05);
    color: var(--card-accent);
  }

  .cc-type {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    font-weight: 700;
  }

  /* Metric Highlight */
  .cc-metric {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
    display: block;
    color: var(--card-accent);
  }

  .cc-metric-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 24px;
    display: block;
    font-family: var(--font-mono);
  }

  /* Visual: Mini Charts */
  .cc-visual {
    height: 60px;
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-end;
    padding: 10px;
    gap: 10px;
    position: relative;
    color: var(--card-accent); /* Sets currentColor */
  }
  
  .cc-bar { 
    width: 20%; 
    background: #64748B; 
    border-radius: 4px; 
    opacity: 0.3; 
    height: var(--bar-h, 30%); /* Variable for height */
  }
  
  .cc-bar-main { 
    width: 20%; 
    background: currentColor; 
    border-radius: 4px; 
    box-shadow: 0 0 10px currentColor; 
    height: var(--bar-main-h, 80%); /* Variable for height */
  }
  
  .arrow-up {
    position: absolute; top: 10px; right: 10px;
    font-size: 1rem; font-weight: 900;
    color: var(--card-accent);
  }

  /* Description */
  .cc-title {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
  }

  .cc-desc {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 24px;
  }

  /* Tags */
  .cc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
  }
  
  .cc-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    padding: 6px 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    color: var(--text-dim);
    font-weight: 600;
    text-transform: uppercase;
  }

  /* --- DESKTOP OPTIMIZATION (min-width: 1024px) --- */
  @media (min-width: 1024px) {
    #cro-cases { padding: 120px 20px; }

    .case-container { gap: 60px; }

    /* Switch to 3 Columns */
    .case-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .cro-case-card { padding: 40px 30px; }
    
    .cc-icon-box { width: 60px; height: 60px; font-size: 1.8rem; }
    
    .cc-title { font-size: 1.2rem; }
    
    .cro-case-card:hover { transform: translateY(-8px); }
  }
  
  
    /* =========================================
     SECTION 07: PRICING STYLES (SCOPED)
     ========================================= */

  #cro-pricing {
    /* --- SCOPED VARIABLES --- */
    --price-purple: #A855F7;
    --price-purple-dim: rgba(168, 85, 247, 0.1);
    --price-teal: #28CCCD;
    --price-green: #22C55E;
    --price-bg-card: rgba(13, 17, 23, 0.6);
    --text-light: #F8FAFC;
    --text-dim: #94A3B8;

    /* --- FONT SYSTEM --- */
    --font-head: 'Mona Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'Space Grotesk', monospace;

    position: relative;
    width: 100%;
    padding: 80px 20px;
    background: transparent;
    font-family: var(--font-body);
    color: var(--text-light);
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
  }
  
  #cro-pricing * { box-sizing: border-box; }

  /* --- ACCESSIBILITY: REDUCED MOTION --- */
  @media (prefers-reduced-motion: reduce) {
    .tier-card {
      transform: none !important;
      transition: none !important;
    }
  }

  /* Background Grid */
  .pricing-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
    pointer-events: none;
  }

  /* --- CONTAINER (MOBILE DEFAULT) --- */
  .pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  
  /* --- HEADER --- */
  .pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .pricing-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: var(--price-purple-dim);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    color: var(--price-purple);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .pricing-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .text-purple { color: var(--price-purple); }
  
  .pricing-desc {
    font-size: 1.125rem;
    color: var(--text-dim);
    line-height: 1.6;
  }

  /* --- PRICING GRID (MOBILE: STACK) --- */
  .tier-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single col default */
    gap: 30px;
    margin-bottom: 60px;
  }

  .tier-card {
    background: var(--price-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease;
  }
  
  .tier-card:hover {
    transform: translateY(-5px);
    background: rgba(13, 17, 23, 0.9);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  }

  /* Tier Highlights */
  .tier-starter { border-top: 4px solid var(--price-teal); }
  
  .tier-growth { 
    border-top: 4px solid var(--price-purple); 
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.1); 
  }
  
  .tier-ent { border-top: 4px solid var(--price-green); }

  /* Popular Badge */
  .popular-tag {
    position: absolute; 
    top: 0; right: 0; 
    background: var(--price-purple); 
    color: white; 
    font-family: var(--font-mono);
    font-size: 0.7rem; 
    font-weight: 700; 
    padding: 6px 16px; 
    border-bottom-left-radius: 12px;
    text-transform: uppercase;
  }

  /* Tier Content */
  .tier-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 10px;
  }

  .tier-name {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
  }

  .tier-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 5px;
  }
  .price-sub { font-size: 0.9rem; color: #64748B; font-weight: 500; }

  .tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    flex-grow: 1;
  }
  
  .tier-features li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.9rem; color: #CBD5E1; margin-bottom: 12px;
    line-height: 1.4;
  }
  
  .tf-icon { font-size: 1rem; margin-top: 3px; }
  
  .tier-starter .tf-icon { color: var(--price-teal); }
  .tier-growth .tf-icon { color: var(--price-purple); }
  .tier-ent .tf-icon { color: var(--price-green); }

  /* --- ROI SECTION --- */
  .roi-wrapper {
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.05) 0%, rgba(13, 17, 23, 0.8) 100%);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 32px;
    padding: 40px 24px; /* Mobile padding */
  }
  
  .roi-header { text-align: center; margin-bottom: 40px; }
  .roi-title { 
      font-size: 1.5rem; 
      font-weight: 700; 
      margin-bottom: 10px; 
      font-family: var(--font-head);
      color: #fff;
  }
  
  .roi-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single col default */
    gap: 30px;
  }
  
  .roi-card {
    background: #0B0F19;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .roi-val {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    display: block;
    background: linear-gradient(135deg, #fff 0%, #94A3B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .roi-label { 
      font-family: var(--font-mono);
      font-size: 0.85rem; 
      font-weight: 700; 
      margin-bottom: 12px; 
      text-transform: uppercase; 
      letter-spacing: 1px; 
  }
  .roi-text { font-size: 0.85rem; color: var(--text-dim); line-height: 1.5; }

  /* Color Variations */
  .val-teal { color: var(--price-teal); }
  .val-purple { color: var(--price-purple); }
  .val-green { color: var(--price-green); }

  /* --- DESKTOP OPTIMIZATION (min-width: 1024px) --- */
  @media (min-width: 1024px) {
    #cro-pricing { padding: 120px 20px; }
    
    .pricing-container { gap: 80px; }

    /* Switch to 3 Columns */
    .tier-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    
    .tier-card { padding: 40px 30px; }

    .roi-wrapper { padding: 60px; }
    .roi-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }
    .roi-title { font-size: 2rem; }
    .roi-val { font-size: 3.5rem; }
  }
  
  
    /* =========================================
     SECTION 08: FAQ & CTA (SCOPED)
     ========================================= */

  #cro-faq-cta {
    /* --- SCOPED VARIABLES --- */
    --faq-purple: #A855F7;
    --faq-purple-dim: rgba(168, 85, 247, 0.1);
    --faq-teal: #28CCCD;
    --faq-bg-card: rgba(13, 17, 23, 0.6);
    --text-light: #F8FAFC;
    --text-dim: #94A3B8;

    /* --- FONT SYSTEM --- */
    --font-head: 'Mona Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'Space Grotesk', monospace;

    position: relative;
    width: 100%;
    padding: 80px 20px;
    background: transparent;
    font-family: var(--font-body);
    color: var(--text-light);
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
  }
  
  #cro-faq-cta * { box-sizing: border-box; }

  /* --- ACCESSIBILITY: REDUCED MOTION --- */
  @media (prefers-reduced-motion: reduce) {
    .acc-content, .acc-icon, .cta-btn-primary {
      transition: none !important;
      transform: none !important;
    }
  }

  /* --- FAQ CONTAINER (MOBILE DEFAULT) --- */
  .faq-container {
    max-width: 1200px;
    margin: 0 auto 100px auto;
    display: flex;
    flex-direction: column; /* Stack on mobile */
    gap: 40px;
    position: relative;
    z-index: 2;
  }
  
  /* LEFT: Header */
  .faq-header-col {
    position: relative; /* Static on mobile */
    text-align: center; /* Center on mobile */
  }

  .faq-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: var(--faq-purple-dim);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    color: var(--faq-purple);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .faq-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
  }

  .faq-desc {
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 10px;
  }

  /* RIGHT: Accordion */
  .neural-accordion {
    width: 100%;
  }

  .acc-item {
    background: var(--faq-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .acc-item.active {
    background: rgba(13, 17, 23, 0.95);
    border-color: var(--faq-purple);
    box-shadow: 0 0 30px var(--faq-purple-dim);
  }

  .acc-header {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
    color: #fff;
  }

  .acc-title-text {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    padding-right: 16px;
    line-height: 1.4;
  }

  .acc-icon {
    color: #525C75;
    font-size: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
  }

  .acc-item.active .acc-icon {
    transform: rotate(45deg); 
    color: var(--faq-purple);
  }

  .acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
  }

  .acc-body {
    padding: 0 24px 24px 24px;
    color: var(--text-dim);
    line-height: 1.6;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 5px;
    padding-top: 16px;
  }
  
  .acc-body strong { color: #fff; font-weight: 600; }

  /* --- FINAL CTA SECTION --- */
  .final-cta-wrapper {
    position: relative;
    text-align: center;
    padding: 60px 24px;
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
  }

  .cta-bg-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  .cta-content { position: relative; z-index: 2; }

  .cta-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .text-highlight { color: var(--faq-teal); }

  .cta-text {
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-btn-row {
    display: flex;
    flex-direction: column; /* Mobile Stack */
    justify-content: center;
    gap: 16px;
    width: 100%;
  }

  .cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(90deg, var(--faq-purple) 0%, var(--faq-teal) 100%);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
  }
  .cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.6);
  }

  .cta-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease;
    width: 100%;
  }
  .cta-btn-outline:hover { background: rgba(255,255,255,0.05); }

  /* --- DESKTOP OPTIMIZATION (min-width: 1024px) --- */
  @media (min-width: 1024px) {
    #cro-faq-cta { padding: 120px 20px; }

    .faq-container {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 60px;
      align-items: start;
    }

    .faq-header-col {
      position: sticky;
      top: 150px;
      text-align: left;
    }

    .acc-header { padding: 25px 30px; }
    .acc-title-text { font-size: 1.1rem; }
    .acc-body { padding: 0 30px 30px 30px; font-size: 1rem; }
    .acc-icon { font-size: 1.2rem; }

    .final-cta-wrapper { padding: 80px 40px; }
    .cta-btn-row { flex-direction: row; width: auto; }
    .cta-btn-primary, .cta-btn-outline { width: auto; }
  }
  
  
  /* =========================================
   PERFORMANCE PATCH: MOBILE OPTIMIZATION
   ========================================= */
@media (max-width: 768px) {
  /* 1. Disable Heavy Glassmorphism (Huge CPU Saver) */
  .tier-card, 
  .cro-card, 
  .audit-card, 
  .final-container, 
  .acc-item, 
  .proc-visual-col,
  .funnel-card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #0B0F19 !important; /* Solid color is faster than transparent */
    box-shadow: none !important;
  }

  /* 2. Remove Heavy Background Animations */
  .wp-bg-glow, 
  .final-bg-glow, 
  .scan-beam, 
  .radar-sweep,
  .pricing-bg-grid,
  .proc-bg-grid {
    display: none !important;
    animation: none !important;
  }

  /* 3. Simplify Gradients */
  .btn-wp-primary,
  .cta-btn-primary {
    background: #385EFF !important; /* Solid color instead of gradient */
  }
}