/* ========================= */
/* RESET (SAFE) */
/* ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========================= */
/* HERO SECTION */
/* ========================= */

.seo-hero {
    padding: 80px 20px 40px;
    background: #f8fafc; /* matches your light theme */
}

.seo-hero-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* ========================= */
/* LEFT CONTENT */
/* ========================= */

.seo-hero-content {
    flex: 1;
}

.seo-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #0f172a; /* dark heading like your theme */
    line-height: 1.2;
    margin-bottom: 20px;
}

.seo-subtext {
    font-size: 18px;
    color: #475569; /* soft grey text */
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 550px;
}

/* ========================= */
/* CTA BUTTONS */
/* ========================= */

.seo-cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, #7c3aed, #f97316); /* match your header button */
    color: #fff;
    padding: 14px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary:hover {
    opacity: 0.9;
}

.seo-hero .btn-secondary {
    background: transparent;
    border: 2px solid #7c3aed;
    color: #7c3aed;
    padding: 14px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.seo-hero .btn-secondary:hover {
    background: #7c3aed;
    color: #fff;
}

/* ========================= */
/* TRUST TEXT */
/* ========================= */

.seo-trust {
    font-size: 14px;
    color: #64748b;
}

/* ========================= */
/* RIGHT IMAGE */
/* ========================= */

.seo-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.seo-hero-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
}

/* ========================= */
/* RESPONSIVE DESIGN */
/* ========================= */

@media (max-width: 992px) {
    .seo-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .seo-subtext {
        margin: auto;
        margin-bottom: 25px;
    }

    .seo-cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .seo-hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .seo-hero {
        padding: 60px 15px;
    }

    .seo-hero-content h1 {
        font-size: 28px;
    }

    .seo-subtext {
        font-size: 16px;
    }

    .seo-cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .seo-hero-image img {
        max-width: 100%;
        margin-top: 20px;
    }
}

/* ========================= */
/* PROBLEM SECTION */
/* ========================= */

.seo-problem {
    padding: 40px 20px 80px;
    background: #ffffff;
}

.seo-problem-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* HEADING */
.seo-problem-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.seo-problem-heading p {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* CARDS GRID */
.seo-problem-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD DESIGN */
.problem-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s ease;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.problem-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0f172a;
}

.problem-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.5;
}

/* HOVER EFFECT */
.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {
    .seo-problem-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .seo-problem {
        padding: 60px 15px;
    }

    .seo-problem-heading h2 {
        font-size: 26px;
    }

    .seo-problem-heading p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .seo-problem-cards {
        grid-template-columns: 1fr;
    }

    .problem-card {
        text-align: center;
    }
}

/* ========================= */
/* SEO AUDIT INFO SECTION */
/* ========================= */

.seo-audit-info {
    padding: 80px 20px;
    background: #f8fafc;
}

.seo-audit-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

/* LEFT SIDE */
.seo-audit-left {
    flex: 1;
}

.seo-audit-left h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.seo-audit-left p {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* IMAGE */
.seo-audit-image {
    margin-top: 25px;
}

.seo-audit-image img {
    width: 100%;
    border-radius: 12px;
}

/* RIGHT SIDE */
.seo-audit-right {
    flex: 1;
}

.seo-audit-right h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #0f172a;
}

/* CARDS */
.audit-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.audit-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: #ffffff;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: 0.3s ease;
}

.audit-card span {
    font-size: 22px;
}

.audit-card h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #0f172a;
}

.audit-card p {
    font-size: 14px;
    color: #64748b;
}

