/**
 * BuyersConnect Home Page Styles
 * Replicated from staging.buyersconnect.ai
 */

/* CSS Variables */
:root {
    --color-black: rgba(0, 0, 0, 1);
    --color-light-gray: rgba(244, 244, 244, 1);
    --color-white: rgba(255, 255, 255, 1);
    --color-primary-blue: rgba(3, 139, 255, 1);
    --color-accent-yellow: rgba(237, 193, 14, 1);
    --color-light-blue: rgba(144, 204, 245, 1);
    --color-gray: rgba(197, 197, 197, 1);
    --color-dark-gray: rgba(105, 105, 105, 1);
    --color-bg-light-blue: rgba(238, 247, 255, 1);
    --max-content-width: 1200px;

    /* Legacy variable names for compatibility */
    --color_1: rgba(0, 0, 0, 1);
    --color_2: rgba(244, 244, 244, 1);
    --color_3: rgba(255, 255, 255, 1);
    --color_4: rgba(3, 139, 255, 1);
    --color_5: rgba(237, 193, 14, 1);
    --color_6: rgba(144, 204, 245, 1);
    --color_7: rgba(197, 197, 197, 1);
    --color_8: rgba(105, 105, 105, 1);
    --color_9: rgba(238, 247, 255, 1);
}

/* Base Reset */
.bc-page * {
    box-sizing: border-box;
}

.bc-page {
    font-family: 'Arimo', sans-serif;
    line-height: 1.6;
    color: var(--color-black);
    overflow-x: hidden;
}

.bc-page h1,
.bc-page h2,
.bc-page h3,
.bc-page h4,
.bc-page h5,
.bc-page h6 {
    font-family: 'Oswald', sans-serif;
    margin: 0;
}

.bc-page img {
    max-width: 100%;
    height: auto;
}

.bc-page a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   HERO SECTION
   ============================================ */
.bc-hero {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.25) 100%),
                url('../images/Buyersconnectai_HomeHero-1920w.png');
    background-size: cover;
    background-position: center 20%;
    padding: 140px 20px 100px;
    min-height: 550px;
}

.bc-hero__container {
    max-width: var(--max-content-width);
    margin: 0 auto;
}

.bc-hero__content {
    max-width: 550px;
}

.bc-hero__title {
    color: #fff;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.bc-hero__title--accent {
    color: var(--color-accent-yellow);
}

.bc-hero__text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin-top: 20px;
    max-width: 500px;
}

.bc-hero__checklist {
    margin-top: 25px;
}

.bc-hero__checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    color: #fff;
    font-family: 'Arimo', sans-serif;
    font-size: 15px;
}

.bc-hero__checklist-item svg {
    width: 20px;
    height: 20px;
    fill: var(--color-accent-yellow);
    flex-shrink: 0;
    margin-top: 2px;
}

.bc-hero__buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.bc-hero__btn {
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Arimo', sans-serif;
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    transition: all 0.3s ease;
    background: var(--color-primary-blue);
    color: #000;
}

.bc-hero__btn:hover {
    background: #0270cc;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.bc-features {
    background: var(--color-light-gray);
    padding: 70px 0;
}

.bc-features__grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: stretch;
    gap: 0;
    width: 100%;
    max-width: 100%;
}

.bc-features__card {
    flex: 1;
    text-align: left;
    padding: 40px 50px;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.bc-features__card:last-child {
    border-right: none;
}

.bc-features__icon {
    width: 100px;
    height: 100px;
    margin: 0 0 25px 0;
    border-radius: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-features__icon--blue {
    background: var(--color-light-blue);
}

.bc-features__icon--yellow {
    background: var(--color-accent-yellow);
}

.bc-features__icon svg {
    width: 55px;
    height: 55px;
}

.bc-features__card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-black);
    text-transform: none;
}

.bc-features__card p {
    font-family: 'Arimo', sans-serif;
    color: var(--color-black);
    line-height: 1.7;
    font-size: 18px;
}

.bc-features__link {
    color: var(--color-black);
    text-decoration: none;
    font-family: 'Arimo', sans-serif;
    font-weight: 700;
    font-size: 20px;
    display: inline-block;
    margin-top: 20px;
}

/* ============================================
   STEPS SECTION
   ============================================ */
.bc-steps {
    background: var(--color-bg-light-blue);
    padding: 70px 0 0 0;
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
}

