/* ===== HERO INFLUENCER ===== */

.hero-influencer {
    position: relative;
    height: 100vh;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
}

/* BACKGROUND */
.hero-inf-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../images/3.jpg") center/cover no-repeat;
    z-index: 1;
}

/* OVERLAY */
.hero-inf-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: 2;
}

/* CONTENT CENTER */
.hero-inf-content {
    position: relative;
    z-index: 3;
    color: #ffffff;

    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 0 20px;
}

/* TOP TEXT */
.hero-inf-top {
    font-size: 28px;
    color: #ff6a00;
    margin-bottom: 10px;
    font-weight: 600;
}

/* MAIN HEADING */
.hero-inf-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin: 0;
}

/* FEATURES */
.hero-inf-features {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

/* TEXT */
.hero-inf-features span {
    position: relative;
    font-size: 18px;
    padding: 0 15px;
}

/* 🔥 DOT SEPARATOR (what you asked for) */
.hero-inf-features span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);

    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
}
/* ===== USP INFLUENCER ===== */

.usp-influencer {
    background: #0b0b0b;
    color: #ffffff;
    padding: 80px 20px;
    font-family: 'Montserrat', sans-serif;
}

.usp-inf-container {
    max-width: 1200px;
    margin: auto;
}

/* INTRO */
.usp-inf-intro {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 12px;
    max-width: 900px;
}

/* TITLE */
.usp-inf-title {
    font-size: 36px;
    font-weight: 800;
    margin: 40px 0;
}

/* GRID */
.usp-inf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.usp-inf-card {
    background: #111;
    padding: 25px;
}

/* HEADING */
.usp-inf-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

/* NUMBER */
.usp-inf-card h3 span {
    color: #ff6a00;
    font-size: 26px;
    font-weight: 800;
    margin-right: 8px;
}

/* LIST */
.usp-inf-card ul {
    list-style: none;
    padding: 0;
}

/* ITEM */
.usp-inf-card li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.85;
}

/* DOT BULLET (same style feel) */
.usp-inf-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -6px;
    font-size: 26px;
    color: #ff6a00;
}
/* ===== DELIVERABLES INFLUENCER ===== */

.deliverables-inf {
    background: #0b0b0b;
    color: #ffffff;
    padding: 80px 20px;
    font-family: 'Montserrat', sans-serif;
}

.deliverables-inf-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.deliverables-inf-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
}

/* GRID */
.deliverables-inf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
    text-align: center;
}

/* ITEM */
.deliverable-item {
    max-width: 250px;
    margin: auto;
}

/* NUMBER (outline style like your system) */
.deliverable-item .num {
    display: block;
    font-size: 80px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px #ff6a00;
    margin-bottom: 10px;
}

/* TEXT */
.deliverable-item h3 {
    font-size: 20px;
    line-height: 1.3;
}
/* ===== BENEFITS INFLUENCER ===== */

.benefits-inf {
    background: #0b0b0b;
    color: #ffffff;
    padding: 80px 20px;
    font-family: 'Montserrat', sans-serif;
}

.benefits-inf-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.benefits-inf-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
}

/* ROW */
.benefit-inf-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px 80px;
    margin-bottom: 20px;

    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* DARK OVERLAY */
.benefit-inf-row::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

/* TEXT */
.benefit-inf-row p {
    position: relative;
    z-index: 2;
    font-size: 24px;
    text-align: center;
    line-height: 1.4;
}

.benefit-inf-row strong {
    font-weight: 800;
}

/* ICON BASE */
.inf-icon {
    position: absolute;
    width: 34px;
    height: 34px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    z-index: 2;
}

/* INNER DOT */
.inf-icon::after {
    content: "";
    width: 12px;
    height: 12px;
    background: #ff6a00;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* CONNECTOR LINE */
.inf-icon::before {
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
    background: #ff6a00;
    top: 50%;
}

/* LEFT */
.inf-icon.left {
    left: 25px;
}

.inf-icon.left::before {
    right: -25px;
}

/* RIGHT */
.inf-icon.right {
    right: 25px;
}

.inf-icon.right::before {
    left: -25px;
}

/* TITLE */
.plat-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    color: black;
}

/* ITEM */
.plat-item {
    margin-bottom: 25px;
}

/* HEAD */
.plat-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    color: black;
}

/* CENTER ALIGN */
.plat-head.center {
    justify-content: center;
}

.plat-item.center {
    text-align: center;
}

/* ICON */
.plat-head img {
    width: 38px;
}

/* TITLE TEXT */
.plat-head h3 {
    font-size: 28px;
    font-weight: 700;
}

/* DESC */
.plat-item p {
    font-size: 15px;
    color: #333;
}

