
  @import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

  :root {
    --purple-900: #3a0d54;
    --purple-800: #5A0B85;
    --purple-700: #640895;
    --purple-600: #5B2B74;
    --purple-500: #7a00df;
    --purple-400: #9b4dca;
    --purple-300: #c084fc;
    --purple-200: #e9d5ff;
    --purple-100: #F4E7FF;
    --accent-gold: #f59e0b;
    --accent-cyan: #06b6d4;
    --accent-green: #10b981;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f4f4f5;
    --gray-200: #e4e4e7;
    --gray-400: #a1a1aa;
    --gray-600: #63657e;
    --gray-800: #333333;
    --gray-900: #1a1a2e;
    --text-primary: #333333;
    --text-secondary: #555555;
    --text-muted: #63657e;
    --bg-light: #f8f9fa;
    --card-bg: #ffffff;
    --card-border: #e8e0f0;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Sora', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: var(--text-primary);
    overflow-x: hidden;
  }

  /* ── NOISE TEXTURE OVERLAY (disabled for clean theme) ── */
  body::before {
    display: none;
  }

  /* ── HERO ── */
  .new-roi-hero {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 160px 48px 80px !important;
    position: relative !important;
    overflow: hidden !important;
    text-align: center !important;
    background: linear-gradient(135deg, #7502AF 0%, #5A0B85 100%) !important;
  }

  .new-roi-hero-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, #7502AF 0%, #5A0B85 100%) !important;
    z-index: 0 !important;
  }

  .new-roi-hero-grid {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: 
      linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) !important;
    background-size: 60px 60px !important;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 80%);
    z-index: 1 !important;
  }

  .new-roi-hero-content { position: relative !important; z-index: 2 !important; max-width: 800px; }

  .new-roi-hero-eyebrow {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 100px;
    padding: 6px 16px 6px 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 28px;
    animation: fadeUp 0.7s ease both;
  }

  .new-roi-eyebrow-dot {
    width: 6px; height: 6px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse 2s ease infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  .new-roi-hero h1 {
    font-family: 'Sora', sans-serif !important;
    font-size: clamp(40px, 6vw, 72px) !important;
    font-weight: 800 !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 24px !important;
    animation: fadeUp 0.7s 0.1s ease both;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
  }

  .new-roi-hero h1 em {
    font-style: normal !important;
    background: linear-gradient(135deg, #e9d5ff 0%, #ffffff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
  }

  .new-roi-hero-sub {
    font-size: 18px !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6 !important;
    max-width: 560px;
    margin: 0 auto 48px !important;
    animation: fadeUp 0.7s 0.2s ease both;
  }

  .new-roi-hero-cta-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.3s ease both;
  }

  .new-roi-btn-primary {
    background: var(--white);
    color: var(--purple-800);
    padding: 14px 32px;
    border-radius: 12px;
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 8px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
  }

  .new-roi-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    background: #f0e6f6;
  }

  .new-roi-btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 14px 28px;
    border-radius: 12px;
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 400;
    border: 1px solid var(--card-border);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .new-roi-btn-ghost:hover {
    border-color: var(--purple-600);
    color: var(--purple-600);
    background: var(--purple-100);
  }

  .new-roi-hero-stats {
    position: relative; z-index: 2;
    display: flex;
    gap: 0;
    margin-top: 72px;
    animation: fadeUp 0.7s 0.4s ease both;
  }

  .new-roi-hero-stat {
    padding: 24px 40px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.2);
  }
  .new-roi-hero-stat:last-child { border-right: none; }

  .new-roi-hero-stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
  }

  .new-roi-hero-stat-label {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

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

  /* ── SECTION BASE ── */
  section {
    padding: 100px 48px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .new-roi-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--purple-800);
    margin-bottom: 16px;
  }

  .new-roi-section-label::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--purple-800);
  }

  .new-roi-section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text-primary);
  }

  .new-roi-section-sub {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 56px;
  }

  /* ── CALCULATOR SECTION ── */
  .new-roi-calc-wrapper {
    background: var(--bg-light);
    position: relative;
  }

  .new-roi-calc-wrapper::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(91, 43, 116, 0.2), transparent);
  }

  .new-roi-calc-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
  }

  /* ── CARD ── */
  .new-roi-card {
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 8px 20px rgba(0, 0, 0, 0.06);
  }

  .new-roi-card:hover {
    border-color: rgba(91, 43, 116, 0.25);
    box-shadow: 0 8px 30px rgba(91, 43, 116, 0.1);
  }

  .new-roi-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-600), var(--purple-500));
    border-radius: 20px 20px 0 0;
  }

  .new-roi-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
  }

  .new-roi-card-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .new-roi-card-icon.new-roi-purple { background: var(--purple-100); }
  .new-roi-card-icon.new-roi-cyan { background: rgba(6,182,212,0.1); }

  .new-roi-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-primary);
  }

  .new-roi-card-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
  }

  /* ── FORM INPUTS ── */
  .new-roi-field-group { display: flex; flex-direction: column; gap: 18px; }

  .new-roi-field {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .new-roi-field label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .new-roi-field input {
    background: var(--bg-light);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    color: var(--text-primary);
    outline: none;
    transition: all 0.2s ease;
    width: 100%;
  }

  .new-roi-field input::placeholder { color: var(--gray-400); }

  .new-roi-field input:focus {
    border-color: var(--purple-600);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(91, 43, 116, 0.1);
  }

  .new-roi-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* ── TOGGLE OFFERINGS ── */
  .new-roi-offerings-section { grid-column: 1 / -1; }

  .new-roi-offerings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 0;
  }

  .new-roi-offering-module {
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: visible;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 8px 20px rgba(0, 0, 0, 0.06);
    
  }

  .new-roi-offering-module:hover {
    border-color: rgba(91, 43, 116, 0.25);
    box-shadow: 0 8px 30px rgba(91, 43, 116, 0.1);

  }

  .new-roi-offering-module-header {
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .new-roi-offering-module-title {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text-primary);
  }

  .new-roi-opt-in-badge {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--purple-100);
    border: 1px solid rgba(91, 43, 116, 0.2);
    color: var(--purple-600);
    padding: 4px 10px;
    border-radius: 100px;
  }

  .new-roi-offering-items { padding: 16px 24px; display: flex; flex-direction: column; gap: 10px; overflow: visible; }

  .new-roi-offering-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--bg-light);
    transition: background 0.2s ease;
    cursor: pointer;
    position: relative;
    overflow: visible;
  }

  .new-roi-offering-item:hover { background: var(--purple-100); }

  .new-roi-offering-item-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 400;
  }

  /* Toggle Switch */
  .new-roi-toggle {
    position: relative;
    width: 44px; height: 24px;
    flex-shrink: 0;
  }

  .new-roi-toggle input { opacity: 0; width: 0; height: 0; }

  .new-roi-toggle-track {
    position: absolute;
    inset: 0;
    background: var(--gray-200);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
  }

  .new-roi-toggle-track::after {
    content: '';
    position: absolute;
    width: 18px; height: 18px;
    left: 2px; top: 2px;
    background: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  }

  .new-roi-toggle input:checked + .new-roi-toggle-track {
    background: var(--purple-600);
    border-color: var(--purple-600);
  }

  .new-roi-toggle input:checked + .new-roi-toggle-track::after {
    transform: translateX(20px);
    background: white;
  }

  /* ── CTA CALCULATE BUTTON ── */
  .new-roi-calc-action {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 8px;
  }

  .new-roi-btn-calculate {
    background: var(--purple-600);
    color: white;
    padding: 18px 56px;
    border-radius: 12px;
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 40px rgba(91, 43, 116, 0.2);
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .new-roi-btn-calculate:hover {
    transform: translateY(-3px);
    background: var(--purple-800);
    box-shadow: 0 8px 30px rgba(91, 43, 116, 0.3);
  }

  .new-roi-btn-calculate .new-roi-arrow { transition: transform 0.2s ease; }
  .new-roi-btn-calculate:hover .new-roi-arrow { transform: translateX(4px); }

  .new-roi-calc-note {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* ── GATE MODAL ── */
  .new-roi-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(16px);
    z-index: 999999 !important;
    display: none !important;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }

  .new-roi-modal-overlay.new-roi-active { display: flex !important; }

  .new-roi-modal {
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 48px;
    max-width: 520px;
    width: 100%;
    position: relative;
    overflow: visible;
    overflow-y: auto;
    
    max-height: 90vh;
    animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000000 !important;
  }

  @keyframes modalIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
  }

  .new-roi-modal::before {
    content: '';
    position: absolute;
    top: -80px; left: 50%; transform: translateX(-50%);
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(91, 43, 116, 0.06), transparent 70%);
  }

  .new-roi-modal-badge {
    width: 56px; height: 56px;
    background: var(--purple-100);
    border: 1px solid rgba(91, 43, 116, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    position: relative;
  }

  .new-roi-modal h2 {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 10px;
    position: relative;
    color: var(--text-primary);
  }

  .new-roi-modal p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
    position: relative;
  }

  .new-roi-modal-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    margin-bottom: 24px;
  }

  .new-roi-modal-field input {
    background: var(--bg-light);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 14px 18px;
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    color: var(--text-primary);
    outline: none;
    transition: all 0.2s ease;
    width: 100%;
  }

  .new-roi-modal-field input::placeholder { color: var(--gray-400); }
  .new-roi-modal-field input:focus {
    border-color: var(--purple-600);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(91, 43, 116, 0.1);
  }

  .new-roi-modal-submit {
    width: 100%;
    background: var(--purple-600);
    color: white;
    padding: 16px;
    border-radius: 12px;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(91, 43, 116, 0.25);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .new-roi-modal-submit:hover {
    transform: translateY(-2px);
    background: var(--purple-800);
    box-shadow: 0 8px 25px rgba(91, 43, 116, 0.35);
  }

  .new-roi-modal-disclaimer {
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 14px;
    position: relative;
  }

  /* ── FORMINATOR FORM INSIDE MODAL ── */
  .new-roi-modal .forminator-custom-form {
    position: relative !important;
    z-index: 1 !important;
  }

  .new-roi-modal .forminator-custom-form .forminator-field input {
    background: var(--bg-light) !important;
    border: 1px solid var(--card-border) !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    font-family: 'Sora', sans-serif !important;
    font-size: 15px !important;
    color: var(--text-primary) !important;
  }

  .new-roi-modal .forminator-custom-form .forminator-field input:focus {
    border-color: var(--purple-600) !important;
    background: var(--white) !important;
    box-shadow: 0 0 0 3px rgba(91, 43, 116, 0.1) !important;
  }

  .new-roi-modal .forminator-custom-form .forminator-button-submit {
    width: 100% !important;
    background: var(--purple-600) !important;
    color: white !important;
    padding: 16px !important;
    border-radius: 12px !important;
    font-family: 'Sora', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 15px rgba(91, 43, 116, 0.25) !important;
  }

  .new-roi-modal .forminator-custom-form .forminator-button-submit:hover {
    transform: translateY(-2px) !important;
    background: var(--purple-800) !important;
    box-shadow: 0 8px 25px rgba(91, 43, 116, 0.35) !important;
  }

  /* ── RESULTS SECTION ── */
  .new-roi-results-section {
    display: none;
    padding: 100px 48px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .new-roi-results-section.new-roi-visible { display: block; }

  .new-roi-results-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
  }

  .new-roi-roi-hero-number {
    font-family: 'Sora', sans-serif;
    font-size: clamp(56px, 8vw, 96px);
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
  }

  .new-roi-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
  }

  .new-roi-result-card {
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 8px 20px rgba(0, 0, 0, 0.06);
  }

  .new-roi-result-card:hover {
    border-color: rgba(91, 43, 116, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(91, 43, 116, 0.1);
  }

  .new-roi-result-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-600), var(--accent-cyan));
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .new-roi-result-card:hover::after { opacity: 1; }

  .new-roi-result-card-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .new-roi-result-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
  }

  .new-roi-result-dot.new-roi-manual { background: var(--gray-400); }
  .new-roi-result-dot.new-roi-edmo { background: var(--purple-600); }
  .new-roi-result-dot.new-roi-roi { background: var(--accent-green); }
  .new-roi-result-dot.new-roi-savings { background: var(--accent-cyan); }

  .new-roi-result-value {
    font-family: 'Sora', sans-serif;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
  }

  .new-roi-result-value.new-roi-positive { color: var(--accent-green); }
  .new-roi-result-value.new-roi-neutral { color: var(--text-primary); }
  .new-roi-result-value.new-roi-savings { color: var(--purple-600); }

  .new-roi-result-change {
    font-size: 12px;
    color: var(--text-muted);
  }

  .new-roi-result-section-title {
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 32px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .new-roi-result-section-title span {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 2px;
    background: var(--purple-500);
  }

  .new-roi-total-card {
    background: var(--purple-100);
    border: 1px solid rgba(91, 43, 116, 0.15);
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    overflow: hidden;
  }

  .new-roi-total-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(91, 43, 116, 0.08), transparent 70%);
  }

  .new-roi-total-metric { position: relative; }

  .new-roi-total-metric-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
  }

  .new-roi-total-metric-value {
    font-family: 'Sora', sans-serif;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .new-roi-total-metric-value.new-roi-green {
    background: linear-gradient(135deg, var(--accent-green), #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .new-roi-total-metric-value.new-roi-white { color: var(--text-primary); }

  .new-roi-total-metric-value.new-roi-purple {
    background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .new-roi-total-metric-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
  }

  /* ── CTA BAND ── */
  .new-roi-cta-band {
    background: linear-gradient(135deg, #7502AF 0%, #5A0B85 100%);
    border-top: none;
    border-bottom: none;
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .new-roi-cta-band::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06), transparent 70%);
    pointer-events: none;
  }

  .new-roi-cta-band h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.03em;
    max-width: 600px;
    margin: 0 auto 20px;
    position: relative;
    color: var(--white);
  }

  .new-roi-cta-band p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 440px;
    margin: 0 auto 40px;
    font-weight: 300;
    position: relative;
  }

  .new-roi-cta-band .new-roi-btn-primary { position: relative; }

 
  /* ── STEP INDICATOR ── */
  .new-roi-step-bar {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 56px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 48px;
  }

  .new-roi-step {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    position: relative;
  }

  .new-roi-step:not(:last-child)::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(91, 43, 116, 0.2), var(--card-border));
    margin: 0 16px;
  }

  .new-roi-step-num {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
    background: var(--bg-light);
    transition: all 0.3s ease;
  }

  .new-roi-step.new-roi-active .new-roi-step-num {
    background: var(--purple-600);
    border-color: var(--purple-600);
    color: white;
    box-shadow: 0 0 12px rgba(91, 43, 116, 0.3);
  }

  .new-roi-step-text { font-size: 12px; font-weight: 500; color: var(--text-muted); }
  .new-roi-step.new-roi-active .new-roi-step-text { color: var(--text-primary); }

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: transparent; }
  ::-webkit-scrollbar-thumb { background: var(--purple-600); border-radius: 3px; }
  ::-webkit-scrollbar-thumb:hover { background: var(--purple-800); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .new-roi-hero { padding: 100px 24px 64px; }
    .new-roi-hero-stats { flex-direction: column; gap: 0; }
    .new-roi-hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
    section { padding: 64px 24px; }
    .new-roi-calc-layout { grid-template-columns: 1fr; }
    .new-roi-offerings-grid { grid-template-columns: 1fr; }
    .new-roi-results-grid { grid-template-columns: 1fr; }
    .new-roi-total-card { grid-template-columns: 1fr; gap: 24px; }
    footer { flex-direction: column; gap: 16px; text-align: center; }
    .new-roi-step-bar { padding: 0 24px; }
    .new-roi-step-text { display: none; }
    .new-roi-cta-band { padding: 60px 24px; }
    .new-roi-modal { padding: 32px 24px; }
    .new-roi-results-section { padding: 64px 24px; }
  }

  /* ── PROGRESS BAR ── */
  .new-roi-progress-bar-wrap {
    grid-column: 1 / -1;
    background: var(--card-border);
    border-radius: 100px;
    height: 4px;
    overflow: hidden;
    margin-top: 8px;
  }

  .new-roi-progress-bar-fill {
    height: 100%;
    background:  var(--purple-600);
    border-radius: 100px;
    width: 0%;
    transition: width 0.5s ease;
  }

  /* ── TOOLTIP ── */
  .new-roi-has-tooltip { position: relative; cursor: help; }
  .new-roi-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%; transform: translateX(-50%);
    background: var(--text-primary);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    color: var(--white);
    white-space: normal;
    width: 240px;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 10;
  }
  .new-roi-has-tooltip:hover .new-roi-tooltip { opacity: 1; }

  .new-roi-info-icon {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--purple-100);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: var(--purple-600);
    margin-left: 4px;
    vertical-align: middle;
    cursor: help;
  }

  /* divider stripe */
  .new-roi-full-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(91, 43, 116, 0.15), transparent);
    margin: 0;
  }

/* ── Custom Toast Alert ── */
.new-roi-toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-120%);
  z-index: 999999;
  background: #fff;
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-left: 4px solid #dc2626;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(220, 38, 38, 0.08);
  padding: 14px 44px 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 480px;
  width: max-content;
  font-family: 'Sora', sans-serif;
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
  pointer-events: none;
}

.new-roi-toast.new-roi-toast-show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.new-roi-toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.new-roi-toast-msg {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a2e;
  line-height: 1.45;
}

.new-roi-toast-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 18px;
  color: #94a3b8;
  cursor: pointer;
  padding: 2px 6px;
  line-height: 1;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}

.new-roi-toast-close:hover {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.06);
}