.bc-steps__header {
    text-align: center;
    margin-bottom: 50px;
}

.bc-steps__header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 65px;
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.1;
    text-transform: none;
}

.bc-steps__header h2 span {
    color: var(--color-primary-blue);
}

.bc-steps__grid {
    display: flex;
    gap: 0;
    width: 100%;
    align-items: stretch;
}

.bc-steps__content {
    flex: 1;
    padding: 40px 60px;
    max-width: 50%;
}

.bc-steps__item {
    margin-bottom: 35px;
}

.bc-steps__title {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: none;
}

.bc-steps__num {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--color-primary-blue);
}

.bc-steps__text {
    font-family: 'Oswald', sans-serif;
    font-size: 34px;
    font-weight: 600;
    color: var(--color-black);
}

.bc-steps__item p {
    font-family: 'Arimo', sans-serif;
    color: var(--color-black);
    line-height: 1.5;
    font-size: 18px;
}

.bc-steps__video {
    flex: 1;
    background: rgb(74, 174, 219);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    color: #000;
}

.bc-steps__video-placeholder {
    font-family: 'Oswald', sans-serif;
    font-size: 72px;
    font-weight: 700;
    text-align: center;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.bc-testimonials {
    background: #fff;
    padding: 70px 20px 20px;
    text-align: center;
}

.bc-testimonials__title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--color-black);
    text-transform: none;
    margin-bottom: 30px;
}

/* ============================================
   AUDIENCE SECTION
   ============================================ */
.bc-audience {
    background: #fff;
    padding: 5px 20px 25px;
}

.bc-audience__header {
    text-align: center;
    margin-bottom: 60px;
}

.bc-audience__header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
}

.bc-audience__header h2 span {
    color: var(--color-primary-blue);
}

.bc-audience__grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.bc-audience__card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: #fff;
    border: 1px solid var(--color-primary-blue);
    border-radius: 22px;
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
}

.bc-audience__label {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-dark-gray);
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.bc-audience__title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 20px;
}

.bc-audience__desc {
    font-family: 'Arimo', sans-serif;
    color: var(--color-dark-gray);
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 20px;
}

.bc-audience__btn-wrapper {
    margin-top: auto;
}

.bc-audience__btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Arimo', sans-serif;
    font-weight: 700;
    font-size: 14px;
    background: var(--color-primary-blue);
    color: #fff;
    transition: all 0.3s ease;
}

.bc-audience__btn:hover {
    background: #0270cc;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.bc-pricing {
    background: #fff;
    padding: 25px 20px 25px;
}

.bc-pricing__header {
    text-align: center;
    margin-bottom: 15px;
}

.bc-pricing__header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 65px;
    font-weight: 600;
}

.bc-pricing__header h2 span {
    color: var(--color-primary-blue);
}

.bc-pricing__subheader {
    text-align: center;
    font-family: 'Arimo', sans-serif;
    color: var(--color-black);
    margin-bottom: 50px;
    font-size: 16px;
}

.bc-pricing__grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.bc-pricing__card {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    background: #fff;
    border-radius: 45px;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-light-gray);
    transition: transform 0.2s ease-out;
}

.bc-pricing__card:hover {
    transform: scale(1.06);
}

.bc-pricing__card--featured {
    background: var(--color-light-gray);
    border: none;
}

.bc-pricing__card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bc-pricing__plan-name {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 1px;
}

.bc-pricing__plan-desc {
    font-family: 'Arimo', sans-serif;
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--color-black);
    font-weight: 400;
}

.bc-pricing__plan-price {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--color-black);
    margin: 20px 0;
}

.bc-pricing__plan-price span {
    font-family: 'Arimo', sans-serif;
    font-size: 16px;
    color: var(--color-dark-gray);
    font-weight: 400;
}

.bc-pricing__features {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bc-pricing__feature-item {
    padding: 8px 0;
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
    color: var(--color-black);
}

.bc-pricing__btn-wrapper {
    display: grid;
    margin-top: auto;
}

.bc-pricing__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Arimo', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    background: var(--color-primary-blue);
    color: #fff;
}

.bc-pricing__btn:hover {
    background: #0270cc;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.bc-faq {
    background: #fff;
    padding: 25px 20px 90px;
}

.bc-faq__header {
    text-align: center;
    margin-bottom: 50px;
}

.bc-faq__header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 52px;
    font-weight: 600;
}

