
  /* Enerchy CTA - Inline Terminal Prompt */
  .enerchy-cta-inline {
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.95) 0%, rgba(15, 20, 25, 0.98) 100%);
    border: 2px solid #00ff88;
    border-radius: 4px;
    padding: 20px;
    margin: 40px 0;
    font-family: 'JetBrains Mono', 'Courier New', Monaco, monospace;
    color: #00ff88;
    box-shadow: 
      0 0 20px rgba(0, 255, 136, 0.3),
      inset 0 0 30px rgba(0, 255, 136, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
  }

  /* Animated Scan Line Effect */
  .enerchy-cta-inline::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg, 
      transparent 0%, 
      rgba(0, 255, 136, 0.15) 50%, 
      transparent 100%
    );
    animation: ctaScan 4s ease-in-out infinite;
    pointer-events: none;
  }

  @keyframes ctaScan {
    0% { 
      left: -100%; 
      opacity: 0.6;
    }
    50% {
      opacity: 0.3;
    }
    100% { 
      left: 100%; 
      opacity: 0.6;
    }
  }

  /* Hover State - Cyan Accent */
  .enerchy-cta-inline:hover {
    border-color: #00ffff;
    box-shadow: 
      0 0 30px rgba(0, 255, 255, 0.5),
      inset 0 0 40px rgba(0, 255, 255, 0.08),
      0 4px 20px rgba(0, 0, 0, 0.6);
    transform: translateY(-2px) scale(1.01);
  }

  .enerchy-cta-inline:hover::before {
    animation-duration: 2s;
  }

  /* Terminal Frame Elements */
  .cta-header,
  .cta-footer {
    color: #00ff88;
    font-size: 13px;
    letter-spacing: 0.8px;
    font-weight: 500;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
    user-select: none;
  }

  .cta-header {
    margin-bottom: 12px;
  }

  .cta-footer {
    margin-top: 12px;
  }

  /* Body Content */
  .cta-body {
    margin: 12px 0;
    font-size: 14px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
  }

  .cta-body > div {
    padding: 3px 0;
  }

  /* Prompt Line - Cyan Highlight */
  .cta-prompt {
    color: #00ffff;
    font-weight: 700;
    font-size: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
    letter-spacing: 0.3px;
    animation: promptPulse 2s ease-in-out infinite;
  }

  @keyframes promptPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
  }

  /* Command Line - Yellow */
  .cta-command {
    color: #ffff00;
    font-style: italic;
    margin: 6px 0;
    text-shadow: 0 0 8px rgba(255, 255, 0, 0.5);
    opacity: 0.95;
    letter-spacing: 0.2px;
  }

  /* Description Lines */
  .cta-description {
    color: #00ff88;
    opacity: 0.9;
    font-size: 13px;
  }

  /* Spacer Lines */
  .cta-spacer {
    color: #00ff88;
    opacity: 0.25;
  }

  /* Link Container */
  .cta-link {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
  }

  /* Terminal Link Styling */
  .terminal-link {
    color: #00ffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.3);
  }

  /* Animated Underline */
  .terminal-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #00ff88);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.8);
  }

  .terminal-link:hover {
    color: #ffffff;
    background: rgba(0, 255, 255, 0.15);
    border-color: #00ffff;
    text-shadow: 
      0 0 10px rgba(0, 255, 255, 0.8),
      0 0 20px rgba(0, 255, 255, 0.4);
    transform: translateX(3px);
  }

  .terminal-link:hover::after {
    width: 100%;
  }

  /* Bracket Animation on Hover */
  .terminal-link::before {
    content: "[ ";
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .terminal-link:hover::before {
    opacity: 1;
  }

  /* Icon Arrow */
  .cta-link::after {
    content: " →";
    margin-left: 4px;
    opacity: 0.7;
    transition: all 0.3s ease;
  }

  .enerchy-cta-inline:hover .cta-link::after {
    margin-left: 8px;
    opacity: 1;
  }

  /* Context Badge (optional) */
  .enerchy-cta-inline[data-context]::after {
    content: attr(data-context);
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, #ff2e4c 0%, #ff6b7a 100%);
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 0 0 0 8px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(255, 46, 76, 0.5);
  }

  .enerchy-cta-inline:hover[data-context]::after {
    opacity: 0.9;
  }

  /* Glitch Effect on Context Badge */
  @keyframes ctaGlitch {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-1px, 1px); }
    94% { transform: translate(1px, -1px); }
    96% { transform: translate(-1px, -1px); }
  }

  .enerchy-cta-inline:hover[data-context]::after {
    animation: ctaGlitch 0.6s ease-in-out 0.3s;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .enerchy-cta-inline {
      padding: 16px 12px;
      margin: 32px 0;
    }
    
    .cta-header,
    .cta-footer {
      font-size: 11px;
      letter-spacing: 0.5px;
    }

    .cta-body {
      font-size: 12px;
      line-height: 1.6;
    }

    .cta-prompt {
      font-size: 13px;
    }

    .cta-command {
      font-size: 11px;
      word-break: break-word;
    }

    .cta-description {
      font-size: 11px;
    }

    .terminal-link {
      font-size: 12px;
      padding: 2px 6px;
    }
  }

  /* Small Screens - Compact Mode */
  @media (max-width: 480px) {
    .enerchy-cta-inline {
      padding: 12px 10px;
      margin: 24px 0;
    }

    .cta-header,
    .cta-footer {
      font-size: 10px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .cta-body {
      font-size: 11px;
    }

    .cta-prompt {
      font-size: 12px;
    }

    .cta-command {
      font-size: 10px;
      font-style: normal;
    }
  }

  /* Print Styles - Hide CTAs */
  @media print {
    .enerchy-cta-inline {
      display: none;
    }
  }

  /* Dark Mode Compatibility (if needed) */
  @media (prefers-color-scheme: light) {
    .enerchy-cta-inline {
      background: linear-gradient(135deg, rgba(240, 242, 245, 0.98) 0%, rgba(235, 238, 242, 1) 100%);
      border-color: #00cc66;
      color: #00663d;
      box-shadow: 
        0 0 20px rgba(0, 204, 102, 0.2),
        inset 0 0 30px rgba(0, 204, 102, 0.05),
        0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .enerchy-cta-inline .cta-header,
    .enerchy-cta-inline .cta-footer,
    .enerchy-cta-inline .cta-description {
      color: #00663d;
    }

    .enerchy-cta-inline .cta-prompt {
      color: #0088cc;
    }

    .enerchy-cta-inline .cta-command {
      color: #cc8800;
    }

    .enerchy-cta-inline .terminal-link {
      color: #0088cc;
      border-color: rgba(0, 136, 204, 0.3);
      background: rgba(0, 136, 204, 0.05);
    }
  }

  /* Accessibility - High Contrast Mode */
  @media (prefers-contrast: high) {
    .enerchy-cta-inline {
      border-width: 3px;
      box-shadow: none;
    }

    .terminal-link {
      border-width: 2px;
      text-decoration: underline;
    }
  }

  /* Reduced Motion */
  @media (prefers-reduced-motion: reduce) {
    .enerchy-cta-inline,
    .enerchy-cta-inline::before,
    .terminal-link,
    .terminal-link::after,
    .cta-prompt {
      animation: none !important;
      transition: none !important;
    }

    .enerchy-cta-inline:hover {
      transform: none;
    }
  }

  /* Focus Styles for Accessibility */
  .terminal-link:focus {
    outline: 3px solid #00ffff;
    outline-offset: 4px;
    box-shadow: 0 0 0 6px rgba(0, 255, 255, 0.2);
  }

  .terminal-link:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
  }

  /* Screen Reader Only Content */
  .cta-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
