/* =====================================================
   PLUMBER CUSTOMER SEARCH INTENT
===================================================== */

.pl-intent-section {
    --pl-primary: #132855;
    --pl-dark: #0D1C45;
    --pl-gold: #C9A25B;
    --pl-oak: #B88558;
    --pl-ivory: #F8F7F4;
    --pl-beige: #E7E1D8;
    --pl-charcoal: #1E1E1E;
    --pl-white: #FFFFFF;

    position: relative;
    width: 100%;
    padding: 72px 22px;
    overflow: hidden;
    background-color: var(--pl-ivory);

    background-image:
        linear-gradient(
            rgba(19, 40, 85, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(19, 40, 85, 0.035) 1px,
            transparent 1px
        );

    background-size: 92px 92px;
}

.pl-intent-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 50% 8%,
            rgba(255, 255, 255, 0.96),
            rgba(255, 255, 255, 0.45) 38%,
            transparent 68%
        );
}

/* Container */

.pl-intent-container {
    position: relative;
    z-index: 2;
    width: min(100%, 1400px);
    margin: 0 auto;
}

/* =====================================================
   HEADING
===================================================== */

.pl-intent-heading {
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center;
}

.pl-intent-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin-bottom: 14px;
    color: var(--pl-gold);
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.pl-intent-label span {
    display: block;
    width: 34px;
    height: 1px;
    background: var(--pl-gold);
}

.pl-intent-heading h2 {
    margin: 0;
    color: var(--pl-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 4.4vw, 52px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -1.8px;
}

.pl-intent-heading h2 strong {
    display: block;
    color: var(--pl-gold);
    font-weight: 600;
}

.pl-intent-heading > p {
    max-width: 680px;
    margin: 15px auto 0;
    color: rgba(30, 30, 30, 0.7);
    font-size: 14px;
    line-height: 1.65;
}

/* =====================================================
   UNIFIED INTENT MATRIX
===================================================== */

.pl-intent-matrix {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(19, 40, 85, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow:
        0 24px 60px rgba(13, 28, 69, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
}

/* Vertical middle line */

.pl-intent-matrix::before {
    content: "";
    position: absolute;
    z-index: 3;
    top: 25px;
    bottom: 25px;
    left: 50%;
    width: 1px;
    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(201, 162, 91, 0.55) 12%,
            rgba(19, 40, 85, 0.12) 50%,
            rgba(201, 162, 91, 0.55) 88%,
            transparent
        );
}

/* Horizontal middle line */

.pl-intent-matrix::after {
    content: "";
    position: absolute;
    z-index: 3;
    right: 25px;
    left: 25px;
    top: 50%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(201, 162, 91, 0.55) 12%,
            rgba(19, 40, 85, 0.12) 50%,
            rgba(201, 162, 91, 0.55) 88%,
            transparent
        );
}

/* Centre icon */

.pl-intent-center-mark {
    position: absolute;
    z-index: 8;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 5px solid var(--pl-ivory);
    border-radius: 50%;
    color: var(--pl-gold);
    font-size: 17px;
    background:
        linear-gradient(
            145deg,
            var(--pl-primary),
            var(--pl-dark)
        );
    box-shadow: 0 10px 25px rgba(13, 28, 69, 0.2);
    transform: translate(-50%, -50%);
}

/* =====================================================
   MATRIX ITEM
===================================================== */

.pl-intent-item {
    position: relative;
    min-width: 0;
    padding: 27px 30px 24px;
    transition:
        background 0.35s ease,
        transform 0.35s ease;
}

.pl-intent-item:hover {
    z-index: 4;
    background: rgba(248, 247, 244, 0.72);
}

.pl-intent-item-one,
.pl-intent-item-two {
    padding-bottom: 31px;
}

.pl-intent-item-three,
.pl-intent-item-four {
    padding-top: 31px;
}

/* Subtle corner decoration */

.pl-intent-item::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    width: 28px;
    height: 28px;
    border-top: 1px solid rgba(201, 162, 91, 0.55);
    border-left: 1px solid rgba(201, 162, 91, 0.55);
    pointer-events: none;
}

/* =====================================================
   ITEM TOP
===================================================== */

.pl-intent-item-top {
    position: relative;
    display: grid;
    grid-template-columns: 38px 52px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}

.pl-intent-number {
    color: rgba(19, 40, 85, 0.13);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.pl-intent-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(201, 162, 91, 0.36);
    border-radius: 50%;
    color: var(--pl-primary);
    font-size: 18px;
    background:
        radial-gradient(
            circle at 35% 25%,
            #ffffff,
            var(--pl-ivory) 72%,
            var(--pl-beige)
        );
    box-shadow: 0 8px 18px rgba(13, 28, 69, 0.08);
    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}

.pl-intent-item:hover .pl-intent-icon {
    color: var(--pl-white);
    background:
        linear-gradient(
            145deg,
            var(--pl-primary),
            var(--pl-dark)
        );
    transform: rotate(-4deg);
}