/* HOVER */
.audit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {
    .seo-audit-container {
        flex-direction: column;
    }

    .seo-audit-left,
    .seo-audit-right {
        text-align: center;
    }

    .audit-card {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .seo-audit-info {
        padding: 60px 15px;
    }

    .seo-audit-left h2 {
        font-size: 26px;
    }

    .seo-audit-right h3 {
        font-size: 22px;
    }

    .seo-audit-left p {
        font-size: 15px;
    }
}
/* ========================= */
/* USP SECTION */
/* ========================= */

.seo-usp {
    padding: 40px 20px 80px;
    background: #ffffff;
}

.seo-usp-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* HEADING */
.seo-usp-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.seo-usp-heading p {
    font-size: 18px;
    color: #64748b;
    max-width: 750px;
    margin: auto;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* CARDS GRID */
.seo-usp-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD BASE */
.usp-card {
    padding: 30px;
    border-radius: 14px;
    text-align: left;
    transition: 0.3s ease;
    border: 1px solid #e2e8f0;
}

/* CARD COLORS */
.ai-card {
    background: #f1f5f9;
}

.human-card {
    background: #f8fafc;
}

/* CLEAN WHITE CARDS (FINAL FIX) */
.seo-results .result-card {
    background: #ffffff;
    color: #0f172a;
    padding: 30px 25px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    text-align: left;
    transition: 0.3s ease;
}

/* TEXT FIX */
.seo-results .result-card h3 {
    color: #0f172a;
}

.seo-results .result-card p {
    color: #475569;
}

/* ICON FIX */
.seo-results .result-card .icon {
    color: #7c3aed;
}

/* REMOVE GRADIENT TOP LINE (OPTIONAL CLEAN LOOK) */
.seo-results .result-card::before {
    display: none;
}

/* HEADINGS */
.usp-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* LIST */
.usp-card ul {
    list-style: none;
    padding: 0;
}

.usp-card ul li {
    font-size: 15px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 18px;
    color: inherit;
}

/* BULLETS */
.usp-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-size: 14px;
}

.result-card ul li::before {
    color: #fff;
}

/* HOVER */
.usp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* BOTTOM TEXT */
.seo-usp-bottom {
    margin-top: 40px;
    font-size: 16px;
    color: #475569;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {
    .seo-usp-cards {
        grid-template-columns: 1fr;
    }

    .usp-card {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .seo-usp {
        padding: 60px 15px;
    }

    .seo-usp-heading h2 {
        font-size: 26px;
    }

    .seo-usp-heading p {
        font-size: 16px;
    }
}
/* ========================= */
/* DELIVERABLES SECTION */
/* ========================= */

.seo-deliverables {
    padding: 80px 20px;
    background: #f8fafc;
}

.seo-deliverables-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* HEADING */
.seo-deliverables-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.seo-deliverables-heading p {
    font-size: 18px;
    color: #64748b;
    max-width: 750px;
    margin: auto;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* GRID */
.seo-deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.deliverable-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    text-align: left;
    transition: 0.3s ease;
}

.deliverable-card span {
    font-size: 26px;
    display: block;
    margin-bottom: 15px;
}

.deliverable-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0f172a;
}

.deliverable-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* HIGHLIGHT CARD */
.highlight-card {
    background: linear-gradient(135deg, #7c3aed, #f97316);
    color: #fff;
    border: none;
}

.highlight-card h3,
.highlight-card p {
    color: #fff;
}

/* HOVER */
.deliverable-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {
    .seo-deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .seo-deliverables {
        padding: 60px 15px;
    }

    .seo-deliverables-heading h2 {
        font-size: 26px;
    }

    .seo-deliverables-heading p {
        font-size: 16px;
    }

    .seo-deliverables-grid {
        grid-template-columns: 1fr;
    }

    .deliverable-card {
        text-align: center;
    }
}

/* ========================= */
/* PROCESS SECTION (ZIGZAG) */
/* ========================= */

.seo-process-alt {
    padding: 80px 20px;
    background: #ffffff;
}

.seo-process-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADING */
.seo-process-heading {
    text-align: center;
    margin-bottom: 60px;
}

.seo-process-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.seo-process-heading p {
    font-size: 18px;
    color: #64748b;
    max-width: 750px;
    margin: auto;
    line-height: 1.6;
}

/* ROW */
.process-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.process-row.reverse {
    flex-direction: row-reverse;
}

/* TEXT */
.process-text {
    flex: 1;
}

.process-text h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #0f172a;
}

.process-text p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}

.process-text ul {
    padding-left: 18px;
}

.process-text ul li {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

/* IMAGE */
.process-image {
    flex: 1;
    text-align: center;
}

.process-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
}

