    .hero-section {
        position: relative;
    }

    .background-layer {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #6C5CE7, #7B61FF, #A855F7);
        opacity: 0.95;
    }

    .background-layer:nth-child(2) {
        background: linear-gradient(to top right, rgba(255, 107, 157, 0.2), transparent, rgba(78, 205, 196, 0.2));
    }

    .background-layer:nth-child(3) {
        background: linear-gradient(to bottom left, transparent, rgba(255, 159, 67, 0.1), transparent);
    }

    .no-results {
        height: 88px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #7B61FF;
    }

    .animate-background {
        position: absolute;
        border-radius: 50%;
        animation: pulse 4s infinite;
    }

    .animate-background:nth-child(1) {
        top: 20px;
        left: 20px;
        width: 18rem;
        height: 18rem;
        background: rgba(255, 255, 255, 0.1);
    }

    .animate-background:nth-child(2) {
        bottom: 20px;
        right: 20px;
        width: 24rem;
        height: 24rem;
        background: rgb(185 106 106 / 5%);
    }

    .animate-background:nth-child(3) {
        top: 50%;
        transform: translate(-50%, -50%);
        width: 20rem;
        height: 20rem;
        background: rgb(195 44 159 / 5%);
    }

    .main-content {
        position: relative;
        z-index: 10;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 56px 10px;
        text-align: center;
    }

    .brand {
        margin-bottom: 10px;
        display: flex;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .icon-bg {
        background: rgba(255, 255, 255, 0.2);
        padding: 1rem;
        border-radius: 1rem;
    }

    .icon {
        color: white;
        font-size: 2rem;
    }

    .brand-title {
        font-size: 3rem;
        font-weight: bold;
        color: white;
    }

    .hero {
        margin-bottom: 16px;
        max-width: 35rem;
    }

    .hero-title {
        font-family: 'inter', sans-serif;
        color: white;
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .highlight {
        background: linear-gradient(to right, #FF6B9D, #FF9F43, #e0a200);
        -webkit-background-clip: text;
        color: transparent;
    }

    .hero-description {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 300;
        line-height: 1.5;
    }

    .search-bar {
        width: 100%;
        max-width: 32rem;
        position: relative;
    }

    .input-wrapper {
        position: relative;
    }

    .search-input {
        width: 100%;
        padding: 10px 0px 10px 20px;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 1.5rem;
        border: none;
        box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .search-input:focus {
        outline: none;
        box-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.3);
    }

    .search-button {
        position: absolute;
        top: 50%;
        right: 3px;
        transform: translateY(-50%);
        background: linear-gradient(to right, #7B61FF, #A855F7);
        padding: 0.5rem 1rem;
        border-radius: 1.5rem;
        color: white;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        cursor: pointer;
        border: none;
        box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
        transition: background 0.2s ease;
    }

    .search-button:hover {
        background: linear-gradient(to right, #6B51FF, #9333EA);
    }

    .suggestions {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-radius: 1.5rem;
        box-shadow: none;
        z-index: 100;
        margin-top: 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

    .suggestions button:last-child {
        border-bottom: none;
    }

    .suggestions button {
        cursor: pointer;
        padding: 1rem;
        text-align: left;
        width: 100%;
        border-bottom: none;
        border-radius: 23px;
        border: none;
        background: transparent;
    }

    .suggestions button:hover {
        background: #f5f3ff;
        color: #7B61FF;
    }

    .hidden {
        display: none;
    }

    .features {
        display: flex;
        gap: 2rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 25px;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem 2rem;
        border-radius: 9999px;
        box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
        transition: background 0.2s ease;
    }

    .feature-item:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .feature-text {
        color: white;
        font-weight: 500;
    }

    .icon {
        font-size: 1.5rem;
        color: white;
    }

    .icon:hover {
        transform: scale(1.1);
    }

    @media (max-width: 426px) {
        .icon-bg {
            padding: 9px;
        }

        .brand-title {
            font-size: 37px;
        }

        .hero-title {
            font-size: 36px;
        }
    }

    @media (max-width: 384px) {
        .brand-title {
            font-size: 30px;
        }

        .hero-title {
            font-size: 33px;
        }
    }


    .description {
        font-size: 18px;
        color: #4b5563;
        text-align: center;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
        gap: 32px;
    }

    .card {
        position: relative;
        overflow: hidden;
        border-radius: 16px;
        background-color: #ffffff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 187px;
    }

    .card-hover:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    }

    .card-gradient {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom right, var(--gradient-start), var(--gradient-end));
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .card:hover .card-gradient {
        opacity: 0.1;
    }

    .card-content {
        padding: 16px;
        text-align: center;
    }

    .icon-container {
        position: relative;
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        border: 1px solid var(--gradient-end);
        border-radius: 50%;
        padding: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .icon-container svg {
        width: 32px;
        height: 32px;
        fill: var(--icon-color);
        transition: transform 0.3s ease;
    }

    .card:hover .icon-container svg {
        transform: scale(1.1);
    }

    .title {
        font-size: 24px;
        font-weight: bold;
        color: #1f2937;
        margin-bottom: 16px;
        transition: color 0.3s ease;
    }

    .card:hover .title {
        color: transparent;
        background: linear-gradient(to right, #4e73df, #a55ee6);
        -webkit-background-clip: text;
    }

    .description-text {
        color: #6b7280;
        font-size: 16px;
        line-height: 1.5;
        transition: color 0.3s ease;
    }

    .card:hover .description-text {
        color: #4b5563;
    }

    .accent-line {
        margin-top: 24px;
        height: 2px;
        width: 0;
        background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
        transition: width 0.3s ease;
    }

    .card:hover .accent-line {
        width: 100%;
    }

    .card-corner {
        position: absolute;
        top: 0;
        right: 0;
        width: 40px;
        height: 40px;
        background: linear-gradient(to bottom left, var(--gradient-start), var(--gradient-end));
        opacity: 0.05;
        transition: opacity 0.3s ease;
    }

    .card:hover .card-corner {
        opacity: 0.2;
    }