.pl-intent-title-block span {
    display: block;
    margin-bottom: 3px;
    color: var(--pl-gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.pl-intent-title-block h3 {
    margin: 0;
    color: var(--pl-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

/* Summary */

.pl-intent-summary {
    margin: 14px 0 14px 102px;
    color: rgba(30, 30, 30, 0.68);
    font-size: 12.5px;
    line-height: 1.58;
}

/* =====================================================
   KEYWORD PILLS
===================================================== */

.pl-intent-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-left: 102px;
}

.pl-intent-keywords span {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 5px 9px;
    border: 1px solid rgba(19, 40, 85, 0.09);
    border-radius: 6px;
    color: rgba(19, 40, 85, 0.86);
    font-size: 10px;
    line-height: 1.25;
    background: rgba(248, 247, 244, 0.84);
    transition:
        border-color 0.3s ease,
        color 0.3s ease,
        background 0.3s ease;
}

.pl-intent-keywords span::before {
    content: "";
    display: block;
    width: 5px;
    height: 1px;
    margin-right: 6px;
    background: var(--pl-gold);
}

.pl-intent-item:hover .pl-intent-keywords span {
    border-color: rgba(201, 162, 91, 0.3);
    background: var(--pl-white);
}

/* =====================================================
   STRATEGY STRIP
===================================================== */

.pl-intent-strategy {
    display: grid;
    grid-template-columns: 27px minmax(0, 1fr);
    align-items: start;
    gap: 9px;
    margin: 17px 0 0 102px;
    padding-top: 13px;
    border-top: 1px solid rgba(201, 162, 91, 0.4);
}

.pl-intent-strategy > i {
    color: var(--pl-gold);
    font-size: 15px;
    line-height: 1.5;
}

.pl-intent-strategy p {
    margin: 0;
    color: rgba(19, 40, 85, 0.84);
    font-size: 10.5px;
    line-height: 1.5;
}

.pl-intent-strategy strong {
    color: var(--pl-dark);
}

/* =====================================================
   MOBILE INSIGHT
===================================================== */

.pl-intent-mobile-note {
    position: relative;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
    margin-top: 20px;
    padding: 18px 25px;
    overflow: hidden;
    border-radius: 15px;
    background:
        linear-gradient(
            120deg,
            var(--pl-dark),
            var(--pl-primary)
        );
    box-shadow: 0 18px 40px rgba(13, 28, 69, 0.14);
}

.pl-intent-mobile-note::before {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -55px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(201, 162, 91, 0.18);
    border-radius: 28px;
    transform: rotate(24deg);
}

.pl-intent-percentage {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    border: 2px solid var(--pl-gold);
    border-radius: 20px;
    transform: rotate(45deg);
}

.pl-intent-percentage::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(201, 162, 91, 0.45);
    border-radius: 15px;
}

.pl-intent-percentage span {
    color: var(--pl-gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 700;
    transform: rotate(-45deg);
}

.pl-intent-mobile-content {
    position: relative;
    z-index: 2;
}

.pl-intent-mobile-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    line-height: 1.6;
}

.pl-intent-mobile-content p + p {
    margin-top: 4px;
}

.pl-intent-mobile-content strong {
    color: var(--pl-gold);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media screen and (max-width: 991px) {

    .pl-intent-section {
        padding: 65px 18px;
    }

    .pl-intent-matrix {
        grid-template-columns: 1fr;
    }

    .pl-intent-matrix::before,
    .pl-intent-matrix::after,
    .pl-intent-center-mark {
        display: none;
    }

    .pl-intent-item {
        padding: 26px;
        border-bottom: 1px solid rgba(19, 40, 85, 0.08);
    }

    .pl-intent-item:last-child {
        border-bottom: 0;
    }

    .pl-intent-item-one,
    .pl-intent-item-two,
    .pl-intent-item-three,
    .pl-intent-item-four {
        padding-top: 26px;
        padding-bottom: 26px;
    }

}

@media screen and (max-width: 767px) {

    .pl-intent-section {
        padding: 58px 15px;
        background-size: 70px 70px;
    }

    .pl-intent-heading {
        margin-bottom: 32px;
    }

    .pl-intent-heading h2 {
        font-size: 38px;
        line-height: 1.07;
    }

    .pl-intent-heading > p {
        font-size: 13px;
    }

    .pl-intent-item-top {
        grid-template-columns: 45px minmax(0, 1fr);
    }

    .pl-intent-number {
        display: none;
    }

    .pl-intent-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .pl-intent-title-block h3 {
        font-size: 18px;
    }

    .pl-intent-summary,
    .pl-intent-keywords,
    .pl-intent-strategy {
        margin-left: 57px;
    }

    .pl-intent-mobile-note {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 22px;
        text-align: center;
    }

    .pl-intent-percentage {
        margin: 0 auto;
    }

}

@media screen and (max-width: 520px) {

    .pl-intent-heading h2 {
        font-size: 33px;
    }

    .pl-intent-label span {
        width: 22px;
    }

    .pl-intent-item {
        padding: 22px 18px;
    }

    .pl-intent-item-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pl-intent-icon {
        margin: 0 auto;
    }

    .pl-intent-summary,
    .pl-intent-keywords,
    .pl-intent-strategy {
        margin-left: 0;
    }

    .pl-intent-summary {
        text-align: center;
    }

    .pl-intent-keywords {
        justify-content: center;
    }

    .pl-intent-strategy {
        grid-template-columns: 1fr;
        text-align: center;
    }

}

/* =====================================================
   WHY A SPECIALIZED SEO PARTNER SECTION
===================================================== */

.sp-roof-section {
    --sp-roof-primary: #132855;
    --sp-roof-dark: #0D1C45;
    --sp-roof-gold: #C9A25B;
    --sp-roof-oak: #B88558;
    --sp-roof-ivory: #F8F7F4;
    --sp-roof-beige: #E7E1D8;
    --sp-roof-charcoal: #1E1E1E;
    --sp-roof-white: #FFFFFF;

    position: relative;
    width: 100%;
    padding: 78px 24px 82px;
    overflow: hidden;
    background-color: var(--sp-roof-ivory);

    /* Subtle rectangular background */
    background-image:
        linear-gradient(
            rgba(19, 40, 85, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(19, 40, 85, 0.035) 1px,
            transparent 1px
        );

    background-size: 110px 110px;
}

 

/* Decorative dot patterns */

.sp-roof-section::after {
    content: "";
    position: absolute;
    top: 78px;
    left: 8px;
    width: 125px;
    height: 140px;
    pointer-events: none;
    opacity: 0.55;
    background-image:
        radial-gradient(
            rgba(201, 162, 91, 0.75) 1.5px,
            transparent 1.5px
        );
    background-size: 11px 11px;
    mask-image:
        linear-gradient(
            to right,
            black,
            transparent
        );
}

/* Container */

.sp-roof-container {
    position: relative;
    z-index: 2;
    width: min(100%, 1340px);
    margin: 0 auto;
}

/* Bottom-right dots */

.sp-roof-container::after {
    content: "";
    position: absolute;
    right: -76px;
    bottom: -10px;
    width: 130px;
    height: 150px;
    pointer-events: none;
    opacity: 0.5;
    background-image:
        radial-gradient(
            rgba(201, 162, 91, 0.75) 1.5px,
            transparent 1.5px
        );
    background-size: 11px 11px;
    mask-image:
        linear-gradient(
            to left,
            black,
            transparent
        );
}

/* =====================================================
   HEADING
===================================================== */

.sp-roof-heading {
    max-width: 1040px;
    margin: 0 auto 44px;
    text-align: center;
}

/* Eyebrow */

.sp-roof-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.sp-roof-eyebrow-line {
    display: block;
    width: 43px;
    height: 1px;
    background: var(--sp-roof-gold);
}

.sp-roof-eyebrow-diamond {
    display: block;
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    background: var(--sp-roof-gold);
    transform: rotate(45deg);
}

.sp-roof-eyebrow-dot {
    display: block;
    width: 8px;
    height: 8px;
    margin-left: 3px;
    flex-shrink: 0;
    background: var(--sp-roof-gold);
    transform: rotate(45deg);
}

.sp-roof-eyebrow-text {
    color: var(--sp-roof-oak);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

/* Main title */

.sp-roof-title {
    margin: 0;
    color: var(--sp-roof-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5vw, 52px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -2.5px;
}

.sp-roof-title span {
    display: block;
}

.sp-roof-title strong {
    color: var(--sp-roof-gold);
    font-weight: 600;
}

/* Divider */

.sp-roof-title-divider {
    display: block;
    width: 50px;
    height: 2px;
    margin: 20px auto 16px;
    border-radius: 20px;
    background: var(--sp-roof-gold);
}

/* Description */

.sp-roof-description {
    max-width: 940px;
    margin: 0 auto;
    color: rgba(30, 30, 30, 0.72);
    font-size: 17px;
    line-height: 1.72;
}

/* =====================================================
   COMPARISON WRAPPER
===================================================== */

.sp-roof-comparison {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Each row */

.sp-roof-row {
    display: grid;
    grid-template-columns:
        minmax(0, 0.94fr)
        88px
        minmax(0, 1.06fr);
    align-items: stretch;
    width: 100%;
}

/* =====================================================
   LEFT PROBLEM CARD
===================================================== */

.sp-roof-problem {
    position: relative;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: center;
    min-height: 112px;
    padding: 15px 28px 15px 16px;
    overflow: hidden;
    border: 1px solid rgba(19, 40, 85, 0.08);
    border-radius: 16px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(255, 255, 255, 0.88)
        );
    box-shadow:
        0 13px 30px rgba(13, 28, 69, 0.07),
        0 3px 9px rgba(13, 28, 69, 0.025);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.sp-roof-problem::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-bottom-left-radius: 100%;
    background: rgba(201, 162, 91, 0.045);
}

.sp-roof-row:hover .sp-roof-problem {
    transform: translateX(5px);
    border-color: rgba(201, 162, 91, 0.32);
    box-shadow:
        0 19px 38px rgba(13, 28, 69, 0.1),
        0 4px 12px rgba(13, 28, 69, 0.03);
}

/* Number circle */

.sp-roof-number-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            var(--sp-roof-primary),
            var(--sp-roof-dark)
        );
    box-shadow: 0 9px 20px rgba(13, 28, 69, 0.16);
}

/* Gold outer arc */

.sp-roof-number-wrap::before {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px solid transparent;
    border-top-color: var(--sp-roof-gold);
    border-right-color: var(--sp-roof-gold);
    border-radius: 50%;
    transform: rotate(45deg);
}

.sp-roof-number {
    color: var(--sp-roof-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
}

/* Gold circle dot */

.sp-roof-number-dot {
    position: absolute;
    top: 50%;
    right: -15px;
    width: 11px;
    height: 11px;
    border: 2px solid var(--sp-roof-white);
    border-radius: 50%;
    background: var(--sp-roof-gold);
    transform: translateY(-50%);
}

/* Problem title */

.sp-roof-problem h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--sp-roof-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

/* =====================================================
   CENTER CONNECTOR
===================================================== */

.sp-roof-connector {
    display: grid;
    grid-template-columns: 1fr 44px 1fr;
    align-items: center;
    width: 100%;
}

.sp-roof-connector-line {
    display: block;
    height: 1px;
    background:
        repeating-linear-gradient(
            90deg,
            var(--sp-roof-gold) 0,
            var(--sp-roof-gold) 4px,
            transparent 4px,
            transparent 8px
        );
}

.sp-roof-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--sp-roof-gold);
    border-radius: 50%;
    color: var(--sp-roof-primary);
    font-size: 15px;
    background: var(--sp-roof-ivory);
    box-shadow: 0 7px 17px rgba(13, 28, 69, 0.07);
    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}

.sp-roof-row:hover .sp-roof-arrow {
    color: var(--sp-roof-white);
    background: var(--sp-roof-primary);
    transform: translateX(3px);
}

/* =====================================================
   RIGHT SOLUTION CARD
===================================================== */

.sp-roof-solution {
    position: relative;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
    min-height: 112px;
    padding: 18px 30px 18px 20px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 91, 0.82);
    border-radius: 16px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(248, 247, 244, 0.88)
        );
    box-shadow:
        0 13px 30px rgba(13, 28, 69, 0.055),
        0 3px 9px rgba(13, 28, 69, 0.02);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.sp-roof-solution::before {
    content: "";
    position: absolute;
    right: -25px;
    bottom: -50px;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(201, 162, 91, 0.13);
    border-radius: 50%;
}

.sp-roof-row:hover .sp-roof-solution {
    transform: translateX(-5px);
    background: var(--sp-roof-white);
    box-shadow:
        0 20px 40px rgba(13, 28, 69, 0.09),
        0 4px 12px rgba(13, 28, 69, 0.025);
}

/* Solution icon */

.sp-roof-solution-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border: 1px solid rgba(201, 162, 91, 0.58);
    border-radius: 17px;
    color: var(--sp-roof-oak);
    font-size: 28px;
    background:
        linear-gradient(
            145deg,
            var(--sp-roof-white),
            var(--sp-roof-ivory)
        );
    box-shadow:
        inset 0 0 0 5px rgba(255, 255, 255, 0.62),
        0 7px 17px rgba(13, 28, 69, 0.055);
    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}

.sp-roof-row:hover .sp-roof-solution-icon {
    color: var(--sp-roof-white);
    background:
        linear-gradient(
            145deg,
            var(--sp-roof-primary),
            var(--sp-roof-dark)
        );
    transform: rotate(-4deg);
}

/* Solution content */

.sp-roof-solution-content {
    position: relative;
    z-index: 2;
}

.sp-roof-solution-content h3 {
    margin: 0 0 6px;
    color: var(--sp-roof-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
}

.sp-roof-solution-content p {
    max-width: 520px;
    margin: 0;
    color: rgba(30, 30, 30, 0.72);
    font-size: 14px;
    line-height: 1.58;
}

/* =====================================================
   RESPONSIVE - TABLET
===================================================== */

@media screen and (max-width: 1100px) {

    .sp-roof-container {
        width: min(100%, 920px);
    }

    .sp-roof-title {
        font-size: 58px;
    }

    .sp-roof-row {
        grid-template-columns:
            minmax(0, 0.95fr)
            66px
            minmax(0, 1.05fr);
    }

    .sp-roof-problem {
        grid-template-columns: 80px minmax(0, 1fr);
        padding-right: 20px;
    }

    .sp-roof-number-wrap {
        width: 64px;
        height: 64px;
    }

    .sp-roof-number {
        font-size: 21px;
    }

    .sp-roof-problem h3 {
        font-size: 16px;
    }

    .sp-roof-connector {
        grid-template-columns: 1fr 38px 1fr;
    }

    .sp-roof-arrow {
        width: 38px;
        height: 38px;
    }

    .sp-roof-solution {
        grid-template-columns: 62px minmax(0, 1fr);
        gap: 16px;
        padding-right: 20px;
    }

    .sp-roof-solution-icon {
        width: 60px;
        height: 60px;
        font-size: 23px;
    }

    .sp-roof-solution-content h3 {
        font-size: 17px;
    }

    .sp-roof-solution-content p {
        font-size: 12.5px;
    }

}

/* =====================================================
   RESPONSIVE - SMALL TABLET
===================================================== */

@media screen and (max-width: 850px) {

    .sp-roof-section {
        padding: 68px 18px 72px;
    }

    .sp-roof-heading {
        margin-bottom: 38px;
    }

    .sp-roof-title {
        font-size: 49px;
    }

    .sp-roof-description {
        font-size: 15px;
    }

    .sp-roof-comparison {
        gap: 20px;
    }

    .sp-roof-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .sp-roof-problem,
    .sp-roof-solution {
        min-height: 105px;
    }

    .sp-roof-problem {
        border-radius: 15px 15px 0 0;
    }

    .sp-roof-solution {
        border-radius: 0 0 15px 15px;
    }

    .sp-roof-connector {
        position: relative;
        z-index: 5;
        display: flex;
        justify-content: center;
        height: 0;
    }

    .sp-roof-connector-line {
        display: none;
    }

    .sp-roof-arrow {
        width: 38px;
        height: 38px;
        transform: translateY(-50%) rotate(90deg);
    }

    .sp-roof-row:hover .sp-roof-arrow {
        transform: translateY(-50%) rotate(90deg);
    }

    .sp-roof-row:hover .sp-roof-problem,
    .sp-roof-row:hover .sp-roof-solution {
        transform: none;
    }

}

/* =====================================================
   RESPONSIVE - MOBILE
===================================================== */

@media screen and (max-width: 600px) {

    .sp-roof-section {
        padding: 58px 14px 62px;
        background-size: 72px 72px;
    }

    .sp-roof-eyebrow {
        gap: 7px;
        margin-bottom: 16px;
    }

    .sp-roof-eyebrow-line {
        width: 25px;
    }

    .sp-roof-eyebrow-text {
        font-size: 9px;
        letter-spacing: 1.4px;
    }

    .sp-roof-title {
        font-size: 37px;
        line-height: 1.08;
        letter-spacing: -1.2px;
    }

    .sp-roof-description {
        font-size: 13px;
        line-height: 1.65;
    }

    .sp-roof-problem {
        grid-template-columns: 68px minmax(0, 1fr);
        min-height: 96px;
        padding: 14px 17px 14px 12px;
    }

    .sp-roof-number-wrap {
        width: 56px;
        height: 56px;
    }

    .sp-roof-number {
        font-size: 18px;
    }

    .sp-roof-number-dot {
        right: -11px;
        width: 9px;
        height: 9px;
    }

    .sp-roof-problem h3 {
        font-size: 15px;
        line-height: 1.35;
    }

    .sp-roof-solution {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 13px;
        min-height: 112px;
        padding: 22px 16px 16px;
    }

    .sp-roof-solution-icon {
        width: 50px;
        height: 50px;
        border-radius: 13px;
        font-size: 19px;
    }

    .sp-roof-solution-content h3 {
        margin-bottom: 4px;
        font-size: 16px;
    }

    .sp-roof-solution-content p {
        font-size: 12px;
        line-height: 1.55;
    }

}

/* =====================================================
   ROOFING SEO SERVICES SECTION
===================================================== */

.rf-service-section {
    --rf-bg: #1D2D54;
    --rf-bg-dark: #152443;
    --rf-bg-deep: #10203E;
    --rf-card: #20345F;
    --rf-card-dark: #182A4F;
    --rf-gold: #C9A25B;
    --rf-oak: #B88558;
    --rf-ivory: #F8F7F4;
    --rf-beige: #E7E1D8;
    --rf-white: #FFFFFF;

    position: relative;
    width: 100%;
    padding: 78px 24px 82px;
    overflow: hidden;
    background-color: var(--rf-bg);

    /* Screenshot style subtle rectangular grid */
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );

    background-size: 105px 105px;
}

/* Soft background glow */

.rf-service-section::before {
    content: "";
    position: absolute;
    top: -240px;
    left: 50%;
    width: 850px;
    height: 600px;
    pointer-events: none;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(201, 162, 91, 0.08) 0%,
            rgba(201, 162, 91, 0.025) 38%,
            transparent 72%
        );
    transform: translateX(-50%);
}