/* DIVIDER */
.process-divider {
    height: 4px;
    width: 80%;
    margin: 40px auto;
    background: linear-gradient(90deg, #7c3aed, #f97316);
    border-radius: 5px;
}

/* TRUST NOTE */
.seo-process-note {
    text-align: center;
    margin-top: 40px;
    font-size: 15px;
    color: #475569;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {
    .process-row,
    .process-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .process-text ul {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .seo-process-alt {
        padding: 60px 15px;
    }

    .seo-process-heading h2 {
        font-size: 26px;
    }

    .seo-process-heading p {
        font-size: 16px;
    }

    .process-text h3 {
        font-size: 20px;
    }

    .process-text p {
        font-size: 15px;
    }
}

/* ========================= */
/* PROOF SECTION */
/* ========================= */

.seo-proof {
    padding: 80px 20px;
    background: #f8fafc;
}

.seo-proof-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADING */
.seo-proof-heading {
    text-align: center;
    margin-bottom: 50px;
}

.seo-proof-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.seo-proof-heading p {
    font-size: 18px;
    color: #64748b;
    max-width: 750px;
    margin: auto;
}

/* GRID */
.seo-proof-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

/* IMAGE */
.seo-proof-image {
    flex: 1;
}

.seo-proof-image img {
    width: 100%;
    border-radius: 12px;
}

/* CONTENT */
.seo-proof-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* BOX */
.proof-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.proof-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0f172a;
}

.proof-box ul {
    padding-left: 18px;
}

.proof-box ul li {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 6px;
}

/* HIGHLIGHT */
.proof-box.highlight {
    background: linear-gradient(135deg, #7c3aed, #f97316);
    color: #fff;
    border: none;
}

.proof-box.highlight h3,
.proof-box.highlight li {
    color: #fff;
}

/* CASE */
.seo-proof-case {
    text-align: center;
    margin-bottom: 40px;
}

.seo-proof-case h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.seo-proof-case p {
    font-size: 16px;
    color: #475569;
}

/* CTA */
.seo-proof-cta {
    text-align: center;
}

.seo-proof-cta p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #475569;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {
    .seo-proof-grid {
        flex-direction: column;
        text-align: center;
    }

    .seo-proof-content {
        width: 100%;
    }

    .proof-box ul {
        text-align: left;
        display: inline-block;
    }
}

@media (max-width: 576px) {
    .seo-proof {
        padding: 60px 15px;
    }

    .seo-proof-heading h2 {
        font-size: 26px;
    }

    .seo-proof-heading p {
        font-size: 16px;
    }
}

/* ========================= */
/* PREMIUM RESULTS SECTION */
/* ========================= */

.seo-results {
    padding: 50px 20px 80px;
    background: #ffffff;
}

.seo-results-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* HEADING */
.seo-results-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.seo-results-heading p {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: auto;
    margin-bottom: 50px;
}

/* GRID */
.seo-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.seo-usp .result-card {
    background: linear-gradient(135deg, #7c3aed, #f97316);
    color: #ffffff;
    border: none;
}

/* FORCE TEXT VISIBILITY */
.seo-usp .result-card h3,
.seo-usp .result-card ul li {
    color: #ffffff;
}

/* FIX CHECK ICON */
.seo-usp .result-card ul li::before {
    color: #ffffff;
}

/* ICON */
.result-card .icon {
    font-size: 28px;
    margin-bottom: 15px;
}

/* TITLE */
.result-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0f172a;
}

/* TEXT */
.result-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* HOVER EFFECT */
.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: transparent;
}

/* SUBTLE TOP BORDER GRADIENT */
.result-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #7c3aed, #f97316);
    border-radius: 14px 14px 0 0;
}

/* CTA STRIP */
.seo-results-cta-strip {
    margin-top: 50px;
    padding: 18px;
    border-radius: 10px;
    background: #f1f5f9;
    font-size: 16px;
    color: #0f172a;
    font-weight: 500;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {
    .seo-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .seo-results {
        padding: 60px 15px;
    }

    .seo-results-heading h2 {
        font-size: 26px;
    }

    .seo-results-heading p {
        font-size: 16px;
    }

    .seo-results-grid {
        grid-template-columns: 1fr;
    }

    .result-card {
        text-align: center;
    }
}

/* ========================= */
/* PREMIUM CTA SECTION */
/* ========================= */

.seo-cta-premium {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
}

.seo-cta-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT CONTENT */
.seo-cta-content {
    flex: 1;
}

.seo-cta-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.seo-cta-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #cbd5f5;
    margin-bottom: 20px;
}

/* POINTS */
.cta-points {
    list-style: none;
    padding: 0;
}

.cta-points li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #e2e8f0;
}

/* FORM BOX */
.seo-cta-form-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
}

/* FORM */
.seo-cta-form-box h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.seo-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.seo-form input {
    padding: 14px;
    border-radius: 8px;
    border: none;
    outline: none;
}

