/* assets/css/style.css */

/* CSS Variables */
:root {
    --primary-purple: #7c3aed;
    --primary-blue: #3b82f6;
    --dark-bg: #0f172a;
    --card-bg: #1e293b;
}

/* Body Styles */
body {
    font-family: 'Sofia Sans';
    background: #ffffff;
    min-height: 100vh;
    /* padding-top: 40px; */
    display: grid;
}

/* menu section */
.navbar.navbar-expand-lg.bg-body-tertiary {
    /* background: #fafafa !important; */
    background: #fafafad4 !important;
    backdrop-filter: blur(10px);
}

.custom-navbar {
    padding: 20px 40px !important;
}

.navbar-expand-lg .custom-navbar .navbar-nav {
    gap: 30px;
    align-items: center;
}

.navbar-expand-lg .custom-navbar .navbar-nav .nav-link {
    color: #8f8f8f;
    font-family: 'Sofia Sans';
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    padding: 0;
}

.navbar-expand-lg .custom-navbar .navbar-nav .nav-link.get-started-btn {
    background: linear-gradient(90deg, #8660D3 0%, #3BB4DB 100%);
    color: rgba(255, 255, 255, 1);
    border: none;
    border-radius: 6px;
    height: 40px;
    width: 127px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 17px;
}

@media (max-width: 991px) {
    .custom-navbar {
        padding: 20px 20px !important;
    }

    .navbar-expand-lg .custom-navbar .navbar-nav {
        margin-top: 25px;
        align-items: baseline;
    }
}

/* Hero Section */

.hero-title {
    font-family: 'Sofia Sans';
    font-weight: 700;
    font-size: 29px;
    letter-spacing: 0px;
    background: linear-gradient(90deg, #8660D3 25%, #3BB4DB 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* margin-bottom: 40px; */

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

/* Brand Badge */
.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 1);
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: 28px;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(90deg, #8660D3 0%, #3BB4DB 100%) border-box;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    /* font-weight: 500; */
}

.brand-badge .badge-text {
    background: linear-gradient(90deg, #8660D3 20.19%, #3BB4DB 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    font-weight: 800;
    font-family: 'Nunito Sans';
}

.brand-badge .badge-beta {
    background: rgba(32, 34, 36, 1);
    border: 1px solid transparent;
    border-radius: 28px;
    background:
        linear-gradient(rgba(32, 34, 36, 1), rgba(32, 34, 36, 1)) padding-box,
        linear-gradient(90deg, #8660D3 0%, #3BB4DB 100%) border-box;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
}

.brand-badge .badge-beta .badge-inside-text {
    background: linear-gradient(90deg, #8660D3 20.19%, #3BB4DB 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Nunito Sans';
}

/* Search Card */
.search-card {
    border: 3px solid transparent;
    border-radius: 30px;
    background:
        linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)) padding-box,
        linear-gradient(90deg, #8660D3 0%, #3BB4DB 100%) border-box;
    padding: 8px 10px;
    margin: 0 auto;
    /* box-shadow: -17px 0px 68.5px 0px rgba(134, 96, 211, 0.14); */
    box-shadow: 17px 0px 68.5px 0px rgba(59, 180, 219, 0.14);

}

.search-wrapper {
    display: flex;
    gap: 6px;
    align-items: center;
    max-height: 38px;
}

.search-input {
    flex: 1;
    background: white;
    border: none;
    padding: 0px;
    border-radius: 0px;
    font-family: 'Sofia Sans';
    font-size: 14px;
    font-weight: 400;
    outline: none;
    height: 38px;
}

.search-input::placeholder {
    color: #676767;
    font-family: 'Sofia Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
}


.select-wrapper {
    position: relative;
    width: 209px;
}

.select-gradient-text {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;

    font-size: 17px;
    font-weight: 700;
    font-family: 'Sofia Sans';
    line-height: 1;

    background: linear-gradient(90deg, #8660D3 0%, #3BB4DB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.dropdown-select {
    width: 100%;
    padding: 3px 10px;
    background-color: transparent;
    color: transparent;
    /* hide real text */
    font-size: 17px;
    font-weight: 700;
    font-family: 'Sofia Sans';
    min-width: 150px;
    height: 38px;
    line-height: 1;
    /* gradient-like text color */
    border-radius: 30px;
    border: 1px solid transparent;
    background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(90deg, #8660D3 0%, #3BB4DB 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;

    appearance: none;
    /* remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;

    cursor: pointer;
}

/* custom arrow */
.select-wrapper::after {
    content: "▾";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 32px;
    color: #3BB4DB;
}

/* Text options background */
.dropdown-select option {
    background: rgba(255, 255, 255, 1);
    color: #0e4894;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Sofia Sans';
}

.dropdown-select:focus,
.dropdown-select:focus-visible,
.dropdown-select:active {
    outline: none;

    background-image:
        linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)),
        linear-gradient(90deg, #8660D3 0%, #3BB4DB 100%);
    /* same gradient border */
    background-origin: border-box;
    background-clip: padding-box, border-box;

    border-color: transparent;
    /* ensure border shows gradient */
}

/* Analyze Button */
.analyze-btn {
    background: linear-gradient(90deg, #8660D3 0%, #3BB4DB 100%);
    color: rgba(255, 255, 255, 1);
    border: none;
    padding: 10px 45px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 17px;
    line-height: 1;
    font-family: 'Sofia Sans';
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 38px;
    width: 162px;
}

.analyze-btn:hover {
    /* transform: translateY(-2px); */
    /* box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4); */
}

/* Trusted Section */
.trusted-section {
    text-align: center;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.trusted-title {
    font-family: 'Sofia Sans';
    font-size: 29px;
    font-weight: 500;
    margin-bottom: 50px;
    color: rgba(10, 10, 10, 1);
}

/* Brands Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 30px;
    margin-bottom: 40px;
    align-items: center;
    justify-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #334155;
    transition: transform 0.2s;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    border-radius: 8px;
    font-size: 1.2rem;
}

/* Footer */
.footer,
.footer a {
    /* font-family: 'Sofia Sans'; */
    background: #0a1020;
    color: rgba(250, 250, 250, 1);
    font-size: 17px;
    font-weight: 400;
}

.footer a {
    text-decoration: none;
}

.footer .footer-item .footer-menu a {
    font-size: 20px !important;
}

/* Responsive Design */

@media (max-width: 768px) {

    .hero-title,
    .trusted-title {
        font-size: 22px;
    }

    .trusted-title {
        margin-bottom: 20px;
    }

    .brand-badge .badge-text {
        font-size: 16px;
    }

    .search-wrapper {
        /* flex-direction: column; */
        flex-wrap: wrap;
        gap: 30px !important;
        height: 100%;
        max-height: max-content !important;
    }

    .dropdown-select,
    .analyze-btn,
    .select-wrapper {
        width: 100%;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}


/*landing.css */

/* firstfold */
.hero-section .hero-header-title {
    font-family: 'Sofia Sans';
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    color: #000000;
}

.hero-section .hero-header-title .text-gradient.custom-gradient {
    font-size: 40px;
}

.text-gradient {
    background: linear-gradient(90deg, #8660D3 20.19%, #3BB4DB 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-family: 'Sofia Sans';
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    color: #676767;
}

@media (max-width: 768px) {
    .hero-section .hero-header-title {
        font-size: 28px;
    }

    .hero-section .hero-header-title .text-gradient.custom-gradient {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}

/* Search Container */
.search-container {
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .search-icon {
        position: absolute;
        left: 28px;
        /* bottom: 166px; */
    }

    .search-input {
        width: 100%;
        /* padding: 12px 28px 0px; */
        padding: 0px 30px 0px;
    }
}

.search-dropdown {
    border: none;
    outline: none;
    padding: 8px 16px;
    background: #f1f5f9;
    border-radius: 20px;
    color: var(--primary-blue);
    font-weight: 500;
    margin-right: 8px;
    cursor: pointer;
}

.btn-analyze {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-analyze:hover {
    transform: scale(1.05);
}

/* Market Intel */
.market-intel {
    margin-top: 30px;
}

.intel-title {
    font-family: 'Sofia Sans';
    font-size: 24px;
    font-weight: 400;
    color: #676767;
    line-height: 1;
}

/* viewport */
.intel-marquee {
    overflow: hidden;
    width: 100%;
}

/* moving container */
.intel-items {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: marquee 18s linear infinite;
}

/* animation */
@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.intel-item {
    display: flex;
    gap: 6px;
    align-items: center;
    white-space: nowrap;
}

.intel-img {
    height: 17px;
}

.intel--text {
    font-family: 'Sofia Sans';
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    color: #000000;
}

/* pause on hover (optional) */
.intel-marquee:hover .intel-items {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .intel-items {
        /* flex-direction: column; */
        position: relative;
        width: 300px;
    }

    @keyframes marquee {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-300%);
        }
    }
}

/* end of intel scroll */


/* How It Works Section */
.section-title {
    font-family: 'Sofia Sans';
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    color: #000000;
}

.step-card {
    text-align: center;
    height: 100%;
}

.step-icon img {
    width: 88px;
    height: 88px;
}

.step-title {
    font-family: 'Sofia Sans';
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: #000000;
}

.step-description {
    font-family: 'Sofia Sans';
    font-size: 20px;
    font-weight: 400;
    line-height: 27px;
    color: #676767;
}

.arrow-up-icon img,
.arrow-down-icon img {
    display: none;
}

@media(min-width: 992px) {
    .arrow-up-icon img {
        display: block;
        position: absolute;
        width: 320px;
        top: -49px;
        left: 61%;
    }

    .arrow-down-icon {
        display: block;
        position: absolute;
        width: 320px;
        top: 80px;
        left: 50px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-description {
        font-size: 18px;
    }

    .advantage-badge {
        font-size: 18px !important;
    }
}

/* Advantage Section */
.advantage-section {
    padding: 60px 0px;
    background: #fafafa;
}

.advantage-badge {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(#fafafa, #fafafa) padding-box, linear-gradient(90deg, #8660D3 0%, #3BB4DB 100%) border-box;
    border: 2px solid transparent;
    border-radius: 30px;
    font-family: 'Sofia Sans';
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    color: #000000;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    border: 2px solid rgba(205, 205, 205, 1);
    height: 100%;
    display: grid;
    gap: 30px;
}

.feature-icon-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    justify-content: space-between;
}

.feature-icon img {
    /* width: 48px; */
    height: 48px;
}

.feature-label {
    font-family: 'Sofia Sans';
    font-size: 15px;
    color: #676767;
    font-weight: 500;
    line-height: 1;
    text-transform: capitalize;
    padding: 8px 12px;
    border-radius: 30px;
    border: 1px solid rgba(205, 205, 205, 1);
}

.feature-title {
    font-family: 'Sofia Sans';
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    color: #000000;
}

.feature-description {
    font-family: 'Sofia Sans';
    font-size: 20px;
    font-weight: 400;
    line-height: 27px;
    color: #676767;
    margin-bottom: 0px;
}

@media (min-width: 768px) {
    .feature-card {
        width: 330px;
    }
}


/* Report Section */
.report-section {
    background: white;
}

.report-label {
    font-family: 'Sofia Sans';
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    color: #676767;
    text-transform: uppercase;
}

.report-subtitle {
    font-family: 'Sofia Sans';
    font-size: 24px;
    color: #676767;
    line-height: 1;
}

.report-preview {
    margin: 40px 0;
    position: relative;
    box-shadow: 17px 0px 68.5px 0px rgba(59, 180, 219, 0.14);
    border-radius: 30px;
}

.report-preview img {
    width: 100%;
    border-radius: 30px;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #8660D3 0%, #3BB4DB 100%) border-box;
}

.report-insight {
    max-width: 100%;
    padding: 16px;
    background: #f2f0fd;
    border-radius: 12px;
    border: 1px solid rgba(59, 180, 219, 1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.report-insight img {
    height: 48px;
}

.report-insight p {
    font-family: 'Sofia Sans';
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    margin: 0;
    color: #8660d3;
    text-align: left;
}

.btn-report {
    color: #808080;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .report-insight {
        width: 691px;
    }

    .pricing-card {
        width: 405px;
    }
}

@media (max-width: 767px) {
    .report-label {
        font-size: 20px !important;
    }

    .report-subtitle {
        font-size: 17px;
    }

    .report-insight p,
    .btn-report {
        font-size: 15px;
    }

    .report-section .section-title {
        font-size: 26px;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0px;
    background: #fafafa;
}

.pricing-subtitle {
    font-family: 'Sofia Sans';
    font-size: 24px;
    font-weight: 400;
    color: #676767;
    line-height: 1;
}

.pricing-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 32px;
    height: 100%;
    position: relative;
}

.pricing-featured {
    border: 2px solid rgba(79, 70, 229, 1);
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.recommended-badge {
    position: absolute;
    top: -30px;
    right: 30%;
    background: linear-gradient(90deg, #8660D3 0%, #3BB4DB 100%);
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
    color: white;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 16.8px;
    letter-spacing: 0.31px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.pricing-plan {
    font-family: 'Sofia Sans';
    font-size: 36px;
    font-weight: 700;
    line-height: 28px;
    color: #000000;
}

.pricing-plan.pro {
    background: linear-gradient(90deg, #8660D3 20.19%, #3BB4DB 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price {
    font-family: 'Sofia Sans';
    font-size: 36px;
    font-weight: 900;
    line-height: 40px;
    color: #000000;
}

.period {
    font-family: 'Sofia Sans';
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #64748b;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li img {
    height: 18px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Sofia Sans';
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 20px;
    color: #334155;
}

.pricing-features li.disabled {
    color: #94a3b8;
}

.dashed-border {
    border: 1px dashed #e2e8f0;
}

.btn-pricing {
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    font-family: 'Sofia Sans';
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-outline {
    background: white;
    border: 2px solid #e2e8f0;
}

.btn-gradient {
    background: linear-gradient(90deg, #8660D3 0%, #3BB4DB 100%);
    box-shadow: 0px 4px 6px -4px rgba(199, 210, 254, 1);
    box-shadow: 0px 10px 15px -3px rgba(199, 210, 254, 1);
    color: white;
    border: none;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.accordion-item {
    border: 2px solid rgba(229, 231, 235, 1) !important;
    border-radius: 12px !important;
    margin-bottom: 16px;
    overflow: hidden;
}

.accordion-button {
    font-family: 'Sofia Sans';
    font-weight: 400;
    font-size: 18px !important;
    line-height: 28px !important;
    padding: 26px !important;
    background: white;
    color: #101828 !important;
}

.accordion-button:not(.collapsed) {
    background: #fafafa !important;
}

.accordion-button:focus {
    box-shadow: none;
    box-shadow: none !important;
}

.accordion-body {
    font-family: 'Sofia Sans' !important;
    padding: 20px 24px;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-subtitle {
        font-size: 18px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .search-wrapper {
        flex-direction: column;
        border-radius: 20px;
    }

    .search-dropdown,
    .btn-analyze {
        width: 100%;
        margin: 5px 0;
    }
}