/* Bottom background depth */

.rf-service-section::after {
    content: "";
    position: absolute;
    right: -250px;
    bottom: -300px;
    width: 650px;
    height: 650px;
    pointer-events: none;
    border: 1px solid rgba(201, 162, 91, 0.08);
    border-radius: 50%;
}

/* Main container */

.rf-service-container {
    position: relative;
    z-index: 2;
    width: min(100%, 1360px);
    margin: 0 auto;
}

/* =====================================================
   SECTION HEADING
===================================================== */

.rf-service-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
    align-items: center;
    gap: 70px;
    margin-bottom: 42px;
}

/* Eyebrow */

.rf-service-eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 19px;
}

.rf-service-eyebrow-line {
    display: block;
    width: 44px;
    height: 2px;
    background: var(--rf-gold);
}

.rf-service-eyebrow-text {
    color: var(--rf-gold);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2.6px;
    text-transform: uppercase;
}

/* Title */

.rf-service-title {
    max-width: 820px;
    margin: 0;
    color: var(--rf-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5vw, 52px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -2px;
}

.rf-service-title span {
    color: var(--rf-gold);
}

/* Heading note */

.rf-service-heading-note {
    position: relative;
    display: grid;
    grid-template-columns: 1px 1fr;
    align-items: center;
    gap: 26px;
    min-height: 95px;
    padding-left: 18px;
}

.rf-service-note-line {
    position: relative;
    display: block;
    width: 1px;
    height: 70px;
    background:
        linear-gradient(
            to bottom,
            transparent,
            var(--rf-gold),
            transparent
        );
}

.rf-service-note-dot {
    position: absolute;
    top: 50%;
    left: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rf-gold);
    box-shadow:
        0 0 0 5px rgba(201, 162, 91, 0.08),
        0 0 20px rgba(201, 162, 91, 0.55);
    transform: translate(-50%, -50%);
}

.rf-service-heading-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.7;
}

/* =====================================================
   SERVICES GRID
===================================================== */

.rf-service-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 0.78fr)
        minmax(0, 0.78fr);
    grid-template-rows:
        minmax(260px, auto)
        minmax(260px, auto)
        minmax(190px, auto);
    gap: 16px;
}

/* =====================================================
   BASE CARD
===================================================== */

