      :root {
        --primary-blue: #3b82f6;
        --primary-blue-dark: #2563eb;
        --light-gray-bg: #f9fafb;
        --border-gray: #e5e7eb;
        --text-dark: #1f2937;
        --text-medium: #4b5563;
        --text-light: #6b7280;
        --font-sans:
          "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
          "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
      }
      /* Responsive Typography */
      h1 {
        font-size: clamp(1.5rem, 4vw, 2.25rem);
      }

      h2 {
        font-size: clamp(1.25rem, 3vw, 1.875rem);
      }

      h3 {
        font-size: clamp(1.1rem, 2.5vw, 1.25rem);
      }

      .nav-logo {
        font-size: clamp(1.1rem, 3vw, 1.375rem);
      }

      #homepage-quote h2 {
        font-size: clamp(1.25rem, 3vw, 1.875rem);
      }

      @media (max-width: 480px) {
        .product-card h3 {
          font-size: 1.1rem;
          margin: 0.25rem 0;
        }
        .product-card p {
          font-size: 0.8rem;
          margin-bottom: 0.75rem;
        }
        .product-card .price {
          font-size: 1.1rem;
        }
      }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: var(--font-sans);
        background-color: var(--light-gray-bg);
        color: var(--text-dark);
        line-height: 1.6;
      }
      html {
        scroll-behavior: smooth;
      }
      .container {
        width: 90%;
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 1rem;
        padding-right: 1rem;
      }

      /* Header */
      header {
        background: linear-gradient(to bottom, white, #f9fafb);
        box-shadow:
          0 4px 6px -1px rgba(0, 0, 0, 0.05),
          0 2px 4px -1px rgba(0, 0, 0, 0.05);
        position: sticky;
        top: 0;
        z-index: 40;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      }
      header nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
      }

      .nav-container {
        width: 100%;
      }

      .nav-logo {
        font-weight: 800;
        color: var(--primary-blue);
        text-decoration: none;
        transition: transform 0.2s ease;
      }
      .nav-logo:hover {
        transform: scale(1.05);
      }
      header nav div {
        display: flex;
        align-items: center;
        gap: 1.25rem;
      }
      header nav a {
        color: var(--text-medium);
        font-weight: 500;
        font-size: 0.9375rem;
        text-decoration: none;
        transition: all 0.2s ease;
        padding: 0.5rem 0.75rem;
        border-radius: 0.375rem;
      }

      .mobile-menu-button {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.25rem;
        border-radius: 0.25rem;
        color: var(--text-medium);
        display: block;
      }

      .mobile-menu-button:hover {
        background-color: rgba(59, 130, 246, 0.1);
        color: var(--primary-blue);
      }

      @media (max-width: 767px) {
        .mobile-menu-button {
          display: block;
        }

        .nav-links {
          display: none;
          flex-direction: column;
          width: 100%;
          position: absolute;
          top: 100%;
          left: 0;
          background-color: white;
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
          padding: 0;
          z-index: 50;
          border-radius: 0 0 0.5rem 0.5rem;
        }

        .nav-links:not(.hidden) {
          display: flex;
        }

        .nav-links a {
          display: block;
          padding: 0.75rem 1rem;
          margin: 0;
          border-radius: 0;
          border-bottom: 1px solid var(--border-gray);
        }

        .nav-links a:last-child {
          border-bottom: none;
        }
      }

      @media (min-width: 768px) {
        .mobile-menu-button {
          display: none;
        }

        .nav-links {
          display: flex !important;
          position: static;
          flex-direction: row;
          box-shadow: none;
          width: auto;
          padding: 0;
          background: transparent;
          z-index: auto;
        }

        .nav-links a {
          margin: 0 0 0 1.5rem;
          border-bottom: none;
          display: inline-block;
          padding: 0.5rem 0.75rem;
        }
      }
      header nav a:hover {
        color: var(--primary-blue);
        background-color: rgba(59, 130, 246, 0.08);
      }
      .signup-btn {
        background: linear-gradient(to right, var(--primary-blue), #4f46e5);
        color: white;
        padding: 0.625rem 1.25rem;
        border-radius: 9999px;
        transition: all 0.3s ease;
        font-weight: 600;
        box-shadow: 0 4px 6px rgba(59, 130, 246, 0.2);
        display: inline-block;
      }
      .signup-btn:hover {
        background: linear-gradient(
          to right,
          var(--primary-blue-dark),
          #4338ca
        );
        transform: translateY(-2px);
        box-shadow: 0 6px 10px rgba(59, 130, 246, 0.3);
      }

      @media (max-width: 767px) {
        .signup-btn {
          width: 100%;
          text-align: center;
          margin-top: 0.5rem;
        }
      }

      /* Search Section */
      #search-section {
        background-color: white;
        padding: 1.5rem;
        border-radius: 0.5rem;
        box-shadow:
          0 1px 3px 0 rgba(0, 0, 0, 0.1),
          0 1px 2px 0 rgba(0, 0, 0, 0.06);
      }
      #search-bar,
      #sort-by {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid var(--border-gray);
        border-radius: 0.375rem;
      }

      @media (max-width: 480px) {
        #search-section {
          padding: 1rem;
        }

        #search-section div[style*="display: flex"] {
          flex-direction: column;
          gap: 0.75rem;
        }

        #sort-by {
          min-width: 100%;
        }
      }
      .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        font-weight: 500;
        border-radius: 9999px;
        border: 1px solid var(--border-gray);
        background-color: white;
        color: var(--text-medium);
        cursor: pointer;
        transition: all 0.2s;
        text-transform: capitalize;
        white-space: nowrap;
      }
      .filter-btn.active {
        background-color: var(--primary-blue);
        color: white;
        border-color: var(--primary-blue);
      }

      @media (max-width: 480px) {
        .filter-btn {
          padding: 0.4rem 0.8rem;
          font-size: 0.8rem;
        }
      }

      /* Product Grid & Cards */
      #products-grid,
      #tag-page-grid {
        margin-top: 2rem;
        display: grid;
        gap: 2.5rem; /* Increased gap for premium spacing */
        grid-template-columns: repeat(1, 1fr);
        grid-auto-rows: minmax(400px, auto); /* Allow rows to adjust to content */
      }
      
      .product-card {
        background: linear-gradient(135deg, #ffffff, #f8fafc);
        border-radius: 1.25rem; /* More premium rounded corners */
        box-shadow:
          0 10px 15px -3px rgba(0, 0, 0, 0.05),
          0 4px 6px -2px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        cursor: pointer;
        transition:
          transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
          box-shadow 0.4s ease,
          border-color 0.4s ease;
        max-width: 400px;
        margin: 0 auto;
        height: 540px; /* Fixed height to ensure all cards are exactly the same size */
        width: 100%; /* Ensure full width within grid */
        position: relative;
        border: 1px solid rgba(226, 232, 240, 0.5); /* Subtle border */
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Premium transition */
        padding: 0; /* Remove any padding that could cause internal gaps */
        margin: 0; /* Remove any margin that could cause external gaps */
      }
      
      .product-card > .image-container {
        flex: 0 0 auto; /* Allow to size according to content */
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: linear-gradient(135deg, #e0f2fe, #e0e7ff); /* Premium gradient background */
        position: relative;
        transition: all 0.4s ease;
        margin: 0;
        padding: 0;
        border-radius: 1.25rem 1.25rem 0 0; /* Match top border radius */
        line-height: 0; /* Remove any potential line-height whitespace */
        min-height: 180px; /* Minimum height */
        max-height: 200px; /* Maximum height to prevent oversized images from dominating the card */
        height: 200px; /* Fixed height for consistency */
      }
      
/*                        */
.product-card .card-content {
        padding: 1.5rem 1.5rem 0 1.5rem; /* Reduced bottom padding to minimize gap after buttons */
        display: flex;
        flex-direction: column;
        flex: 1; /* Take remaining space */
        min-height: 0; /* Allow it to shrink */
        overflow: hidden; /* Prevent content from overflowing */
        background: linear-gradient(to bottom, #ffffff, #f8fafc); /* Subtle gradient */
        border-top: none; /* Remove any top border/gap */
        margin: 0; /* Remove any margin that could cause gaps */
        border-radius: 0 0 1.25rem 1.25rem; /* Match bottom border radius */
      }



/*  */




      @media (min-width: 640px) {
        #products-grid,
        #tag-page-grid {
          grid-template-columns: repeat(2, 1fr);
          grid-auto-rows: minmax(400px, auto);
        }
      }

      @media (min-width: 1024px) {
        #products-grid,
        #tag-page-grid {
          grid-template-columns: repeat(3, 1fr);
          grid-auto-rows: minmax(400px, auto);
        }
      }
      .product-card {
        background: linear-gradient(135deg, #ffffff, #f8fafc);
        border-radius: 1.25rem; /* More premium rounded corners */
        box-shadow:
          0 10px 15px -3px rgba(0, 0, 0, 0.05),
          0 4px 6px -2px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        cursor: pointer;
        transition:
          transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
          box-shadow 0.4s ease,
          border-color 0.4s ease;
        max-width: 400px;
        margin: 0 auto;
        min-height: 400px; /* Minimum height but allow to grow */
        display: flex;
        flex-direction: column;
        width: 100%; /* Ensure full width within grid */
        position: relative;
        border: 1px solid rgba(226, 232, 240, 0.5); /* Subtle border */
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Premium transition */
      }

      .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px; /* Premium accent line at top */
        background: linear-gradient(90deg, #4f46e5, #7c3aed, #ec4899);
        opacity: 0;
        transition: opacity 0.4s ease;
        border-radius: 1.25rem 1.25rem 0 0; /* Match card border radius */
      }
      
      .product-card:hover::before {
        opacity: 1;
      }
      
      /* Premium effect on hover */
      .product-card:hover > .image-container {
        transform: scale(1.02);
        background: linear-gradient(135deg, #dbeafe, #d8b4fe);
      }


      
      /* Style for product demo images (these should be full size) */
      .product-card > .image-container img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain; /* Maintain aspect ratio and fit within container */
        transition: transform 0.4s ease;
        display: block; /* Remove any inline spacing */
        margin: 0; /* Ensure no margin */
        padding: 0; /* Ensure no padding */
      }
      
      /* Style for SVG icons - smaller than images */
      .product-card > .image-container svg {
        width: 60%;
        height: 60%;
        max-width: 60%;
        max-height: 60%;
        object-fit: contain;
        align-self: center;
        justify-self: center;
        filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
        display: block; /* Remove any inline spacing */
        margin: 0; /* Ensure no margin */
        padding: 0; /* Ensure no padding */
      }
      
      .product-card:hover > .image-container img,
      .product-card:hover > .image-container svg {
        transform: scale(1.05);
      }
      
      .product-card:hover {
        transform: translateY(-8px) rotateY(2deg); /* Premium 3D effect on hover */
        box-shadow:
          0 25px 50px -12px rgba(0, 0, 0, 0.15),
          0 10px 30px -10px rgba(0, 0, 0, 0.12);
      }
      
      .product-card .tags-container {
        margin-bottom: 0.5rem; /* Increased margin for premium spacing */
        min-height: auto; /* Allow natural height */
        overflow: hidden;
        max-height: 60px; /* Allow for multiple tags */
        flex-shrink: 0; /* Prevent from shrinking */
        display: flex;
        flex-wrap: wrap;
        gap: 0.375rem; /* Premium tag spacing */
      }
      
      .product-card h3 {
        font-size: 1.375rem; /* Larger font for premium look */
        font-weight: 700;
        margin: 0.25rem 0 0.5rem 0; /* Adjusted margin for premium spacing */
        min-height: auto; /* Allow natural height instead of fixed height */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.5rem; /* Increased line height */
        flex-shrink: 0; /* Prevent title from shrinking */
        color: #1e293b; /* Richer text color */
        letter-spacing: -0.025em; /* Premium typography */
      }
      
      .product-card p {
        font-size: 0.9rem; /* Larger font for premium look */
        color: #64748b; /* Softer text color */
        margin: 0.25rem 0 0.25rem 0; /* Reduced bottom margin to minimize gap with footer */
        min-height: calc(1.45rem * 2); /* Ensure minimum height for 2 lines */
        display: -webkit-box;
        -webkit-line-clamp: 2; /* Show exactly 2 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.45rem; /* Increased line height */
        flex-shrink: 0; /* Prevent description from shrinking */
        max-height: calc(1.45rem * 2); /* Strictly limit to exactly 2 lines */
        flex: 0 0 auto; /* Don't grow, but maintain size */
      }
      
      /* Direct rule for gap between description and footer */
      .product-card p + .footer {
        margin-top: 0; /* Remove space between description and footer */
      }
      
      .product-card .footer {
        padding-top: 0.25rem; /* Reduced padding to minimize space */
        padding-bottom: 0; /* Remove bottom padding to reduce space after buttons */
        border-top: 1px solid rgba(226, 232, 240, 0.7); /* Softer border */
        width: 100%;
        flex: 0 0 auto; /* Don't grow or shrink */
        display: flex;
        flex-direction: column;
        min-height: auto; /* Remove fixed min-height to reduce space */
        background: linear-gradient(to top, #ffffff, #f8fafc); /* Subtle gradient */
        margin-top: auto; /* Push footer to bottom to remove space after it */
        margin-bottom: 0; /* Remove any bottom margin */
      }
      
      .product-card .price {
        font-size: 1.5rem; /* Larger font for premium look */
        font-weight: 800; /* Bolder weight */
        margin: 0.25rem 0 0.25rem 0; /* Reduced bottom margin to minimize gap before buttons */
        min-height: auto; /* Allow natural height instead of fixed height */
        line-height: 1.5rem; /* Increased line height */
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        flex-shrink: 0; /* Prevent price from shrinking */
        color: #4f46e5; /* Premium purple accent color */
        font-family: 'Inter', sans-serif;
        margin-bottom: 0.125rem; /* Tighten space before buttons */
      }
      
      .product-card .buttons {
        display: flex;
        gap: 0.5rem; /* Increased gap for premium spacing */
        flex-wrap: nowrap; /* Prevent wrapping to maintain consistency */
        flex-shrink: 0; /* Prevent buttons from shrinking */
        min-height: auto; /* Remove minimum height to reduce space */
        width: 100%; /* Ensure full width available */
        justify-content: space-between; /* Distribute buttons evenly */
      }
      
      .product-card .details-btn,
      .product-card .demo-btn {
        flex: 1; /* Make buttons share space equally */
        max-width: calc(50% - 0.25rem); /* Each button takes up to 50% minus half the gap */
        text-align: center;
        padding: 0.6rem 0.25rem; /* Increased padding for premium feel */
        border-radius: 0.75rem; /* More rounded corners */
        border: 1px solid transparent;
        text-decoration: none !important;
        font-size: 0.875rem; /* Larger font for better readability */
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-height: auto; /* Remove minimum height to reduce space */
        line-height: 1.25rem; /* Increased line height */
        position: relative;
        overflow: hidden;
        z-index: 1;
        border: none; /* Remove button borders for cleaner look */
        flex: 1 0 auto; /* Don't shrink, but allow growth */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
      }

      @media (max-width: 640px) {
        .product-card .buttons {
          flex-direction: column;
          gap: 0.5rem; /* Increased gap for mobile */
        }

        .product-card .details-btn,
        .product-card .demo-btn {
          width: 100%;
          margin-bottom: 0; /* Remove margin for mobile */
        }

        #products-grid,
        #tag-page-grid {
          gap: 2rem;
        }
      }
      
      /* Premium button styles */
      .product-card .details-btn {
        background: linear-gradient(135deg, #38bdf8, #7dd3fc);
        color: #0891b2;
        border: 1px solid #7dd3fc;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
      }
      
      .product-card .details-btn:hover {
        background: linear-gradient(135deg, #bae6fd, #7dd3fc);
        transform: translateY(-3px);
        box-shadow: 0 12px 20px rgba(56, 189, 248, 0.3);
      }
      
      .product-card .demo-btn {
        background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
        color: #0891b2;
        border: 1px solid #7dd3fc;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
      }
      
      .product-card .demo-btn:hover {
        background: linear-gradient(135deg, #e0f2fe, #bae6fd);
        transform: translateY(-3px);
        box-shadow: 0 12px 20px rgba(14, 165, 233, 0.3);
      }
      
      .product-card-btn {
        width: 100%;
        text-align: center;
        padding: 0.6rem 0.25rem; /* Increased padding for premium feel */
        border-radius: 0.75rem; /* More rounded corners */
        border: 1px solid transparent;
        text-decoration: none !important;
        font-size: 0.875rem; /* Larger font for better readability */
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
        flex: 1;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        border: none; /* Remove button borders for cleaner look */
      }
      
      .product-card-btn.details-btn {
        background: linear-gradient(135deg, #38bdf8, #7dd3fc);
        color: #0891b2;
        border: 1px solid #7dd3fc;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
      }
      
      .product-card-btn.details-btn:hover {
        background: linear-gradient(135deg, #bae6fd, #7dd3fc);
        transform: translateY(-3px);
        box-shadow: 0 12px 20px rgba(56, 189, 248, 0.3);
      }
      
      .product-card-btn.demo-btn {
        background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
        color: #0891b2;
        border: 1px solid #7dd3fc;
        padding: 0.6rem 0.25rem;
        font-size: 0.875rem; /* Increased font size */
        min-height: 40px;
        line-height: 1.25rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
      }
      
      .product-card-btn.demo-btn:hover {
        background: linear-gradient(135deg, #e0f2fe, #bae6fd);
        transform: translateY(-3px);
        box-shadow: 0 12px 20px rgba(14, 165, 233, 0.3);
      }
      .tag-badge {
        font-size: 0.75rem;
        background-color: #e5e7eb;
        color: var(--text-medium);
        padding: 0.25rem 0.75rem;
        border-radius: 9999px;
        transition: background-color 0.2s;
        border: 1px solid transparent;
        cursor: pointer;
        text-transform: capitalize;
        font-weight: 500;
        text-decoration: none !important;
      }
      .tag-badge:hover {
        background-color: #d1d5db;
      }
      .product-card h3 {
        font-size: 1.25rem;
        font-weight: 700;
        margin: 0.5rem 0;
      }
      
      /* App Detail Template Styles */
      .app-content {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
      }
      
      .app-details {
        flex: 1;
        min-width: 300px;
      }
      
      .app-sidebar {
        flex: 1;
        min-width: 300px;
        max-width: 400px;
      }
      
      .app-specs {
        background: #f8fafc;
        padding: 1.5rem;
        border-radius: 12px;
        margin-bottom: 2rem;
      }
      
      .spec-item {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 0;
        border-bottom: 1px solid #e2e8f0;
      }
      
      .spec-item:last-child {
        border-bottom: none;
      }
      
      .pricing-options {
        background: #f8fafc;
        padding: 1.5rem;
        border-radius: 12px;
        margin-bottom: 2rem;
      }
      
      .pricing-tier {
        padding: 1rem;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        margin-bottom: 1rem;
        cursor: pointer;
        text-decoration: none !important;
        color: inherit;
      }
      
      .pricing-tier.selected {
        border-color: #3b82f6;
        background: #eff6ff;
      }
      
      .quote-form {
        background: #f8fafc;
        padding: 1.5rem;
        border-radius: 12px;
      }
      
      .form-group {
        margin-bottom: 1rem;
      }
      
      .app-guarantee {
        margin-top: 2rem;
        padding: 1.5rem;
        background: #f8fafc;
        border-radius: 12px;
      }
      
      .app-guarantee h2,
      .app-guarantee h3 {
        margin-top: 1.2rem;
        margin-bottom: 0.8rem;
      }
      
      .app-guarantee h2 {
        font-size: 1.5rem;
      }
      
      .included-section,
      .not-included-section,
      .from-scratch-section {
        margin-bottom: 1.5rem;
      }
      
      .app-guarantee ul {
        padding-left: 1.5rem;
        margin-bottom: 1rem;
      }
      
      .app-guarantee li {
        margin-bottom: 0.5rem;
      }
      
      .links-section {
        margin-top: 1.5rem;
      }
      
      .links-section .btn {
        display: inline-block;
        margin-right: 1rem;
        margin-bottom: 0.5rem;
        background: #2563eb;
        color: #fff;
        padding: 0.8rem 1.2rem;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        font-size: 1.05rem;
        font-weight: 600;
        text-decoration: none;
      }
      
      .links-section .btn:hover {
        background: #1e40af;
      }
      
      .btn-block {
        display: block;
        width: 100%;
      }
      
      .carousel-container {
        position: relative;
        width: 100%;
        max-width: 800px;
        margin: 0 auto 2rem;
        overflow: hidden;
        border-radius: 12px;
      }
      
      .carousel-slide {
        display: none;
      }
      
      .carousel-slide.active {
        display: block;
      }
      
      .carousel-slide img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 12px;
      }
      
      .carousel-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
      }
      
      .carousel-btn {
        background: rgba(255, 255, 255, 0.8);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      }
      
      .carousel-btn:hover {
        background: rgba(255, 255, 255, 1);
      }
      
      .carousel-indicators {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
      }
      
      .carousel-indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #ccc;
        margin: 0 5px;
        cursor: pointer;
      }
      
      .carousel-indicator.active {
        background: #3b82f6;
      }
      
      .btn {
        background: #2563eb;
        color: #fff;
        padding: 0.8rem 1.2rem;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        font-size: 1.05rem;
        font-weight: 600;
      }
      
      .btn:hover {
        background: #1e40af;
      }
      
      /* Non-sticky search bar styles */
      #search-section {
        position: static; /* Changed from sticky to static to prevent it from sticking */
        background-color: white;
        padding: 1.5rem;
        border-radius: 0.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 10; /* Lower z-index as it's not sticky */
        margin-bottom: 2rem;
        transition: all 0.3s ease;
      }
      
      #search-section.sticky-search {
        /* Removed sticky behavior - keeping for compatibility but will not be sticky */
        top: 80px !important; /* Keep original position instead of top: 0 */
        margin-top: 0;
        margin-bottom: 2rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 10 !important; /* Back to original z-index */
      }
      .product-card p {
        font-size: 0.875rem;
        color: var(--text-light);
        flex-grow: 1;
        margin-bottom: 1rem;
      }

      
      .product-card .demo-btn {
        background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
        color: #0891b2;
        border: 1px solid #7dd3fc;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
      }
      .product-card .demo-btn:hover {
        background: linear-gradient(135deg, #e0f2fe, #bae6fd);
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(14, 165, 233, 0.3);
      }
      
      /* Specific rule for demo buttons with both classes to ensure visibility */
      .product-card .product-card-btn.demo-btn {
        background: linear-gradient(135deg, #f0f9ff, #e0f2fe) !important;
        color: #0891b2 !important;
        border: 1px solid #7dd3fc !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 0.35rem 0.12rem !important; /* Slightly increased padding */
        border-radius: 0.5rem !important;
        text-decoration: none !important;
        font-size: 0.75rem !important; /* Increased font size */
        font-weight: 600 !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        min-height: 29px !important; /* Slightly increased height */
        line-height: 0.9rem !important; /* Slightly increased line height */
      }
      
      .product-card .product-card-btn.demo-btn:hover {
        background: linear-gradient(135deg, #e0f2fe, #bae6fd) !important;
        transform: translateY(-3px) !important;
        box-shadow: 0 8px 15px rgba(14, 165, 233, 0.3) !important;
      }

      /* Homepage Quote Section */
      #homepage-quote {
        margin-top: 4rem;
        padding: 3rem 0;
        background: linear-gradient(to right, #dbeafe, #e0e7ff);
        border-radius: 0.75rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        text-align: left;
        border: 1px solid #dbeafe;
      }
      #homepage-quote .container {
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }
      #homepage-quote h2 {
        font-size: 1.875rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #1f2937;
      }
      #homepage-quote form {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
      }
      @media (min-width: 768px) {
        #homepage-quote form {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 480px) {
        #homepage-quote .container {
          padding-left: 1rem;
          padding-right: 1rem;
        }

        #homepage-quote h2 {
          font-size: 1.5rem;
        }

        #homepage-quote p {
          font-size: 0.9rem;
        }

        #homepage-quote input,
        #homepage-quote textarea {
          font-size: 0.9rem;
        }

        #homepage-quote button {
          padding: 0.6rem 1.2rem;
          font-size: 0.95rem;
        }
      }
      #homepage-quote input,
      #homepage-quote textarea {
        border: 1px solid #d1d5db;
        padding: 0.75rem;
        border-radius: 0.5rem;
        transition: all 0.2s;
      }
      #homepage-quote .md\:col-span-2 {
        grid-column: span 2 / span 2;
      }
      #homepage-quote input:focus,
      #homepage-quote textarea:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
      }
      #homepage-quote button {
        background: linear-gradient(to right, #3b82f6, #4f46e5);
        color: white;
        font-weight: 700;
        padding: 0.75rem 1.5rem;
        border-radius: 0.5rem;
        border: none;
        transition: all 0.3s ease;
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin-top: 0.5rem;
      }
      #homepage-quote button:hover {
        background: linear-gradient(to right, #2563eb, #4338ca);
        transform: scale(1.02);
      }

      /* Detail & Tag Pages */
      #product-detail-page,
      #tag-page,
      #blog-page,
      #about-page,
      #login-page,
      #signup-page,
      #terms-page {
        padding: 1.5rem 0;
      }
      .breadcrumb {
        font-size: 0.875rem;
        margin-bottom: 2rem;
      }
      .breadcrumb a {
        color: var(--primary-blue);
        text-decoration: none;
      }
      .breadcrumb a:hover {
        text-decoration: underline;
      }
      .breadcrumb span {
        margin: 0 0.5rem;
        color: var(--text-light);
      }
      #product-detail-page h1,
      #tag-page-title,
      #blog-page h1,
      #about-page h1,
      #login-page h1,
      #signup-page h1,
      #terms-page h1 {
        font-size: 2.25rem;
        font-weight: 700;
        margin-bottom: 2rem;
      }
      #product-detail-page .detail-grid {
        display: grid;
        gap: 3rem;
      }

      @media (max-width: 768px) {
        #product-detail-page .detail-grid {
          grid-template-columns: 1fr;
          gap: 2rem;
        }

        #pricing-box {
          margin-top: 2rem;
        }
      }
      #product-detail-page h2 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
      }
      #pricing-box {
        background-color: white;
        padding: 1.5rem;
        border-radius: 0.5rem;
        box-shadow:
          0 1px 3px 0 rgba(0, 0, 0, 0.1),
          0 1px 2px 0 rgba(0, 0, 0, 0.06);
      }
      .license-option {
        border: 2px solid var(--border-gray);
        border-radius: 0.5rem;
        padding: 1rem;
        margin-bottom: 1rem;
        cursor: pointer;
        transition: all 0.2s ease-in-out;
        position: relative;
      }
      .license-option.selected {
        border-color: var(--primary-blue);
      }

      @media (max-width: 480px) {
        .license-option {
          padding: 0.75rem;
        }

        #pricing-box {
          padding: 1.5rem;
        }

        h3.text-xl {
          font-size: 1.25rem;
        }
      }
      .license-option input {
        display: none;
      }
      .license-option .title-row {
        display: flex;
        align-items: center;
        gap: 0.75rem;
      }
      .license-option .icon {
        color: var(--primary-blue);
      }
      .license-option .title {
        font-weight: 700;
        font-size: 1.125rem;
      }
      .license-option .price {
        font-size: 1.25rem;
        font-weight: 700;
        margin-top: 0.5rem;
      }
      .license-option p {
        font-size: 0.875rem;
        color: var(--text-light);
        margin-top: 0.5rem;
      }
      .best-value-badge {
        position: absolute;
        top: -1px;
        right: 1rem;
        background-color: var(--primary-blue);
        color: white;
        padding: 0.25rem 0.75rem;
        font-size: 0.75rem;
        font-weight: 600;
        border-radius: 0 0 0.375rem 0.375rem;
      }
      .get-started-btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
        background-color: var(--primary-blue);
        color: white;
        padding: 0.75rem;
        border-radius: 0.5rem;
        text-decoration: none;
        font-weight: 500;
        transition: background-color 0.2s;
      }
      .get-started-btn:hover {
        background-color: var(--primary-blue-dark);
      }
      .schedule-demo-btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
        background-color: #e5e7eb;
        color: var(--text-dark);
        padding: 0.75rem;
        border-radius: 0.5rem;
        text-decoration: none;
        font-weight: 500;
        transition: background-color 0.2s;
      }
      .schedule-demo-btn:hover {
        background-color: #d1d5db;
      }
      #amc-box {
        margin-top: 1.5rem;
        padding: 1rem;
        background-color: #f3f4f6;
        border-radius: 0.5rem;
        text-align: center;
        border: 1px solid var(--border-gray);
      }
      #amc-box .amc-title {
        font-weight: 700;
        color: var(--text-dark);
        font-size: 1rem;
      }
      #amc-box .amc-price {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-top: 0.25rem;
      }
      #amc-box .amc-note {
        font-size: 0.75rem;
        color: var(--text-light);
        margin-top: 0.25rem;
      }

      /* Sell Your App Section */
      #sell-your-app {
        margin-top: 4rem;
        padding: 3rem 1.5rem;
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        color: white;
        border-radius: 0.75rem;
        box-shadow:
          0 10px 15px -3px rgba(0, 0, 0, 0.1),
          0 4px 6px -2px rgba(0, 0, 0, 0.05);
        text-align: center;
      }
      #sell-your-app h2 {
        font-size: 1.875rem;
        font-weight: 700;
        margin-bottom: 1rem;
      }
      #sell-your-app p {
        max-width: 32rem;
        margin: 0 auto 1.5rem;
        font-size: 1.125rem;
      }
      #sell-your-app a {
        display: inline-block;
        background-color: white;
        color: #3b82f6;
        font-weight: 700;
        padding: 1rem 2rem;
        border-radius: 9999px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border: none;
        transform: translateY(0);
      }
      #sell-your-app a:hover {
        background-color: #f3f4f6;
        color: #2563eb;
        transform: translateY(-3px);
        box-shadow:
          0 10px 15px -3px rgba(0, 0, 0, 0.1),
          0 4px 6px -2px rgba(0, 0, 0, 0.05);
      }

      @media (max-width: 480px) {
        #sell-your-app {
          padding: 2rem 1rem;
        }

        #sell-your-app h2 {
          font-size: 1.5rem;
        }

        #sell-your-app p {
          font-size: 1rem;
          margin: 0 auto 1rem;
        }

        #sell-your-app a {
          display: block;
          margin: 0.5rem auto;
          padding: 0.8rem 1.5rem;
          font-size: 1rem;
        }

        #sell-your-app div.flex {
          flex-direction: column;
          align-items: center;
        }
      }

      /* Terms Section */
      .detail-terms-section {
        margin-top: 4rem;
        padding-top: 2rem;
        border-top: 1px solid var(--border-gray);
      }
      .detail-terms-section h2 {
        text-align: center;
        font-size: 1.875rem;
        font-weight: 700;
        margin-bottom: 2rem;
      }
      .detail-terms-section .grid {
        display: grid;
        gap: 2rem;
      }
      .detail-terms-section h3 {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 1rem;
      }
      .detail-terms-section ul {
        list-style: disc;
        list-style-position: inside;
        space-y: 0.75rem;
      }
      .guarantee-box {
        background-color: #fefce8;
        border-left: 4px solid #facc15;
        padding: 1.5rem;
        border-radius: 0 0.5rem 0.5rem 0;
        margin-bottom: 2rem;
        max-width: 56rem;
        margin-left: auto;
        margin-right: auto;
      }
      .guarantee-box h3 {
        color: #854d0e;
      }
      .guarantee-box p {
        color: #a16207;
      }
      .included-box {
        background-color: #f0fdf4;
        padding: 1.5rem;
        border-radius: 0.5rem;
        border: 1px solid #bbf7d0;
      }
      .included-box h3 {
        color: #166534;
      }
      .not-included-box {
        background-color: #fef2f2;
        padding: 1.5rem;
        border-radius: 0.5rem;
        border: 1px solid #fecaca;
      }
      .not-included-box h3 {
        color: #991b1b;
      }

      /* Footer */
      footer {
        background: linear-gradient(to bottom, #f9fafb, #ffffff);
        border-top: 1px solid var(--border-gray);
        margin-top: 4rem;
        padding: 3rem 0 2rem;
        font-size: 0.875rem;
        box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.05);
      }
      footer .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      footer .footer-links {
        display: flex;
        gap: 1.5rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        flex-wrap: wrap;
        justify-content: center;
      }

      @media (max-width: 480px) {
        footer .footer-links {
          flex-direction: column;
          gap: 0.75rem;
          align-items: center;
        }

        footer .nav-logo {
          font-size: 1.25rem;
        }
      }
      footer a {
        color: var(--text-medium);
        text-decoration: none;
        transition: color 0.2s ease;
        padding: 0.25rem 0.5rem;
        border-radius: 0.25rem;
      }
      footer a:hover {
        color: var(--primary-blue);
        background-color: rgba(59, 130, 246, 0.1);
      }
      footer .nav-logo {
        margin-bottom: 1rem;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-blue);
      }

      /* Auth Forms */
      .auth-form {
        max-width: 400px;
        margin: 2rem auto;
        background: white;
        padding: 2rem;
        border-radius: 0.5rem;
        box-shadow:
          0 4px 6px -1px rgba(0, 0, 0, 0.1),
          0 2px 4px -1px rgba(0, 0, 0, 0.06);
      }
      .auth-form h1 {
        text-align: center;
      }
      .auth-form .form-group {
        margin-bottom: 1.5rem;
      }
      .auth-form label {
        display: block;
        font-weight: 500;
        margin-bottom: 0.5rem;
      }
      .auth-form input {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid var(--border-gray);
        border-radius: 0.375rem;
      }
      .auth-form button {
        width: 100%;
      }

      @media (max-width: 480px) {
        .auth-form {
          margin: 1rem;
          padding: 1.5rem;
        }

        .auth-form h1 {
          font-size: 1.5rem;
        }
      }

      /* Page Hiding */
      .hidden {
        display: none;
      }

      /* Utility Classes */
      .container {
        width: 90%;
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 1rem;
        padding-right: 1rem;
      }
      .flex {
        display: flex;
      }
      .inline-flex {
        display: inline-flex;
      }
      .grid {
        display: grid;
      }
      .hidden {
        display: none;
      }
      .flex-col {
        flex-direction: column;
      }
      .flex-wrap {
        flex-wrap: wrap;
      }
      .items-center {
        align-items: center;
      }
      .justify-center {
        justify-content: center;
      }
      .justify-between {
        justify-content: space-between;
      }
      .gap-2 {
        gap: 0.5rem;
      }
      .gap-4 {
        gap: 1rem;
      }
      .mb-2 {
        margin-bottom: 0.5rem;
      }
      .mb-4 {
        margin-bottom: 1rem;
      }
      .mb-6 {
        margin-bottom: 1.5rem;
      }
      .mb-8 {
        margin-bottom: 2rem;
      }
      .mt-2 {
        margin-top: 0.5rem;
      }
      .mt-4 {
        margin-top: 1rem;
      }
      .mt-8 {
        margin-top: 2rem;
      }
      .mt-16 {
        margin-top: 4rem;
      }
      .p-3 {
        padding: 0.75rem;
      }
      .px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }
      .py-3 {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
      }
      .py-12 {
        padding-top: 3rem;
        padding-bottom: 3rem;
      }
      .text-center {
        text-align: center;
      }
      .text-sm {
        font-size: 0.875rem;
      }
      .text-lg {
        font-size: 1.125rem;
      }
      .text-xl {
        font-size: 1.25rem;
      }
      .text-2xl {
        font-size: 1.5rem;
      }
      .text-3xl {
        font-size: 1.875rem;
      }
      .font-bold {
        font-weight: 700;
      }
      .rounded-lg {
        border-radius: 0.5rem;
      }
      .rounded-full {
        border-radius: 9999px;
      }
      .border {
        border-width: 1px;
      }
      .bg-white {
        background-color: white;
      }
      .bg-blue-600 {
        background-color: #3b82f6;
      }
      .text-white {
        color: white;
      }
      .text-blue-600 {
        color: #3b82f6;
      }
      .text-gray-500 {
        color: #6b7280;
      }
      .text-gray-600 {
        color: #4b5563;
      }
      .text-gray-700 {
        color: #374151;
      }
      .hover\:bg-gray-100:hover {
        background-color: #f3f4f6;
      }
      .hover\:bg-blue-700:hover {
        background-color: #2563eb;
      }
      .transition {
        transition: all 0.2s;
      }
      .shadow {
        box-shadow:
          0 1px 3px 0 rgba(0, 0, 0, 0.1),
          0 1px 2px 0 rgba(0, 0, 0, 0.06);
      }
      .shadow-xl {
        box-shadow:
          0 20px 25px -5px rgba(0, 0, 0, 0.1),
          0 10px 10px -5px rgba(0, 0, 0, 0.04);
      }
      .max-w-2xl {
        max-width: 42rem;
      }
      .mx-auto {
        margin-left: auto;
        margin-right: auto;
      }
      .col-span-2 {
        grid-column: span 2 / span 2;
      }

      @media (min-width: 640px) {
        .sm\:flex {
          display: flex;
        }
        .sm\:flex-row {
          flex-direction: row;
        }
        .sm\:justify-center {
          justify-content: center;
        }
      }

      @media (min-width: 768px) {
        .md\:grid-cols-2 {
          grid-template-columns: repeat(2, 1fr);
        }
        .md\:col-span-2 {
          grid-column: span 2 / span 2;
        }
      }

      @media (min-width: 1024px) {
        .lg\:col-span-2 {
          grid-column: span 2 / span 2;
        }
      }

      /* Responsive Styles */
      @media (max-width: 480px) {
        .container {
          width: 100%;
          padding-left: 1rem;
          padding-right: 1rem;
        }

        header nav {
          flex-direction: column;
          gap: 1rem;
          padding: 1rem 0;
        }

        header nav div {
          width: 100%;
          justify-content: center;
        }

        #search-section {
          padding: 1rem;
        }

        #homepage-quote .container {
          padding-left: 1rem;
          padding-right: 1rem;
        }

        #homepage-quote h2 {
          font-size: 1.5rem;
        }

        #homepage-quote p {
          font-size: 1rem;
        }

        .product-card .buttons {
          flex-direction: column;
          gap: 0.5rem;
        }

        .product-card .details-btn,
        .product-card .demo-btn {
          width: 100%;
        }

        .nav-logo {
          font-size: 1.25rem;
        }

        .tag-badge {
          font-size: 0.7rem;
          padding: 0.2rem 0.5rem;
        }

        .product-card h3 {
          font-size: 1.1rem;
        }

        .product-card p {
          font-size: 0.8rem;
        }

        .product-card .price {
          font-size: 1.1rem;
        }

        .signup-btn {
          padding: 0.5rem 1rem;
          font-size: 0.875rem;
        }

        footer .container {
          padding-left: 1rem;
          padding-right: 1rem;
        }
      }

      @media (min-width: 481px) and (max-width: 768px) {
        .container {
          width: 95%;
          padding-left: 1rem;
          padding-right: 1rem;
        }

        header nav {
          flex-wrap: wrap;
          justify-content: space-between;
        }

        header nav div {
          gap: 0.75rem;
        }

        .nav-logo {
          font-size: 1.3rem;
        }

        .product-card .buttons {
          flex-direction: row;
          gap: 0.5rem;
        }

        #products-grid,
        #tag-page-grid {
          grid-template-columns: repeat(1, 1fr);
        }
      }

      @media (min-width: 640px) {
        #products-grid,
        #tag-page-grid {
          grid-template-columns: repeat(2, 1fr);
        }

        #homepage-quote form {
          grid-template-columns: repeat(2, 1fr);
        }

        .product-card .buttons {
          flex-direction: row;
          gap: 0.5rem;
        }
      }

      @media (min-width: 768px) {
        #products-grid,
        #tag-page-grid {
          grid-template-columns: repeat(2, 1fr);
        }

        header nav {
          flex-direction: row;
          justify-content: space-between;
        }

        header nav div {
          gap: 1rem;
        }

        .nav-logo {
          font-size: 1.375rem;
        }

        #homepage-quote .container {
          max-width: 1280px;
          margin-left: auto;
          margin-right: auto;
          padding-left: 1.5rem;
          padding-right: 1.5rem;
        }
      }

      @media (min-width: 1024px) {
        #products-grid,
        #tag-page-grid {
          grid-template-columns: repeat(3, 1fr);
        }
        .detail-terms-section .grid {
          grid-template-columns: repeat(2, 1fr);
        }
        #product-detail-page .detail-grid {
          grid-template-columns: 2fr 1fr;
        }

        #homepage-quote form {
          grid-template-columns: repeat(2, 1fr);
        }

        .container {
          width: 90%;
          max-width: 1280px;
          margin-left: auto;
          margin-right: auto;
          padding-left: 1rem;
          padding-right: 1rem;
        }
      }
      
      
      
      /* Constrain tags to prevent overflow */
      .product-card .tags-container {
        max-height: 2rem; /* Maximum height for tags area */
        overflow: hidden;
      }
      
      
      
      .product-card .details-btn::after,
      .product-card .demo-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
        z-index: -1;
        transition: all 0.3s ease;
      }
      
      /* Premium hover effects */
      .product-card .details-btn:hover,
      .product-card .demo-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      }
      
      /* Subtle shadow to enhance premium look */
      .product-card {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
      }
      
      .product-card:hover {
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
      }

      @media (min-width: 1280px) {
        #products-grid,
        #tag-page-grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }
      
      /* Final safety rules to ensure demo buttons are visible */
      .product-card .product-card-btn.demo-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        visibility: visible !important;
        opacity: 1 !important;
      }