      /* Global Smooth Scrolling & Performance Optimization */
      html {
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }

      body {
        background-color: #0d0d0d !important;
        overflow-x: hidden;
        overscroll-behavior-y: none;
      }

      #main {
        overflow-x: clip;
        max-width: 100vw;
      }

      /* ── Capitalize every word across all text on the page ── */
      body *,
      body p,
      body span,
      body div,
      body li,
      body a,
      body button,
      body label,
      body td,
      body th {
        text-transform: capitalize !important;
      }

      /* ── Fix gap between icon and text column inside service cards ── */
      /* framer-23urb8 is the "Digital Marketing" card outer container (gap:28px default) */
      /* framer-184ckou, framer-13v2h66, framer-q4lp7o etc. are other card containers    */
      .framer-23urb8,
      .framer-184ckou,
      .framer-13v2h66,
      .framer-q4lp7o,
      .framer-1apfbp3,
      .framer-o6bhrn {
        gap: 12px !important;
      }

      /* ── Fix gap between heading and paragraph inside text column ── */
      /* framer-smwk8o / framer-17op4wi etc. are the text column flex containers */
      .framer-smwk8o,
      .framer-e4h1rl,
      .framer-1euvhxj,
      .framer-syy24e,
      .framer-17op4wi,
      .framer-1gebb2p {
        gap: 6px !important;
      }

      /* Override Framer's 40px paragraph-spacing on h3 headings inside cards */
      .framer-smwk8o .framer-styles-preset-e2hkct,
      .framer-e4h1rl .framer-styles-preset-e2hkct,
      .framer-1euvhxj .framer-styles-preset-e2hkct,
      .framer-syy24e .framer-styles-preset-e2hkct,
      .framer-17op4wi .framer-styles-preset-e2hkct,
      .framer-1gebb2p .framer-styles-preset-e2hkct {
        --framer-paragraph-spacing: 0px !important;
      }

      /* Zero out top margin on paragraph container divs */
      .framer-s1lkw9,
      .framer-1iefnd,
      .framer-hhl2tm,
      .framer-1uq5sky,
      .framer-1oo4nvz,
      .framer-je4i8n {
        margin-top: 0 !important;
        --framer-paragraph-spacing: 0px !important;
      }

      /* Override paragraph-spacing on p tags inside card text columns */
      .framer-smwk8o p.framer-text,
      .framer-e4h1rl p.framer-text,
      .framer-1euvhxj p.framer-text,
      .framer-syy24e p.framer-text,
      .framer-17op4wi p.framer-text,
      .framer-1gebb2p p.framer-text,
      .framer-s1lkw9 p.framer-text,
      .framer-1iefnd p.framer-text,
      .framer-hhl2tm p.framer-text,
      .framer-1uq5sky p.framer-text,
      .framer-1oo4nvz p.framer-text,
      .framer-je4i8n p.framer-text {
        --framer-paragraph-spacing: 0px !important;
        margin-top: 0 !important;
      }

      /* Disable hover repaints during scroll for lag-free scrolling */
      body.is-scrolling * {
        pointer-events: none !important;
      }

      @media (hover: none), (pointer: coarse), (max-width: 1023px) {
        h1,
        h2,
        nav[name="Navigation Bar"],
        div[data-framer-name="Quick links"] a::after,
        a[data-highlight="true"]:hover,
        img,
        img:hover,
        .framer-1cdnwd6,
        .wh-faq-item,
        .wh-faq-item:hover {
          animation: none !important;
          transition-duration: 0.01ms !important;
          transition-delay: 0ms !important;
        }


        #ts-modal-overlay,
        #appt-modal-overlay,
        #ai-modal-overlay,
        #biz-modal-overlay,
        #adv-modal-overlay,
        #corp-modal-overlay {
          backdrop-filter: none !important;
          -webkit-backdrop-filter: none !important;
        }

        a[data-highlight="true"]:hover,
        .wh-faq-item:hover {
          transform: none !important;
          box-shadow: none !important;
        }
      }

      /* Custom Scrollbar for a premium feel */
      ::-webkit-scrollbar {
        width: 8px;
      }

      ::-webkit-scrollbar-track {
        background: #050505;
      }

      ::-webkit-scrollbar-thumb {
        background: #222;
        border-radius: 10px;
      }

      ::-webkit-scrollbar-thumb:hover {
        background: #95F547;
      }

      /* Base Premium Keyframes */
      @keyframes premiumFadeInUp {
        0% {
          opacity: 0;
          transform: translateY(40px) scale(0.97);
        }

        100% {
          opacity: 1;
          transform: translateY(0) scale(1);
        }
      }

      @keyframes shimmer {
        0% {
          background-position: -200% center;
        }

        100% {
          background-position: 200% center;
        }
      }

      @keyframes premiumFloat {

        0%,
        100% {
          transform: translateY(0) rotate(0deg);
        }

        50% {
          transform: translateY(-15px) rotate(1deg);
        }
      }

      @keyframes borderGlow {

        0%,
        100% {
          border-color: rgba(149, 244, 71, 0.2);
          box-shadow: 0 0 10px rgba(149, 244, 71, 0.05);
        }

        50% {
          border-color: rgba(149, 244, 71, 0.6);
          box-shadow: 0 0 30px rgba(149, 244, 71, 0.15);
        }
      }

      /* Premium Typography Shimmer on Main Headings */
      h1,
      h2 {
        background: linear-gradient(to right, #ffffff 20%, #95F547 40%, #95F547 60%, #ffffff 80%);
        background-size: 200% auto;
        color: #fff;
        background-clip: text;
        text-fill-color: transparent;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: shimmer 8s linear infinite;
      }



      /* Deep glow on primary elements */
      a[data-highlight="true"] {
        position: relative;
        overflow: hidden;
        border-radius: 50px !important;
      }

      a[data-highlight="true"]:hover {
        animation: borderGlow 3s infinite;
      }

      /* Premium Floating Nav Bar - Stylistic Only to Preserve Responsiveness */
      nav[name="Navigation Bar"] {
        background: rgba(10, 10, 10, 0.6) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border: none !important;
        box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(149, 244, 71, 0.05) !important;
        z-index: 1000 !important;
        transition: all 0.4s ease !important;
      }

      nav[name="Navigation Bar"]:hover {
        border: none !important;
        box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(149, 244, 71, 0.15) !important;
      }

      /* Animated Underline for Nav Links */
      div[data-framer-name="Quick links"] a {
        position: relative;
        text-decoration: none !important;
      }

      div[data-framer-name="Quick links"] a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -4px;
        left: 0;
        background-color: #95F547;
        transition: width 0.3s ease;
        border-radius: 2px;
      }

      div[data-framer-name="Quick links"] a:hover::after {
        width: 100%;
      }

      /* Premium Image Reveal and Interaction */
      img {
        transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
        filter: saturate(1.1) brightness(0.9);
      }

      img:hover {
        transform: scale(1.05) rotate(1.5deg);
        filter: saturate(1.2) brightness(1.1) drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
      }

      /* Cinematic Floating for isolated assets */
      .framer-1cdnwd6 {
        animation: premiumFloat 8s ease-in-out infinite;
      }

      /* Project card thumbnails: keep images static and visible.
         Framer hover variants add fades/scales/covers that can make cards look blank. */
      .framer-sDblr .framer-45eyj2,
      .framer-sDblr .framer-b4oa1y,
      .framer-sDblr [data-framer-background-image-wrapper],
      .framer-sDblr img,
      .framer-sDblr img:hover,
      .framer-sDblr.hover .framer-45eyj2,
      .framer-sDblr.hover .framer-b4oa1y,
      .framer-sDblr.hover [data-framer-background-image-wrapper],
      .framer-sDblr.hover img,
      .framer-sDblr:hover .framer-45eyj2,
      .framer-sDblr:hover .framer-b4oa1y,
      .framer-sDblr:hover [data-framer-background-image-wrapper],
      .framer-sDblr:hover img {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        animation: none !important;
        transition: none !important;
        transform: none !important;
      }

      .framer-sDblr .framer-45eyj2,
      .framer-sDblr.hover .framer-45eyj2,
      .framer-sDblr:hover .framer-45eyj2 {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        min-height: 300px !important;
        height: 300px !important;
        overflow: hidden !important;
      }

      .framer-sDblr .framer-b4oa1y,
      .framer-sDblr.hover .framer-b4oa1y,
      .framer-sDblr:hover .framer-b4oa1y {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: 300px !important;
        position: relative !important;
        overflow: hidden !important;
      }

      .framer-sDblr [data-framer-background-image-wrapper],
      .framer-sDblr.hover [data-framer-background-image-wrapper],
      .framer-sDblr:hover [data-framer-background-image-wrapper] {
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
      }

      .framer-sDblr img,
      .framer-sDblr img:hover,
      .framer-sDblr.hover img,
      .framer-sDblr:hover img {
        width: 100% !important;
        height: 100% !important;
        filter: saturate(1.08) brightness(0.92) !important;
        object-fit: cover !important;
        object-position: center center !important;
        transform: none !important;
      }

      .framer-sDblr [data-framer-name="Cover"],
      .framer-sDblr:hover [data-framer-name="Cover"],
      .framer-sDblr.hover [data-framer-name="Cover"] {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        animation: none !important;
        transition: none !important;
      }

      /* FAQ Accordion - Agency Style */
      .wh-faq-item {
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        border: 1px solid rgba(255, 255, 255, 0.05);
        background: rgba(255, 255, 255, 0.01);
        border-radius: 12px;
        margin: 0 auto 12px auto;
        max-width: 750px;
      }

      .wh-faq-item:hover {
        transform: translateX(12px) scale(1.01);
        background: rgba(149, 244, 71, 0.03);
        border-color: rgba(149, 244, 71, 0.3);
        box-shadow: 0 10px 30px -10px rgba(149, 244, 71, 0.1);
      }

      .wh-faq-arrow {
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      }

      .wh-faq-item.open .wh-faq-arrow {
        transform: rotate(180deg) scale(1.2);
        stroke: #95F547;
      }

      /* FAQ Typography + Spacing */
      #wh-faq-container h3,
      #wh-faq-container h4,
      #wh-faq-container h5,
      #wh-faq-container h6 {
        font-size: clamp(17px, 1.25vw, 22px) !important;
        line-height: 1.35 !important;
      }

      #wh-faq-container p,
      #wh-faq-container li {
        font-size: clamp(15px, 1.05vw, 17px) !important;
        line-height: 1.7 !important;
      }

      #wh-faq-container .wh-faq-question span,
      #wh-faq-container .wh-faq-question p {
        font-size: clamp(17px, 1.15vw, 22px) !important;
        line-height: 1.3 !important;
      }

      @media (max-width: 767px) {
        .wh-faq-item {
          max-width: 100%;
          border-radius: 12px;
        }

        #wh-faq-container .wh-faq-question span,
        #wh-faq-container .wh-faq-question p {
          font-size: 16px !important;
        }

        #wh-faq-container p,
        #wh-faq-container li {
          font-size: 14px !important;
          line-height: 1.65 !important;
        }
      }

      /* =====================================================
         TRIPSPARK CARD — HOVER FIX
         Uses href attribute selector so it works IMMEDIATELY
         from CSS, without waiting for JS to add .ts-card-trigger
         ===================================================== */

      /* Target by href (works SSR) + id (post-hydration) + data attr / class */
      a[href*="duJFzcvIZ"],
      a[href*="appointment-system-five-teal"],
      a[href*="basic-analytics-report"],
      a[href*="adv-property-listing.vercel.app"],
      #lr8AT65cU,
      [data-wh-appt-card],
      .ts-card-trigger {
        cursor: pointer !important;
        position: relative;
      }

      /* Static card images: no hover movement or fade */
      a[href*="duJFzcvIZ"] img,
      a[href*="appointment-system-five-teal"] img,
      a[href*="basic-analytics-report"] img,
      a[href*="adv-property-listing.vercel.app"] img,
      #lr8AT65cU img,
      [data-wh-appt-card] img,
      .ts-card-trigger img {
        filter: saturate(1.1) brightness(0.88) !important;
        animation: none !important;
        transition: none !important;
        transform: none !important;
      }
      a[href*="duJFzcvIZ"]:hover img,
      a[href*="appointment-system-five-teal"]:hover img,
      a[href*="basic-analytics-report"]:hover img,
      a[href*="adv-property-listing.vercel.app"]:hover img,
      #lr8AT65cU:hover img,
      [data-wh-appt-card]:hover img,
      .ts-card-trigger:hover img,
      a[href*="duJFzcvIZ"] img:hover,
      a[href*="appointment-system-five-teal"] img:hover,
      a[href*="basic-analytics-report"] img:hover,
      a[href*="adv-property-listing.vercel.app"] img:hover,
      #lr8AT65cU img:hover,
      [data-wh-appt-card] img:hover,
      .ts-card-trigger img:hover {
        filter: saturate(1.1) brightness(0.88) !important;
        transform: none !important;
      }

      /* "View Case Study →" badge — ALWAYS SHOWN */
      .ts-card-trigger::after {
        content: 'View Case Study →';
        position: absolute;
        bottom: 12px;
        right: 14px;
        background: linear-gradient(135deg, #95F547, #7ed429);
        color: #0d0d0d;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.06em;
        padding: 5px 13px;
        border-radius: 20px;
        opacity: 1 !important;
        transform: translateY(0) !important;
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
        z-index: 10;
        font-family: 'Inter', sans-serif;
        text-transform: uppercase;
      }
      .ts-card-trigger:hover::after {
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(149, 245, 71, 0.3);
      }


      /* ── Overlay ── */
      #ts-modal-overlay,
      #appt-modal-overlay,
      #ai-modal-overlay,
      #biz-modal-overlay,
      #adv-modal-overlay,
      #corp-modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        z-index: 99999;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: 40px 16px 60px;
        overflow-y: auto;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      }
      #ts-modal-overlay.ts-open,
      #appt-modal-overlay.ts-open,
      #ai-modal-overlay.ts-open,
      #biz-modal-overlay.ts-open,
      #adv-modal-overlay.ts-open,
      #corp-modal-overlay.ts-open {
        opacity: 1;
        pointer-events: all;
      }

      /* ── Panel ── */
      #ts-modal-panel,
      .ts-modal-panel {
        background: #0e1014;
        border: 1px solid rgba(149, 245, 71, 0.18);
        border-radius: 20px;
        width: 100%;
        max-width: 980px;
        box-shadow:
          0 40px 100px -20px rgba(0, 0, 0, 0.95),
          0 0 0 1px rgba(255,255,255,0.03),
          0 0 60px rgba(149, 245, 71, 0.05);
        transform: translateY(50px) scale(0.96);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow: hidden;
        position: relative;
      }
      #ts-modal-overlay.ts-open #ts-modal-panel,
      #appt-modal-overlay.ts-open .ts-modal-panel,
      #ai-modal-overlay.ts-open .ts-modal-panel,
      #biz-modal-overlay.ts-open .ts-modal-panel,
      #adv-modal-overlay.ts-open .ts-modal-panel,
      #corp-modal-overlay.ts-open .ts-modal-panel {
        transform: translateY(0) scale(1);
      }

      /* ── Close button (applies to both modals) ── */
      #ts-modal-close,
      #appt-modal-close,
      #ai-modal-close,
      #biz-modal-close,
      #adv-modal-close,
      #corp-modal-close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.1);
        color: #fff;
        cursor: pointer;
        z-index: 20;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s, border-color 0.2s, transform 0.25s;
      }
      #ts-modal-close:hover,
      #appt-modal-close:hover,
      #ai-modal-close:hover,
      #biz-modal-close:hover,
      #adv-modal-close:hover,
      #corp-modal-close:hover {
        background: rgba(149,245,71,0.12);
        border-color: rgba(149,245,71,0.45);
        transform: rotate(90deg);
      }

      /* ── Hero split: text left / image right ── */
      .ts-hero-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 260px;
        background: linear-gradient(135deg, #0a0c10 0%, #0e1218 100%);
        border-bottom: 1px solid rgba(255,255,255,0.05);
      }
      @media (max-width: 700px) {
        .ts-hero-split { grid-template-columns: 1fr; }
      }

      /* Left: meta content */
      .ts-hero-left {
        padding: 36px 32px 36px 36px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0;
      }
      @media (max-width: 700px) {
        .ts-hero-left { padding: 28px 24px 20px; }
      }

      /* Right: screenshot image */
      .ts-hero-right {
        position: relative;
        overflow: hidden;
        min-height: 220px;
      }
      .ts-hero-right img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        filter: brightness(0.8) saturate(1.1) !important;
        transform: none !important;
        display: block;
      }
      .ts-hero-right::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to right,
          #0a0c10 0%,
          rgba(10, 12, 16, 0) 30%
        );
        z-index: 1;
      }
      @media (max-width: 700px) {
        .ts-hero-right { min-height: 180px; }
        .ts-hero-right::before { display: none; }
      }

      /* Badge */
      .ts-badge {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: rgba(149, 245, 71, 0.08);
        border: 1px solid rgba(149, 245, 71, 0.28);
        border-radius: 50px;
        padding: 4px 14px 4px 10px;
        font-size: 10.5px;
        font-weight: 700;
        letter-spacing: 0.1em;
        color: #95F547;
        text-transform: uppercase;
        font-family: 'Inter', sans-serif;
        margin-bottom: 14px;
        width: fit-content;
      }

      /* Title */
      .ts-title {
        font-size: clamp(30px, 5vw, 44px);
        font-weight: 800;
        color: #ffffff !important;
        margin: 0 0 8px;
        line-height: 1.12;
        letter-spacing: -0.02em;
        font-family: 'Inter', sans-serif;
        /* override global h2 shimmer animation */
        background: none !important;
        -webkit-text-fill-color: #fff !important;
        animation: none !important;
      }

      /* Subtitle */
      .ts-subtitle {
        font-size: 14px;
        color: rgba(255,255,255,0.5);
        line-height: 1.65;
        margin: 0 0 22px;
        font-family: 'Inter', sans-serif;
        max-width: 340px;
      }

      /* Demo CTA button */
      .ts-demo-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #ffffff;
        color: #0d0d0d;
        font-weight: 700;
        font-size: 13.5px;
        padding: 11px 22px;
        border-radius: 50px;
        text-decoration: none !important;
        width: fit-content;
        transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
        box-shadow: 0 4px 20px rgba(255,255,255,0.1);
        font-family: 'Inter', sans-serif;
        letter-spacing: 0.01em;
      }
      .ts-demo-btn:hover {
        background: #95F547;
        transform: translateY(-1px);
        box-shadow: 0 8px 28px rgba(149,245,71,0.35);
      }
      .ts-demo-btn svg {
        flex-shrink: 0;
      }

      /* ── Content body ── */
      .ts-body {
        padding: 32px 36px 40px;
        font-family: 'Inter', sans-serif;
      }
      @media (max-width: 700px) {
        .ts-body { padding: 24px 20px 32px; }
      }

      /* Section label row */
      .ts-section-label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 10.5px;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #95F547;
        margin-bottom: 12px;
        margin-top: 32px;
        font-family: 'Inter', sans-serif;
      }
      .ts-section-label:first-child {
        margin-top: 0;
      }
      .ts-section-label svg {
        opacity: 0.85;
        flex-shrink: 0;
      }

      /* Overview text */
      .ts-overview-text {
        font-size: 14px;
        line-height: 1.85;
        color: rgba(255,255,255,0.68);
        font-family: 'Inter', sans-serif;
      }

      /* Features 2-column grid */
      .ts-features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 24px;
        margin-top: 2px;
      }
      @media (max-width: 600px) {
        .ts-features-grid { grid-template-columns: 1fr; }
      }
      .ts-feature-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 13.5px;
        color: rgba(255,255,255,0.72);
        padding: 9px 0;
        border-bottom: 1px solid rgba(255,255,255,0.04);
        line-height: 1.55;
        font-family: 'Inter', sans-serif;
      }
      .ts-feature-item::before {
        content: '•';
        color: #95F547;
        font-size: 18px;
        line-height: 1.2;
        flex-shrink: 0;
        margin-top: 1px;
      }

      /* Tech stack inline text */
      .ts-tech-text {
        font-size: 14px;
        color: rgba(255,255,255,0.6);
        font-family: 'Inter', sans-serif;
        line-height: 1.7;
      }
      .ts-tech-text strong {
        color: rgba(255,255,255,0.85);
        font-weight: 500;
      }

      /* Results 2-column grid */
      .ts-results-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 2px;
      }
      @media (max-width: 600px) {
        .ts-results-grid { grid-template-columns: 1fr; }
      }
      .ts-result-card {
        background: rgba(20, 23, 28, 0.8);
        border: 1px solid rgba(255,255,255,0.07);
        border-radius: 12px;
        padding: 16px 18px;
        font-size: 13.5px;
        color: rgba(255,255,255,0.72);
        line-height: 1.55;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-family: 'Inter', sans-serif;
      }
      .ts-result-card::before {
        content: '';
        display: block;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #95F547;
        flex-shrink: 0;
        margin-top: 5px;
      }

      /* Divider */
      .ts-divider {
        height: 1px;
        background: rgba(255,255,255,0.05);
        margin: 30px 0 0;
      }

      /* Hide waitlist/newsletter subscription section */
      .framer-1pgmh98, [data-framer-name="Waitlist"], [data-framer-name="Get regular updates"] {
        display: none !important;
      }

      /* Hide Blogs and 404 links from footer */
      .framer-p6l7lz, .framer-1lvzu7z {
        display: none !important;
      }

      /* Keep phone number in a single line */
      .framer-1jur7fm, .framer-1jur7fm a {
        white-space: nowrap !important;
      }

      /* =====================================================
         INTRO ANIMATION VIDEO OVERLAY
         ===================================================== */
      #wh-intro-overlay {
        position: fixed;
        inset: 0;
        z-index: 100000;
        background-color: #000000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
        transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
        visibility: visible;
        overflow: hidden;
      }

      #wh-intro-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      #wh-intro-skip {
        position: absolute;
        bottom: 40px;
        right: 40px;
        z-index: 100001;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.25);
        color: #ffffff;
        padding: 10px 24px;
        border-radius: 40px;
        font-family: 'Inter', sans-serif;
        font-size: 13.5px;
        font-weight: 600;
        cursor: pointer;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        letter-spacing: 0.05em;
        text-transform: uppercase;
      }

      #wh-intro-skip:hover {
        background: rgba(149, 245, 71, 0.18);
        border-color: rgba(149, 245, 71, 0.6);
        color: #95F547;
        box-shadow: 0 4px 20px rgba(149, 245, 71, 0.25);
        transform: translateY(-2px);
      }

      /* Hide overlay if session storage flag exists */
      .intro-hidden #wh-intro-overlay {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
      }

      /* Lock scrolling and hide content from IntersectionObserver when intro is visible */
      html:not(.intro-hidden),
      html:not(.intro-hidden) body {
        /* overflow: hidden !important; */
        /* height: 100% !important; */
      }
      
      html:not(.intro-hidden) #main {
        visibility: hidden !important;
      }

      /* =====================================================
         RESPONSIVE ENHANCEMENTS (Mobile, Tablet, and Browsers)
         ===================================================== */
      @media (max-width: 768px) {
        .ts-modal-panel {
          width: calc(100% - 16px);
          margin: 20px auto;
          border-radius: 16px;
        }
        .ts-hero-left {
          padding: 24px 20px 20px 24px;
        }
        .ts-title {
          font-size: 28px !important;
        }
        .ts-subtitle {
          max-width: 100%;
          font-size: 13.5px;
          margin-bottom: 18px;
        }
        .ts-body {
          padding: 24px 24px 32px;
        }
        #ts-modal-close,
        #appt-modal-close,
        #ai-modal-close,
        #biz-modal-close,
        #adv-modal-close,
        #corp-modal-close {
          top: 12px;
          right: 12px;
          width: 32px;
          height: 32px;
        }
      }

      @media (min-width: 768px) and (max-width: 1023px) {
        .ts-modal-panel {
          width: min(100% - 32px, 920px);
          margin: 24px auto;
          border-radius: 18px;
        }

        .ts-hero-split {
          min-height: 0;
          grid-template-columns: 1.1fr 0.9fr;
        }

        .ts-hero-left {
          padding: 30px 28px 28px 32px;
        }

        .ts-hero-right {
          min-height: 250px;
        }

        .ts-body {
          padding: 28px 30px 34px;
        }

        .ts-features-grid,
        .ts-results-grid {
          gap: 12px 18px;
        }

        .ts-feature-item,
        .ts-result-card,
        .ts-overview-text,
        .ts-tech-text {
          font-size: 13.5px;
        }

        .framer-ca324m {
          gap: 18px !important;
          padding-inline: 20px !important;
          grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        }

        .framer-ca324m > * {
          width: 100% !important;
          min-width: 0 !important;
          max-width: 100% !important;
        }

        .framer-sDblr .framer-45eyj2,
        .framer-sDblr .framer-b4oa1y {
          height: 250px !important;
          min-height: 250px !important;
        }
      }

      @media (min-width: 1024px) and (max-width: 1199px) {
        .framer-ca324m {
          gap: 22px !important;
          padding-inline: 20px !important;
        }
      }

      @media (max-width: 600px) {
        #wh-intro-skip {
          bottom: 24px;
          right: 24px;
          padding: 8px 18px;
          font-size: 12px;
        }
        .ts-hero-left {
          padding: 20px 16px 16px 20px;
        }
        .ts-body {
          padding: 20px 16px 24px;
        }
        .ts-title {
          font-size: 24px !important;
        }
        .ts-subtitle {
          font-size: 13px;
        }
        .ts-feature-item {
          font-size: 12.5px;
          padding: 7px 0;
        }
        .ts-result-card {
          padding: 12px 14px;
          font-size: 12.5px;
        }
        .framer-1jur7fm, .framer-1jur7fm a {
          font-size: 13px !important;
        }
      }

      /* =====================================================
         CASE STUDIES GRID OVERRIDE (FULLY RESPONSIVE)
         ===================================================== */
      /* Convert the flex container to CSS Grid universally */
      .framer-ca324m {
        display: grid !important;
        gap: 24px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        max-width: 1440px !important;
        margin: 0 auto !important;
        padding-inline: 24px !important;
      }

      /* Desktop: 3 Columns */
      @media (min-width: 1024px) {
        .framer-ca324m {
          grid-template-columns: repeat(3, 1fr) !important;
          grid-template-rows: repeat(2, auto) !important;
        }
      }

      /* Tablet: 2 Columns */
      @media (max-width: 1023px) and (min-width: 768px) {
        .framer-ca324m {
          grid-template-columns: repeat(2, 1fr) !important;
        }
      }

      /* Mobile: 1 Column */
      @media (max-width: 767px) {
        .framer-ca324m {
          grid-template-columns: 1fr !important;
          gap: 16px !important;
          padding-inline: 16px !important;
        }
      }

      /* Reset all child wrappers so they fill grid cells cleanly */
      .framer-ca324m > * {
        width: auto !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      
      /* =====================================================
         SERVICES GRID OVERRIDE (FULLY RESPONSIVE)
         ===================================================== */
      .framer-q83gsd {
        display: grid !important;
        gap: 24px !important;
        width: 100% !important;
        max-width: 1440px !important;
        margin: 0 auto !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
      }

      /* Desktop: 3 Columns */
      @media (min-width: 1024px) {
        .framer-q83gsd {
          grid-template-columns: repeat(3, 1fr) !important;
        }
      }

      /* Tablet: 2 Columns */
      @media (max-width: 1023px) and (min-width: 768px) {
        .framer-q83gsd {
          grid-template-columns: repeat(2, 1fr) !important;
        }
      }

      /* Mobile: 1 Column */
      @media (max-width: 767px) {
        .framer-q83gsd {
          grid-template-columns: 1fr !important;
          padding-left: 16px !important;
          padding-right: 16px !important;
        }
      }

      /* Reset all child wrappers so they fill grid cells cleanly */
      .framer-q83gsd > * {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
      }

      @media (max-width: 1023px) {
        .framer-ca324m,
        .framer-ca324m > *,
        .framer-ca324m > * > * {
          box-sizing: border-box !important;
        }

        .framer-ca324m > * {
          width: 100% !important;
        }
      }

      @media (max-width: 767px) {
        .framer-ca324m,
        .framer-ca324m > *,
        .framer-ca324m > * > *,
        .framer-sDblr,
        .framer-sDblr > *,
        .framer-sDblr .framer-45eyj2,
        .framer-sDblr .framer-b4oa1y,
        .framer-sDblr [data-framer-background-image-wrapper] {
          min-width: 0 !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
        }

        .framer-sDblr,
        .framer-sDblr > *,
        .framer-sDblr .framer-45eyj2,
        .framer-sDblr .framer-b4oa1y {
          width: 100% !important;
          max-width: 100% !important;
          min-width: 0 !important;
        }

        .framer-sDblr {
          margin-inline: 0 !important;
        }

        .framer-sDblr .framer-45eyj2,
        .framer-sDblr .framer-b4oa1y {
          height: 240px !important;
          min-height: 240px !important;
        }

        .ts-hero-split {
          min-height: 0;
        }

        .ts-hero-left {
          gap: 8px;
        }
      }

      @media (min-width: 768px) and (max-width: 1023px) {
        .framer-sDblr {
          margin-inline: 0 !important;
        }

        .framer-sDblr .framer-45eyj2,
        .framer-sDblr .framer-b4oa1y {
          height: 250px !important;
          min-height: 250px !important;
        }
      }

      @media (max-width: 480px) {
        .framer-ca324m {
          padding-inline: 12px !important;
        }

        .framer-ca324m > * {
          width: 100% !important;
        }

        .framer-sDblr .framer-45eyj2,
        .framer-sDblr .framer-b4oa1y {
          height: 220px !important;
          min-height: 220px !important;
        }

        .ts-modal-panel {
          border-radius: 14px;
        }

        .ts-body {
          padding-bottom: 28px;
        }
      }

      /* Landscape phones: use the extra width instead of keeping portrait stacking */
      @media (max-width: 926px) and (orientation: landscape) {
        .framer-ca324m {
          grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
          gap: 14px !important;
          padding-inline: 14px !important;
        }

        .framer-ca324m > * {
          width: 100% !important;
          min-width: 0 !important;
          max-width: 100% !important;
        }

        .framer-sDblr {
          margin-inline: 0 !important;
        }

        .framer-sDblr .framer-45eyj2,
        .framer-sDblr .framer-b4oa1y {
          height: 180px !important;
          min-height: 180px !important;
        }

        .ts-modal-panel {
          width: min(100% - 20px, 940px);
          margin: 12px auto;
        }

        .ts-hero-split {
          grid-template-columns: 1.15fr 0.85fr;
        }

        .ts-hero-left {
          padding: 20px 22px 18px 24px;
        }

        .ts-hero-right {
          min-height: 170px;
        }
      }


      /* --- SERVICES SECTION COLOR FIX --- */
      /* The user noticed this section had a different background color than #0d0d0d */
      section.framer-11nzofm, 
      section[data-framer-name="SERVICES"] {
        background-color: #000000 !important;
        background: #000000 !important;
        position: relative;
        overflow: hidden;
        margin-top: -1px;
        isolation: isolate;
      }

      /* Blend the section into the page while keeping the green motion visible */
      section.framer-11nzofm::before, 
      section[data-framer-name="SERVICES"]::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background:
          radial-gradient(circle at 76% 34%, rgba(149, 245, 71, 0.24), rgba(149, 245, 71, 0.1) 18%, rgba(149, 245, 71, 0.03) 34%, transparent 60%),
          radial-gradient(circle at 88% 18%, rgba(149, 245, 71, 0.16), transparent 18%),
          radial-gradient(circle at 20% 12%, rgba(149, 245, 71, 0.06), transparent 22%),
          linear-gradient(to bottom, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.92) 22%, rgba(0,0,0,0.88) 50%, rgba(0,0,0,0.92) 78%, rgba(0,0,0,0.98) 100%);
        background-size: 140% 140%, 120% 120%, 120% 120%, 100% 100%;
        background-position: 100% 28%, 88% 20%, 10% 8%, 0 0;
        animation: whServicesGlow 16s ease-in-out infinite alternate;
        z-index: 0;
      }

      section.framer-11nzofm::after,
      section[data-framer-name="SERVICES"]::after {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background:
          linear-gradient(180deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.5) 24%, rgba(0,0,0,0.34) 50%, rgba(0,0,0,0.5) 76%, rgba(0,0,0,0.96) 100%),
          linear-gradient(115deg, transparent 42%, rgba(149,245,71,0.07) 50%, transparent 58%);
        background-size: 100% 100%, 220% 220%;
        background-position: 0 0, 100% 50%;
        animation: whServicesSweep 18s ease-in-out infinite alternate;
        z-index: 0;
      }
      
      /* Ensure content stays above the blend overlay */
      section.framer-11nzofm > div,
      section[data-framer-name="SERVICES"] > div {
        position: relative;
        z-index: 1;
      }

      @media (max-width: 1023px) {
        section.framer-11nzofm,
        section[data-framer-name="SERVICES"] {
          background: #000000 !important;
        }

        section.framer-11nzofm::before,
        section[data-framer-name="SERVICES"]::before {
          backdrop-filter: none;
          -webkit-backdrop-filter: none;
          background:
            radial-gradient(circle at 76% 34%, rgba(149, 245, 71, 0.2), rgba(149, 245, 71, 0.08) 18%, rgba(149, 245, 71, 0.02) 34%, transparent 62%),
            radial-gradient(circle at 88% 18%, rgba(149, 245, 71, 0.14), transparent 18%),
            linear-gradient(to bottom, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.9) 50%, rgba(0,0,0,0.98) 100%);
        }
      }

      /* Services cards should feel like they belong to the same surface */
      .framer-q83gsd > div,
      .framer-q83gsd .framer-15z0ogs,
      .framer-q83gsd [data-framer-name="Container"] {
        position: relative !important;
        background: rgba(9, 9, 9, 0.52) !important;
        border: 1px solid rgba(149, 245, 71, 0.13) !important;
        box-shadow:
          0 14px 30px rgba(0, 0, 0, 0.22),
          inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-radius: 18px !important;
        overflow: hidden !important;
      }

      .framer-q83gsd > div::before,
      .framer-q83gsd .framer-15z0ogs::before,
      .framer-q83gsd [data-framer-name="Container"]::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        border-radius: inherit;
        background:
          linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 18%),
          radial-gradient(circle at 50% 0%, rgba(149,245,71,0.05), transparent 58%);
      }

      .framer-q83gsd > div:hover,
      .framer-q83gsd .framer-15z0ogs:hover,
      .framer-q83gsd [data-framer-name="Container"]:hover {
        border-color: rgba(149, 245, 71, 0.16) !important;
        box-shadow:
          0 16px 32px rgba(0, 0, 0, 0.26),
          inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
      }

      @media (max-width: 1023px) {
        .framer-q83gsd > div,
        .framer-q83gsd .framer-15z0ogs,
        .framer-q83gsd [data-framer-name="Container"] {
          backdrop-filter: none !important;
          -webkit-backdrop-filter: none !important;
        }
      }
      
      /* Ensure inner wrappers do not have a grey gradient */
      section.framer-11nzofm > [data-framer-background-image-wrapper] {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        filter: brightness(0.42) contrast(1.15) saturate(1.05) !important;
      }

      @keyframes whServicesGlow {
        0% {
          background-position: 98% 26%, 86% 18%, 12% 10%, 0 0;
        }

        50% {
          background-position: 72% 40%, 92% 12%, 18% 6%, 0 0;
        }

        100% {
          background-position: 88% 32%, 80% 24%, 8% 14%, 0 0;
        }
      }

      @keyframes whServicesSweep {
        0% {
          background-position: 0 0, 120% 50%;
        }

        50% {
          background-position: 0 0, 70% 50%;
        }

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

      /* =====================================================
         CASE STUDIES SECTION DARK THEME
         ===================================================== */
      section.framer-sDblr,
      section[data-framer-name="CASE STUDIES"],
      section:has(.framer-ca324m) {
        background-color: #000000 !important;
        background: #000000 !important;
        position: relative;
        overflow: hidden;
        isolation: isolate;
      }

      section.framer-sDblr::before,
      section[data-framer-name="CASE STUDIES"]::before,
      section:has(.framer-ca324m)::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background:
          radial-gradient(circle at 76% 34%, rgba(149, 245, 71, 0.22), rgba(149, 245, 71, 0.08) 18%, rgba(149, 245, 71, 0.02) 34%, transparent 60%),
          radial-gradient(circle at 88% 18%, rgba(149, 245, 71, 0.14), transparent 18%),
          radial-gradient(circle at 18% 12%, rgba(149, 245, 71, 0.06), transparent 22%),
          linear-gradient(to bottom, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.92) 22%, rgba(0,0,0,0.88) 50%, rgba(0,0,0,0.92) 78%, rgba(0,0,0,0.98) 100%);
        background-size: 140% 140%, 120% 120%, 120% 120%, 100% 100%;
        background-position: 100% 28%, 88% 20%, 10% 8%, 0 0;
        animation: whServicesGlow 16s ease-in-out infinite alternate;
        z-index: 0;
      }

      section.framer-sDblr::after,
      section[data-framer-name="CASE STUDIES"]::after,
      section:has(.framer-ca324m)::after {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background:
          linear-gradient(180deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.5) 24%, rgba(0,0,0,0.34) 50%, rgba(0,0,0,0.5) 76%, rgba(0,0,0,0.96) 100%),
          linear-gradient(115deg, transparent 42%, rgba(149,245,71,0.07) 50%, transparent 58%);
        background-size: 100% 100%, 220% 220%;
        background-position: 0 0, 100% 50%;
        animation: whServicesSweep 18s ease-in-out infinite alternate;
        z-index: 0;
      }

      section.framer-sDblr > div,
      section[data-framer-name="CASE STUDIES"] > div,
      section:has(.framer-ca324m) > div {
        position: relative;
        z-index: 1;
      }

      .framer-sDblr > div,
      .framer-sDblr .framer-15z0ogs,
      .framer-sDblr [data-framer-name="Container"] {
        position: relative !important;
        background: rgba(0, 0, 0, 0.18) !important;
        border-color: rgba(149, 245, 71, 0.12) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
      }

      .framer-sDblr > div::before,
      .framer-sDblr .framer-15z0ogs::before,
      .framer-sDblr [data-framer-name="Container"]::before {
        background:
          linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 18%),
          radial-gradient(circle at 50% 0%, rgba(149,245,71,0.03), transparent 60%);
      }

      .wh-pricing-starting {
        width: 100%;
        text-align: left;
        margin-top: 6px;
        margin-bottom: 4px;
        font-size: 10px;
        line-height: 1;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(149, 245, 71, 0.78);
      }

      /* Make pricing cards equal in height */
      .framer-foyudo {
        align-items: stretch !important;
      }
      .framer-18d3wkl, .framer-15gc4lg, .framer-brzakn {
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
      }
      /* Pin the buttons cleanly to the bottom */
      .framer-18d3wkl > :last-child, 
      .framer-15gc4lg > :last-child, 
      .framer-brzakn > :last-child {
        margin-top: auto !important;
      }

      /* Blend the Webbheads logo to hide the dark background */
      .framer-h5zhln, .framer-h5zhln img, 
      .framer-1ajh39q, .framer-jtv5bx-container, 
      .framer-rzab7n, .framer-no5rdq {
        mix-blend-mode: screen !important;
      }

      @media (max-width: 1023px) {
        section.framer-sDblr::before,
        section[data-framer-name="CASE STUDIES"]::before,
        section:has(.framer-ca324m)::before {
          background:
            radial-gradient(circle at 76% 34%, rgba(149, 245, 71, 0.18), rgba(149, 245, 71, 0.06) 18%, rgba(149, 245, 71, 0.02) 34%, transparent 62%),
            linear-gradient(to bottom, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.9) 50%, rgba(0,0,0,0.98) 100%);
        }

        section.framer-sDblr::after,
        section[data-framer-name="CASE STUDIES"]::after,
        section:has(.framer-ca324m)::after {
          background:
            linear-gradient(180deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.56) 24%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.56) 76%, rgba(0,0,0,0.96) 100%),
            linear-gradient(115deg, transparent 42%, rgba(149,245,71,0.06) 50%, transparent 58%);
        }
      }

      /* =====================================================
         FAQ SECTION DARK THEME
         ===================================================== */
      section.framer-s9rnby,
      section[data-framer-name="FaQ"] {
        background-color: #000000 !important;
        background: #000000 !important;
        position: relative;
        overflow: hidden;
        isolation: isolate;
      }

      section.framer-s9rnby::before,
      section[data-framer-name="FaQ"]::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background:
          radial-gradient(circle at 76% 34%, rgba(149, 245, 71, 0.22), rgba(149, 245, 71, 0.08) 18%, rgba(149, 245, 71, 0.02) 34%, transparent 60%),
          radial-gradient(circle at 88% 18%, rgba(149, 245, 71, 0.14), transparent 18%),
          radial-gradient(circle at 18% 12%, rgba(149, 245, 71, 0.06), transparent 22%),
          linear-gradient(to bottom, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.92) 22%, rgba(0,0,0,0.88) 50%, rgba(0,0,0,0.92) 78%, rgba(0,0,0,0.98) 100%);
        background-size: 140% 140%, 120% 120%, 120% 120%, 100% 100%;
        background-position: 100% 28%, 88% 20%, 10% 8%, 0 0;
        animation: whServicesGlow 16s ease-in-out infinite alternate;
        z-index: 0;
      }

      section.framer-s9rnby::after,
      section[data-framer-name="FaQ"]::after {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background:
          linear-gradient(180deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.5) 24%, rgba(0,0,0,0.34) 50%, rgba(0,0,0,0.5) 76%, rgba(0,0,0,0.96) 100%),
          linear-gradient(115deg, transparent 42%, rgba(149,245,71,0.07) 50%, transparent 58%);
        background-size: 100% 100%, 220% 220%;
        background-position: 0 0, 100% 50%;
        animation: whServicesSweep 18s ease-in-out infinite alternate;
        z-index: 0;
      }

      section.framer-s9rnby > div,
      section[data-framer-name="FaQ"] > div {
        position: relative;
        z-index: 1;
      }

      @media (max-width: 1023px) {
        section.framer-s9rnby::before,
        section[data-framer-name="FaQ"]::before {
          background:
            radial-gradient(circle at 76% 34%, rgba(149, 245, 71, 0.18), rgba(149, 245, 71, 0.06) 18%, rgba(149, 245, 71, 0.02) 34%, transparent 62%),
            linear-gradient(to bottom, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.9) 50%, rgba(0,0,0,0.98) 100%);
        }

        section.framer-s9rnby::after,
        section[data-framer-name="FaQ"]::after {
          background:
            linear-gradient(180deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.56) 24%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.56) 76%, rgba(0,0,0,0.96) 100%),
            linear-gradient(115deg, transparent 42%, rgba(149,245,71,0.06) 50%, transparent 58%);
        }
      }

      /* Mobile specific fixes for text overflow and performance */
      @media (max-width: 767px) {
        .framer-11dsg0y {
          width: 100% !important;
          padding: 0 16px !important;
          box-sizing: border-box !important;
        }

        /* Disable heavy background animations on mobile to reduce RAM/CPU usage */
        section.framer-11nzofm::before,
        section[data-framer-name="SERVICES"]::before,
        section.framer-11nzofm::after,
        section[data-framer-name="SERVICES"]::after,
        section.framer-sDblr::before,
        section[data-framer-name="CASE STUDIES"]::before,
        section:has(.framer-ca324m)::before,
        section.framer-sDblr::after,
        section[data-framer-name="CASE STUDIES"]::after,
        section:has(.framer-ca324m)::after,
        section.framer-s9rnby::before,
        section[data-framer-name="FaQ"]::before,
        section.framer-s9rnby::after,
        section[data-framer-name="FaQ"]::after {
          animation: none !important;
        }
      }

      /* Fix entrance animation delays for nav bar, logo, digital ecosystem text, and white dots particles */
      html.intro-hidden nav, html.intro-hidden nav *,
      html.intro-hidden #hero, html.intro-hidden #hero *,
      html.intro-hidden .framer-1f6l89k-container, html.intro-hidden .framer-1f6l89k-container * {
        transition-delay: 0s !important;
        animation-delay: 0s !important;
      }

      /* Hero Mobile Text Overflow Fix */
      @media (max-width: 768px) {
        .framer-11dsg0y {
          width: 100% !important;
          max-width: 90vw !important;
          margin-left: auto !important;
          margin-right: auto !important;
          white-space: normal !important;
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
        }
        .framer-11dsg0y p {
          white-space: normal !important;
          width: 100% !important;
          padding: 0 15px !important;
          box-sizing: border-box !important;
        }
      }

      @media (min-width: 1024px) {
        /* ── Services section subtitle: force 2-line layout ── */
        /* Widen the RichText container so the long sentence breaks into 2 lines */
        .framer-s8dqth {
          max-width: 900px !important;
          width: 900px !important;
        }
        .framer-s8dqth p.framer-styles-preset-1kwfn4v {
          font-size: 18px !important;
          line-height: 1.6 !important;
        }

        /* ── Hero subtitle: force 2-line layout ── */
        /* Widen the hero RichText container so the h4 breaks into 2 lines */
        .framer-11dsg0y {
          max-width: 900px !important;
          width: 900px !important;
        }
        .framer-11dsg0y h4.framer-styles-preset-1kwfn4v {
          font-size: 18px !important;
          line-height: 1.6 !important;
        }
      }



/* Pricing cards equal height fix */
[data-framer-name="Pricing Cards"] {
    display: flex !important;
    align-items: stretch !important;
}

[data-framer-name="Pricing Cards"] > div {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Push the button down to align all buttons at the bottom */
.framer-foyudo div:has(> .framer-1kzuf47) {
    margin-top: auto !important;
}