/* BUTTON */
.seo-form button {
    padding: 14px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    background: linear-gradient(135deg, #7c3aed, #f97316);
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
}

.seo-form button:hover {
    opacity: 0.9;
}

/* TRUST TEXT */
.cta-trust {
    margin-top: 10px;
    font-size: 13px;
    color: #cbd5f5;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {
    .seo-cta-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .seo-cta-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .seo-cta-premium {
        padding: 70px 15px;
    }

    .seo-cta-content h2 {
        font-size: 24px;
    }

    .seo-cta-content p {
        font-size: 15px;
    }
}
/* ========================= */
/* WHY SECTION (PREMIUM) */
/* ========================= */

.seo-why-premium {
    padding: 100px 20px;
    background: #f8fafc;
}

.seo-why-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT CONTENT */
.seo-why-content {
    flex: 1;
}

.seo-why-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.seo-why-content p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* RIGHT CARDS */
.seo-why-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* CARD */
.why-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    transition: 0.3s ease;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0f172a;
}

.why-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* HOVER */
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {
    .seo-why-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .seo-why-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .seo-why-premium {
        padding: 70px 15px;
    }

    .seo-why-content h2 {
        font-size: 26px;
    }

    .seo-why-content p {
        font-size: 15px;
    }
}

/* ========================= */
/* PRICING SECTION */
/* ========================= */

.seo-pricing-premium {
    padding: 100px 20px;
    background: #ffffff;
}

.seo-pricing-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* HEADING */
.seo-pricing-heading h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.seo-pricing-heading p {
    font-size: 17px;
    color: #64748b;
    margin-bottom: 50px;
}

/* GRID */
.seo-pricing-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

/* CARD BASE */
.pricing-card {
    flex: 1;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    text-align: left;
    position: relative;
}

/* FREE */
.pricing-card.free {
    background: #f1f5f9;
}