.rf-service-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(231, 225, 216, 0.15);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(34, 53, 94, 0.96),
            rgba(22, 39, 72, 0.96)
        );
    box-shadow:
        0 20px 48px rgba(7, 17, 40, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.rf-service-card:hover {
    z-index: 5;
    transform: translateY(-7px);
    border-color: rgba(201, 162, 91, 0.62);
    box-shadow:
        0 28px 60px rgba(7, 17, 40, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Number */

.rf-service-card-number {
    position: absolute;
    z-index: 4;
    top: 24px;
    right: 25px;
    color: rgba(255, 255, 255, 0.73);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    line-height: 1;
}

/* Icon */

.rf-service-icon {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    flex-shrink: 0;
    border: 1px solid rgba(201, 162, 91, 0.85);
    border-radius: 16px;
    color: var(--rf-gold);
    font-size: 24px;
    background: rgba(13, 28, 69, 0.25);
    box-shadow:
        inset 0 0 0 5px rgba(255, 255, 255, 0.018),
        0 8px 24px rgba(7, 17, 40, 0.16);
    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}

.rf-service-card:hover .rf-service-icon {
    color: var(--rf-bg-dark);
    background: var(--rf-gold);
    transform: rotate(-4deg);
}

/* Content */

.rf-service-card-content {
    position: relative;
    z-index: 3;
}

.rf-service-card-content h3 {
    margin: 0;
    color: var(--rf-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.6px;
}

.rf-service-title-line {
    display: block;
    width: 48px;
    height: 2px;
    margin: 14px 0 15px;
    background: var(--rf-gold);
    transition: width 0.35s ease;
}

.rf-service-card:hover .rf-service-title-line {
    width: 78px;
}

.rf-service-card-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.65;
}

/* Bottom tag */

.rf-service-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: var(--rf-gold);
}

.rf-service-tag i {
    font-size: 14px;
}

.rf-service-tag span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* =====================================================
   FEATURED CARD
===================================================== */

.rf-service-card-featured {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    min-height: 536px;
    padding: 30px 31px 31px;
    border-color: rgba(201, 162, 91, 0.46);
    background:
        linear-gradient(
            145deg,
            rgba(35, 58, 105, 0.98),
            rgba(18, 35, 68, 0.98)
        );
}

/* Gold edge highlight */

.rf-service-card-featured::before {
    content: "";
    position: absolute;
    top: 14%;
    right: -1px;
    width: 2px;
    height: 55%;
    background:
        linear-gradient(
            to bottom,
            transparent,
            var(--rf-gold),
            transparent
        );
    box-shadow: 0 0 16px rgba(201, 162, 91, 0.7);
}

/* Featured background link symbol */

.rf-service-featured-pattern {
    position: absolute;
    top: 105px;
    right: 30px;
    color: rgba(255, 255, 255, 0.045);
    font-size: 175px;
    transform: rotate(-17deg);
}

.rf-service-card-featured .rf-service-card-content {
    margin-top: auto;
}

.rf-service-card-featured .rf-service-card-content h3 {
    max-width: 390px;
    font-size: clamp(38px, 3.4vw, 54px);
    line-height: 1.05;
}

.rf-service-card-featured .rf-service-title-line {
    width: 55px;
    margin: 20px 0;
}

.rf-service-card-featured .rf-service-card-content p {
    max-width: 410px;
    font-size: 15px;
    line-height: 1.72;
}

/* Featured curved lines */

.rf-service-card-featured::after {
    content: "";
    position: absolute;
    top: -55px;
    right: -75px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(201, 162, 91, 0.07);
    border-radius: 50%;
    box-shadow:
        0 0 0 28px rgba(201, 162, 91, 0.022),
        0 0 0 58px rgba(201, 162, 91, 0.018),
        0 0 0 88px rgba(201, 162, 91, 0.012);
}

/* =====================================================
   SMALL SERVICE CARDS
===================================================== */

.rf-service-card-small {
    display: flex;
    flex-direction: column;
    padding: 25px 25px 23px;
}

.rf-service-card-small .rf-service-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    margin-top: 20px;
}

.rf-service-card-small .rf-service-card-content h3 {
    font-size: 25px;
}

.rf-service-card-small .rf-service-card-content p {
    font-size: 13.5px;
}

.rf-service-card-small .rf-service-tag {
    margin-top: auto;
    padding-top: 20px;
}

/* =====================================================
   SEO CONTENT WRITING CARD
===================================================== */

.rf-service-card-content-writing {
    grid-column: 1;
    grid-row: 3;
    padding: 23px 25px;
}

.rf-service-card-horizontal {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: start;
    gap: 20px;
}

.rf-service-card-content-writing .rf-service-card-content h3 {
    margin: 7px 0 12px;
    font-size: 25px;
}

.rf-service-card-content-writing .rf-service-card-content p {
    font-size: 13.5px;
}

/* =====================================================
   DIGITAL PR CARD
===================================================== */

.rf-service-card-pr {
    grid-column: 2 / span 2;
    grid-row: 3;
    display: flex;
    align-items: center;
    padding: 24px 31px;
}

.rf-service-card-pr .rf-service-card-horizontal {
    width: calc(100% - 210px);
    grid-template-columns: 64px minmax(0, 1fr);
}

.rf-service-card-pr .rf-service-card-content h3 {
    margin-top: 4px;
    font-size: 31px;
}

.rf-service-card-pr .rf-service-card-content p {
    max-width: 580px;
    font-size: 14px;
}

.rf-service-pr-badge {
    position: absolute;
    z-index: 4;
    right: 30px;
    top: 50%;
    min-width: 158px;
    padding: 13px 20px;
    border: 1px solid var(--rf-gold);
    border-radius: 999px;
    color: var(--rf-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-align: center;
    text-transform: uppercase;
    transform: translateY(-50%);
}

.rf-service-pr-rings {
    position: absolute;
    right: -60px;
    top: 50%;
    width: 275px;
    height: 275px;
    border: 1px solid rgba(201, 162, 91, 0.08);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow:
        0 0 0 28px rgba(201, 162, 91, 0.025),
        0 0 0 56px rgba(201, 162, 91, 0.018);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media screen and (max-width: 1100px) {

    .rf-service-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .rf-service-heading-note {
        max-width: 620px;
        min-height: auto;
    }

    .rf-service-note-line {
        height: 45px;
    }

    .rf-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }

    .rf-service-card-featured {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .rf-service-card-content-writing {
        grid-column: 1;
        grid-row: auto;
    }

    .rf-service-card-pr {
        grid-column: 1 / -1;
        grid-row: auto;
    }

}

@media screen and (max-width: 780px) {

    .rf-service-section {
        padding: 65px 17px 70px;
        background-size: 76px 76px;
    }

    .rf-service-title {
        font-size: 45px;
    }

    .rf-service-heading-note p {
        font-size: 14px;
    }

    .rf-service-grid {
        grid-template-columns: 1fr;
    }

    .rf-service-card-featured,
    .rf-service-card-content-writing,
    .rf-service-card-pr {
        grid-column: 1;
        grid-row: auto;
    }

    .rf-service-card-featured {
        min-height: 460px;
    }

    .rf-service-card-small {
        min-height: 285px;
    }

    .rf-service-card-pr {
        align-items: flex-start;
        padding-bottom: 30px;
    }

    .rf-service-card-pr .rf-service-card-horizontal {
        width: 100%;
        padding-right: 0;
    }

    .rf-service-pr-badge {
        position: relative;
        top: auto;
        right: auto;
        width: fit-content;
        margin: 24px 0 0 84px;
        transform: none;
    }

}

@media screen and (max-width: 520px) {

    .rf-service-section {
        padding: 56px 14px 62px;
    }

    .rf-service-title {
        font-size: 36px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .rf-service-eyebrow-text {
        font-size: 9px;
        letter-spacing: 1.7px;
    }

    .rf-service-card {
        border-radius: 17px;
    }

    .rf-service-card-featured,
    .rf-service-card-small,
    .rf-service-card-content-writing,
    .rf-service-card-pr {
        padding-right: 21px;
        padding-left: 21px;
    }

    .rf-service-card-featured {
        min-height: 420px;
    }

    .rf-service-card-featured .rf-service-card-content h3 {
        font-size: 38px;
    }

    .rf-service-card-horizontal {
        grid-template-columns: 1fr;
    }

    .rf-service-card-content-writing .rf-service-icon,
    .rf-service-card-pr .rf-service-icon {
        margin-bottom: 5px;
    }

    .rf-service-pr-badge {
        margin-left: 0;
    }

}

/* =====================================================
   PLUMBER-SPECIFIC LINK BUILDING STRATEGY
===================================================== */

.pls-link-section {
    --pls-navy: #132855;
    --pls-dark-navy: #0D1C45;
    --pls-deep-navy: #081834;
    --pls-gold: #C9A25B;
    --pls-oak: #B88558;
    --pls-ivory: #F8F7F4;
    --pls-beige: #E7E1D8;
    --pls-white: #FFFFFF;

    position: relative;
    width: 100%;
    padding: 78px 24px 82px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            var(--pls-navy) 0%,
            var(--pls-dark-navy) 52%,
            var(--pls-deep-navy) 100%
        );

    /* Subtle rectangular grid */
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            145deg,
            var(--pls-navy) 0%,
            var(--pls-dark-navy) 52%,
            var(--pls-deep-navy) 100%
        );

    background-size:
        105px 105px,
        105px 105px,
        100% 100%;
}

/* Upper glow */

.pls-link-section::before {
    content: "";
    position: absolute;
    top: -340px;
    left: 50%;
    width: 1050px;
    height: 700px;
    pointer-events: none;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(201, 162, 91, 0.11) 0%,
            rgba(201, 162, 91, 0.035) 34%,
            transparent 70%
        );
    transform: translateX(-50%);
}

/* Right decorative rings */

.pls-link-section::after {
    content: "";
    position: absolute;
    top: 175px;
    right: -135px;
    width: 360px;
    height: 360px;
    pointer-events: none;
    border: 1px solid rgba(201, 162, 91, 0.13);
    border-radius: 50%;
    box-shadow:
        0 0 0 28px rgba(201, 162, 91, 0.035),
        0 0 0 58px rgba(201, 162, 91, 0.025);
}

/* Container */

.pls-link-container {
    position: relative;
    z-index: 2;
    width: min(100%, 1400px);
    margin: 0 auto;
}

/* =====================================================
   HEADING
===================================================== */

.pls-link-heading {
    max-width: 1180px;
    margin: 0 auto 45px;
    text-align: center;
}

/* Label */

.pls-link-label {
    margin-bottom: 20px;
}

.pls-link-label span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 185px;
    padding: 11px 25px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: var(--pls-dark-navy);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    background:
        linear-gradient(
            135deg,
            #E3BB69,
            var(--pls-gold)
        );
    box-shadow:
        0 10px 28px rgba(201, 162, 91, 0.25),
        0 0 24px rgba(201, 162, 91, 0.12);
}

