    :root {
      --shopify-green: #95bf47;
      --primary: #4770FF;
      --glow: rgba(71, 112, 255, 0.3);
      --dark-bg: #0E1018;
      --text-muted: #6c757d;
    }

html, body {
      overflow-x: hidden;
      width: 100%;
      margin: 0;
      padding: 0;
      position: relative;
    }

    #page-content {
      overflow-x: hidden;
      width: 100%;
      position: relative;
    }

/* --- Mobile Header Centering --- */
    @media (max-width: 768px) {
      .sticky-header-cta .container.d-flex {
        flex-direction: column;
        justify-content: center !important;
        gap: 12px;
      }
      .sticky-header-cta {
        padding-top: 12px !important;
        padding-bottom: 15px !important;
      }
    }

    /* --- Base UI & Animation Styles --- */
    .hero-liquid-bg {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      background: radial-gradient(circle at 10% 20%, rgba(71, 112, 255, 0.08) 0%, transparent 60%);
      z-index: -1;
    }

    .text-gradient {
      background: linear-gradient(135deg, var(--shopify-green), var(--primary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .shopify-floating-sphere {
      width: 120px; height: 120px;
      background: white; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
      box-shadow: 0 0 40px var(--glow);
      display: flex; align-items: center; justify-content: center;
      animation: morph 8s ease-in-out infinite;
      border: 2px solid var(--primary);
      margin: 0 auto;
    }
    .shopify-floating-sphere i { font-size: 50px; color: var(--shopify-green); transition: transform 0.3s;}
    .shopify-floating-sphere:hover i { transform: scale(1.1); }
    
    @keyframes morph {
      0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: translateY(0); }
      50% { border-radius: 50%; transform: translateY(-15px); }
    }

    .bento-card { 
      background: #ffffff; 
      border-radius: 16px; 
      padding: 30px; 
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
      border: 1px solid rgba(0,0,0,0.05);
      box-shadow: 0 4px 20px rgba(0,0,0,0.03);
      height: 100%; 
    }
    .bento-card:hover { 
      transform: translateY(-8px); 
      box-shadow: 0 15px 30px rgba(71, 112, 255, 0.1); 
      border-color: rgba(71, 112, 255, 0.2);
    }

    .seo-text-block { font-size: 1.1rem; line-height: 1.8; color: #4a4a4a; }
    
    .sticky-header-cta { position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 12px rgba(0,0,0,0.05); background: #fff; margin-top: 0;}
    
    .roadmap-step { border-left: 2px solid var(--primary); padding-left: 30px; position: relative; margin-bottom: 40px; }
    .roadmap-step::before { 
        content: ''; position: absolute; left: -10px; top: 5px; 
        width: 18px; height: 18px; background: var(--primary); border-radius: 50%; 
        box-shadow: 0 0 15px var(--glow);
    }

    .service-tag { 
        background: rgba(71, 112, 255, 0.08); color: var(--primary); 
        padding: 6px 14px; border-radius: 8px; font-size: 14px; font-weight: 600; 
        display: inline-block; margin-bottom: 15px; margin-top: 0;
    }

    /* --- Advanced CSS Animations --- */
    .trust-marquee {
      overflow: hidden;
      white-space: nowrap;
      background: var(--dark-bg);
      color: #fff;
      padding: 15px 0;
      display: flex;
      align-items: center;
      position: relative;
    }
    .trust-marquee-track {
      display: inline-block;
      animation: marquee 25s linear infinite;
    }
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .trust-item {
      display: inline-flex;
      align-items: center;
      margin: 0 40px;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.8);
    }
    .trust-item i { color: var(--shopify-green); margin-right: 8px; font-size: 1.2rem; }

    .certification-card {
      position: relative;
      border-radius: 20px;
      padding: 40px;
      color: white;
      overflow: hidden;
      z-index: 1;
      text-align: center;
    }
    .certification-card::before {
      content: '';
      position: absolute;
      top: -50%; left: -50%; width: 200%; height: 200%;
      background: conic-gradient(from 0deg, transparent 70%, var(--shopify-green) 80%, var(--primary) 100%);
      animation: rotate-glow 4s linear infinite;
      z-index: -2;
    }
    .certification-card::after {
      content: '';
      position: absolute;
      inset: 2px;
      background: var(--dark-bg);
      border-radius: 18px;
      z-index: -1;
    }
    @keyframes rotate-glow {
      100% { transform: rotate(360deg); }
    }

    .tech-pill {
      background: rgba(71, 112, 255, 0.05);
      border: 1px solid rgba(71, 112, 255, 0.1);
      color: var(--primary);
      padding: 12px 24px;
      border-radius: 50px;
      font-weight: 600;
      display: inline-block;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      cursor: default;
    }
    .tech-pill:hover {
      transform: translateY(-8px) scale(1.05);
      background: var(--primary);
      color: white;
      box-shadow: 0 10px 20px rgba(71, 112, 255, 0.3);
    }

    /* --- Startup Proven Metrics --- */
    .stats-section-wrapper {
      background: var(--dark-bg);
      border-radius: 24px;
      position: relative;
      overflow: hidden;
    }
    .stats-section-wrapper::before {
      content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
      background: radial-gradient(circle, rgba(71,112,255,0.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .glass-stats-panel {
      padding: 50px;
      position: relative;
      z-index: 1;
    }
    .glass-stats-title { font-size: 1rem; color: #9ca3af; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; text-align: center; margin-bottom: 40px; }
    .stat-card-glass {
      text-align: center;
      position: relative;
      border-right: 1px solid rgba(255, 255, 255, 0.1);
      padding: 0 20px;
    }
    .stat-card-glass:last-child { border-right: none; }
    .stat-icon-wrapper { font-size: 2.5rem; color: var(--shopify-green); margin-bottom: 15px; filter: drop-shadow(0 0 10px rgba(149, 191, 71, 0.5));}
    .stat-icon-wrapper i.fa-rocket { color: var(--primary); filter: drop-shadow(0 0 10px rgba(71, 112, 255, 0.5));}
    .stat-number-main { font-size: 3.5rem; font-weight: 800; margin-bottom: 5px; color: #fff; line-height: 1;}
    .stat-number-secondary { font-size: 0.9rem; color: #9ca3af; font-weight: 500; text-transform: uppercase; letter-spacing: 1px;}
    
    @media (max-width: 768px) {
      .stat-card-glass { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding: 30px 0; }
      .stat-card-glass:last-child { border-bottom: none; }
    }

    /* --- Horizontal Scroll Marquee for Testimonials --- */
    .testimonial-marquee-wrapper {
      width: 100vw;
      position: relative;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      overflow: hidden;
      padding: 20px 0;
      background: rgba(71, 112, 255, 0.02);
      border-top: 1px solid rgba(0,0,0,0.05);
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .testimonial-track {
      display: flex;
      width: max-content;
      animation: scrollTestimonials 60s linear infinite;
    }
    .testimonial-track:hover { animation-play-state: paused; }
    @keyframes scrollTestimonials {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); } 
    }
    .feedback-item {
      background: #fff;
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 16px;
      padding: 30px;
      width: 450px;
      margin: 0 15px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 10px 30px rgba(0,0,0,0.02);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      white-space: normal; 
    }
    .feedback-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(71, 112, 255, 0.1);
    }
    .feedback-top-info {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      padding-bottom: 15px;
    }
    .rating i { color: #FFD700; font-size: 0.9rem;}
    .website a { color: var(--primary); text-decoration: none; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 5px;}
    .website a svg { transition: transform 0.2s;}
    .website a:hover svg { transform: translate(2px, -2px);}
    .details p { font-size: 1rem; line-height: 1.6; color: #4a4a4a; font-style: italic; flex-grow: 1; margin-bottom: 20px;}
    .designation p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
    .designation span { font-weight: 700; color: #000;}

    /* --- Modern Animated Mesh CTA --- */
    .animated-mesh-cta {
      position: relative;
      background-color: #07090f;
      border-radius: 24px;
      overflow: hidden;
      z-index: 1;
      border: 1px solid rgba(255,255,255,0.05);
    }
    .animated-mesh-cta::before, .animated-mesh-cta::after {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      filter: blur(100px);
      z-index: -1;
      animation: floatOrb 15s ease-in-out infinite alternate;
      opacity: 0.6;
    }
    .animated-mesh-cta::before {
      background: rgba(71, 112, 255, 0.5); top: -100px; left: -100px;
    }
    .animated-mesh-cta::after {
      background: rgba(149, 191, 71, 0.4); bottom: -100px; right: -100px;
      animation-delay: -7s; animation-direction: alternate-reverse;
    }
    @keyframes floatOrb {
      0% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(150px, 50px) scale(1.3); }
      100% { transform: translate(50px, 150px) scale(0.9); }
    }
    .animated-mesh-cta .cta-content {
      background: rgba(7, 9, 15, 0.4);
      backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
      border-radius: 24px;
    }

    /* --- Exit Intent Modal Styles --- */
    .exit-intent-overlay {
      position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(14, 16, 24, 0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
      z-index: 9999; display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
    }
    .exit-intent-overlay.active { opacity: 1; pointer-events: auto; }
    .exit-intent-modal {
      position: relative; max-width: 700px; width: 90%;
      transform: translateY(-30px) scale(0.95); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .exit-intent-overlay.active .exit-intent-modal { transform: translateY(0) scale(1); }
    .close-modal {
      position: absolute; top: -45px; right: 0; color: white; font-size: 28px;
      cursor: pointer; background: none; border: none; opacity: 0.6; transition: opacity 0.2s, transform 0.2s;
    }
    .close-modal:hover { opacity: 1; transform: scale(1.1); }

    .terminal-window {
      background-color: #12151e; border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5); overflow: hidden;
      font-family: 'Fira Code', 'Courier New', Courier, monospace; color: #e5e7eb; text-align: left; width: 100%;
    }
    .terminal-header {
      background-color: #1a1e2a; padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .terminal-dots { display: flex; gap: 8px; }
    .dot { width: 12px; height: 12px; border-radius: 50%; }
    .dot.red { background-color: #ff5f56; } .dot.yellow { background-color: #ffbd2e; } .dot.green { background-color: #27c93f; }
    .terminal-title { font-size: 0.85rem; color: #9ca3af; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-weight: 500; }
    .terminal-body { padding: 40px 30px; line-height: 1.8; font-size: 1.05rem; }
    .term-keyword { color: #ffb86c; font-weight: 600; } .term-comment { color: #6b7280; font-style: italic; }
    .term-string { color: #8be9fd; } .term-arrow { color: #f8f8f2; }
    .term-list { margin: 25px 0; padding-left: 25px; list-style-type: disc; color: #f1fa8c; }
    .term-list li { margin-bottom: 10px; } .term-list li span { color: #e5e7eb; }
    .cursor { display: inline-block; width: 8px; height: 18px; background: #e5e7eb; vertical-align: middle; animation: blink 1s step-end infinite; margin-left: 5px; }
    
    .terminal-cta {
      display: inline-block; background: var(--shopify-green); color: #000 !important; text-decoration: none;
      padding: 12px 28px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      font-weight: 700; border-radius: 8px; transition: all 0.2s ease; font-size: 1rem; letter-spacing: 0.5px;
    }
    .terminal-cta:hover { background: #a5d350; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(149, 191, 71, 0.3); }

    /* --- Footer & Scroll to Top Styles --- */
    .trust-badges-container { transition: all 0.3s ease; }
    .trust-badges-container:hover { opacity: 1 !important; }
    .trust-badges-container img { transition: all 0.3s ease; cursor: pointer; filter: grayscale(1); }
    .trust-badges-container:hover img { filter: grayscale(0); }
    .trust-badges-container img:hover { transform: scale(1.1); }

    .scroll-to-top {
      position: fixed; bottom: 30px; right: 30px; background-color: var(--primary); color: white;
      width: 50px; height: 50px; border-radius: 50%; border: none; box-shadow: 0 4px 15px rgba(71, 112, 255, 0.4);
      display: flex; align-items: center; justify-content: center; font-size: 1.2rem; cursor: pointer;
      opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); z-index: 998;
    }
    .scroll-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
    .scroll-to-top:hover { background-color: var(--shopify-green); color: #000; transform: translateY(-5px); box-shadow: 0 8px 25px rgba(149, 191, 71, 0.4); }