/* General Reset & Fonts */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: white;
    color: #111;
    margin: 0;
    line-height: 1.5;
}

.highlight {
    color: #6450e6;
    font-weight: bold;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    padding: 6rem 0 4rem;
    background: white;
}

.hero-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1 1 500px;
}

    .hero-text h1 {
        font-size: 3rem;
        font-weight: 400;
        margin-bottom: 1rem;
        line-height: 1.1;
    }

.hero-subtext {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 450px;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background: linear-gradient(90deg, #ff7e5f, #feb47b, #fd6e6a, #a34bc4);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.6rem;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(163, 75, 196, 0.4);
    transition: all 0.3s ease;
    user-select: none;
}

    .btn-primary:hover {
        filter: brightness(1.1);
        box-shadow: 0 12px 20px rgba(163, 75, 196, 0.7);
    }

.no-credit {
    font-size: 0.875rem;
    color: #999;
    user-select: none;
    white-space: nowrap;
}

.trusted {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #444;
}

.brand-logos {
    display: flex;
    gap: 2rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

    .brand-logos img {
        max-height: 30px;
        opacity: 0.7;
        transition: opacity 0.3s ease;
        filter: grayscale(80%);
        user-select: none;
    }

        .brand-logos img:hover {
            opacity: 1;
            filter: none;
            cursor: pointer;
        }

.hero-video {
    flex: 1 1 700px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(163, 75, 196, 0.15);
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
}

    .video-wrapper iframe {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }

/* Features Section */
.features-section {
    padding: 4rem 0 4rem;
    background: #fafafa;
}

.features-grid {
    max-width: 1100px;
    margin: 0 auto;
}

.features-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.tag {
    display: inline-block;
    background: #ff7e5f;
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    user-select: none;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgb(255 126 95 / 0.4);
}

.features-header h2 {
    font-weight: 600;
    margin: 0;
    flex: 1 1 400px;
    line-height: 1.1;
    color: #111;
}

.features-subtext {
    flex: 1 1 400px;
    color: #555;
    font-size: 1rem;
    line-height: 1.4;
    user-select: none;
}

.feature-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    flex: 1 1 300px;
    box-shadow: 0 6px 20px rgb(0 0 0 / 0.04);
    transition: box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

    .feature-card:hover {
        box-shadow: 0 12px 40px rgb(163 75 196 / 0.15);
    }

.feature-icon {
    font-weight: 700;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, #ff7e5f, #feb47b, #fd6e6a, #a34bc4);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin-bottom: 1rem;
    user-select: none;
    box-shadow: 0 8px 15px rgb(163 75 196 / 0.4);
}


.trust-badges-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap; /* wraps on smaller screens */
    margin-top: 12px; /* space below CTA button */
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background-color: #f3f4f6; /* light neutral background */
    border-radius: 999px; /* pill-shaped */
    font-size: 12px;
    font-weight: 500;
    color: #111827; /* dark text */
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: background-color 0.2s, box-shadow 0.2s;
}

    .trust-badge .trust-icon {
        width: 16px;
        height: 16px;
    }

    .trust-badge:hover {
        background-color: #e5e7eb;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }

.trust-icon {
    width: 64px;
    height: auto;
}

    .section-heading {
        font-size: 2rem; /* Clear but not giant */
        font-weight: 700; /* Bold for emphasis */
        color: rgba(67, 56, 202, 0.9); /* Slightly softened brand color */
        margin-bottom: 2rem; /* Space before content */
        position: relative;
        display: inline-block; /* Required so width matches text */
    }

        .section-heading::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px; /* small gap under text */
            width: 100%; /* matches text width */
            height: 3px;
            background-color: #4338ca; /* solid brand color underline */
            border-radius: 2px;
        }

    .faq-section {
        background: white;
        padding: 3rem 2rem;
        max-width: 800px;
        margin: 0 auto;
    }

        .faq-section h2 {
            text-align: center;
            margin-bottom: 2rem;
            color: #808080;
        }

    .faq-item {
        margin-bottom: 1.5rem;
    }

        .faq-item h3 {
            margin-bottom: 0.5rem;
            color: #4338ca;
        }



    .try-me-pill {
        position: fixed;
        bottom: 25px; /* adjust vertical position to hover near chatbot */
        right: 80px; /* adjust horizontal position */
        background-color: #60a5fa; /* bubble color */
        color: white; /* text color */
        padding: 10px 20px; /* space inside bubble */
        border-radius: 50px; /* makes it pill-shaped */
        font-weight: bold;
        font-size: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* optional shadow */
        z-index: 10000;
        white-space: nowrap;
        cursor: default;
    }

    div.pitorian {
        position: relative;
        top: 25px;
        bottom: 0;
        left: 2px;
        width: 20px;
        z-index: 0;
    }


.hero-video {
    width: 100%; /* or fixed width */
    height: 100%; /* container height */
    overflow: hidden; /* hide overflow if needed */
}

    .hero-video video {
        width: 100%;
        height: 100%;
        object-fit: contain; /* scale video to fit inside container */
    }