/* Title row */

.pls-link-title-row {
    display: grid;
    grid-template-columns: minmax(80px, 1fr) auto minmax(80px, 1fr);
    align-items: center;
    gap: 28px;
}

.pls-link-heading-line {
    position: relative;
    display: block;
    height: 1px;
    background:
        linear-gradient(
            to right,
            transparent,
            rgba(201, 162, 91, 0.86)
        );
}

.pls-link-heading-line-right {
    background:
        linear-gradient(
            to left,
            transparent,
            rgba(201, 162, 91, 0.86)
        );
}

.pls-link-heading-line i {
    position: absolute;
    top: 50%;
    right: -2px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pls-gold);
    box-shadow:
        0 0 0 5px rgba(201, 162, 91, 0.07),
        0 0 18px rgba(201, 162, 91, 0.85);
    transform: translateY(-50%);
}

.pls-link-heading-line-right i {
    right: auto;
    left: -2px;
}

/* Main heading */

.pls-link-heading h2 {
    margin: 0;
    color: var(--pls-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(45px, 4.6vw, 50px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -2px;
}

.pls-link-heading h2 strong {
    color: var(--pls-gold);
    font-weight: 600;
}

/* Description */

.pls-link-heading > p {
    max-width: 930px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.72;
}

/* =====================================================
   CARDS GRID
===================================================== */

.pls-link-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

/* =====================================================
   CARD
===================================================== */

.pls-link-card {
    position: relative;
    display: grid;
    grid-template-columns: 165px minmax(0, 1fr);
    align-items: center;
    min-width: 0;
    min-height: 315px;
    padding: 38px 38px 34px 28px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 91, 0.78);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(26, 48, 91, 0.95),
            rgba(10, 29, 61, 0.96)
        );
    box-shadow:
        0 22px 52px rgba(4, 13, 33, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.pls-link-card:hover {
    z-index: 4;
    transform: translateY(-7px);
    border-color: var(--pls-gold);
    box-shadow:
        0 30px 68px rgba(4, 13, 33, 0.38),
        0 0 28px rgba(201, 162, 91, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Card background glow */

.pls-link-card::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 290px;
    height: 290px;
    pointer-events: none;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(201, 162, 91, 0.065),
            transparent 68%
        );
}

/* Number badge */

.pls-link-number {
    position: absolute;
    z-index: 4;
    top: 20px;
    left: 53%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 1px solid var(--pls-gold);
    border-radius: 50%;
    color: var(--pls-gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    background: rgba(8, 24, 52, 0.92);
    transform: translateX(-50%);
}

/* Dotted ring around number */

.pls-link-number::before {
    content: "";
    position: absolute;
    inset: -11px;
    border: 1px dotted rgba(201, 162, 91, 0.9);
    border-radius: 50%;
    transition: transform 0.8s ease;
}

.pls-link-card:hover .pls-link-number::before {
    transform: rotate(180deg);
}

/* =====================================================
   ICON ORBIT
===================================================== */

.pls-link-icon-area {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.pls-link-icon-orbit {
    position: relative;
    width: 135px;
    height: 135px;
}

/* Main outer orbit */

.pls-link-icon-orbit::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 162, 91, 0.34);
    border-radius: 50%;
}

/* Gold partial orbit */

.pls-link-icon-orbit::after {
    content: "";
    position: absolute;
    inset: 11px;
    border: 2px solid transparent;
    border-top-color: var(--pls-gold);
    border-right-color: var(--pls-gold);
    border-radius: 50%;
    transform: rotate(24deg);
    transition: transform 0.8s ease;
}

.pls-link-card:hover .pls-link-icon-orbit::after {
    transform: rotate(204deg);
}

/* Orbit line */

.pls-link-orbit-line {
    position: absolute;
    inset: 25px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 50%;
}

/* Main circle */

.pls-link-icon-circle {
    position: absolute;
    z-index: 2;
    inset: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--pls-gold);
    font-size: 34px;
    background:
        radial-gradient(
            circle at 35% 28%,
            rgba(31, 60, 112, 0.94),
            rgba(8, 24, 52, 0.98)
        );
    box-shadow:
        0 15px 34px rgba(3, 11, 28, 0.4),
        inset 0 0 0 1px rgba(201, 162, 91, 0.16);
    transition:
        color 0.4s ease,
        background 0.4s ease,
        transform 0.4s ease;
}

.pls-link-card:hover .pls-link-icon-circle {
    color: var(--pls-dark-navy);
    background:
        linear-gradient(
            145deg,
            #E2BA67,
            var(--pls-gold)
        );
    transform: scale(1.06);
}

/* Orbit glowing dot */

.pls-link-orbit-dot {
    position: absolute;
    z-index: 5;
    right: 4px;
    bottom: 25px;
    width: 9px;
    height: 9px;
    border: 2px solid var(--pls-dark-navy);
    border-radius: 50%;
    background: var(--pls-gold);
    box-shadow:
        0 0 0 5px rgba(201, 162, 91, 0.08),
        0 0 18px rgba(201, 162, 91, 0.95);
}

/* =====================================================
   CARD CONTENT
===================================================== */

.pls-link-card-content {
    position: relative;
    z-index: 3;
    padding-top: 38px;
}

.pls-link-card-content h3 {
    margin: 0;
    color: var(--pls-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.4px;
}

.pls-link-card-divider {
    display: block;
    width: 42px;
    height: 2px;
    margin: 13px 0 16px;
    background: var(--pls-gold);
    transition: width 0.4s ease;
}

.pls-link-card:hover .pls-link-card-divider {
    width: 75px;
}

.pls-link-card-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.79);
    font-size: 14px;
    line-height: 1.7;
}

/* =====================================================
   RESPONSIVE - TABLET
===================================================== */

@media screen and (max-width: 1100px) {

    .pls-link-container {
        width: min(100%, 920px);
    }

    .pls-link-title-row {
        grid-template-columns: 50px auto 50px;
        gap: 18px;
    }

    .pls-link-heading h2 {
        font-size: 54px;
    }

    .pls-link-grid {
        grid-template-columns: 1fr;
    }

    .pls-link-card {
        min-height: 285px;
    }

    .pls-link-number {
        left: 55%;
    }

}

/* =====================================================
   RESPONSIVE - MOBILE
===================================================== */