/* PREMIUM */
.pricing-card.premium {
    background: #ffffff;
    border: 2px solid transparent;
    background-image: linear-gradient(#fff, #fff), 
                      linear-gradient(135deg, #7c3aed, #f97316);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* TAG */
.pricing-card .tag {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, #7c3aed, #f97316);
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
}

/* TITLE */
.pricing-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* PRICE */
.price {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* LIST */
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.pricing-card ul li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #475569;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, #7c3aed, #f97316);
    color: #fff;
}

.btn-secondary {
    border: 1px solid #cbd5e1;
    color: #0f172a;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 768px) {
    .seo-pricing-grid {
        flex-direction: column;
    }

    .pricing-card {
        text-align: center;
    }
}

/* ========================= */
/* FAQ SECTION */
/* ========================= */

.seo-faq-premium {
    padding: 100px 20px;
    background: #f8fafc;
}

.seo-faq-container {
    max-width: 900px;
    margin: auto;
}

/* HEADING */
.seo-faq-heading {
    text-align: center;
    margin-bottom: 40px;
}

.seo-faq-heading h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.seo-faq-heading p {
    font-size: 16px;
    color: #64748b;
}

/* FAQ LIST */
.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #ffffff;
}

/* QUESTION */
.faq-question {
    width: 100%;
    padding: 18px 20px;
    text-align: left;
    background: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-right: 40px; /* space for + icon */
    line-height: 1.4;
}

/* ICON */
.faq-question::after {
    content: "+";
    position: absolute;
    right: 15px;
    font-size: 18px;
    top: 50%;
    transform: translateY(-50%);
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    padding: 0 20px;
}

.faq-answer p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    padding-bottom: 15px;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question::after {
    content: "-";
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 576px) {
    .seo-faq-heading h2 {
        font-size: 24px;
    }

    .seo-faq-heading p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .faq-question {
        font-size: 14px;
        padding-right: 45px;
    }
}

/* ========================= */
/* FINAL CTA PREMIUM */
/* ========================= */

.seo-final-cta-premium {
    padding: 100px 20px;
    background: radial-gradient(circle at top, #1e293b, #020617);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* SUBTLE GLOW EFFECT */
.seo-final-cta-premium::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124,58,237,0.3), transparent);
    top: -100px;
    left: -100px;
}

.seo-final-wrapper {
    max-width: 800px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* TEXT */
.seo-final-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.seo-final-content p {
    font-size: 17px;
    color: #cbd5f5;
    margin-bottom: 15px;
    line-height: 1.7;
}

.seo-final-sub {
    font-size: 15px;
    color: #94a3b8;
    margin-bottom: 30px;
}

/* BUTTONS */
.seo-final-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* PRIMARY */
.btn-primary {
    padding: 14px 26px;
    border-radius: 30px;
    background: linear-gradient(135deg, #7c3aed, #f97316);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* SECONDARY */
.btn-secondary {
    padding: 14px 26px;
    border-radius: 30px;
    border: 1px solid #cbd5f5;
    color: #fff;
    text-decoration: none;
}

/* WHATSAPP */
.btn-whatsapp {
    padding: 14px 26px;
    border-radius: 30px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* HOVER */
.btn-primary:hover,
.btn-secondary:hover,
.btn-whatsapp:hover {
    opacity: 0.9;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 576px) {
    .seo-final-content h2 {
        font-size: 26px;
    }

    .seo-final-content p {
        font-size: 15px;
    }

    .seo-final-buttons {
        flex-direction: column;
    }
}

/* ================= BEFORE VS AFTER SECTION ================= */

.before-after-section {
    padding: 60px 8% 40px;
}

.before-after-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* HEADER */
.ba-header {
    max-width: 750px;
    margin: 0 auto 60px;
}

.ba-badge {
    display: inline-block;
    background: #f8f7ff;
    color: #7b61ff;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.ba-header h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #111;
}

.ba-header p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* GRID */
.ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

/* COLUMN */
.ba-column {
    padding: 35px;
    border-radius: 16px;
    text-align: left;
}

/* BEFORE */
.ba-column.before {
    background: #fff5f5;
    border: 1px solid #ffd6d6;
}

/* AFTER */
.ba-column.after {
    background: #f4fff7;
    border: 1px solid #c8f7d2;
}

/* HEADINGS */
.ba-column h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

/* LIST */
.ba-column ul {
    list-style: none;
    padding: 0;
}

.ba-column li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

/* FEATURES */
.ba-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ba-feature-card {
    background: #f8f7ff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.ba-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.ba-feature-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.ba-feature-card p {
    font-size: 13px;
    color: #555;
}

/* CTA */
.ba-cta {
    margin-top: 60px;
}

.ba-cta p {
    font-size: 16px;
    margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .ba-grid {
        grid-template-columns: 1fr;
    }

    .ba-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .ba-header h2 {
        font-size: 28px;
    }

    .ba-features {
        grid-template-columns: 1fr;
    }
}

/* CTA */
.why-cta {
    margin-top: 60px;
}

.why-cta p {
    font-size: 16px;
    margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .why-header h2 {
        font-size: 28px;
    }
}

.who-section {
    padding: 90px 8%;
    background: #f8f7ff;
}

.who-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.who-header h2 {
    font-size: 34px;
    margin-bottom: 40px;
}

.who-badge {
    background: #fff;
    padding: 6px 16px;
    border-radius: 999px;
    color: #7b61ff;
    font-size: 13px;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.who-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    transition: 0.3s;
}

.who-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* ================= BREADCRUMB ================= */

.breadcrumb {
    padding: 15px 8%;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: auto;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* LINKS */
.breadcrumb a {
    text-decoration: none;
    color: #7b61ff;
    font-weight: 500;
    transition: 0.3s;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* CURRENT PAGE */
.breadcrumb .active {
    color: #111;
    font-weight: 600;
}

/* MOBILE */
@media (max-width: 600px) {
    .breadcrumb {
        padding: 12px 5%;
    }

    .breadcrumb-container {
        font-size: 13px;
        flex-wrap: wrap;
    }
}

/* ================= AI ENGINE SECTION ================= */

.ai-engine-section {
    padding: 80px 20px 40px; 
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.ai-engine-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT CONTENT */
.ai-engine-content {
    flex: 1;
}

.ai-engine-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.ai-subtext {
    font-size: 18px;
    color: #475569;
    margin-bottom: 15px;
}

.ai-description {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* FEATURES */
.ai-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.ai-features li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #334155;
}

/* HIGHLIGHT */
.ai-highlight {
    font-size: 16px;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 20px;
}

/* RIGHT VISUAL */
.ai-engine-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* CARD */
.ai-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

/* GLOW EFFECT */
.ai-card::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(124,58,237,0.2), transparent);
    top: -50px;
    right: -50px;
}

/* TITLE */
.ai-card h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

/* STATS */
.ai-stat {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: #475569;
}

.ai-stat strong {
    color: #0f172a;
}

/* PROGRESS BAR */
.ai-progress {
    height: 6px;
    background: #e2e8f0;
    border-radius: 10px;
    margin: 15px 0;
}

.ai-progress-bar {
    height: 100%;
    width: 90%;
    background: linear-gradient(90deg, #7c3aed, #f97316);
    border-radius: 10px;
}

/* NOTE */
.ai-note {
    font-size: 12px;
    color: #64748b;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .ai-engine-container {
        flex-direction: column;
        text-align: center;
    }

    .ai-engine-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .ai-engine-section {
        padding: 70px 15px;
    }

    .ai-engine-content h2 {
        font-size: 26px;
    }

    .ai-subtext {
        font-size: 16px;
    }
}

/* POPUP OVERLAY */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    display: none;
    overflow-y: auto;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

/* POPUP BOX */
.popup-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    position: relative;
    max-height: 90vh;          /* 👈 IMPORTANT */
}
.popup-container {
    overflow-y: auto;
}
/* CLOSE BUTTON */
.popup-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 26px;
    cursor: pointer;
    z-index: 10;
}

/* LEFT SIDE */
.popup-left {
    flex: 1;
    padding: 40px;
    background: linear-gradient(135deg, #7c3aed, #f97316);
    color: #fff;
    max-height: 100vh;
    overflow-y: auto;
    padding-right: 10px;
}

.popup-left::-webkit-scrollbar {
    width: 5px;
}

.popup-left::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.4);
    border-radius: 10px;
}

.popup-right {
    flex: 1;
    padding: 40px;
    background: #fff;
}

.popup-right input,
.popup-right select {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* BUTTON */
.popup-right button {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #7c3aed, #f97316);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.popup-left h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.popup-highlight {
    background: rgba(255,255,255,0.2);
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-weight: 600;
}

.popup-benefits {
    margin-top: 15px;
}

.popup-benefits li {
    margin-bottom: 8px;
}

/* RIGHT SIDE */
.popup-right {
    flex: 1;
    padding: 40px;
}

.popup-right h3 {
    margin-bottom: 20px;
}

/* FORM */
.popup-right input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.popup-right button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #7c3aed, #f97316);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
    .popup-container {
        flex-direction: column;
    }

    .popup-left,
    .popup-right {
        padding: 25px;
    }
}
.popup-left h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

/* LIMITATIONS LIST */
.popup-limitations {
    margin-top: 10px;
}

.popup-limitations li {
    margin-bottom: 8px;
    opacity: 0.9;
}

/* UPGRADE LINK */
.popup-upgrade {
    margin-top: 20px;
    font-size: 14px;
}

.upgrade-link {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

/* SELECT DROPDOWN */
.popup-right select {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fff;
}

/* ===== MOBILE OPTIMIZATION ===== */

@media (max-width: 768px) {

     .popup-container {
        flex-direction: column;
        max-height: 95vh;
        border-radius: 12px;
        overflow-y: auto;
    }

    /* 🔥 FORM FIRST */
    .popup-right {
        order: 1;
        padding: 25px 20px;
    }

    /* 🔥 CONTENT BELOW */
    .popup-left {
        order: 2;
        padding: 25px 20px;
    }
}

    .popup-left h2 {
        font-size: 22px;
    }

    .popup-right h3 {
        font-size: 18px;
    }

    /* Make it feel like full screen modal */
    .popup-overlay {
        padding: 10px;
    }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {

    .popup-container {
        max-height: 100vh;
        border-radius: 10px;
    }

    .popup-left,
    .popup-right {
        padding: 20px 15px;
    }

    .popup-right button {
        padding: 12px;
        font-size: 14px;
    }
}

/* HIDE FULL CONTENT ON MOBILE */
.popup-full {
    margin-top: 15px;
}

/* READ MORE BUTTON */
.read-more-btn {
    margin-top: 15px;
    padding: 8px 14px;
    border-radius: 20px;
    border: none;
    background: rgba(255,255,255,0.2);
    color: #fff;
    cursor: pointer;
    font-size: 13px;
}

/* ===== MOBILE LOGIC ===== */
@media (max-width: 768px) {

    .popup-full {
        display: none; /* hidden initially */
    }

    .popup-left.expanded .popup-full {
        display: block;
    }
}

/* Hide Read More button on desktop */
@media (min-width: 768px) {
    .read-more-btn {
        display: none;
    }

    /* Also make full content visible on desktop */
    .popup-full {
        display: block !important;
    }
}