.bc-faq__container {
    display: flex;
    gap: 50px;
    max-width: var(--max-content-width);
    margin: 0 auto;
    align-items: flex-start;
}

.bc-faq__image {
    flex: 1;
    max-width: 400px;
}

.bc-faq__image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.bc-faq__list {
    flex: 1;
}

.bc-faq__item {
    border-bottom: 1px solid #ddd;
}

.bc-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    cursor: pointer;
    font-family: 'Arimo', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--color-black);
}

.bc-faq__question::after {
    content: "—";
    font-size: 20px;
    color: var(--color-primary-blue);
    font-weight: 300;
}

.bc-faq__answer {
    display: none;
    padding: 0 0 22px;
    font-family: 'Arimo', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-dark-gray);
}

.bc-faq__item.active .bc-faq__answer {
    display: block;
}

.bc-faq__item.active .bc-faq__question::after {
    content: "+";
}

/* ============================================
   CTA SECTION
   ============================================ */
.bc-cta {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(22, 33, 62, 0.88) 100%),
                url('../images/Buysersconnectai_Sellnow-1920w.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
}

.bc-cta__content {
    max-width: 700px;
    margin: 0 auto;
}

.bc-cta__content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
}

.bc-cta__content h2 span {
    color: var(--color-accent-yellow);
}

.bc-cta__content p {
    font-family: 'Arimo', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
}

.bc-cta__btn {
    display: inline-block;
    background: var(--color-accent-yellow);
    color: var(--color-black);
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Arimo', sans-serif;
    font-weight: 700;
    font-size: 15px;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.bc-cta__btn:hover {
    background: #d4af0d;
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.bc-footer {
    background: #EEF7FF;
    padding: 60px 20px 0;
}

.bc-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.bc-footer__col--logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bc-footer__logo img {
    height: 60px;
    margin-bottom: 20px;
}

.bc-footer__social {
    display: flex;
    gap: 12px;
}

.bc-footer__social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #008CFF;
    transition: color 0.3s;
}

.bc-footer__social a:hover {
    color: #0070d4;
}

.bc-footer__social svg {
    width: 22px;
    height: 22px;
}

.bc-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bc-footer__nav a {
    color: #374151;
    text-decoration: none;
    font-family: 'Arimo', sans-serif;
    font-size: 15px;
    transition: color 0.3s;
}

.bc-footer__nav a:hover {
    color: #008CFF;
}

.bc-footer__col--newsletter h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 20px;
}

.bc-footer__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bc-footer__form input {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
    background: #fff;
}

.bc-footer__form input::placeholder {
    color: #999;
}

.bc-footer__form button {
    padding: 14px 24px;
    background: #008CFF;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-family: 'Arimo', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.bc-footer__form button:hover {
    background: #0070d4;
}

.bc-footer__copyright {
    border-top: 1px solid #ddd;
    padding: 20px;
    text-align: center;
}

.bc-footer__copyright p {
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .bc-steps__header h2 {
        font-size: 55px;
    }

    .bc-steps__num {
        font-size: 34px;
    }

    .bc-steps__text {
        font-size: 29px;
    }
}

@media (max-width: 768px) {
    .bc-hero {
        padding: 100px 20px 60px;
    }

    .bc-hero__title {
        font-size: 36px;
    }

    .bc-features__grid {
        flex-wrap: wrap;
    }

    .bc-features__card {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.15);
        min-width: 100%;
    }

    .bc-features__card:last-child {
        border-bottom: none;
    }

    .bc-steps__grid {
        flex-direction: column;
    }

    .bc-steps__content {
        max-width: 100%;
    }

    .bc-steps__header h2 {
        font-size: 40px;
    }

    .bc-steps__num {
        font-size: 32px;
    }

    .bc-steps__text {
        font-size: 27px;
    }

    .bc-audience__grid {
        flex-direction: column;
        align-items: center;
    }

    .bc-audience__header h2 {
        font-size: 32px;
    }

    .bc-pricing__grid {
        flex-direction: column;
        align-items: center;
    }

    .bc-faq__container {
        flex-direction: column;
    }

    .bc-faq__image {
        max-width: 100%;
    }

    .bc-footer__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bc-footer__col--logo {
        align-items: center;
    }

    .bc-footer__social {
        justify-content: center;
    }

    .bc-footer__nav {
        align-items: center;
    }
}