@media screen and (max-width: 767px) {

    .pls-link-section {
        padding: 65px 16px 70px;
        background-size:
            75px 75px,
            75px 75px,
            100% 100%;
    }

    .pls-link-heading {
        margin-bottom: 38px;
    }

    .pls-link-title-row {
        display: block;
    }

    .pls-link-heading-line {
        display: none;
    }

    .pls-link-heading h2 {
        font-size: 42px;
        line-height: 1.08;
        letter-spacing: -1.2px;
    }

    .pls-link-heading > p {
        margin-top: 17px;
        font-size: 14px;
        line-height: 1.65;
    }

    .pls-link-card {
        grid-template-columns: 125px minmax(0, 1fr);
        min-height: 300px;
        padding: 32px 24px 28px 20px;
    }

    .pls-link-icon-orbit {
        width: 110px;
        height: 110px;
    }

    .pls-link-icon-circle {
        inset: 25px;
        font-size: 27px;
    }

    .pls-link-number {
        top: 18px;
        left: 58%;
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .pls-link-card-content {
        padding-top: 40px;
    }

    .pls-link-card-content h3 {
        font-size: 21px;
    }

    .pls-link-card-content p {
        font-size: 13px;
        line-height: 1.65;
    }

}

/* =====================================================
   RESPONSIVE - SMALL MOBILE
===================================================== */

@media screen and (max-width: 560px) {

    .pls-link-section {
        padding: 56px 14px 62px;
    }

    .pls-link-label span {
        min-width: 155px;
        padding: 9px 18px;
        font-size: 10px;
    }

    .pls-link-heading h2 {
        font-size: 35px;
    }

    .pls-link-card {
        display: flex;
        flex-direction: column;
        min-height: auto;
        padding: 28px 20px 30px;
        text-align: center;
    }

    .pls-link-number {
        position: relative;
        top: auto;
        left: auto;
        order: 1;
        margin: 0 auto 24px;
        transform: none;
    }

    .pls-link-icon-area {
        order: 2;
        justify-content: center;
    }

    .pls-link-icon-orbit {
        width: 115px;
        height: 115px;
    }

    .pls-link-card-content {
        order: 3;
        padding-top: 20px;
    }

    .pls-link-card-divider {
        margin-right: auto;
        margin-left: auto;
    }

    .pls-link-card-content h3 {
        font-size: 22px;
    }

    .pls-link-card-content p {
        font-size: 13px;
    }

}

/* =====================================================
   CONTENT MARKETING FOR PLUMBER COMPANIES
===================================================== */

.pcm-flow-section {
    --pcm-primary: #132855;
    --pcm-dark: #0D1C45;
    --pcm-gold: #C9A25B;
    --pcm-oak: #B88558;
    --pcm-ivory: #F8F7F4;
    --pcm-beige: #E7E1D8;
    --pcm-charcoal: #1E1E1E;
    --pcm-white: #FFFFFF;

    position: relative;
    width: 100%;
    padding: 78px 24px 86px;
    overflow: hidden;
    background-color: var(--pcm-ivory);

    background-image:
        linear-gradient(
            rgba(19, 40, 85, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(19, 40, 85, 0.035) 1px,
            transparent 1px
        );

    background-size: 105px 105px;
}

/* Soft centre lighting */

.pcm-flow-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 50% 16%,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.58) 38%,
            transparent 72%
        );
}

/* Decorative rings */

.pcm-flow-section::after {
    content: "";
    position: absolute;
    top: -170px;
    right: -140px;
    width: 390px;
    height: 390px;
    pointer-events: none;
    border: 1px solid rgba(201, 162, 91, 0.14);
    border-radius: 50%;
    box-shadow:
        0 0 0 30px rgba(201, 162, 91, 0.035),
        0 0 0 65px rgba(19, 40, 85, 0.025);
}

/* Container */

.pcm-flow-container {
    position: relative;
    z-index: 2;
    width: min(100%, 1320px);
    margin: 0 auto;
}

/* =====================================================
   HEADING
===================================================== */

.pcm-flow-heading {
    max-width: 1070px;
    margin: 0 auto 42px;
    text-align: center;
}

/* Eyebrow */

.pcm-flow-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

.pcm-flow-eyebrow-line {
    width: 38px;
    height: 1px;
    background: var(--pcm-gold);
}

.pcm-flow-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pcm-primary);
}

.pcm-flow-eyebrow-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 23px;
    border: 1px solid rgba(201, 162, 91, 0.48);
    border-radius: 999px;
    color: var(--pcm-dark);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    background:
        linear-gradient(
            135deg,
            #E4C47F,
            var(--pcm-gold)
        );
    box-shadow: 0 10px 24px rgba(201, 162, 91, 0.16);
}

/* Main title */

