/* ============================================
   HOME PAGE - Services Discovery V2 Component
   ============================================

   Professional Service Showcase:
   - Professional service names sidebar
   - Horizontal scrolling sections with blurred backgrounds
   - Premium inline information panel (no popup)
   - Enhanced bullet styling
   ============================================ */

   .services-discovery-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    /* Light background with blue accents for better contrast - Referrals page style */
    background: linear-gradient(180deg,
      var(--bg) 0%,
      rgba(26, 67, 191, 0.02) 30%,
      rgba(26, 67, 191, 0.04) 50%,
      rgba(26, 67, 191, 0.02) 70%,
      var(--bg) 100%);
    position: relative;
    overflow: hidden;
  }

  /* Architectural grid pattern - Referrals page style */
  .services-discovery-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    /* Architectural grid pattern - blueprint style */
    background:
      /* Subtle grid lines */
      repeating-linear-gradient(0deg,
        transparent 0px,
        transparent 99px,
        rgba(26, 67, 191, 0.04) 100px,
        rgba(26, 67, 191, 0.04) 101px),
      repeating-linear-gradient(90deg,
        transparent 0px,
        transparent 99px,
        rgba(26, 67, 191, 0.04) 100px,
        rgba(26, 67, 191, 0.04) 101px),
      /* Flowing architectural curves */
      radial-gradient(ellipse 1200px 600px at 15% 20%, rgba(26, 67, 191, 0.08) 0%, transparent 50%),
      radial-gradient(ellipse 1000px 800px at 85% 80%, rgba(26, 67, 191, 0.06) 0%, transparent 55%),
      /* Central focus point */
      radial-gradient(ellipse 800px 500px at 50% 50%, rgba(26, 67, 191, 0.05) 0%, transparent 60%);
    mix-blend-mode: multiply;
    opacity: 0.6;
    animation: servicesDiscoveryBackgroundFlow 20s ease-in-out infinite;
    pointer-events: none;
  }

  @keyframes servicesDiscoveryBackgroundFlow {
    0%, 100% {
      transform: translate3d(0, 0, 0) scale(1);
      opacity: 0.6;
    }
    25% {
      transform: translate3d(-10px, 8px, 0) scale(1.02);
      opacity: 0.65;
    }
    50% {
      transform: translate3d(8px, -10px, 0) scale(1.01);
      opacity: 0.63;
    }
    75% {
      transform: translate3d(-6px, 6px, 0) scale(1.015);
      opacity: 0.65;
    }
  }

  /* Geometric shapes overlay - Referrals page style */
  .services-discovery-section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    /* Geometric shapes overlay */
    background:
      /* Diagonal accent lines */
      linear-gradient(135deg, transparent 0%, rgba(26, 67, 191, 0.03) 25%, transparent 50%),
      linear-gradient(225deg, transparent 0%, rgba(26, 67, 191, 0.03) 25%, transparent 50%),
      /* Corner highlights */
      radial-gradient(circle at 0% 0%, rgba(26, 67, 191, 0.06) 0%, transparent 40%),
      radial-gradient(circle at 100% 100%, rgba(26, 67, 191, 0.06) 0%, transparent 40%);
    pointer-events: none;
  }

  .services-discovery-container {
    max-width: 100%;
    margin: 0;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    position: relative;
    z-index: 1;
  }

  /* Header */
  .services-discovery-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto clamp(2rem, 3vw, 2.5rem);
  }

  .services-discovery-eyebrow {
    display: inline-block;
    font-size: clamp(0.6875rem, 1vw, 0.8125rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--brand-blue);
    margin-bottom: clamp(0.875rem, 1.5vw, 1.25rem);
    padding: clamp(0.5rem, 0.8vw, 0.625rem) clamp(1.25rem, 2vw, 1.75rem);
    background: linear-gradient(135deg, rgba(26, 67, 191, 0.12) 0%, rgba(26, 67, 191, 0.08) 100%);
    border: 2px solid rgba(26, 67, 191, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(12px);
    box-shadow:
      0 4px 24px rgba(26, 67, 191, 0.12),
      0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  }

  .services-discovery-title {
    font-size: clamp(1.875rem, 3vw, 2.75rem) !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.03em !important;
    margin: 0 0 clamp(0.75rem, 1.2vw, 1rem) !important;
    color: var(--text) !important;
  }

  .services-discovery-accent {
    color: var(--brand-blue);
    background: linear-gradient(135deg, var(--brand-blue) 0%, rgba(26, 67, 191, 0.85) 50%, var(--brand-blue) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: servicesDiscoveryAccentPulse 4s ease-in-out infinite;
  }

  @keyframes servicesDiscoveryAccentPulse {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }

  .services-discovery-subtitle {
    font-size: clamp(0.9375rem, 1.4vw, 1.125rem) !important;
    line-height: 1.7 !important;
    color: var(--muted) !important;
    margin: 0 !important;
    font-weight: 400 !important;
  }

  /* Main Layout - Sidebar + Content */
  .services-discovery-main-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: clamp(2rem, 4vw, 3rem) !important;
    max-width: 1600px !important;
    margin: 0 auto !important;
    position: relative !important;
    box-sizing: border-box !important;
    width: 100% !important;
    /* Add padding for fixed sidebar when visible */
    padding-left: calc(240px + clamp(1rem, 2vw, 1.5rem)) !important;
    transition: padding-left 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    /* Prevent overflow */
    overflow: visible !important;
  }

  /* Remove padding when sidebar is hidden */
  .services-discovery-section:not(.is-in-view) .services-discovery-main-layout,
  .services-discovery-section.is-past .services-discovery-main-layout {
    padding-left: 0;
  }

  @media (max-width: 1200px) {
    .services-discovery-main-layout {
      padding-left: calc(220px + clamp(1rem, 2vw, 1.5rem));
    }

    .services-discovery-sidebar {
      width: 200px;
    }
  }

  @media (max-width: 968px) {
    .services-discovery-main-layout {
      padding-left: 0 !important;
      gap: 0 !important;
      display: flex !important;
      flex-direction: column !important;
    }
  }

  /* Professional Service Names Sidebar - Subtle & Compact */
  .services-discovery-sidebar {
    position: fixed !important;
    left: clamp(0.75rem, 1.5vw, 1rem);
    top: 50%;
    transform: translateY(-50%) translateX(-110%);
    height: auto;
    max-height: 75vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: clamp(0.625rem, 1.2vw, 0.875rem) clamp(0.625rem, 1.2vw, 0.875rem);
    z-index: 100;
    /* Very subtle background - almost transparent */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 12px;
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.08),
      0 0 0 1px rgba(0, 0, 0, 0.05) inset;
    /* Subtle border */
    border: 1px solid rgba(0, 0, 0, 0.08);
    width: 240px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    /* Scrollbar styling - subtle */
    scrollbar-width: thin;
    scrollbar-color: rgba(26, 67, 191, 0.3) transparent;
  }

  /* Show sidebar when component is in view */
  .services-discovery-section.is-in-view .services-discovery-sidebar {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    visibility: visible;
  }

  /* Hide sidebar when scrolled past component */
  .services-discovery-section.is-past .services-discovery-sidebar {
    transform: translateY(-50%) translateX(-110%);
    opacity: 0;
    visibility: hidden;
  }

  .services-discovery-sidebar::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(
      135deg,
      rgba(26, 67, 191, 0.4),
      rgba(26, 67, 191, 0.2),
      rgba(26, 67, 191, 0.4)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
    opacity: 0.6;
    transition: opacity 0.5s ease;
  }

  .services-discovery-sidebar:hover::before {
    opacity: 1;
  }

  /* Hide scrollbar completely */
  .services-discovery-sidebar {
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE and Edge */
  }

  .services-discovery-sidebar::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera */
    width: 0 !important;
    height: 0 !important;
  }

  @media (max-width: 968px) {
    .services-discovery-sidebar {
      position: relative !important;
      left: auto !important;
      right: auto !important;
      top: auto !important;
      bottom: auto !important;
      transform: none !important;
      width: 100% !important;
      max-width: 100% !important;
      max-height: none !important;
      height: auto !important;
      /* Horizontal scroll on mobile - container should NOT scroll, list should */
      display: block !important;
      overflow: visible !important;
      padding: clamp(1rem, 2vw, 1.25rem) clamp(1rem, 2.5vw, 1.5rem) clamp(0.75rem, 1.5vw, 1rem) !important;
      border-radius: 16px !important;
      margin-bottom: clamp(1.5rem, 3vw, 2rem) !important;
      order: 1 !important;
      /* Ensure sidebar appears at top */
      z-index: 10 !important;
    }

    .services-discovery-sidebar-label {
      display: none !important;
    }

    /* Step indicators container */
    .services-discovery-step-indicators {
      display: flex !important;
      gap: 6px !important;
      margin-bottom: clamp(0.75rem, 1.5vw, 1rem) !important;
      justify-content: center !important;
      align-items: center !important;
      padding: 0 clamp(1rem, 2.5vw, 1.5rem) !important;
    }

    .services-discovery-step-indicator {
      width: 6px !important;
      height: 6px !important;
      border-radius: 50% !important;
      background: rgba(26, 67, 191, 0.2) !important;
      border: 1.5px solid rgba(26, 67, 191, 0.3) !important;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
      cursor: pointer !important;
      padding: 0 !important;
      flex-shrink: 0 !important;
    }

    .services-discovery-step-indicator:hover {
      transform: scale(1.3) !important;
      background: var(--brand-blue) !important;
      border-color: var(--brand-blue) !important;
    }

    .services-discovery-step-indicator.is-active {
      width: 20px !important;
      height: 6px !important;
      border-radius: 3px !important;
      background: var(--brand-blue) !important;
      border-color: var(--brand-blue) !important;
      box-shadow: 0 0 0 3px rgba(26, 67, 191, 0.15) !important;
      animation: servicesDiscoveryStepPulse 2s ease-in-out infinite !important;
    }

    @keyframes servicesDiscoveryStepPulse {
      0%, 100% {
        box-shadow: 0 0 0 3px rgba(26, 67, 191, 0.15);
      }
      50% {
        box-shadow: 0 0 0 5px rgba(26, 67, 191, 0.2);
      }
    }

    .services-discovery-step-indicator.is-passed {
      background: var(--brand-blue) !important;
      border-color: var(--brand-blue) !important;
    }

    /* Position indicator text */
    .services-discovery-position-indicator {
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 0.5rem !important;
      margin-top: clamp(0.5rem, 1vw, 0.75rem) !important;
      padding: 0 clamp(1rem, 2.5vw, 1.5rem) !important;
      font-size: clamp(0.75rem, 1.2vw, 0.875rem) !important;
      color: var(--muted) !important;
      font-weight: 600 !important;
    }

    .services-discovery-position-indicator-current {
      color: var(--brand-blue) !important;
      font-weight: 700 !important;
    }

    .services-discovery-sidebar-list {
      flex-direction: row !important;
      gap: clamp(0.625rem, 1.5vw, 0.875rem) !important;
      padding: 0 !important;
      margin: 0 !important;
      /* Make the list itself scrollable */
      overflow-x: auto !important;
      overflow-y: hidden !important;
      scroll-behavior: smooth !important;
      scroll-snap-type: x mandatory !important;
      scroll-padding: clamp(1rem, 2.5vw, 1.5rem) !important;
      /* Ensure proper scrolling */
      -webkit-overflow-scrolling: touch !important;
      width: 100% !important;
      /* Hide scrollbar for cleaner look */
      scrollbar-width: none !important;
      -ms-overflow-style: none !important;
    }

    .services-discovery-sidebar-list::-webkit-scrollbar {
      display: none !important;
    }

    .services-discovery-sidebar-button {
      min-width: clamp(160px, 25vw, 200px) !important;
      flex-shrink: 0 !important;
      padding: clamp(0.75rem, 1.5vw, 0.875rem) clamp(1rem, 2vw, 1.25rem) !important;
      min-height: 52px !important;
      scroll-snap-align: center !important;
    }

    /* Adjust active indicator for horizontal layout */
    .services-discovery-sidebar-button::before {
      width: 4px !important;
      height: 100% !important;
      top: 0 !important;
      bottom: 0 !important;
      left: 0 !important;
      border-radius: 10px 0 0 10px !important;
    }
  }

  .services-discovery-sidebar-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 1rem;
    font-weight: 700;
    color: var(--muted);
    margin: 0 0 clamp(0.625rem, 1.2vw, 0.875rem);
    padding-bottom: clamp(0.5rem, 1vw, 0.625rem);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
  }

  .services-discovery-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    /* Ensure all items are visible */
    min-height: 0;
  }

  .services-discovery-sidebar-item {
    position: relative;
    flex-shrink: 0;
  }

  @media (max-width: 968px) {
    .services-discovery-sidebar-item {
      flex-shrink: 0 !important;
      min-width: fit-content !important;
    }
  }

  .services-discovery-sidebar-button {
    width: 100%;
    padding: 0.625rem 0.875rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    min-height: 48px;
    color: var(--text);
    box-shadow:
      0 1px 3px rgba(0, 0, 0, 0.05),
      inset 0 1px 1px rgba(255, 255, 255, 0.8);
    transform: translateX(0);
  }

  /* Architectural/Construction Active Indicator - Blueprint Ruler Style */
  .services-discovery-sidebar-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background:
      /* Main blue bar */
      linear-gradient(
        180deg,
        var(--brand-blue) 0%,
        rgba(26, 67, 191, 0.98) 10%,
        rgba(26, 67, 191, 0.95) 20%,
        rgba(26, 67, 191, 0.92) 30%,
        rgba(26, 67, 191, 0.95) 40%,
        rgba(26, 67, 191, 0.98) 50%,
        rgba(26, 67, 191, 0.95) 60%,
        rgba(26, 67, 191, 0.92) 70%,
        rgba(26, 67, 191, 0.95) 80%,
        rgba(26, 67, 191, 0.98) 90%,
        var(--brand-blue) 100%
      ),
      /* Blueprint measurement marks - horizontal lines */
      repeating-linear-gradient(
        0deg,
        transparent 0px,
        transparent 7px,
        rgba(255, 255, 255, 0.4) 7px,
        rgba(255, 255, 255, 0.4) 8px,
        transparent 8px,
        transparent 15px,
        rgba(255, 255, 255, 0.3) 15px,
        rgba(255, 255, 255, 0.3) 16px
      ),
      /* Construction grid pattern */
      repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 1px,
        rgba(255, 255, 255, 0.2) 1px,
        rgba(255, 255, 255, 0.2) 2px
      );
    background-size:
      100% 100%,
      100% 15px,
      2px 100%;
    border-radius: 10px 0 0 10px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow:
      /* Main glow */
      2px 0 14px rgba(26, 67, 191, 0.6),
      0 0 10px rgba(26, 67, 191, 0.4),
      /* Inner highlight */
      inset -1px 0 3px rgba(255, 255, 255, 0.3),
      /* Blueprint edge effect */
      inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    animation: none;
  }

  /* Architectural indicator animation - Blueprint pulse */
  @keyframes servicesDiscoveryBlueprintPulse {
    0%, 100% {
      background-position:
        0% 0%,
        0% 0%,
        0% 0%;
      box-shadow:
        2px 0 14px rgba(26, 67, 191, 0.6),
        0 0 10px rgba(26, 67, 191, 0.4),
        inset -1px 0 3px rgba(255, 255, 255, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15);
      filter: brightness(1);
    }
    50% {
      background-position:
        0% 0%,
        0% 7px,
        0% 0%;
      box-shadow:
        2px 0 18px rgba(26, 67, 191, 0.8),
        0 0 14px rgba(26, 67, 191, 0.6),
        inset -1px 0 4px rgba(255, 255, 255, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
      filter: brightness(1.1);
    }
  }

  .services-discovery-sidebar-button::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, rgba(26, 67, 191, 0.5), rgba(26, 67, 191, 0.35));
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.95);
  }

  .services-discovery-sidebar-button:hover {
    border-color: rgba(26, 67, 191, 0.3);
    color: var(--text);
    transform: translateX(4px);
    box-shadow:
      0 4px 12px rgba(26, 67, 191, 0.15),
      0 2px 6px rgba(26, 67, 191, 0.1),
      inset 0 1px 1px rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.9);
  }

  .services-discovery-sidebar-button:hover::before {
    opacity: 1;
  }

  .services-discovery-sidebar-button:hover::after {
    opacity: 0.8;
    transform: scale(1);
  }

  .services-discovery-sidebar-button.is-active {
    background: linear-gradient(
      135deg,
      rgba(26, 67, 191, 0.12) 0%,
      rgba(26, 67, 191, 0.08) 100%
    );
    border-color: rgba(26, 67, 191, 0.4);
    color: var(--brand-blue);
    box-shadow:
      0 4px 16px rgba(26, 67, 191, 0.2),
      0 2px 8px rgba(26, 67, 191, 0.15),
      inset 0 1px 1px rgba(255, 255, 255, 0.9),
      0 0 0 1px rgba(26, 67, 191, 0.2);
    transform: translateX(4px);
    position: relative;
  }

  .services-discovery-sidebar-button.is-active::after {
    opacity: 1;
    filter: blur(18px);
    background: linear-gradient(135deg, rgba(26, 67, 191, 0.6), rgba(26, 67, 191, 0.5));
    transform: scale(1);
  }

  .services-discovery-sidebar-button.is-active::before {
    opacity: 1;
    width: 6px;
    animation: servicesDiscoveryBlueprintPulse 4s ease-in-out infinite;
    box-shadow:
      2px 0 14px rgba(26, 67, 191, 0.6),
      0 0 10px rgba(26, 67, 191, 0.4),
      inset -1px 0 3px rgba(255, 255, 255, 0.3),
      inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  }

  .services-discovery-sidebar-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(26, 67, 191, 0.08);
    border: 1px solid rgba(26, 67, 191, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
  }

  .services-discovery-sidebar-button:hover .services-discovery-sidebar-button-icon {
    background: rgba(26, 67, 191, 0.15);
    border-color: rgba(26, 67, 191, 0.3);
    transform: scale(1.05);
  }

  .services-discovery-sidebar-button.is-active .services-discovery-sidebar-button-icon {
    background: rgba(26, 67, 191, 0.2);
    border-color: rgba(26, 67, 191, 0.4);
    box-shadow: 0 2px 8px rgba(26, 67, 191, 0.2);
  }

  .services-discovery-sidebar-button-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.3s ease;
  }

  .services-discovery-sidebar-button:hover .services-discovery-sidebar-button-icon svg {
    transform: scale(1.1);
  }

  .services-discovery-sidebar-button-name {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
    transition: color 0.3s ease;
    flex: 1;
    position: relative;
    z-index: 1;
  }

  .services-discovery-sidebar-button.is-active .services-discovery-sidebar-button-name {
    color: var(--brand-blue);
    font-weight: 700;
  }

  /* Content Area */
  .services-discovery-content-area {
    position: relative !important;
    min-height: 500px !important;
    height: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2.5vw, 2rem) !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    /* Architectural container background - highlights the content */
    background: var(--card);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(26, 67, 191, 0.08);
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.06),
      0 0 0 1px rgba(26, 67, 191, 0.05) inset;
    order: 2 !important;
  }

  @media (max-width: 968px) {
    .services-discovery-content-area {
      order: 2 !important;
      margin-top: 0 !important;
      padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1rem, 2vw, 1.5rem) !important;
    }
  }

  /* Additional architectural pattern overlay on content area */
  .services-discovery-content-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      /* Subtle architectural grid overlay */
      repeating-linear-gradient(0deg,
        transparent 0px,
        transparent 99px,
        rgba(26, 67, 191, 0.02) 100px,
        rgba(26, 67, 191, 0.02) 101px),
      repeating-linear-gradient(90deg,
        transparent 0px,
        transparent 99px,
        rgba(26, 67, 191, 0.02) 100px,
        rgba(26, 67, 191, 0.02) 101px);
    background-size: 100px 100px, 100px 100px;
    pointer-events: none;
    z-index: 0;
    border-radius: 20px;
    opacity: 0.5;
  }

  /* Panel replaces scroll container in same position */
  .services-discovery-panel {
    position: relative !important;
    width: 100% !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1rem, 2vw, 1.5rem) !important;
    background: transparent !important;
    display: block !important;
    opacity: 0 !important;
    transform: translateY(20px) !important;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 2 !important;
    pointer-events: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: visible !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  .services-discovery-panel.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
    height: auto !important;
    overflow: visible !important;
    min-height: 0 !important;
    max-height: none !important;
    animation: servicesDiscoveryPanelFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
  }

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

  /* Horizontal Scrolling Container */
  .services-discovery-scroll-container {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 600px !important;
    height: 600px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: smooth !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(26, 67, 191, 0.3) transparent !important;
    padding-bottom: 1rem !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    /* Ensure proper scrolling */
    will-change: scroll-position !important;
    /* Force hardware acceleration */
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
    /* Ensure content is above background pattern */
    z-index: 1 !important;
  }

  .services-discovery-scroll-container::-webkit-scrollbar {
    height: 6px;
  }

  .services-discovery-scroll-container::-webkit-scrollbar-track {
    background: transparent;
  }

  .services-discovery-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(26, 67, 191, 0.3);
    border-radius: 3px;
  }

  .services-discovery-scroll-container::-webkit-scrollbar-thumb:hover {
    background: rgba(26, 67, 191, 0.5);
  }

  /* Horizontal Service Sections */
  .services-discovery-sections {
    display: flex;
    width: fit-content;
    min-width: 100%;
    gap: 0;
    min-height: 500px;
    height: 500px;
    /* Ensure sections are laid out horizontally */
    flex-direction: row;
    flex-wrap: nowrap;
    /* Each section should be 100% of scroll container width */
  }

  .services-discovery-sections:empty::before {
    content: 'Loading services...';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 500px;
    color: var(--muted, #666);
    font-size: 1.125rem;
    font-weight: 500;
  }

  /* Individual Service Section - Properly Sized */
  .services-discovery-service-section {
    position: relative !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: always !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    box-sizing: border-box !important;
    /* Ensure proper positioning for scroll calculation */
    margin: 0 auto !important;
    /* Prevent any external overrides */
    isolation: isolate !important;
    /* Ensure content is centered */
    overflow: hidden !important;
  }

  @media (max-width: 968px) {
    .services-discovery-service-section {
      height: auto !important;
      min-height: 450px !important;
      max-height: none !important;
      padding: clamp(1rem, 2vw, 1.5rem) 0 !important;
    }

    .services-discovery-scroll-container {
      min-height: 450px !important;
      height: auto !important;
      padding-bottom: 0.5rem !important;
    }

    .services-discovery-sections {
      min-height: 450px !important;
      height: auto !important;
    }
  }

  /* Service Content Wrapper - CRITICAL: Explicit grid order, Compact Sizing */
  .services-discovery-service-content {
    display: grid !important;
    grid-template-columns: 1.1fr 0.9fr !important;
    grid-auto-flow: row !important;
    width: 100% !important;
    max-width: 1100px !important;
    height: 100% !important;
    max-height: 100% !important;
    margin: 0 auto !important;
    padding: clamp(0.5rem, 1.2vw, 1rem) clamp(0.75rem, 1.8vw, 1.25rem) !important;
    gap: clamp(0.75rem, 1.5vw, 1.25rem) !important;
    align-items: center !important;
    box-sizing: border-box !important;
    position: relative !important;
    /* Ensure content doesn't overflow */
    overflow: hidden !important;
    /* CRITICAL: Remove any background color */
    background: transparent !important;
    background-color: transparent !important;
    /* Ensure children are visible */
    visibility: visible !important;
    opacity: 1 !important;
    /* Prevent any external overrides */
    isolation: isolate !important;
    /* Force grid layout */
    grid-template-rows: none !important;
  }

  /* Ensure all child elements are visible and in correct order */
  .services-discovery-service-content > * {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
    /* Reset any flex/grid order that might interfere */
    order: initial !important;
    grid-column: initial !important;
    grid-row: initial !important;
  }

  /* EXPLICIT: Image must be first column (left side) */
  .services-discovery-service-content > .services-discovery-service-image {
    grid-column: 1 / 2 !important;
    grid-row: 1 / 2 !important;
    order: 1 !important;
  }

  /* EXPLICIT: Info must be second column (right side) */
  .services-discovery-service-content > .services-discovery-service-info {
    grid-column: 2 / 3 !important;
    grid-row: 1 / 2 !important;
    order: 2 !important;
  }

  @media (max-width: 968px) {
    .services-discovery-service-content {
      grid-template-columns: 1fr !important;
      grid-template-rows: auto auto !important;
      gap: clamp(1.5rem, 3vw, 2rem) !important;
      padding: clamp(1rem, 2vw, 1.5rem) clamp(0.75rem, 1.5vw, 1rem) !important;
      height: auto !important;
      max-width: 100% !important;
    }

    /* Image above title on mobile */
    .services-discovery-service-content > .services-discovery-service-image {
      grid-column: 1 / 2 !important;
      grid-row: 1 / 2 !important;
      order: 1 !important;
    }

    .services-discovery-service-content > .services-discovery-service-info {
      grid-column: 1 / 2 !important;
      grid-row: 2 / 3 !important;
      order: 2 !important;
    }
  }

  /* Service Image Side - Blurred Background Concept - LEFT COLUMN - Compact */
  .services-discovery-service-image {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.12),
      0 0 0 1px rgba(26, 67, 191, 0.06) inset !important;
    background: var(--card) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1 !important;
    /* CRITICAL: Ensure image is on left */
    grid-column: 1 !important;
    grid-row: 1 !important;
    order: 1 !important;
    /* Prevent any flex/grid interference */
    flex: none !important;
    align-self: stretch !important;
    /* Ensure image fills container properly */
    object-fit: cover;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Carousel Track for Service Image */
  .services-discovery-service-image-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
  }

  .services-discovery-service-image-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
    width: 100%;
    height: 100%;
  }

  .services-discovery-service-image-carousel-slide.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 2;
  }

  .services-discovery-service-image-carousel-slide:not(.is-active) {
    transform: translateX(100%);
  }

  .services-discovery-service-image-carousel-slide.is-active ~ .services-discovery-service-image-carousel-slide {
    transform: translateX(100%);
  }

  /* Navigation Buttons for Service Image Carousel */
  .services-discovery-service-image-carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 clamp(1rem, 2vw, 1.5rem);
    pointer-events: none;
    z-index: 10;
  }

  @media (max-width: 968px) {
    .services-discovery-service-image-carousel-nav {
      padding: 0 clamp(0.75rem, 1.5vw, 1rem);
    }
  }

  .services-discovery-service-image-carousel-button {
    width: clamp(48px, 5.5vw, 56px);
    height: clamp(48px, 5.5vw, 56px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(24px) saturate(180%);
    border: 1.5px solid rgba(26, 67, 191, 0.2) !important;
    color: var(--brand-blue) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    box-shadow:
      0 6px 24px rgba(0, 0, 0, 0.15),
      0 2px 8px rgba(26, 67, 191, 0.1),
      0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    position: relative;
    overflow: hidden;
    opacity: 0.85;
  }

  /* Ensure both prev and next buttons look the same by default */
  .services-discovery-service-image-carousel-button.services-discovery-service-image-carousel-prev,
  .services-discovery-service-image-carousel-button.services-discovery-service-image-carousel-next {
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--brand-blue) !important;
  }

  .services-discovery-service-image-carousel-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-blue) 0%, rgba(26, 67, 191, 0.95) 100%);
    opacity: 0 !important;
    transition: opacity 0.4s ease;
    z-index: 1;
  }

  .services-discovery-service-image-carousel-button svg {
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
    visibility: visible;
    opacity: 1;
    color: var(--brand-blue);
  }

  .services-discovery-service-image-carousel-button svg path {
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
  }

  .services-discovery-service-image-carousel-button:hover {
    background: var(--brand-blue) !important;
    border-color: var(--brand-blue) !important;
    color: var(--text-white) !important;
    transform: scale(1.12) translateY(-2px);
    opacity: 1;
    box-shadow:
      0 8px 32px rgba(26, 67, 191, 0.35),
      0 4px 12px rgba(26, 67, 191, 0.25),
      0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  }

  .services-discovery-service-image-carousel-button:hover::before {
    opacity: 1 !important;
  }

  .services-discovery-service-image-carousel-button:hover svg {
    transform: scale(1.2);
    color: var(--text-white) !important;
  }

  .services-discovery-service-image-carousel-button:hover svg path {
    stroke: var(--text-white) !important;
  }

  .services-discovery-service-image-carousel-button:active {
    transform: scale(1.08) translateY(0);
  }

  .services-discovery-service-image-carousel-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
  }

  @media (max-width: 968px) {
    .services-discovery-service-image-carousel-button {
      width: 40px;
      height: 40px;
      /* Match desktop styling exactly - ensure both buttons are white by default */
      background: rgba(255, 255, 255, 0.95) !important;
      backdrop-filter: blur(24px) saturate(180%);
      border: 1.5px solid rgba(26, 67, 191, 0.2) !important;
      color: var(--brand-blue) !important;
      box-shadow:
        0 6px 24px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(26, 67, 191, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
      opacity: 0.85;
    }

    /* Ensure both prev and next buttons look the same on mobile */
    .services-discovery-service-image-carousel-button.services-discovery-service-image-carousel-prev,
    .services-discovery-service-image-carousel-button.services-discovery-service-image-carousel-next {
      background: rgba(255, 255, 255, 0.95) !important;
      color: var(--brand-blue) !important;
    }

    .services-discovery-service-image-carousel-button::before {
      opacity: 0 !important;
    }

    .services-discovery-service-image-carousel-button svg {
      width: 18px;
      height: 18px;
      display: block !important;
      flex-shrink: 0;
      visibility: visible !important;
      opacity: 1 !important;
      z-index: 2 !important;
      color: var(--brand-blue) !important;
    }

    .services-discovery-service-image-carousel-button svg path {
      stroke: var(--brand-blue) !important;
      fill: none !important;
      stroke-width: 2.5 !important;
      stroke-linecap: round !important;
      stroke-linejoin: round !important;
      vector-effect: non-scaling-stroke !important;
    }

    .services-discovery-service-image-carousel-button:hover {
      background: var(--brand-blue) !important;
      border-color: var(--brand-blue) !important;
      color: var(--text-white) !important;
      transform: scale(1.1) translateY(-2px);
      opacity: 1;
      box-shadow:
        0 8px 32px rgba(26, 67, 191, 0.35),
        0 4px 12px rgba(26, 67, 191, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    }

    .services-discovery-service-image-carousel-button:hover::before {
      opacity: 1 !important;
    }

    .services-discovery-service-image-carousel-button:hover svg {
      transform: scale(1.15);
      color: var(--text-white) !important;
    }

    .services-discovery-service-image-carousel-button:hover svg path {
      stroke: var(--text-white) !important;
    }
  }

  @media (max-width: 968px) {
    .services-discovery-service-image {
      min-height: clamp(280px, 40vw, 350px) !important;
      max-height: clamp(350px, 50vw, 400px) !important;
      width: 100% !important;
      border-radius: 12px !important;
    }
  }

  .services-discovery-service-image-bg {
    position: absolute !important;
    inset: 0 !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    filter: blur(40px) brightness(0.7) !important;
    transform: scale(1.2) !important;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1 !important;
  }

  .services-discovery-service-image-carousel-slide.is-active .services-discovery-service-image-bg {
    transform: scale(1.2);
  }

  .services-discovery-service-section:hover .services-discovery-service-image-carousel-slide.is-active .services-discovery-service-image-bg {
    transform: scale(1.3);
  }

  /* Sharp foreground image */
  .services-discovery-service-image-foreground {
    position: absolute !important;
    inset: 0 !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    z-index: 2 !important;
    opacity: 1 !important;
    transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: block !important;
    visibility: visible !important;
  }

  .services-discovery-service-image-carousel-slide.is-active .services-discovery-service-image-foreground {
    opacity: 1;
  }

  .services-discovery-service-section:hover .services-discovery-service-image-carousel-slide.is-active .services-discovery-service-image-foreground {
    transform: scale(1.02);
  }

  .services-discovery-service-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.1) 30%,
      rgba(0, 0, 0, 0.25) 70%,
      rgba(0, 0, 0, 0.35) 100%
    );
    z-index: 3;
    width: 100%;
    pointer-events: none;
  }

  .services-discovery-service-image-content {
    position: relative;
    z-index: 4;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1rem, 2vw, 1.5rem);
    color: var(--text-white);
  }

  .services-discovery-service-badge {
    display: inline-block;
    padding: clamp(0.5rem, 0.75vw, 0.625rem) clamp(1rem, 1.5vw, 1.25rem);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: clamp(0.625rem, 0.85vw, 0.75rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-white);
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    box-shadow:
      0 4px 12px rgba(0, 0, 0, 0.25),
      0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    width: fit-content;
    font-family: 'Courier New', 'Monaco', monospace;
  }

  .services-discovery-service-image-title {
    font-size: clamp(1.25rem, 2vw, 1.75rem) !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin: 0 0 clamp(0.5rem, 1vw, 0.75rem) !important;
    color: var(--text-white) !important;
    letter-spacing: -0.01em !important;
    padding: clamp(0.75rem, 1.2vw, 1rem) clamp(1rem, 1.5vw, 1.25rem) !important;
    background: linear-gradient(135deg, rgba(26, 67, 191, 0.95) 0%, rgba(26, 67, 191, 0.85) 100%) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    border-radius: 12px !important;
    box-shadow:
      0 8px 24px rgba(26, 67, 191, 0.4),
      0 4px 12px rgba(0, 0, 0, 0.2),
      0 0 0 1px rgba(255, 255, 255, 0.1) inset !important;
    width: fit-content !important;
    max-width: 90% !important;
    position: relative !important;
    z-index: 5 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
  }

  .services-discovery-service-image-title::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, rgba(26, 67, 191, 0.8) 100%);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.6;
    filter: blur(8px);
  }

  .services-discovery-service-image-subtitle {
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 500;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    padding: clamp(0.5rem, 0.8vw, 0.75rem) clamp(0.75rem, 1.2vw, 1rem);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px) saturate(150%);
    border-radius: 8px;
    width: fit-content;
    max-width: 90%;
    margin-top: clamp(0.5rem, 0.8vw, 0.75rem);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Service Info Side - RIGHT COLUMN - Compact */
  .services-discovery-service-info {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    height: 100% !important;
    max-height: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: clamp(0.5rem, 1vw, 0.75rem) 0 clamp(0.5rem, 1vw, 0.75rem) clamp(0.5rem, 1.2vw, 0.875rem) !important;
    box-sizing: border-box !important;
    /* Ensure proper spacing and alignment */
    gap: clamp(0.5rem, 1vw, 0.75rem) !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
    /* CRITICAL: Ensure info is on right */
    grid-column: 2 !important;
    grid-row: 1 !important;
    order: 2 !important;
    /* Prevent any flex/grid interference */
    flex: none !important;
    align-self: stretch !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  .services-discovery-service-info-eyebrow {
    font-size: clamp(0.625rem, 0.85vw, 0.75rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-blue);
    margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
    padding: clamp(0.375rem, 0.6vw, 0.5rem) clamp(0.875rem, 1.3vw, 1.125rem);
    background: rgba(26, 67, 191, 0.1);
    border-radius: 6px;
    width: fit-content;
    border: 1px solid rgba(26, 67, 191, 0.2);
  }

  .services-discovery-service-info-title {
    font-size: clamp(2.5rem, 1.8vw, 1.5rem) !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    margin: 0 0 clamp(0.5rem, 0.75vw, 0.625rem) !important;
    color: var(--brand-blue) !important;
    letter-spacing: -0.01em !important;
  }

  .services-discovery-service-info-lead {
    font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
    line-height: 1.6;
    color: var(--muted);
    margin: 0 0 clamp(0.5rem, 0.9vw, 0.75rem);
    font-weight: 400;
    max-width: 100%;
  }

  /* Premium Service Features Grid - Compact */
  .services-discovery-service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(0.5rem, 1vw, 0.75rem);
    margin-bottom: clamp(0.75rem, 1.2vw, 1rem);
  }

  @media (max-width: 968px) {
    .services-discovery-service-features {
      grid-template-columns: 1fr !important;
      gap: clamp(1rem, 2vw, 1.25rem) !important;
      margin-bottom: clamp(1.25rem, 2vw, 1.5rem) !important;
      width: 100% !important;
      max-width: 100% !important;
    }
  }

  @media (max-width: 640px) {
    .services-discovery-service-features {
      grid-template-columns: 1fr !important;
      gap: clamp(1.125rem, 2.5vw, 1.375rem) !important;
    }
  }

  .services-discovery-service-feature {
    display: flex;
    align-items: flex-start;
    gap: clamp(0.75rem, 1.2vw, 1rem);
    padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(1rem, 1.8vw, 1.25rem);
    background: linear-gradient(135deg, rgba(26, 67, 191, 0.08) 0%, rgba(26, 67, 191, 0.04) 100%);
    border: 1.5px solid rgba(26, 67, 191, 0.12);
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  @media (max-width: 968px) {
    .services-discovery-service-feature {
      padding: clamp(1.25rem, 2.5vw, 1.5rem) clamp(1.25rem, 2.5vw, 1.75rem) !important;
      gap: clamp(1rem, 2vw, 1.25rem) !important;
      border-radius: 14px !important;
      border-width: 2px !important;
      min-height: 72px !important;
      align-items: center !important;
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 !important;
    }
  }

  .services-discovery-service-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 67, 191, 0.1), transparent);
    transition: left 0.6s ease;
  }

  .services-discovery-service-feature:hover::before {
    left: 100%;
  }

  .services-discovery-service-feature:hover {
    background: linear-gradient(135deg, rgba(26, 67, 191, 0.15) 0%, rgba(26, 67, 191, 0.08) 100%);
    border-color: rgba(26, 67, 191, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 67, 191, 0.18);
  }

  .services-discovery-service-feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-blue);
    border-radius: 6px;
    color: var(--text-white);
    box-shadow: 0 2px 8px rgba(26, 67, 191, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @media (max-width: 968px) {
    .services-discovery-service-feature-icon {
      width: 40px !important;
      height: 40px !important;
      border-radius: 10px !important;
      box-shadow: 0 4px 16px rgba(26, 67, 191, 0.35) !important;
      flex-shrink: 0 !important;
    }

    .services-discovery-service-feature-icon svg {
      width: 20px !important;
      height: 20px !important;
    }
  }

  .services-discovery-service-feature:hover .services-discovery-service-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(26, 67, 191, 0.4);
  }

  .services-discovery-service-feature-icon svg {
    width: 14px;
    height: 14px;
  }

  .services-discovery-service-feature-text {
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    line-height: 1.5;
    color: var(--text);
    font-weight: 600;
    flex: 1;
  }

  @media (max-width: 968px) {
    .services-discovery-service-feature-text {
      font-size: clamp(0.9375rem, 1.8vw, 1.125rem) !important;
      line-height: 1.65 !important;
      font-weight: 700 !important;
      letter-spacing: -0.015em !important;
      color: var(--text) !important;
      flex: 1 !important;
      min-width: 0 !important;
    }

    .services-discovery-service-cta-container {
      flex-direction: column;
      width: 100%;
      gap: clamp(0.75rem, 1.5vw, 1rem);
    }

    .services-discovery-service-cta {
      width: 100%;
      justify-content: center;
    }
  }

  /* Service CTA Container */
  .services-discovery-service-cta-container {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.625rem, 1vw, 0.875rem);
    align-items: center;
    margin-top: clamp(0.75rem, 1.2vw, 1rem);
  }

  /* Service CTA - Base Styles */
  .services-discovery-service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 0.75vw, 0.625rem);
    padding: clamp(0.625rem, 1vw, 0.75rem) clamp(1.25rem, 2vw, 1.625rem);
    font-size: clamp(0.8125rem, 1vw, 0.875rem);
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    width: fit-content;
    position: relative;
    overflow: hidden;
    border: none;
  }

  /* Primary CTA - Blue Gradient (Explore Service) */
  .services-discovery-service-cta-primary {
    background: linear-gradient(135deg, var(--brand-blue) 0%, rgba(26, 67, 191, 0.95) 100%);
    color: var(--text-white);
    box-shadow:
      0 6px 20px rgba(26, 67, 191, 0.3),
      0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  }

  .services-discovery-service-cta-primary::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.7s ease;
  }

  .services-discovery-service-cta-primary:hover::before {
    left: 100%;
  }

  .services-discovery-service-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow:
      0 14px 36px rgba(26, 67, 191, 0.45),
      0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  }

  .services-discovery-service-cta-primary svg {
    width: 16px;
    height: 16px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .services-discovery-service-cta-primary:hover svg {
    transform: translateX(5px) scale(1.1);
  }

  /* Secondary CTA - White/Ghost (Get Started) */
  .services-discovery-service-cta-secondary {
    background: var(--bg);
    color: var(--text);
    border: 1.5px solid rgba(26, 67, 191, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .services-discovery-service-cta-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--brand-blue);
    color: var(--brand-blue);
    background: rgba(26, 67, 191, 0.05);
    box-shadow: 0 4px 16px rgba(26, 67, 191, 0.15);
  }

  /* Inline Information Panel - Appears in flow like old version */
  /* Note: Panel styles are now defined above after .services-discovery-content-area */

  /* Panel backdrop - hidden for inline version */
  .services-discovery-panel-backdrop {
    display: none !important;
  }

  /* Panel content container - Compact inline styling */
  .services-discovery-panel-content {
    position: relative !important;
    background: var(--bg) !important;
    border-radius: 16px !important;
    box-shadow:
      0 12px 48px rgba(0, 0, 0, 0.12),
      0 4px 16px rgba(26, 67, 191, 0.08),
      0 0 0 1px rgba(26, 67, 191, 0.1) inset !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    z-index: 1 !important;
    border: 1px solid rgba(26, 67, 191, 0.15) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
  }


  .services-discovery-panel-content-inner {
    overflow-y: visible !important;
    overflow-x: hidden !important;
    padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.5rem, 3vw, 2.25rem) !important;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    min-height: 0;
    max-height: none !important;
    height: auto !important;
  }

  @media (max-width: 968px) {
    .services-discovery-panel-content-inner {
      padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 2.5vw, 1.75rem) !important;
    }
  }

  .services-discovery-panel-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: clamp(1.25rem, 2vw, 1.75rem) !important;
    padding-bottom: clamp(1rem, 1.5vw, 1.25rem) !important;
    border-bottom: 2px solid rgba(26, 67, 191, 0.12) !important;
    flex-shrink: 0 !important;
    gap: 1rem !important;
    position: relative !important;
  }

  .services-discovery-panel-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-blue) 0%, rgba(26, 67, 191, 0.6) 100%);
    border-radius: 2px;
  }

  .services-discovery-panel-service-title {
    font-size: clamp(1.5rem, 2.2vw, 1.875rem) !important;
    font-weight: 900 !important;
    color: var(--brand-blue) !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    flex: 1 !important;
    background: linear-gradient(135deg, var(--brand-blue) 0%, rgba(26, 67, 191, 0.85) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: servicesDiscoveryPanelTitleGradient 4s ease-in-out infinite;
  }

  @keyframes servicesDiscoveryPanelTitleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }

  .services-discovery-panel-close {
    width: clamp(40px, 4vw, 44px) !important;
    height: clamp(40px, 4vw, 44px) !important;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.04) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(0, 0, 0, 0.1) !important;
    color: var(--text) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    flex-shrink: 0 !important;
    position: relative !important;
    z-index: 10 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  }

  .services-discovery-panel-close::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-blue) 0%, rgba(26, 67, 191, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
  }

  .services-discovery-panel-close:hover {
    background: var(--brand-blue) !important;
    color: var(--text-white) !important;
    border-color: var(--brand-blue) !important;
    transform: rotate(90deg) scale(1.15) !important;
    box-shadow: 0 6px 24px rgba(26, 67, 191, 0.4) !important;
  }

  .services-discovery-panel-close:hover::before {
    opacity: 1;
  }

  .services-discovery-panel-close svg {
    width: 24px !important;
    height: 24px !important;
    display: block !important;
    pointer-events: none !important;
    flex-shrink: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .services-discovery-panel-close svg line {
    stroke: currentColor !important;
    stroke-width: 3 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    vector-effect: non-scaling-stroke !important;
    opacity: 1 !important;
    fill: none !important;
  }

  /* Remove old eyebrow/title/lead - now using sections */

  /* Old bullets styles removed - now using offer-list */

  .services-discovery-panel-bullet-icon {
    flex-shrink: 0 !important;
    width: 24px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--brand-blue) !important;
    border-radius: 6px !important;
    color: var(--text-white) !important;
    box-shadow: 0 2px 8px rgba(26, 67, 191, 0.25) !important;
  }

  @media (max-width: 968px) {
    .services-discovery-panel-bullet-icon {
      width: 40px !important;
      height: 40px !important;
      border-radius: 10px !important;
      box-shadow: 0 4px 16px rgba(26, 67, 191, 0.35) !important;
    }

    .services-discovery-panel-bullet-icon svg {
      width: 20px !important;
      height: 20px !important;
      stroke-width: 2.5 !important;
    }
  }

  .services-discovery-panel-bullet-icon svg {
    width: 14px !important;
    height: 14px !important;
    stroke: currentColor !important;
    stroke-width: 2.5 !important;
  }

  .services-discovery-panel-bullet-text {
    font-size: clamp(0.75rem, 1vw, 0.875rem) !important;
    line-height: 1.5 !important;
    color: var(--text) !important;
    font-weight: 600 !important;
    flex: 1 !important;
  }

  @media (max-width: 968px) {
    .services-discovery-panel-bullet-text {
      font-size: clamp(0.9375rem, 1.8vw, 1.125rem) !important;
      line-height: 1.65 !important;
      font-weight: 700 !important;
      letter-spacing: -0.015em !important;
      color: var(--text) !important;
      flex: 1 !important;
      min-width: 0 !important;
    }
  }

  .services-discovery-panel-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(0.5rem, 0.75vw, 0.625rem) !important;
    padding: clamp(0.875rem, 1.2vw, 1rem) clamp(1.75rem, 2.5vw, 2.25rem) !important;
    font-size: clamp(0.9375rem, 1.2vw, 1rem) !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none !important;
    width: fit-content !important;
    position: relative !important;
    overflow: hidden !important;
    font-family: inherit !important;
    min-width: clamp(140px, 18vw, 180px) !important;
  }

  /* Primary CTA - Blue/Orange Gradient */
  .services-discovery-panel-cta-primary {
    background: linear-gradient(135deg, var(--brand-blue) 0%, rgba(26, 67, 191, 0.9) 100%) !important;
    color: var(--text-white) !important;
    border: none !important;
    box-shadow:
      0 6px 20px rgba(26, 67, 191, 0.3),
      0 0 0 1px rgba(255, 255, 255, 0.1) inset !important;
  }

  .services-discovery-panel-cta-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow:
      0 12px 32px rgba(26, 67, 191, 0.45),
      0 0 0 1px rgba(255, 255, 255, 0.15) inset !important;
    background: linear-gradient(135deg, rgba(26, 67, 191, 0.95) 0%, var(--brand-blue) 100%) !important;
  }

  /* Secondary CTA - White/Ghost Style */
  .services-discovery-panel-cta-secondary {
    background: var(--bg) !important;
    color: var(--text) !important;
    border: 1.5px solid rgba(26, 67, 191, 0.2) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
  }

  .services-discovery-panel-cta-secondary:hover {
    transform: translateY(-2px) !important;
    border-color: var(--brand-blue) !important;
    color: var(--brand-blue) !important;
    background: rgba(26, 67, 191, 0.05) !important;
    box-shadow: 0 4px 16px rgba(26, 67, 191, 0.15) !important;
  }

  .services-discovery-panel-cta-secondary svg {
    width: 18px !important;
    height: 18px !important;
    transition: transform 0.3s ease !important;
  }

  .services-discovery-panel-cta-secondary:hover svg {
    transform: translateX(3px) !important;
  }

  /* Shine effect for primary CTA */
  .services-discovery-panel-cta-primary::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.7s ease;
  }

  .services-discovery-panel-cta-primary:hover::before {
    left: 100%;
  }

  /* Image Carousel Section */
  .services-discovery-panel-carousel-section {
    margin-bottom: clamp(1.75rem, 2.5vw, 2.25rem) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
  }

  .services-discovery-panel-carousel-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: var(--card);
    box-shadow:
      0 12px 48px rgba(0, 0, 0, 0.15),
      0 4px 16px rgba(26, 67, 191, 0.12),
      0 0 0 1px rgba(26, 67, 191, 0.08) inset;
    aspect-ratio: 16 / 9;
    min-height: 320px;
    max-height: 500px;
  }

  @media (max-width: 968px) {
    .services-discovery-panel-carousel-container {
      aspect-ratio: 4 / 3;
      min-height: 280px;
      max-height: 400px;
      border-radius: 16px;
    }
  }

  .services-discovery-panel-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
  }

  .services-discovery-panel-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
  }

  .services-discovery-panel-carousel-slide.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 2;
  }

  .services-discovery-panel-carousel-slide:not(.is-active) {
    transform: translateX(100%);
  }

  .services-discovery-panel-carousel-slide.is-active ~ .services-discovery-panel-carousel-slide {
    transform: translateX(100%);
  }

  .services-discovery-panel-carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .services-discovery-panel-carousel-slide.is-active .services-discovery-panel-carousel-image {
    transform: scale(1);
  }

  .services-discovery-panel-carousel-container:hover .services-discovery-panel-carousel-image {
    transform: scale(1.05);
  }

  /* Subtle overlay gradient for better visual depth - matching service section style */
  .services-discovery-panel-carousel-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(26, 67, 191, 0.05) 0%,
      rgba(0, 0, 0, 0.02) 50%,
      rgba(0, 0, 0, 0.03) 100%
    );
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    transition: opacity 0.4s ease;
  }

  .services-discovery-panel-carousel-container:hover .services-discovery-panel-carousel-slide::after {
    opacity: 0.6;
  }

  /* Navigation Buttons - Minimal, elegant style */
  .services-discovery-panel-carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 clamp(1rem, 2vw, 1.5rem);
    pointer-events: none;
    z-index: 10;
  }

  @media (max-width: 968px) {
    .services-discovery-panel-carousel-nav {
      padding: 0 clamp(0.75rem, 1.5vw, 1rem);
    }
  }

  .services-discovery-panel-carousel-button {
    width: clamp(48px, 5.5vw, 56px);
    height: clamp(48px, 5.5vw, 56px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(24px) saturate(180%);
    border: 1.5px solid rgba(26, 67, 191, 0.15) !important;
    color: var(--brand-blue) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    box-shadow:
      0 6px 24px rgba(0, 0, 0, 0.12),
      0 2px 8px rgba(26, 67, 191, 0.1),
      0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    position: relative;
    overflow: hidden;
    opacity: 0.9;
  }

  /* Ensure both prev and next buttons look the same by default */
  .services-discovery-panel-carousel-button.services-discovery-panel-carousel-prev,
  .services-discovery-panel-carousel-button.services-discovery-panel-carousel-next {
    background: rgba(255, 255, 255, 0.98) !important;
    color: var(--brand-blue) !important;
  }

  .services-discovery-panel-carousel-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-blue) 0%, rgba(26, 67, 191, 0.95) 100%);
    opacity: 0 !important;
    transition: opacity 0.4s ease;
    z-index: 1;
  }

  .services-discovery-panel-carousel-button svg {
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
    visibility: visible;
    opacity: 1;
    color: var(--brand-blue);
  }

  .services-discovery-panel-carousel-button svg path {
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
  }

  .services-discovery-panel-carousel-button:hover {
    background: var(--brand-blue) !important;
    border-color: var(--brand-blue) !important;
    color: var(--text-white) !important;
    transform: scale(1.12) translateY(-2px);
    opacity: 1;
    box-shadow:
      0 8px 32px rgba(26, 67, 191, 0.35),
      0 4px 12px rgba(26, 67, 191, 0.25),
      0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  }

  .services-discovery-panel-carousel-button:hover::before {
    opacity: 1 !important;
  }

  .services-discovery-panel-carousel-button:hover svg {
    transform: scale(1.2);
    color: var(--text-white) !important;
  }

  .services-discovery-panel-carousel-button:hover svg path {
    stroke: var(--text-white) !important;
  }

  .services-discovery-panel-carousel-button:active {
    transform: scale(1.08) translateY(0);
  }

  .services-discovery-panel-carousel-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
  }

  @media (max-width: 968px) {
    .services-discovery-panel-carousel-button {
      width: 40px;
      height: 40px;
      /* Match desktop styling exactly - ensure both buttons are white by default */
      background: rgba(255, 255, 255, 0.98) !important;
      backdrop-filter: blur(24px) saturate(180%);
      border: 1.5px solid rgba(26, 67, 191, 0.15) !important;
      color: var(--brand-blue) !important;
      box-shadow:
        0 6px 24px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(26, 67, 191, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
      opacity: 0.9;
    }

    /* Ensure both prev and next buttons look the same on mobile */
    .services-discovery-panel-carousel-button.services-discovery-panel-carousel-prev,
    .services-discovery-panel-carousel-button.services-discovery-panel-carousel-next {
      background: rgba(255, 255, 255, 0.98) !important;
      color: var(--brand-blue) !important;
    }

    .services-discovery-panel-carousel-button::before {
      opacity: 0 !important;
    }

    .services-discovery-panel-carousel-button svg {
      width: 18px;
      height: 18px;
      display: block !important;
      flex-shrink: 0;
      visibility: visible !important;
      opacity: 1 !important;
      z-index: 2 !important;
      color: var(--brand-blue) !important;
    }

    .services-discovery-panel-carousel-button svg path {
      stroke: var(--brand-blue) !important;
      fill: none !important;
      stroke-width: 2.5 !important;
      stroke-linecap: round !important;
      stroke-linejoin: round !important;
      vector-effect: non-scaling-stroke !important;
    }

    .services-discovery-panel-carousel-button:hover {
      background: var(--brand-blue) !important;
      border-color: var(--brand-blue) !important;
      color: var(--text-white) !important;
      transform: scale(1.1) translateY(-2px);
      opacity: 1;
      box-shadow:
        0 8px 32px rgba(26, 67, 191, 0.35),
        0 4px 12px rgba(26, 67, 191, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    }

    .services-discovery-panel-carousel-button:hover::before {
      opacity: 1 !important;
    }

    .services-discovery-panel-carousel-button:hover svg {
      transform: scale(1.15);
      color: var(--text-white) !important;
    }

    .services-discovery-panel-carousel-button:hover svg path {
      stroke: var(--text-white) !important;
    }
  }


  /* Panel Sections - About, What We Offer, Why Choose Us */
  .services-discovery-panel-section {
    margin-bottom: clamp(1.5rem, 2.2vw, 1.75rem) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    animation: servicesDiscoveryPanelSectionFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

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

  .services-discovery-panel-section:last-of-type {
    margin-bottom: clamp(1.25rem, 2vw, 1.5rem) !important;
  }

  .services-discovery-panel-section-title {
    font-size: clamp(1.125rem, 1.6vw, 1.375rem) !important;
    font-weight: 800 !important;
    margin: 0 0 clamp(0.75rem, 1.2vw, 1rem) !important;
    color: var(--text) !important;
    letter-spacing: -0.015em !important;
    line-height: 1.3 !important;
    position: relative !important;
  }

  .services-discovery-panel-section-divider {
    width: clamp(60px, 8vw, 80px) !important;
    height: 3px !important;
    background: linear-gradient(90deg, var(--brand-blue) 0%, rgba(26, 67, 191, 0.7) 50%, rgba(26, 67, 191, 0.4) 100%) !important;
    border-radius: 3px !important;
    margin-bottom: clamp(1rem, 1.5vw, 1.25rem) !important;
    box-shadow: 0 2px 8px rgba(26, 67, 191, 0.2) !important;
  }

  .services-discovery-panel-section-text {
    font-size: clamp(0.875rem, 1.2vw, 1rem) !important;
    line-height: 1.75 !important;
    color: var(--muted) !important;
    margin: 0 !important;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
  }

  /* Offer List (What We Offer & Why Choose Us) */
  .services-discovery-panel-offer-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: clamp(0.75rem, 1.2vw, 1rem) !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  @media (max-width: 968px) {
    .services-discovery-panel-offer-list {
      grid-template-columns: 1fr !important;
      gap: clamp(1rem, 2vw, 1.25rem) !important;
      width: 100% !important;
      max-width: 100% !important;
    }
  }

  @media (max-width: 768px) {
    .services-discovery-panel-offer-list {
      grid-template-columns: 1fr !important;
      gap: clamp(1.125rem, 2.5vw, 1.375rem) !important;
    }
  }

  .services-discovery-panel-offer-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: clamp(0.75rem, 1.2vw, 1rem) !important;
    padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(1rem, 1.8vw, 1.25rem) !important;
    background: linear-gradient(135deg, rgba(26, 67, 191, 0.08) 0%, rgba(26, 67, 191, 0.04) 100%) !important;
    border: 1.5px solid rgba(26, 67, 191, 0.12) !important;
    border-radius: 10px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  @media (max-width: 968px) {
    .services-discovery-panel-offer-item {
      padding: clamp(1.25rem, 2.5vw, 1.5rem) clamp(1.25rem, 2.5vw, 1.75rem) !important;
      gap: clamp(1rem, 2vw, 1.25rem) !important;
      border-radius: 14px !important;
      border-width: 2px !important;
      min-height: 72px !important;
      align-items: center !important;
      width: 100% !important;
      max-width: 100% !important;
    }
  }

  .services-discovery-panel-offer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 67, 191, 0.1), transparent);
    transition: left 0.6s ease;
  }

  .services-discovery-panel-offer-item:hover::before {
    left: 100%;
  }

  .services-discovery-panel-offer-item:hover {
    background: linear-gradient(135deg, rgba(26, 67, 191, 0.15) 0%, rgba(26, 67, 191, 0.08) 100%);
    border-color: rgba(26, 67, 191, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 67, 191, 0.22);
  }

  /* CTA Section */
  .services-discovery-panel-cta-section {
    margin-top: clamp(1.75rem, 2.5vw, 2.25rem) !important;
    padding-top: clamp(1.5rem, 2vw, 1.75rem) !important;
    border-top: 2px solid rgba(26, 67, 191, 0.12) !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: clamp(0.875rem, 1.5vw, 1.25rem) !important;
    position: relative !important;
  }

  .services-discovery-panel-cta-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--brand-blue) 50%, transparent 100%);
    border-radius: 2px;
  }

  @media (max-width: 968px) {
    .services-discovery-panel-cta-section {
      flex-direction: column !important;
      gap: clamp(0.875rem, 1.5vw, 1rem) !important;
    }

    .services-discovery-panel-cta {
      width: 100% !important;
      max-width: 100% !important;
      min-width: auto !important;
    }
  }