/* LINE (THIS WAS YOUR BIG PROBLEM) */
.plat-line {
    height: 2px;
    width: 70%;
    background: #ff6a00;
    margin-top: 12px;
}

/* center lines properly */
.plat-item.center .plat-line {
    margin-left: auto;
    margin-right: auto;
}

/* ===== FIXED PLATFORM SECTION ===== */

.platforms-perfect {
    background: #eaeaea;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    margin-bottom: 20px;
}

/* WRAP */
.platforms-wrap {
    display: flex;
    align-items: center;
}

/* LEFT SIDE */
.platforms-left {
    width: 45%;
    padding-left: 80px;
    padding-right: 40px;
}

/* RIGHT SIDE (REAL FIX) */
.platforms-right {
    width: 55%;
    position: relative;
    height: 600px;
}

/* IMAGE FULL BLEED */
.platforms-right img {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ORANGE BAR (LOCKED TO IMAGE EDGE) */
.orange-bar {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 160px;
    background: #ff6a00;
}
/* ===== FAQ CLEAN ===== */

.faq-clean {
    background: #0b0b0b;
    color: #ffffff;
    padding: 80px 20px;
    font-family: 'Montserrat', sans-serif;
}

.faq-container {
    max-width: 1000px;
    margin: auto;
}

/* TITLE */
.faq-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
}

/* LIST */
.faq-item {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #ffffff;
    padding: 18px 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-align: left;
}

/* ICON */
.faq-question i {
    color: #ff6a00;
    width: 20px;
    height: 20px;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #9ca3af;
    font-size: 15px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 15px;
}

/* CTA */
.faq-cta {
    text-align: center;
    margin-top: 60px;
}

.faq-cta p {
    color: #bbb;
    margin-bottom: 10px;
}

.faq-cta h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* BUTTON */
.faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ff6a00;
    padding: 12px 24px;
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.faq-btn:hover {
    background: #ff6a00;
}
/* ===== 1024 RESPONSIVE (NO LAYOUT CHANGE) ===== */

@media (max-width: 1024px) {

    /* ===== HERO ===== */
    .hero-inf-top {
        font-size: 24px;
    }

    .hero-inf-content h1 {
        font-size: 42px;
    }

    .hero-inf-features span {
        font-size: 16px;
        padding: 0 12px;
    }


    /* ===== USP ===== */
    .usp-inf-title {
        font-size: 30px;
        margin: 30px 0;
    }

    .usp-inf-intro {
        font-size: 14px;
    }

    .usp-inf-card {
        padding: 20px;
    }

    .usp-inf-card h3 {
        font-size: 17px;
    }

    .usp-inf-card h3 span {
        font-size: 22px;
    }

    .usp-inf-card li {
        font-size: 13px;
    }


    /* ===== DELIVERABLES ===== */
    .deliverables-inf-title {
        font-size: 30px;
        margin-bottom: 50px;
    }

    .deliverable-item .num {
        font-size: 65px;
    }

    .deliverable-item h3 {
        font-size: 18px;
    }


    /* ===== BENEFITS ===== */
    .benefits-inf-title {
        font-size: 30px;
    }

    .benefit-inf-row {
        padding: 20px 60px;
    }

    .benefit-inf-row p {
        font-size: 20px;
    }

    .inf-icon {
        width: 28px;
        height: 28px;
    }

    .inf-icon::after {
        width: 10px;
        height: 10px;
    }


    /* ===== PLATFORMS ===== */
    .plat-title {
        font-size: 30px;
    }

    .plat-head h3 {
        font-size: 24px;
    }

    .plat-item p {
        font-size: 14px;
    }

    .plat-head img {
        width: 32px;
    }

    .platforms-left {
        padding-left: 60px;
        padding-right: 30px;
    }

    .platforms-right {
        height: 520px;
    }


    /* ===== FAQ ===== */
    .faq-title {
        font-size: 30px;
    }

    .faq-question {
        font-size: 16px;
        padding: 16px 0;
    }

    .faq-answer {
        font-size: 14px;
    }

    .faq-cta h3 {
        font-size: 24px;
    }

    .faq-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

}
/* ===== 768 RESPONSIVE (2/2 GRID SHIFT) ===== */