.pcm-flow-title {
    margin: 0;
    color: var(--pcm-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 5vw, 52px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -2.2px;
}

.pcm-flow-title span {
    color: var(--pcm-gold);
    font-style: italic;
    font-weight: 500;
}

/* Description */

.pcm-flow-description {
    max-width: 850px;
    margin: 18px auto 0;
    color: rgba(30, 30, 30, 0.72);
    font-size: 16px;
    line-height: 1.72;
}

/* =====================================================
   MAIN LAYOUT
===================================================== */

.pcm-flow-layout {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 120px;
    width: 100%;
}

/* =====================================================
   CARD
===================================================== */

.pcm-flow-card {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 365px;
    padding: 28px 31px 22px;
    overflow: hidden;
    border: 1px solid rgba(19, 40, 85, 0.14);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(248, 247, 244, 0.92)
        );
    box-shadow:
        0 18px 42px rgba(13, 28, 69, 0.075),
        0 5px 12px rgba(13, 28, 69, 0.025);
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.pcm-flow-card:hover {
    z-index: 6;
    transform: translateY(-7px);
    border-color: rgba(201, 162, 91, 0.58);
    box-shadow:
        0 28px 60px rgba(13, 28, 69, 0.13),
        0 7px 17px rgba(13, 28, 69, 0.035);
}

/* Alternating side shape */

.pcm-flow-side-shape {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 18px;
    pointer-events: none;
    background:
        linear-gradient(
            to bottom,
            var(--pcm-primary),
            var(--pcm-dark)
        );
}

.pcm-flow-card-one .pcm-flow-side-shape,
.pcm-flow-card-three .pcm-flow-side-shape {
    left: 0;
    border-radius: 18px 0 0 18px;
}

.pcm-flow-card-two .pcm-flow-side-shape,
.pcm-flow-card-four .pcm-flow-side-shape {
    right: 0;
    border-radius: 0 18px 18px 0;
    background:
        linear-gradient(
            to bottom,
            var(--pcm-gold),
            var(--pcm-oak)
        );
}

/* Fold-style diagonal details */

.pcm-flow-card::before {
    content: "";
    position: absolute;
    top: 0;
    width: 54px;
    height: 54px;
    background: var(--pcm-ivory);
}

.pcm-flow-card-one::before,
.pcm-flow-card-three::before {
    left: 0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.pcm-flow-card-two::before,
.pcm-flow-card-four::before {
    right: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

/* Number */

.pcm-flow-card-number {
    position: absolute;
    z-index: 4;
    top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--pcm-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 700;
    background:
        linear-gradient(
            145deg,
            var(--pcm-primary),
            var(--pcm-dark)
        );
    box-shadow: 0 8px 18px rgba(13, 28, 69, 0.16);
}

.pcm-flow-card-one .pcm-flow-card-number,
.pcm-flow-card-three .pcm-flow-card-number {
    left: 25px;
}

.pcm-flow-card-two .pcm-flow-card-number,
.pcm-flow-card-four .pcm-flow-card-number {
    right: 25px;
    color: var(--pcm-dark);
    background:
        linear-gradient(
            145deg,
            #E6C576,
            var(--pcm-gold)
        );
}

/* =====================================================
   CARD HEAD
===================================================== */

.pcm-flow-card-head {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: start;
    gap: 20px;
    padding-top: 5px;
}

.pcm-flow-card-one .pcm-flow-card-head,
.pcm-flow-card-three .pcm-flow-card-head {
    padding-left: 58px;
}

.pcm-flow-card-two .pcm-flow-card-head,
.pcm-flow-card-four .pcm-flow-card-head {
    padding-right: 58px;
}

/* Icon */

.pcm-flow-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border: 1px solid rgba(201, 162, 91, 0.52);
    border-radius: 50%;
    color: var(--pcm-gold);
    font-size: 23px;
    background:
        linear-gradient(
            145deg,
            var(--pcm-primary),
            var(--pcm-dark)
        );
    box-shadow:
        0 10px 24px rgba(13, 28, 69, 0.15),
        inset 0 0 0 5px rgba(255, 255, 255, 0.025);
    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}

.pcm-flow-card-two .pcm-flow-card-icon,
.pcm-flow-card-three .pcm-flow-card-icon {
    color: var(--pcm-dark);
    background:
        linear-gradient(
            145deg,
            #E5C171,
            var(--pcm-gold)
        );
}

.pcm-flow-card:hover .pcm-flow-card-icon {
    transform: rotate(-5deg) scale(1.05);
}

/* Heading */

.pcm-flow-card-heading h3 {
    margin: 2px 0 7px;
    color: var(--pcm-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.pcm-flow-card-heading p {
    margin: 0;
    color: rgba(30, 30, 30, 0.68);
    font-size: 12.5px;
    line-height: 1.55;
}

/* Divider */

.pcm-flow-divider {
    display: block;
    height: 1px;
    margin: 17px 0 15px;
    background:
        linear-gradient(
            90deg,
            var(--pcm-gold),
            rgba(201, 162, 91, 0.15)
        );
}

/* =====================================================
   LIST
===================================================== */

.pcm-flow-list {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pcm-flow-list li {
    position: relative;
    padding-left: 21px;
    color: rgba(13, 28, 69, 0.92);
    font-size: 12.5px;
    line-height: 1.42;
}

.pcm-flow-list li::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 8px;
    height: 8px;
    border: 2px solid var(--pcm-gold);
    border-radius: 50%;
    box-sizing: border-box;
}

.pcm-flow-list li::after {
    content: "";
    position: absolute;
    top: 9px;
    left: 3px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--pcm-primary);
}

/* =====================================================
   GOAL STRIP
===================================================== */

.pcm-flow-goal {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    margin-top: auto;
    padding: 11px 14px;
    border: 1px solid rgba(201, 162, 91, 0.14);
    border-radius: 11px;
    background:
        linear-gradient(
            90deg,
            rgba(19, 40, 85, 0.07),
            rgba(201, 162, 91, 0.09)
        );
}

.pcm-flow-goal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--pcm-gold);
    font-size: 17px;
    background: var(--pcm-primary);
}

.pcm-flow-card-two .pcm-flow-goal-icon,
.pcm-flow-card-three .pcm-flow-goal-icon {
    color: var(--pcm-dark);
    background: var(--pcm-gold);
}

.pcm-flow-goal p {
    margin: 0;
    color: rgba(13, 28, 69, 0.9);
    font-size: 11.5px;
    line-height: 1.45;
}

.pcm-flow-goal strong {
    color: var(--pcm-dark);
    text-transform: uppercase;
}

/* =====================================================
   CENTRE CONNECTOR
===================================================== */

.pcm-flow-center {
    position: absolute;
    z-index: 8;
    top: 50%;
    left: 50%;
    width: 190px;
    height: 190px;
    transform: translate(-50%, -50%);
}

.pcm-flow-ring {
    position: absolute;
    border-radius: 50%;
}

.pcm-flow-ring-one {
    inset: 0;
    border: 18px solid transparent;
    border-top-color: var(--pcm-gold);
    border-right-color: var(--pcm-primary);
    border-bottom-color: var(--pcm-gold);
    border-left-color: var(--pcm-primary);
    transform: rotate(45deg);
}

.pcm-flow-ring-two {
    inset: 22px;
    border: 1px solid rgba(19, 40, 85, 0.18);
}

.pcm-flow-center-icon {
    position: absolute;
    inset: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 7px solid var(--pcm-ivory);
    border-radius: 50%;
    color: var(--pcm-white);
    font-size: 43px;
    background:
        linear-gradient(
            145deg,
            var(--pcm-primary),
            var(--pcm-dark)
        );
    box-shadow:
        0 15px 35px rgba(13, 28, 69, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.pcm-flow-center-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    border: 2px solid var(--pcm-ivory);
    border-radius: 50%;
    background: var(--pcm-gold);
}

.pcm-flow-dot-top {
    top: 1px;
    left: 50%;
    transform: translateX(-50%);
}

.pcm-flow-dot-right {
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
}

.pcm-flow-dot-bottom {
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
}

.pcm-flow-dot-left {
    top: 50%;
    left: 1px;
    transform: translateY(-50%);
}

/* =====================================================
   CONNECTOR LINES
===================================================== */

.pcm-flow-connector {
    position: absolute;
    z-index: 2;
    width: 61px;
    height: 70px;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(201, 162, 91, 0.58);
}

.pcm-flow-connector-one {
    top: calc(25% - 20px);
    left: calc(50% - 61px);
    border-right: 0;
    border-bottom: 0;
    border-radius: 12px 0 0 0;
}

.pcm-flow-connector-two {
    top: calc(25% - 20px);
    left: 50%;
    border-left: 0;
    border-bottom: 0;
    border-radius: 0 12px 0 0;
}

.pcm-flow-connector-three {
    bottom: calc(25% - 20px);
    left: calc(50% - 61px);
    border-right: 0;
    border-top: 0;
    border-radius: 0 0 0 12px;
}

.pcm-flow-connector-four {
    bottom: calc(25% - 20px);
    left: 50%;
    border-left: 0;
    border-top: 0;
    border-radius: 0 0 12px 0;
}

/* Card connector ports */

.pcm-flow-card-port {
    position: absolute;
    z-index: 7;
    top: 50%;
    width: 9px;
    height: 9px;
    border: 2px solid var(--pcm-ivory);
    border-radius: 50%;
    background: var(--pcm-gold);
    transform: translateY(-50%);
}

.pcm-flow-port-right {
    right: -5px;
}

.pcm-flow-port-left {
    left: -5px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media screen and (max-width: 1180px) {

    .pcm-flow-layout {
        gap: 22px 90px;
    }

    .pcm-flow-center {
        width: 155px;
        height: 155px;
    }

    .pcm-flow-center-icon {
        inset: 35px;
        font-size: 34px;
    }

    .pcm-flow-ring-one {
        border-width: 15px;
    }

    .pcm-flow-connector {
        width: 45px;
    }

    .pcm-flow-connector-one,
    .pcm-flow-connector-three {
        left: calc(50% - 45px);
    }

}

@media screen and (max-width: 991px) {

    .pcm-flow-section {
        padding: 70px 20px 75px;
    }

    .pcm-flow-layout {
        grid-template-columns: 1fr;
        gap: 22px;
        max-width: 760px;
        margin: 0 auto;
    }

    .pcm-flow-center,
    .pcm-flow-connector,
    .pcm-flow-card-port {
        display: none;
    }

    .pcm-flow-card {
        min-height: auto;
    }

}

@media screen and (max-width: 650px) {

    .pcm-flow-section {
        padding: 58px 14px 64px;
        background-size: 72px 72px;
    }

    .pcm-flow-heading {
        margin-bottom: 34px;
    }

    .pcm-flow-eyebrow {
        gap: 7px;
    }

    .pcm-flow-eyebrow-line,
    .pcm-flow-eyebrow-dot {
        display: none;
    }

    .pcm-flow-eyebrow-text {
        padding: 9px 18px;
        font-size: 9px;
        letter-spacing: 1.4px;
    }

    .pcm-flow-title {
        font-size: 37px;
        line-height: 1.08;
        letter-spacing: -1.2px;
    }

    .pcm-flow-description {
        font-size: 13.5px;
        line-height: 1.65;
    }

    .pcm-flow-card {
        padding: 24px 20px 20px;
    }

    .pcm-flow-card-head {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 14px;
    }

    .pcm-flow-card-one .pcm-flow-card-head,
    .pcm-flow-card-three .pcm-flow-card-head {
        padding-left: 49px;
    }

    .pcm-flow-card-two .pcm-flow-card-head,
    .pcm-flow-card-four .pcm-flow-card-head {
        padding-right: 49px;
    }

    .pcm-flow-card-icon {
        width: 52px;
        height: 52px;
        font-size: 19px;
    }

    .pcm-flow-card-heading h3 {
        font-size: 19px;
    }

    .pcm-flow-card-heading p {
        font-size: 11.5px;
    }

    .pcm-flow-card-number {
        width: 39px;
        height: 39px;
        font-size: 15px;
    }

    .pcm-flow-list li {
        font-size: 11.5px;
    }

}

@media screen and (max-width: 480px) {

    .pcm-flow-title {
        font-size: 32px;
    }

    .pcm-flow-card-head {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pcm-flow-card-one .pcm-flow-card-head,
    .pcm-flow-card-two .pcm-flow-card-head,
    .pcm-flow-card-three .pcm-flow-card-head,
    .pcm-flow-card-four .pcm-flow-card-head {
        padding: 42px 0 0;
    }

    .pcm-flow-card-icon {
        margin: 0 auto;
    }

    .pcm-flow-card-number {
        right: auto !important;
        left: 50% !important;
        transform: translateX(-50%);
    }

    .pcm-flow-list {
        margin-top: 3px;
    }

}

/* =====================================================
   COMPLETE SEARCH VISIBILITY SOLUTIONS
===================================================== */

.csv-sol-section {
    --csv-primary: #132855;
    --csv-dark: #0D1C45;
    --csv-deep: #081733;
    --csv-gold: #C9A25B;
    --csv-oak: #B88558;
    --csv-ivory: #F8F7F4;
    --csv-beige: #E7E1D8;
    --csv-white: #FFFFFF;

    position: relative;
    width: 100%;
    padding: 76px 24px 84px;
    overflow: hidden;

    background-color: var(--csv-dark);

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            145deg,
            #132855 0%,
            #0D1C45 55%,
            #081733 100%
        );

    background-size:
        105px 105px,
        105px 105px,
        100% 100%;
}

/* Soft central glow */

.csv-sol-section::before {
    content: "";
    position: absolute;
    top: -330px;
    left: 50%;
    width: 1050px;
    height: 760px;
    pointer-events: none;
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(201, 162, 91, 0.1) 0%,
            rgba(201, 162, 91, 0.028) 38%,
            transparent 72%
        );

    transform: translateX(-50%);
}

/* Top-right circles */

.csv-sol-section::after {
    content: "";
    position: absolute;
    top: -135px;
    right: -145px;
    width: 390px;
    height: 390px;
    pointer-events: none;
    border: 1px solid rgba(201, 162, 91, 0.15);
    border-radius: 50%;

    box-shadow:
        0 0 0 35px rgba(201, 162, 91, 0.035),
        0 0 0 72px rgba(201, 162, 91, 0.022);
}

/* Main container */

.csv-sol-container {
    position: relative;
    z-index: 2;
    width: min(100%, 1450px);
    margin: 0 auto;
}

/* Bottom-left rings */

.csv-sol-container::before {
    content: "";
    position: absolute;
    left: -220px;
    bottom: -280px;
    width: 430px;
    height: 430px;
    pointer-events: none;
    border: 1px solid rgba(201, 162, 91, 0.1);
    border-radius: 50%;

    box-shadow:
        0 0 0 35px rgba(201, 162, 91, 0.022),
        0 0 0 70px rgba(201, 162, 91, 0.014);
}

/* =====================================================
   HEADING
===================================================== */

.csv-sol-heading {
    max-width: 950px;
    margin-bottom: 42px;
}

/* Eyebrow */

.csv-sol-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

/* Four angled bars */

.csv-sol-slashes {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.csv-sol-slashes i {
    display: block;
    width: 5px;
    height: 19px;
    border-radius: 3px;
    background: var(--csv-gold);
    transform: skewX(-20deg);
}

.csv-sol-section-number {
    color: var(--csv-gold);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.csv-sol-separator {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    font-weight: 700;
}

.csv-sol-eyebrow-text {
    color: var(--csv-white);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.csv-sol-heading-track {
    position: relative;
    display: block;
    width: 105px;
    height: 1px;
    margin-left: 5px;
    background:
        linear-gradient(
            90deg,
            var(--csv-gold),
            transparent
        );
}

.csv-sol-heading-track i {
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--csv-gold);

    box-shadow:
        0 0 0 5px rgba(201, 162, 91, 0.07),
        0 0 18px rgba(201, 162, 91, 0.85);

    transform: translate(-50%, -50%);
}

/* Main heading */

.csv-sol-title {
    max-width: 800px;
    margin: 0;
    color: var(--csv-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 5.2vw, 56px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -2.5px;
}

.csv-sol-title span {
    display: block;
    color: var(--csv-gold);
}

/* Gold title line */

.csv-sol-title-line {
    position: relative;
    display: block;
    width: 180px;
    height: 2px;
    margin: 28px 0 29px;
    background:
        linear-gradient(
            90deg,
            var(--csv-gold),
            rgba(201, 162, 91, 0.2)
        );
}

.csv-sol-title-line i {
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--csv-gold);

    box-shadow:
        0 0 0 6px rgba(201, 162, 91, 0.08),
        0 0 20px rgba(201, 162, 91, 0.85);

    transform: translate(-50%, -50%);
}

.csv-sol-description {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.7;
}

/* =====================================================
   CARDS GRID
===================================================== */

.csv-sol-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
    gap: 22px;
    width: 100%;
}

/* =====================================================
   CARD
===================================================== */

.csv-sol-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 485px;
    padding: 30px 28px 32px;
    overflow: hidden;

    border: 1px solid rgba(201, 162, 91, 0.72);
    border-radius: 22px;

    background:
        linear-gradient(
            155deg,
            rgba(33, 56, 104, 0.94),
            rgba(11, 31, 66, 0.97)
        );

    box-shadow:
        0 22px 50px rgba(3, 12, 30, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.csv-sol-card::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 260px;
    height: 260px;
    pointer-events: none;
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(201, 162, 91, 0.07),
            transparent 68%
        );
}

.csv-sol-card:hover {
    z-index: 5;
    transform: translateY(-8px);
    border-color: var(--csv-gold);

    box-shadow:
        0 31px 65px rgba(3, 12, 30, 0.4),
        0 0 24px rgba(201, 162, 91, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* =====================================================
   ICON ORBIT
===================================================== */

.csv-sol-icon-orbit {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 31px;
    flex-shrink: 0;
}

/* Outer ring */

.csv-sol-icon-orbit::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 162, 91, 0.75);
    border-radius: 50%;
}

/* Partial animated ring */

.csv-sol-orbit-ring {
    position: absolute;
    inset: 10px;
    border: 2px solid transparent;
    border-top-color: var(--csv-gold);
    border-right-color: var(--csv-gold);
    border-radius: 50%;
    transform: rotate(25deg);
    transition: transform 0.8s ease;
}

.csv-sol-card:hover .csv-sol-orbit-ring {
    transform: rotate(205deg);
}

/* Middle circle */

.csv-sol-icon-orbit::after {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
}

/* Icon circle */

.csv-sol-icon {
    position: absolute;
    z-index: 3;
    inset: 30px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    color: var(--csv-gold);
    font-size: 35px;

    background:
        radial-gradient(
            circle at 35% 27%,
            rgba(42, 72, 130, 0.94),
            rgba(7, 25, 57, 0.98)
        );

    box-shadow:
        0 14px 32px rgba(2, 10, 27, 0.4),
        inset 0 0 0 1px rgba(201, 162, 91, 0.15);

    transition:
        color 0.4s ease,
        background 0.4s ease,
        transform 0.4s ease;
}

.csv-sol-card:hover .csv-sol-icon {
    color: var(--csv-dark);
    background:
        linear-gradient(
            145deg,
            #E1BA68,
            var(--csv-gold)
        );
    transform: scale(1.07);
}

/* Orbit dot */

.csv-sol-orbit-dot {
    position: absolute;
    z-index: 5;
    top: 50%;
    right: -1px;
    width: 10px;
    height: 10px;

    border: 2px solid var(--csv-dark);
    border-radius: 50%;
    background: var(--csv-gold);

    box-shadow:
        0 0 0 5px rgba(201, 162, 91, 0.09),
        0 0 18px rgba(201, 162, 91, 0.95);

    transform: translateY(-50%);
}

/* =====================================================
   CARD CONTENT
===================================================== */

.csv-sol-card-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.csv-sol-card-content h3 {
    min-height: 64px;
    margin: 0;
    color: var(--csv-white);
    font-size: 23px;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.4px;
    text-transform: uppercase;
}

.csv-sol-card-divider {
    display: block;
    width: 36px;
    height: 3px;
    margin: 18px 0 22px;
    background: var(--csv-gold);
    transition: width 0.4s ease;
}

.csv-sol-card:hover .csv-sol-card-divider {
    width: 65px;
}

/* Lists */

.csv-sol-card-content ul {
    display: grid;
    gap: 17px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.csv-sol-card-content li {
    position: relative;
    padding-left: 29px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.4;
}

.csv-sol-card-content li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 12px;
    height: 2px;
    background: var(--csv-gold);
}

/* Bottom glow */

.csv-sol-bottom-glow {
    position: absolute;
    z-index: 5;
    bottom: -1px;
    left: 50%;
    width: 70px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--csv-gold),
            transparent
        );

    box-shadow: 0 0 14px rgba(201, 162, 91, 0.85);
    transform: translateX(-50%);
}

