    :root {
      --primary-blue: #002d72;
      --accent-blue: #1da1f2;
      --accent-blue-dark: #0077b6;
      --light-blue: #4a90e2;
      --success-green: #2ecc71;
      --warning-orange: #f39c12;
      --background-dark: #0a1628;
      --background-light: #f8fafc;
      --text-dark: #1a202c;
      --text-light: #718096;
      --border-light: #e2e8f0;
      --card-bg: #ffffff;
      --gradient-primary: linear-gradient(135deg, #002d72 0%, #1da1f2 100%);
      --gradient-secondary: linear-gradient(135deg, #4a90e2 0%, #2ecc71 100%);
      --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

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

    html {
      scroll-padding-top: 100px;
      /* NEW: Offset for sticky nav */
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
      color: var(--text-dark);
      background: var(--background-light);
      overflow-x: hidden;
    }

    /* --- Custom Scrollbar Styles for Webkit Browsers --- */
    /* Width */
    ::-webkit-scrollbar {
      width: 10px;
    }

    /* Track */
    ::-webkit-scrollbar-track {
      background: var(--background-dark);
      /* Dark background for the track */
    }

    /* Handle */
    ::-webkit-scrollbar-thumb {
      background: var(--accent-blue);
      /* Your accent blue for the handle */
      border-radius: 5px;
    }

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
      background: var(--primary-blue);
      /* A darker blue on hover */
    }


    /* --- Style for the final CTA button (already orange) --- */
    .final-cta .cta-button {
      background-color: var(--warning-orange);
      color: white;
      /* Ensures text remains white */
    }

    .final-cta .cta-button:hover {
      background-color: #e68a00;
      /* This is a slightly darker orange for the hover effect */
      transform: translateY(-2px);
      box-shadow: var(--shadow-large);
    }

    /* --- Pricing Section Styles --- */
    /* UPDATED: Pricing container to support two cards */
    .pricing-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      justify-content: center;
      align-items: stretch;
      /* Make cards same height */
      margin-top: 60px;
      max-width: 950px;
      margin-left: auto;
      margin-right: auto;
    }

    @media (min-width: 768px) {
      .pricing-container {
        grid-template-columns: 1fr 1fr;
      }
    }

    .pricing-card {
      background: var(--card-bg);
      border-radius: 20px;
      padding: 40px;
      box-shadow: var(--shadow-large);
      border: 1px solid var(--border-light);
      max-width: 450px;
      width: 100%;
      text-align: center;
      border-top: 5px solid var(--primary-blue);
      transition: all 0.3s ease;
      display: flex;
      /* NEW: for flex-column layout */
      flex-direction: column;
      /* NEW: stack items vertically */
    }

    .pricing-card:hover {
      transform: translateY(-8px);
    }

    .pricing-card .plan-name {
      font-size: 1.8rem;
      font-weight: 600;
      color: var(--primary-blue);
      margin-bottom: 20px;
    }

    .pricing-card .price-display {
      font-size: clamp(3rem, 10vw, 4rem);
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .pricing-card .price-display .price-term {
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--text-light);
      display: block;
    }

    .pricing-features {
      list-style: none;
      margin: 30px 0;
      padding: 0;
      text-align: left;
      display: inline-block;
      flex-grow: 1;
      /* NEW: Pushes button to bottom */
    }

    .pricing-features li {
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      font-size: 1.05rem;
      color: var(--text-dark);
    }

    .pricing-features svg {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      color: var(--success-green);
      margin-right: 12px;
    }

    /* NEW: Style for the second pricing card */
    .pricing-card.secondary {
      border-top-color: var(--accent-blue);
    }

    .pricing-card .price-display.contact {
      font-size: clamp(2.5rem, 8vw, 3rem);
      color: var(--text-dark);
    }

    /* NEW: Ensure CTA buttons in pricing cards fill width */
    .pricing-card .cta-button {
      width: 100%;
      margin-top: auto;
      /* Pushes button to bottom */
    }


    /* UPDATED: Pricing Section Styles - Pattern added, original structure retained */
    #pricing {
      background-color: var(--background-dark);
      padding-top: 100px;
      padding-bottom: 100px;
      margin-top: 80px;
      margin-bottom: 80px;
      position: relative;
      /* Added for pattern */
      overflow: hidden;
      /* Added for pattern */
    }

    #pricing::before {
      /* NEW: Pattern for pricing section */
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      /* Subtle square pattern */
      background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h10v10H0zM10 10h10v10H10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
      z-index: 1;
    }

    #pricing .section-title,
    #pricing .section-subtitle,
    #pricing .pricing-container {
      /* Ensure content is above pattern */
      position: relative;
      z-index: 2;
    }

    #pricing .section-title {
      color: white;
    }

    #pricing .section-subtitle {
      color: rgba(255, 255, 255, 0.85);
    }


    /* --- ADJUST HERO PADDING --- */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: linear-gradient(-45deg, #0a1628, #1e4a8a, #2563eb, #0f2744, #1e3a8a);
      background-size: 400% 400%;
      background-position: 50% 50%;
      animation: gradientShift 8s ease infinite;
      color: white;
      overflow: hidden;
      padding-top: 180px;
      padding-bottom: 120px;
    }

    @keyframes gradientShift {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    /* UPDATED: Hero background pattern and animation */
    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      /* NEW: Subtle sound wave pattern */
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,192L48,170.7C96,149,192,107,288,106.7C384,107,480,149,576,186.7C672,224,768,256,864,245.3C960,235,1056,181,1152,149.3C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
      background-size: 150% auto;
      /* Make pattern wider than screen */
      background-position: center bottom;
      background-repeat: no-repeat;
      opacity: 0.1;
      /* animation: flow-wave 20s linear infinite; -- REMOVED */
    }

    /* REMOVED @keyframes flow-wave */

    /* END: Hero background update */

    /* --- UPDATED HEADER CSS --- */
    /* --- UPDATED HEADER CSS --- */
    /* .page-header removed as we are using sticky-nav */

    /* CHANGE: Set the new logo height */
    .header-logo img {
      height: 160px;
    }

    /* Keep header-contact for now if used elsewhere, but it was part of page-header */


    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      padding: 0 20px;
      animation: fadeInUp 1s ease-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero h1 {
      font-size: clamp(2.5rem, 5vw, 4.2rem);
      /* Slightly larger */
      font-weight: 800;
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      color: white;
    }

    .hero p {
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      max-width: 700px;
      margin: 0 auto 2.5rem;
      /* Increased margin */
      opacity: 0.95;
      font-weight: 400;
    }

    /* --- NEW: Supercharged CRM Graphic --- */
    .hero-visual-container {
      margin-top: 60px;
      perspective: 1000px;
      animation: fadeInUp 1s ease-out 0.3s backwards;
    }

    /* NEW: Mobile Hero Visual Styles */
    .hero-visual-mobile {
      display: none;
      /* Hidden by default */
      margin-top: 40px;
      width: 100%;
      animation: fadeInUp 1s ease-out 0.3s backwards;
    }

    .crm-mockup {
      background: #f8fafc;
      border-radius: 12px;
      box-shadow:
        0 20px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
      width: 100%;
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      overflow: hidden;
      text-align: left;
      min-height: 450px;
      /* CHANGED: Allow growth */
      height: auto;
      /* CHANGED: Allow growth */
      position: relative;
    }

    .crm-sidebar {
      width: 60px;
      background: #1e293b;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 20px;
      gap: 20px;
      flex-shrink: 0;
    }

    .crm-nav-item {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.1);
    }

    .crm-nav-item.active {
      background: var(--accent-blue);
    }

    .crm-content {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      background: #f1f5f9;
    }

    .crm-header {
      height: 50px;
      background: white;
      border-bottom: 1px solid #e2e8f0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
    }

    .crm-search-bar {
      width: 200px;
      height: 30px;
      background: #f1f5f9;
      border-radius: 6px;
    }

    .crm-user-profile {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #cbd5e1;
    }

    .crm-body {
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      overflow: hidden;
    }

    .crm-client-header {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 10px;
    }

    .client-avatar {
      width: 48px;
      height: 48px;
      background: #3b82f6;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.2rem;
    }

    .client-info .client-name {
      font-weight: 700;
      color: #1e293b;
      font-size: 1.1rem;
    }

    .client-info .client-status {
      font-size: 0.85rem;
      color: #64748b;
      background: #e2e8f0;
      padding: 2px 8px;
      border-radius: 12px;
      display: inline-block;
      margin-top: 4px;
    }

    .crm-feed {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .crm-feed-item {
      display: flex;
      gap: 15px;
      padding: 15px;
      background: white;
      border-radius: 8px;
      border: 1px solid #e2e8f0;
      align-items: flex-start;
    }

    .feed-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #e2e8f0;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .feed-icon svg {
      width: 16px;
      height: 16px;
      color: #64748b;
    }

    .feed-text {
      font-size: 0.95rem;
      color: #334155;
      margin-top: 6px;
    }

    /* THE HERO ELEMENT */
    .crm-feed-item.ai-highlight {
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid var(--accent-blue);
      box-shadow: 0 10px 25px -5px rgba(29, 161, 242, 0.15);
      flex-direction: column;
      gap: 10px;
      position: relative;
      overflow: hidden;
      animation: pulse-border 3s infinite;
    }

    @keyframes pulse-border {
      0% {
        border-color: var(--accent-blue);
        box-shadow: 0 0 0 0 rgba(29, 161, 242, 0.4);
      }

      70% {
        border-color: var(--accent-blue);
        box-shadow: 0 0 0 10px rgba(29, 161, 242, 0);
      }

      100% {
        border-color: var(--accent-blue);
        box-shadow: 0 0 0 0 rgba(29, 161, 242, 0);
      }
    }

    .ai-badge {
      background: linear-gradient(135deg, #002d72 0%, #1da1f2 100%);
      color: white;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 20px;
      align-self: flex-start;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .ai-badge svg {
      width: 12px;
      height: 12px;
    }

    .ai-summary-content {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .ai-row {
      font-size: 0.9rem;
      color: #334155;
      line-height: 1.5;
      display: flex;
      gap: 8px;
    }

    .ai-row strong {
      color: #0f172a;
      min-width: 70px;
    }

    .sentiment-positive {
      color: #16a34a;
      font-weight: 600;
      background: #dcfce7;
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 0.8rem;
    }

    /* Mobile Hide */
    @media (max-width: 768px) {
      .hero-visual-container {
        display: none;
        /* Hide complex graphic on mobile to save space */
      }

      .hero-visual-mobile {
        display: block;
        /* Show simplified graphic on mobile */
      }

      .hero {
        padding-bottom: 80px;
        /* Ensure padding exists when graphic is hidden */
      }
    }

    /* --- NEW --- CTA container */
    .hero-cta-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .cta-button {
      display: inline-block;
      padding: 16px 32px;
      color: white;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-medium);
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    /* --- NEW --- Standardized Orange CTA Button */
    .cta-button.cta-orange {
      background: var(--warning-orange);
    }

    .cta-button.cta-orange:hover {
      background: #e68a00;
      /* Darker orange */
      transform: translateY(-2px);
      box-shadow: var(--shadow-large);
    }

    /* Original Green Button (no longer primary) */
    .cta-button.primary {
      background: var(--success-green);
    }

    .cta-button.primary:hover {
      background: #27ae60;
      transform: translateY(-2px);
      box-shadow: var(--shadow-large);
    }

    .cta-button.secondary {
      background: transparent;
      border: 2px solid white;
    }

    .cta-button.secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
    }

    .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s ease;
    }

    .cta-button:hover::before {
      left: 100%;
    }

    .section {
      padding: 80px 20px;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      /* Needed for positioning the scroll indicator */
      /* Reverted padding-bottom */
    }

    /* Removed .section-nav-arrow styles */


    .section-title {
      text-align: center;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--primary-blue);
      position: relative;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: var(--gradient-secondary);
      border-radius: 2px;
    }

    .section-subtitle {
      text-align: center;
      font-size: 1.2rem;
      color: var(--text-light);
      margin-bottom: 60px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 60px;
    }

    .grid.features-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .card {
      background: var(--card-bg);
      border-radius: 20px;
      padding: 40px 30px;
      box-shadow: var(--shadow-soft);
      transition: all 0.3s ease;
      border: 1px solid var(--border-light);
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-secondary);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .card:hover::before {
      transform: scaleX(1);
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-large);
    }

    .flow-icon {
      width: 80px;
      height: 80px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: var(--accent-blue);
      position: relative;
      overflow: hidden;
    }

    /* NEW: UI Snippet Styles */
    .snippet-card {
      width: 50px;
      height: 36px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 6px;
      padding: 6px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .snippet-row {
      display: flex;
      gap: 4px;
      align-items: center;
    }

    .snippet-avatar {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--accent-blue);
    }

    .snippet-lines {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .snippet-line {
      height: 2px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 1px;
    }

    .snippet-line.short {
      width: 60%;
    }

    .snippet-line.long {
      width: 90%;
    }

    .snippet-status {
      width: 100%;
      height: 2px;
      background: #2ecc71;
      margin-top: auto;
      border-radius: 1px;
    }

    .snippet-waveform {
      display: flex;
      gap: 3px;
      align-items: center;
      height: 20px;
    }

    .wave-bar {
      width: 4px;
      background: var(--accent-blue);
      border-radius: 2px;
      animation: wave 1s infinite ease-in-out;
    }

    .wave-bar:nth-child(1) {
      height: 10px;
      animation-delay: 0s;
    }

    .wave-bar:nth-child(2) {
      height: 16px;
      animation-delay: 0.1s;
    }

    .wave-bar:nth-child(3) {
      height: 8px;
      animation-delay: 0.2s;
    }

    .wave-bar:nth-child(4) {
      height: 20px;
      animation-delay: 0.3s;
    }

    .wave-bar:nth-child(5) {
      height: 12px;
      animation-delay: 0.4s;
    }

    .wave-bar:nth-child(6) {
      height: 6px;
      animation-delay: 0.5s;
    }

    @keyframes wave {

      0%,
      100% {
        transform: scaleY(1);
      }

      50% {
        transform: scaleY(1.5);
      }
    }

    .card-icon svg {
      width: 32px;
      height: 32px;
      stroke-width: 1.5;
    }

    /* UPDATED: For integration icons to be their actual logo */
    .card-icon.logo-icon {
      background: none;
      width: 90px;
      /* Increased size for all logos */
      height: 90px;
      /* Increased size for all logos */
      border-radius: 0;
      /* Remove rounded corners */
      margin: 0 auto 24px auto;
      /* Center the logo */
    }

    .card-icon.logo-icon img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    .card h3 {
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 16px;
      color: var(--primary-blue);
    }

    .card p {
      color: var(--text-light);
      line-height: 1.8;
      /* Increased from 1.7 for better readability */
    }

    /* UPDATED: For integration icons to be their actual logo */
    .card-icon.logo-icon {
      background: none;
      width: 90px;
      height: 90px;
      border-radius: 0;
      margin: 0 auto 24px auto;
      transition: transform 0.3s ease, filter 0.3s ease;
      /* NEW: Smooth transition */
    }

    .card-icon.logo-icon img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      filter: grayscale(100%);
      /* NEW: Start grayscale */
      opacity: 0.7;
      transition: all 0.3s ease;
    }

    .card:hover .card-icon.logo-icon img {
      filter: grayscale(0%);
      /* NEW: Color on hover */
      opacity: 1;
      transform: scale(1.1);
      /* NEW: Slight zoom */
    }

    /* --- NEW: How It Works Flow --- */
    /* NEW: Style for the section container itself */
    #how-it-works {
      background: var(--card-bg);
      /* #ffffff */
      border-radius: 20px;
      box-shadow: var(--shadow-large);
      /* Add margin just to the bottom to separate from testimonials */
      margin-bottom: 80px;
      /* margin-top is already handled by #ai-assistant's margin-bottom */
      background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
      /* NEW: Subtle gradient */
      position: relative;
    }

    .how-it-works-flow {
      display: flex;
      justify-content: center;
      align-items: stretch;
      /* Make cards same height */
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 60px;
    }

    .flow-step {
      background: var(--card-bg);
      border-radius: 20px;
      padding: 30px;
      box-shadow: var(--shadow-medium);
      border: 1px solid var(--border-light);
      text-align: center;
      border-top: 4px solid var(--primary-blue);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      /* NEW: Animation */
    }

    .flow-step:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px -10px rgba(0, 45, 114, 0.15);
    }

    .flow-step-single {
      width: 280px;
    }

    .flow-step-group {
      width: 320px;
      border-top-color: var(--success-green);
    }

    .flow-step .flow-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 15px auto;
      color: var(--primary-blue);
      background: rgba(0, 45, 114, 0.05);
      /* NEW: Icon background */
      border-radius: 50%;
      padding: 12px;
    }

    .flow-step .flow-icon svg {
      width: 100%;
      height: 100%;
    }

    .flow-step h4 {
      font-size: 1.4rem;
      color: var(--primary-blue);
      margin-bottom: 15px;
    }

    .flow-step p {
      color: var(--text-light);
      flex-grow: 1;
      font-size: 1rem;
    }

    .flow-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .flow-arrow svg {
      width: 48px;
      height: 48px;
      color: var(--accent-blue);
      opacity: 0.7;
    }

    .output-group {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 10px;
      text-align: left;
    }

    .output-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.05rem;
      font-weight: 500;
      color: var(--text-dark);
      background: var(--background-light);
      padding: 10px 15px;
      border-radius: 8px;
      border-left: 3px solid var(--accent-blue);
    }

    .output-item svg {
      width: 20px;
      height: 20px;
      color: var(--primary-blue);
      flex-shrink: 0;
    }

    /* Stagger the fade-in animation */
    .how-it-works-flow .fade-in:nth-of-type(1) {
      transition-delay: 0.1s;
    }

    /* Step 1 */
    .how-it-works-flow .fade-in:nth-of-type(2) {
      transition-delay: 0.3s;
    }

    /* Arrow 1 */
    .how-it-works-flow .fade-in:nth-of-type(3) {
      transition-delay: 0.5s;
    }

    /* Step 2 */
    .how-it-works-flow .fade-in:nth-of-type(4) {
      transition-delay: 0.7s;
    }

    /* Arrow 2 */
    .how-it-works-flow .fade-in:nth-of-type(5) {
      transition-delay: 0.9s;
    }

    /* Step 3 */

    /* Mobile adjustments for How It Works */
    @media (max-width: 960px) {
      .how-it-works-flow {
        flex-direction: column;
        align-items: center;
      }

      .flow-arrow svg {
        transform: rotate(90deg);
        margin: 15px 0;
      }

      .flow-step-single,
      .flow-step-group {
        width: 100%;
        max-width: 400px;
      }
    }


    /* UPDATED: Custom Prompt Examples Section - Removed pattern, changed background color */
    .highlight-section {
      background: var(--primary-blue);
      /* Changed background to match integrations */
      color: white;
      padding: 100px 20px;
      margin: 80px 0;
      position: relative;
      overflow: hidden;
      /* Reverted padding-bottom */
    }

    .highlight-section::before {
      /* REMOVED pattern and animation */
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      /* Using a very subtle, almost invisible grid pattern */
      background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.005'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%E3C/g%E3C/svg%3E") repeat;
      z-index: 1;
    }

    .highlight-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
    }

    .examples-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      margin-top: 60px;
    }

    .example-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 16px;
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
      display: flex;
      /* NEW: for flex-column layout */
      flex-direction: column;
      /* NEW: stack items vertically */
    }

    .example-card:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.15);
    }

    .example-card h4 {
      color: var(--accent-blue-dark);
      font-size: 1.2rem;
      margin-bottom: 16px;
      font-weight: 600;
    }

    /* UPDATED: Example Prompt styling */
    .example-prompt {
      background: rgba(0, 0, 0, 0.3);
      padding: 20px;
      border-radius: 12px;
      border-left: 4px solid var(--accent-blue);
      /* Changed from green */
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.95);
      position: relative;
      padding-top: 40px;
      /* Make room for the label */
      flex-grow: 1;
      /* NEW: Make cards in grid same height */
    }

    .example-prompt::before {
      content: 'PROMPT:';
      position: absolute;
      top: 15px;
      left: 20px;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--accent-blue-dark);
      letter-spacing: 0.5px;
    }

    /* UPDATED: Removed animation properties */
    .example-prompt p {
      margin: 0;
    }

    /* END: Animated Output Lines */


    /* UPDATED: Sample Output Section Background for Glassmorphism */
    #sample-output {
      position: relative;
      background: radial-gradient(circle at 50% 30%, rgba(74, 144, 226, 0.08) 0%, transparent 60%);
    }

    /* --- NEW/UPDATED: Sample Output Card with Glassmorphism --- */
    .output-card {
      background: rgba(255, 255, 255, 0.75);
      /* Semi-transparent */
      backdrop-filter: blur(20px);
      /* Glass blur */
      -webkit-backdrop-filter: blur(20px);
      border-radius: 24px;
      padding: 0;
      box-shadow:
        0 25px 50px -12px rgba(0, 45, 114, 0.15),
        /* Deep shadow */
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
      /* Inner light highlight */
      max-width: 850px;
      margin: 60px auto 0;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.4);
      /* Subtle border */
    }

    /* NEW: Header for Title and Score */
    .output-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(255, 255, 255, 0.5);
      /* Semi-transparent */
      padding: 25px 40px;
      border-bottom: 1px solid rgba(0, 45, 114, 0.06);
    }

    .output-card-header h3 {
      color: var(--primary-blue);
      margin: 0;
      font-size: 1.4rem;
    }

    .output-card-header p {
      margin: 0;
      color: var(--text-light);
      font-size: 1rem;
    }

    .qa-score-box {
      text-align: right;
    }

    .qa-score-box span {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-light);
    }

    .qa-score-box .score {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--success-green);
      line-height: 1.1;
    }

    /* NEW: Body to hold tabs */
    .output-card-body {
      padding: 30px;
    }

    /* NEW: Meta bar for key info */
    .output-meta-bar {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
      background: var(--background-light);
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 25px;
    }

    .output-meta-bar div {
      font-size: 1rem;
      color: var(--text-dark);
    }

    .output-meta-bar div strong {
      color: var(--text-light);
      font-weight: 500;
      margin-right: 8px;
    }

    .output-meta-bar div .text-green {
      color: var(--success-green);
      font-weight: 600;
    }

    .output-meta-bar div .text-red {
      color: #e74c3c;
      font-weight: 600;
    }

    /* NEW: Tab Styles */
    .output-tabs {
      display: flex;
      border-bottom: 2px solid var(--border-light);
      margin-bottom: 20px;
    }

    .tab-button {
      background: none;
      border: none;
      padding: 12px 20px;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--text-light);
      cursor: pointer;
      transition: all 0.3s ease;
      border-bottom: 3px solid transparent;
      margin-bottom: -2px;
    }

    .tab-button:hover {
      color: var(--text-dark);
    }

    .tab-button.active {
      color: var(--primary-blue);
      border-bottom-color: var(--primary-blue);
    }

    .tab-content {
      display: none;
    }

    .tab-content.active {
      display: block;
      animation: tabFadeIn 0.5s ease;
    }

    @keyframes tabFadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .tab-content h4 {
      font-size: 1.25rem;
      color: var(--primary-blue);
      margin-bottom: 15px;
    }

    .tab-content p {
      color: var(--text-dark);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .detail-list {
      list-style: none;
      padding-left: 0;
    }

    .detail-list li {
      position: relative;
      padding-left: 30px;
      margin-bottom: 15px;
      color: var(--text-dark);
      line-height: 1.7;
    }

    .detail-list li::before {
      content: '•';
      /* Default bullet */
      position: absolute;
      left: 0;
      top: 0;
      font-size: 1.5rem;
      line-height: 1.1;
      color: var(--accent-blue);
    }

    .detail-list li.action-item::before {
      content: '▶';
      color: var(--primary-blue);
    }

    .detail-list li.qa-item::before {
      content: '✓';
      color: var(--success-green);
    }

    .detail-list li strong {
      font-weight: 600;
      color: var(--text-dark);
    }

    .detail-list li span {
      color: var(--text-light);
    }

    /* NEW: Footer for custom note */
    .output-card-footer {
      background: rgba(255, 255, 255, 0.4);
      /* Semi-transparent */
      padding: 20px 30px;
      text-align: center;
      font-style: italic;
      color: var(--text-light);
      border-top: 1px solid rgba(0, 45, 114, 0.06);
    }

    .output-card-footer a {
      color: var(--primary-blue);
      font-weight: 600;
      text-decoration: none;
    }

    .output-card-footer a:hover {
      text-decoration: underline;
    }


    .final-cta {
      background: var(--gradient-primary);
      color: white;
      text-align: center;
      padding: 100px 20px;
      position: relative;
      overflow: hidden;
    }

    .final-cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3C/g%E3C/g%E3C/svg%3E") repeat;
      animation: float 30s ease-in-out infinite reverse;
    }

    .final-cta-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .final-cta h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      color: white;
    }

    .final-cta p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      opacity: 0.95;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255, 255, 255, 0.7);
      animation: bounce 2s infinite;
    }

    @keyframes bounce {

      0%,
      20%,
      50%,
      80%,
      100% {
        transform: translateX(-50%) translateY(0);
      }

      40% {
        transform: translateX(-50%) translateY(-10px);
      }

      60% {
        transform: translateX(-50%) translateY(-5px);
      }
    }

    /* --- NEW --- Footer styles */
    .page-footer {
      background: var(--background-dark);
      color: var(--text-light);
      padding: 60px 20px 20px;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1.5fr;
      gap: 60px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-col:first-child {
      max-width: 350px;
    }

    .footer-col h4 {
      color: white;
      margin-bottom: 20px;
      font-size: 1.1rem;
    }

    .footer-col p {
      color: var(--text-secondary);
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 15px;
    }

    .footer-col a {
      display: block;
      color: var(--text-secondary);
      text-decoration: none;
      margin-bottom: 10px;
      transition: color 0.3s ease;
    }

    .footer-col a:hover {
      color: var(--accent-blue-dark);
    }

    /* NEW: Newsletter Form Styles */
    .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .newsletter-input {
      padding: 12px;
      border-radius: 6px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.05);
      color: white;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.3s ease;
    }

    .newsletter-input:focus {
      border-color: var(--accent-blue);
    }

    .newsletter-button {
      padding: 10px;
      border-radius: 6px;
      border: none;
      background: var(--accent-blue-dark);
      color: white;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .newsletter-button:hover {
      background: #2563eb;
    }

    .footer-logo {
      height: 40px;
      margin-bottom: 20px;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      font-size: 0.9rem;
    }

    .footer-bottom a {
      color: var(--accent-blue);
      text-decoration: none;
    }

    /* UPDATED: Integrations Section Styles */
    .integrations-section {
      background-color: var(--primary-blue);
      /* Changed to a more bluish dark background */
      padding-top: 80px;
      padding-bottom: 80px;
      margin-top: 80px;
      /* margin-bottom: 80px; /* Removed bottom margin to connect with next section */
      position: relative;
      /* For positioning the pseudo-element */
      overflow: hidden;
      /* To contain the pseudo-element pattern */
    }

    .integrations-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      /* Subtle diagonal line pattern */
      background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0' y1='100' x2='100' y2='0' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E") repeat;
      z-index: 1;
      /* Ensure pattern is behind content */
    }

    .integrations-content {
      position: relative;
      /* Ensure content is above pattern */
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      /* Add horizontal padding for content */
    }

    .integrations-section .section-title,
    .integrations-section .section-subtitle {
      color: white;
      /* White text for title and subtitle */
    }

    .integrations-section .section-subtitle {
      color: rgba(255, 255, 255, 0.85);
      /* Slightly transparent white for subtitle */
    }

    /* Ensure cards remain styled for dark background if needed, but they have their own background */
    .integrations-section .card {
      background: var(--card-bg);
      /* Use default card background (white) */
      color: var(--text-dark);
      /* Ensure text on cards is dark */
    }

    /* --- NEW --- Sticky Nav Styles */
    /* --- NEW --- Sticky Nav Styles */
    .sticky-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      transition: all 0.3s ease;
      background: transparent;
      /* Default transparent */
    }

    .sticky-nav.scrolled {
      background: rgba(10, 22, 40, 0.95);
      backdrop-filter: blur(10px);
      padding: 15px 40px;
      /* Shrink slightly */
      box-shadow: var(--shadow-medium);
    }

    .nav-links {
      display: flex;
      gap: 30px;
      align-items: center;
    }

    .nav-link {
      color: rgba(255, 255, 255, 0.9);
      text-decoration: none;
      font-weight: 500;
      font-size: 1.05rem;
      transition: color 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--accent-blue-dark);
    }

    .sticky-nav-logo img {
      height: 40px;
      /* Smaller logo */
    }

    .sticky-nav .cta-button {
      padding: 12px 28px;
      /* Slightly smaller button */
      font-size: 1rem;
    }

    .mobile-menu-toggle {
      display: none;
      /* Hidden on desktop */
    }

    @media (max-width: 768px) {

      .hero {
        min-height: 80vh;
        padding-top: 220px;
        padding-bottom: 80px;
      }

      .section {
        padding: 60px 20px;
      }

      .grid,
      .examples-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
      }

      .footer-col:first-child {
        max-width: 100%;
      }

      .card {
        padding: 30px 20px;
      }

      .footer-container {
        text-align: center;
      }

      /* NEW: Sticky Nav Mobile */
      .sticky-nav {
        padding: 15px 20px;
        /* flex-direction: column;  -- REMOVED */
        gap: 15px;
        background: rgba(10, 22, 40, 0.95);
        /* Always dark on mobile */
      }

      .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
      }

      .sticky-nav-logo img {
        height: 35px;
      }

      .sticky-nav .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
      }

      /* NEW: Hamburger Menu Styles */
      .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
        padding: 0;
      }

      .mobile-menu-toggle .bar {
        width: 100%;
        height: 3px;
        background-color: white;
        border-radius: 3px;
        transition: all 0.3s ease;
      }

      /* Mobile Menu State */
      .nav-links,
      .sticky-nav-cta {
        display: none !important;
        /* Force hide on mobile by default */
        width: 100%;
        text-align: center;
      }

      .sticky-nav.mobile-open {
        background: rgba(10, 22, 40, 0.98);
        height: auto;
        padding-bottom: 30px;
      }

      .sticky-nav.mobile-open .nav-links,
      .sticky-nav.mobile-open .sticky-nav-cta {
        display: flex !important;
        flex-direction: column;
        gap: 20px;
        animation: fadeInUp 0.3s ease forwards;
      }

      .sticky-nav.mobile-open .sticky-nav-cta {
        align-items: center !important;
        /* Center align CTA items */
      }

      /* Hamburger Animation */
      .sticky-nav.mobile-open .mobile-menu-toggle .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
      }

      .sticky-nav.mobile-open .mobile-menu-toggle .bar:nth-child(2) {
        opacity: 0;
      }

      .sticky-nav.mobile-open .mobile-menu-toggle .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
      }

      .sticky-nav {
        flex-direction: row;
        /* Keep logo and hamburger in a row */
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        /* Allow menu items to wrap to next line when open */
      }

      /* NEW: Sample Output Mobile */
      .output-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
      }

      .qa-score-box {
        text-align: left;
      }

      .output-meta-bar {
        flex-direction: column;
        gap: 10px;
      }

      .tab-button {
        padding: 10px 12px;
        font-size: 0.9rem;
      }
    }

    /* Make sure to include mobile styles for How It Works */
    @media (max-width: 960px) {
      .how-it-works-flow {
        flex-direction: column;
        align-items: center;
      }

      .flow-arrow svg {
        transform: rotate(90deg);
        margin: 15px 0;
      }

      .flow-step-single,
      .flow-step-group {
        width: 100%;
        max-width: 400px;
      }
    }

    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* --- NEW: Section Dividers --- */
    .section-divider {
      position: absolute;
      left: 0;
      width: 100%;
      overflow: hidden;
      line-height: 0;
      z-index: 3;
    }

    .section-divider svg {
      display: block;
      width: calc(100% + 1.3px);
      height: 60px;
    }

    .section-divider.bottom {
      bottom: 0;
    }

    .section-divider.top {
      top: 0;
    }

    .fill-white {
      fill: var(--background-light);
    }

    .fill-blue {
      fill: var(--primary-blue);
    }

    /* --- NEW: Chaos vs. Clarity Styles --- */
    .comparison-section {
      padding: 100px 20px;
      background: #f8fafc;
      position: relative;
      overflow: hidden;
    }

    .comparison-container {
      max-width: 1100px;
      margin: 60px auto 0;
      display: flex;
      gap: 40px;
      align-items: stretch;
    }

    .comparison-side {
      flex: 1;
      border-radius: 24px;
      padding: 40px;
      position: relative;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
    }

    /* The Chaos Side */
    .side-chaos {
      background-color: #f0f0f0;
      background-image: repeating-linear-gradient(0deg, transparent, transparent 19px, #e5e5e5 20px), repeating-linear-gradient(90deg, transparent, transparent 19px, #e5e5e5 20px);
      background-size: 20px 20px;
      border: none;
      box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.05);
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .chaos-title {
      position: absolute;
      top: 20px;
      left: 0;
      right: 0;
      text-align: center;
      font-family: 'Permanent Marker', cursive;
      font-size: 1.5rem;
      color: #475569;
      transform: rotate(-2deg);
      z-index: 5;
    }

    .sticky-note {
      width: 180px;
      height: 180px;
      background: #fef3c7;
      box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.05);
      padding: 25px;
      font-family: 'Permanent Marker', cursive;
      color: #451a03;
      font-size: 1.2rem;
      line-height: 1.4;
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      transform: rotate(-5deg);
      transition: transform 0.3s ease, z-index 0s;
      z-index: 1;
    }

    .sticky-note:hover {
      transform: scale(1.1) rotate(0deg) !important;
      z-index: 20;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    }

    .note-1 {
      top: 90px;
      left: 50px;
      background: #fef9c3;
      transform: rotate(-6deg);
    }

    .note-2 {
      top: 130px;
      right: 50px;
      background: #fee2e2;
      transform: rotate(4deg);
    }

    .note-3 {
      bottom: 70px;
      left: 90px;
      background: #dbeafe;
      transform: rotate(-3deg);
    }

    .chaos-scribble {
      position: absolute;
      bottom: 30px;
      right: 50px;
      opacity: 0.8;
      transform: rotate(15deg);
    }

    /* The Clarity Side */
    .side-clarity {
      background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
      border: 1px solid rgba(255, 255, 255, 0.8);
      box-shadow:
        0 20px 50px -10px rgba(0, 45, 114, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
      overflow: hidden;
      backdrop-filter: blur(10px);
    }

    .clarity-title {
      text-align: center;
      font-weight: 700;
      color: var(--primary-blue);
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 0.9rem;
      margin-bottom: 30px;
    }

    .clarity-card {
      background: white;
      border: 1px solid #f1f5f9;
      border-radius: 16px;
      padding: 25px;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
      width: 100%;
      max-width: 380px;
      margin: 0 auto;
    }

    .clarity-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      border-bottom: 1px solid #f1f5f9;
      padding-bottom: 15px;
    }

    .clarity-user {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      color: var(--text-dark);
    }

    .clarity-avatar {
      width: 32px;
      height: 32px;
      background: var(--primary-blue);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
    }

    .clarity-status {
      background: #dcfce7;
      color: #166534;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 4px;
      animation: pulse-green 2s infinite;
    }

    @keyframes pulse-green {
      0% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4);
      }

      70% {
        box-shadow: 0 0 0 6px rgba(22, 163, 74, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
      }
    }

    .clarity-body p {
      color: var(--text-light);
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 15px;
    }

    .clarity-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .clarity-tag {
      background: #f1f5f9;
      color: #475569;
      padding: 4px 12px;
      border-radius: 6px;
      font-size: 0.8rem;
      font-weight: 500;
    }

    .clarity-tag.highlight {
      background: #eff6ff;
      color: var(--primary-blue);
      border: 1px solid #dbeafe;
    }

    @media (max-width: 900px) {
      .comparison-container {
        flex-direction: column;
      }

      .sticky-note {
        width: 140px;
        height: 140px;
        font-size: 1rem;
      }
    }

    /* --- NEW: Pipeline Animation Styles --- */
    .pipeline-connector {
      flex: 1;
      height: 4px;
      background: #e2e8f0;
      margin: 0 20px;
      border-radius: 2px;
      position: relative;
      overflow: hidden;
      align-self: center;
    }

    .pipeline-connector::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 50%;
      height: 100%;
      background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
      animation: flow-pipeline 2s linear infinite;
    }

    @keyframes flow-pipeline {
      0% {
        left: -50%;
      }

      100% {
        left: 100%;
      }
    }

    @media (max-width: 768px) {
      .pipeline-connector {
        width: 4px;
        height: 60px;
        margin: 10px 0;
        flex: none;
      }

      .pipeline-connector::after {
        width: 100%;
        height: 50%;
        background: linear-gradient(180deg, transparent, var(--accent-blue), transparent);
        animation: flow-pipeline-vertical 2s linear infinite;
      }

      @keyframes flow-pipeline-vertical {
        0% {
          top: -50%;
        }

        100% {
          top: 100%;
        }
      }
    }