@media (max-width: 768px) {

    /* ===== HERO ===== */
    .hero-inf-top {
        font-size: 20px;
    }

    .hero-inf-content h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .hero-inf-features {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-inf-features span {
        font-size: 14px;
        padding: 6px 10px;
    }


    /* ===== USP (3 → 2) ===== */
    .usp-inf-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .usp-inf-title {
        font-size: 26px;
        margin: 25px 0;
    }

    .usp-inf-card {
        padding: 18px;
    }

    .usp-inf-card h3 {
        font-size: 16px;
    }

    .usp-inf-card li {
        font-size: 13px;
    }


    /* ===== DELIVERABLES (4 → 2) ===== */
    .deliverables-inf-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .deliverables-inf-title {
        font-size: 26px;
    }

    .deliverable-item .num {
        font-size: 55px;
    }

    .deliverable-item h3 {
        font-size: 16px;
    }


    /* ===== BENEFITS ===== */
    .benefit-inf-row {
        padding: 18px 40px;
    }

    .benefit-inf-row p {
        font-size: 18px;
    }

    .inf-icon {
        width: 24px;
        height: 24px;
    }

    .inf-icon::after {
        width: 8px;
        height: 8px;
    }

    .inf-icon.left {
        left: 15px;
    }

    .inf-icon.right {
        right: 15px;
    }


    /* ===== PLATFORMS (STACK) ===== */
    .platforms-wrap {
        flex-direction: column;
    }

    .platforms-left,
    .platforms-right {
        width: 100%;
    }

    .platforms-left {
        padding: 40px 30px;
        text-align: center;
    }

    .platforms-right {
        display: none;
    }

    .orange-bar {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .plat-title {
        font-size: 26px;
    }

    .plat-head {
        justify-content: center;
    }

    .plat-head h3 {
        font-size: 22px;
    }

    .plat-item p {
        font-size: 14px;
    }

    /* ===== FAQ ===== */
    .faq-title {
        font-size: 26px;
        text-align: center;
    }

    .faq-question {
        font-size: 15px;
        padding: 14px 0;
    }

    .faq-answer {
        font-size: 14px;
    }

    .faq-cta h3 {
        font-size: 22px;
    }

    .faq-btn {
        font-size: 13px;
        padding: 10px 18px;
    }

}
/* ===== 480 RESPONSIVE (FULL STACK + CLEAN MOBILE) ===== */

@media (max-width: 480px) {

    /* ===== HERO ===== */
    .hero-influencer {
        height: 65vh;
        padding: 30px 15px;
    }

    .hero-inf-top {
        font-size: 16px;
    }

    .hero-inf-content h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero-inf-features {
        flex-direction: column;
        gap: 8px;
        margin-top: 15px;
    }

    .hero-inf-features span {
        font-size: 13px;
        padding: 0;
    }

    .hero-inf-features span::after {
        display: none; /* remove dots in stacked */
    }


    /* ===== USP ===== */
    .usp-influencer {
        padding: 50px 15px;
    }

    .usp-inf-title {
        font-size: 22px;
        text-align: center;
    }

    .usp-inf-intro {
        font-size: 13px;
        text-align: center;
    }

    .usp-inf-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .usp-inf-card {
        padding: 16px;
    }

    .usp-inf-card h3 {
        font-size: 15px;
    }

    .usp-inf-card li {
        font-size: 13px;
    }


    /* ===== DELIVERABLES ===== */
    .deliverables-inf {
        padding: 50px 15px;
    }

    .deliverables-inf-title {
        font-size: 22px;
        text-align: center;
    }

    .deliverables-inf-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .deliverable-item .num {
        font-size: 45px;
    }

    .deliverable-item h3 {
        font-size: 15px;
    }


    /* ===== BENEFITS ===== */
    .benefits-inf {
        padding: 50px 15px;
    }

    .benefits-inf-title {
        font-size: 22px;
        text-align: center;
    }

    .benefit-inf-row {
        padding: 16px 20px;
    }

    .benefit-inf-row p {
        font-size: 16px;
    }

    .inf-icon {
        display: none; /* remove clutter on mobile */
    }


    /* ===== PLATFORMS ===== */
    .platforms-perfect {
        padding: 40px 0;
    }

    .platforms-left {
        padding: 30px 20px;
    }

    .platforms-right {
        display: none;
    }

    .plat-title {
        font-size: 22px;
        text-align: center;
    }

    .plat-head {
        flex-direction: column;
        gap: 6px;
    }

    .plat-head img {
        width: 28px;
    }

    .plat-head h3 {
        font-size: 18px;
    }

    .plat-item p {
        font-size: 13px;
    }

    .plat-line {
        width: 60%;
        margin: 10px auto 0;
    }

    .orange-bar {
        display: none;
    }


    /* ===== FAQ ===== */
    .faq-clean {
        padding: 50px 15px;
    }

    .faq-title {
        font-size: 22px;
        text-align: center;
    }

    .faq-question {
        font-size: 14px;
        gap: 8px;
        padding: 12px 0;
    }

    .faq-answer {
        font-size: 13px;
    }

    .faq-cta {
        margin-top: 40px;
    }

    .faq-cta h3 {
        font-size: 18px;
    }

    .faq-cta p {
        font-size: 13px;
    }

    .faq-btn {
        font-size: 12px;
        padding: 10px 16px;
    }

}