/* =====================================================
   RESPONSIVE - LARGE LAPTOP
===================================================== */

@media screen and (max-width: 1300px) {

    .csv-sol-container {
        width: min(100%, 1180px);
    }

    .csv-sol-grid {
        gap: 16px;
    }

    .csv-sol-card {
        min-height: 460px;
        padding-right: 21px;
        padding-left: 21px;
    }

    .csv-sol-icon-orbit {
        width: 112px;
        height: 112px;
    }

    .csv-sol-icon {
        inset: 27px;
        font-size: 29px;
    }

    .csv-sol-card-content h3 {
        font-size: 19px;
    }

    .csv-sol-card-content li {
        padding-left: 22px;
        font-size: 12.5px;
    }

}

/* =====================================================
   RESPONSIVE - TABLET
===================================================== */

@media screen and (max-width: 1024px) {

    .csv-sol-section {
        padding: 70px 20px 76px;
    }

    .csv-sol-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 900px;
        margin: 0 auto;
        gap: 22px;
    }

    .csv-sol-card {
        min-height: 420px;
    }

    .csv-sol-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 11px);
        margin: 0 auto;
    }

    .csv-sol-card-content h3 {
        font-size: 22px;
    }

    .csv-sol-card-content li {
        font-size: 14px;
    }

}

/* =====================================================
   RESPONSIVE - MOBILE
===================================================== */

@media screen and (max-width: 650px) {

    .csv-sol-section {
        padding: 58px 15px 64px;

        background-size:
            72px 72px,
            72px 72px,
            100% 100%;
    }

    .csv-sol-heading {
        margin-bottom: 34px;
    }

    .csv-sol-eyebrow {
        flex-wrap: wrap;
        gap: 9px;
    }

    .csv-sol-heading-track {
        display: none;
    }

    .csv-sol-eyebrow-text {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .csv-sol-section-number {
        font-size: 9px;
    }

    .csv-sol-title {
        font-size: 42px;
        line-height: 1.08;
        letter-spacing: -1.4px;
    }

    .csv-sol-title-line {
        width: 130px;
        margin: 23px 0;
    }

    .csv-sol-description {
        font-size: 14px;
    }

    .csv-sol-grid {
        grid-template-columns: 1fr;
        max-width: 430px;
    }

    .csv-sol-card,
    .csv-sol-card:last-child {
        grid-column: auto;
        width: 100%;
        min-height: auto;
        padding: 27px 25px 33px;
    }

    .csv-sol-icon-orbit {
        width: 115px;
        height: 115px;
        margin-bottom: 25px;
    }

    .csv-sol-card-content h3 {
        min-height: auto;
        font-size: 22px;
    }

}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media screen and (max-width: 420px) {

    .csv-sol-title {
        font-size: 35px;
    }

    .csv-sol-slashes {
        display: none;
    }

    .csv-sol-card {
        border-radius: 18px;
    }

}