/* ==========================================================================
   Service Category template
   Uses theme CSS variables: --color-primary, --color-secondary, --color-terciary,
   --fm-body, --fm-roboto
   ========================================================================== */

.sc-page {
    font-family: var(--fm-body, "Poppins"), sans-serif;
    color: #333;
    line-height: 1.6;
}

.sc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ----- Buttons ----- */
.sc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--fm-body, "Poppins"), sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}
.sc-btn--primary {
    background: linear-gradient(135deg, var(--color-primary, #b954e5), var(--color-secondary, #d24991));
    color: #fff;
}
.sc-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(185, 84, 229, 0.35);
    color: #fff;
}
.sc-btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.8);
}
.sc-btn--outline:hover {
    background: #fff;
    color: var(--color-primary, #b954e5);
}
.sc-btn--white {
    background: #fff;
    color: var(--color-primary, #b954e5);
}
.sc-btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
.sc-btn--large {
    padding: 18px 36px;
    font-size: 17px;
}

/* ----- Section titles ----- */
.sc-section__title {
    font-family: var(--fm-roboto, "Roboto Condensed"), sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--color-terciary, #5d2d7a);
    margin: 0 0 16px;
    line-height: 1.2;
}
.sc-section__title--center {
    text-align: center;
}
.sc-section__title--light {
    color: #fff;
}
.sc-section__sub {
    font-size: 17px;
    color: #666;
    max-width: 780px;
    margin: 0 auto 40px;
    text-align: center;
}
.sc-section__sub--light {
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.sc-hero {
    background: linear-gradient(135deg, #5d2d7a 0%, #b954e5 55%, #d24991 100%);
    color: #fff;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}
.sc-hero::before,
.sc-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    pointer-events: none;
}
.sc-hero::before {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 65%);
    top: -160px;
    right: -120px;
}
.sc-hero::after {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 65%);
    bottom: -140px;
    left: -120px;
}
.sc-hero__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.sc-hero__sub {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    margin: 0 0 22px;
    backdrop-filter: blur(10px);
}
.sc-hero__offer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--color-primary, #b954e5);
    font-family: var(--fm-roboto, "Roboto Condensed"), sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 50px;
    margin: 0 0 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    letter-spacing: 0.2px;
    animation: sc-pulse 2.4s ease-in-out infinite;
}
.sc-hero__offer-spark {
    color: var(--color-secondary, #d24991);
    font-size: 18px;
    line-height: 1;
}
@keyframes sc-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.04); }
}
.sc-hero__title {
    font-family: var(--fm-roboto, "Roboto Condensed"), sans-serif;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 22px;
    color: #fff;
}
.sc-hero__desc {
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.95);
}
.sc-hero__desc p { margin: 0 0 14px; }
.sc-hero__desc ul {
    padding: 0;
    list-style: none;
    margin: 10px 0 0;
}
.sc-hero__desc li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
}
.sc-hero__desc li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    color: #fff;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 3px;
}
.sc-hero__badges {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 26px 0 0;
}
.sc-hero__badges li {
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
}
.sc-hero__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.sc-hero__image {
    position: relative;
}
.sc-hero__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    display: block;
}

/* ==========================================================================
   INTRO (lead paragraphs under hero)
   ========================================================================== */
.sc-intro {
    padding: 0 0 60px;
    background: linear-gradient(180deg, #fff 0%, rgba(185, 84, 229, 0.04) 60%, #fafafa 100%);
    position: relative;
}
.sc-intro__wrap {
    max-width: 960px;
    margin: -70px auto 0;
    background: #fff;
    padding: 48px 56px;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(93, 45, 122, 0.10);
    border-left: 6px solid;
    border-image: linear-gradient(180deg, var(--color-primary, #b954e5), var(--color-secondary, #d24991)) 1 100%;
    position: relative;
    z-index: 2;
}
.sc-intro__wrap::before {
    content: "";
    position: absolute;
    top: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-primary, #b954e5), var(--color-secondary, #d24991));
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 7h4v4H7V7zm0 6h4v4H7v-4zm6-6h4v4h-4V7zm0 6h4v4h-4v-4z" fill="currentColor"/></svg>') center / contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 7h4v4H7V7zm0 6h4v4H7v-4zm6-6h4v4h-4V7zm0 6h4v4h-4v-4z" fill="currentColor"/></svg>') center / contain no-repeat;
    opacity: 0.55;
    pointer-events: none;
}
.sc-intro__title {
    font-family: var(--fm-roboto, "Roboto Condensed"), sans-serif;
    font-size: clamp(26px, 3.4vw, 36px);
    font-weight: 700;
    color: var(--color-terciary, #5d2d7a);
    margin: 0 0 20px;
    line-height: 1.2;
}
.sc-intro__body {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}
.sc-intro__body p { margin: 0 0 18px; }
.sc-intro__body p:last-child { margin-bottom: 0; }
.sc-intro__body p:first-child::first-letter {
    font-family: var(--fm-roboto, "Roboto Condensed"), sans-serif;
    font-size: 56px;
    font-weight: 700;
    float: left;
    line-height: 0.9;
    padding: 6px 14px 0 0;
    color: var(--color-primary, #b954e5);
}
.sc-intro__body strong { color: var(--color-terciary, #5d2d7a); }

@media (max-width: 600px) {
    .sc-intro__wrap {
        padding: 32px 24px;
        margin: -50px 15px 0;
    }
    .sc-intro__wrap::before { display: none; }
}

/* ==========================================================================
   CARDS GRID (Sectors / Industries / Warning Signs)
   ========================================================================== */
.sc-cards {
    padding: 90px 0;
    background: #fafafa;
}
.sc-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 50px;
}
.sc-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: center;
    border: 1px solid #f0f0f0;
}
.sc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(185, 84, 229, 0.18);
    border-color: rgba(185, 84, 229, 0.25);
}
.sc-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary, #b954e5), var(--color-secondary, #d24991));
    color: #fff;
    border-radius: 50%;
    padding: 16px;
}
.sc-card__icon img {
    max-width: 100%;
    max-height: 100%;
    filter: brightness(0) invert(1);
}
.sc-card__title {
    font-family: var(--fm-roboto, "Roboto Condensed"), sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--color-terciary, #5d2d7a);
    margin: 0 0 12px;
}
.sc-card__text {
    font-size: 15px;
    line-height: 1.65;
    color: #555;
    margin: 0;
}
.sc-cards__outro {
    max-width: 900px;
    margin: 40px auto 0;
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    text-align: center;
}
.sc-cards__outro p { margin: 0 0 10px; }
.sc-cards__outro p:last-child { margin-bottom: 0; }

/* ==========================================================================
   SERVICES (image + H3 list)
   ========================================================================== */
.sc-services {
    padding: 90px 0;
    background: #fff;
}
.sc-services--no-image {
    padding: 30px 0 90px;
    background: #fafafa;
}
.sc-services__grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}
.sc-services__grid--no-image {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}
.sc-services__image {
    position: sticky;
    top: 100px;
}
.sc-services__image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    display: block;
}
.sc-services__intro {
    font-size: 17px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 30px;
}
.sc-services__items {
    margin-top: 20px;
}
.sc-service-item {
    padding: 50px 0;
    border-bottom: 1px solid #ececec;
}
.sc-service-item:first-child { padding-top: 20px; }
.sc-service-item:last-child { border-bottom: none; }
.sc-service-item__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.sc-service-item--has-image .sc-service-item__grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 50px;
}
.sc-service-item--has-image:nth-child(even) .sc-service-item__image {
    order: 2;
}
.sc-service-item__image {
    position: relative;
}
.sc-service-item__image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(93, 45, 122, 0.18);
    display: block;
}
.sc-service-item__title {
    font-family: var(--fm-roboto, "Roboto Condensed"), sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary, #b954e5);
    margin: 0 0 18px;
    position: relative;
    padding-left: 22px;
    line-height: 1.2;
}
.sc-service-item__title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 30px;
    background: linear-gradient(180deg, var(--color-primary, #b954e5), var(--color-secondary, #d24991));
    border-radius: 6px;
}
.sc-service-item__text {
    font-size: 16px;
    line-height: 1.85;
    color: #3a3a3a;
}
.sc-service-item__text p { margin: 0 0 14px; }
.sc-service-item__text p:last-child { margin-bottom: 0; }
.sc-service-item__text ul {
    margin: 10px 0 14px;
    padding-left: 22px;
}
.sc-service-item__text ul li {
    margin-bottom: 6px;
    line-height: 1.65;
}

@media (max-width: 860px) {
    .sc-service-item--has-image .sc-service-item__grid {
        grid-template-columns: 1fr;
    }
    .sc-service-item--has-image:nth-child(even) .sc-service-item__image {
        order: 0;
    }
    .sc-service-item__image img {
        height: auto;
        max-height: 320px;
    }
}

/* ==========================================================================
   WHY CHOOSE (3-card benefits)
   ========================================================================== */
.sc-why {
    padding: 0 0 90px;
    background: #fafafa;
}
.sc-why__list {
    max-width: 1000px;
    margin: 30px auto 0;
}
.sc-why__row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 40px;
    align-items: start;
    padding: 36px 0;
    border-bottom: 1px solid #e4dcee;
}
.sc-why__row:first-child { padding-top: 20px; }
.sc-why__row:last-child { border-bottom: none; padding-bottom: 10px; }
.sc-why__number {
    font-family: var(--fm-roboto, "Roboto Condensed"), sans-serif;
    font-size: 88px;
    font-weight: 700;
    line-height: 0.95;
    background: linear-gradient(135deg, var(--color-primary, #b954e5), var(--color-secondary, #d24991));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -3px;
}
.sc-why__body { padding-top: 10px; }
.sc-why__title {
    font-family: var(--fm-roboto, "Roboto Condensed"), sans-serif;
    font-size: 28px;
    color: var(--color-terciary, #5d2d7a);
    margin: 0 0 14px;
    line-height: 1.2;
    font-weight: 700;
}
.sc-why__text {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
}

@media (max-width: 600px) {
    .sc-why__row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 28px 0;
    }
    .sc-why__number { font-size: 56px; }
    .sc-why__title { font-size: 24px; }
    .sc-why__body { padding-top: 0; }
}

/* ==========================================================================
   PROCESS (numbered steps)
   ========================================================================== */
.sc-process {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--color-terciary, #5d2d7a), var(--color-primary, #b954e5));
    color: #fff;
}
.sc-process__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 50px;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}
.sc-process__step {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 34px 24px;
    border-radius: 18px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.12);
    text-align: center;
}
.sc-process__number {
    width: 56px;
    height: 56px;
    background: #fff;
    color: var(--color-primary, #b954e5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fm-roboto, "Roboto Condensed"), sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.sc-process__title {
    font-family: var(--fm-roboto, "Roboto Condensed"), sans-serif;
    font-size: 19px;
    margin: 0 0 10px;
    color: #fff;
}
.sc-process__text {
    font-size: 14px;
    line-height: 1.65;
    opacity: 0.9;
}

/* ==========================================================================
   SERVICE CONTRACTS (B2B dedicated section)
   ========================================================================== */
.sc-contracts {
    padding: 0 0 80px;
    background: #fff;
}
.sc-contracts__card {
    max-width: 1040px;
    margin: 0 auto;
    padding: 56px 60px;
    background: linear-gradient(135deg, rgba(185, 84, 229, 0.06), rgba(210, 73, 145, 0.06));
    border: 1px solid rgba(185, 84, 229, 0.18);
    border-radius: 24px;
    position: relative;
}
.sc-contracts__card::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    bottom: 40px;
    width: 5px;
    background: linear-gradient(180deg, var(--color-primary, #b954e5), var(--color-secondary, #d24991));
    border-radius: 0 4px 4px 0;
}
.sc-contracts__title {
    font-family: var(--fm-roboto, "Roboto Condensed"), sans-serif;
    font-size: clamp(26px, 3.4vw, 36px);
    font-weight: 700;
    color: var(--color-terciary, #5d2d7a);
    margin: 0 0 22px;
    line-height: 1.2;
}
.sc-contracts__body {
    font-size: 16px;
    line-height: 1.85;
    color: #3a3a3a;
}
.sc-contracts__body p { margin: 0 0 16px; }
.sc-contracts__body p:last-child { margin-bottom: 0; }
.sc-contracts__body strong { color: var(--color-terciary, #5d2d7a); }
.sc-contracts__body ul {
    margin: 16px 0;
    padding: 0;
    list-style: none;
}
.sc-contracts__body ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 10px;
}
.sc-contracts__body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--color-primary, #b954e5), var(--color-secondary, #d24991));
    border-radius: 50%;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17Z" fill="%23fff"/></svg>') center / 70% no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17Z" fill="%23fff"/></svg>') center / 70% no-repeat;
    background-color: var(--color-primary, #b954e5);
}
.sc-contracts__body a {
    color: var(--color-primary, #b954e5);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.sc-contracts__body a:hover { color: var(--color-secondary, #d24991); }

@media (max-width: 600px) {
    .sc-contracts { padding: 60px 0; }
    .sc-contracts__card { padding: 36px 26px; }
}

/* ==========================================================================
   SIGNS YOU NEED SERVICE (Sewer and others)
   ========================================================================== */
.sc-signs {
    padding: 90px 0;
    background: #f5f0f9;
}
.sc-signs__intro {
    max-width: 880px;
    margin: 0 auto 40px;
    padding: 24px 30px;
    background: #fff;
    border-left: 5px solid var(--color-primary, #b954e5);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(93, 45, 122, 0.06);
    font-size: 16px;
    line-height: 1.75;
    color: #333;
}
.sc-signs__intro p { margin: 0 0 12px; }
.sc-signs__intro p:last-child { margin-bottom: 0; }
.sc-signs__intro strong { color: var(--color-terciary, #5d2d7a); }
.sc-signs__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
    margin-top: 30px;
}
.sc-sign {
    padding: 28px 28px 28px 82px;
    background: #fff;
    border: 1px solid rgba(185, 84, 229, 0.15);
    border-radius: 16px;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sc-sign:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(93, 45, 122, 0.12);
    border-color: rgba(185, 84, 229, 0.3);
}
.sc-sign::before {
    content: "!";
    position: absolute;
    left: 26px;
    top: 26px;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--color-primary, #b954e5), var(--color-secondary, #d24991));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fm-roboto, "Roboto Condensed"), sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 4px 14px rgba(185, 84, 229, 0.35);
}
.sc-sign__title {
    font-family: var(--fm-roboto, "Roboto Condensed"), sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-terciary, #5d2d7a);
    margin: 0 0 10px;
    line-height: 1.25;
}
.sc-sign__text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 600px) {
    .sc-signs { padding: 60px 0; }
    .sc-signs__intro { padding: 20px 22px; }
    .sc-sign { padding: 26px 22px 26px 74px; }
    .sc-sign::before { left: 22px; top: 24px; width: 34px; height: 34px; font-size: 20px; }
}

/* ==========================================================================
   SERVICE AREAS (Residential and others)
   ========================================================================== */
.sc-areas {
    padding: 90px 0;
    background: #fafafa;
}
.sc-areas__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 40px;
}
.sc-area {
    padding: 32px 28px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #ececec;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}
.sc-area::before {
    content: "";
    position: absolute;
    top: 28px;
    right: 26px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--color-primary, #b954e5), var(--color-secondary, #d24991));
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z"/></svg>') center/contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z"/></svg>') center/contain no-repeat;
    opacity: 0.65;
}
.sc-area:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(93, 45, 122, 0.10);
    border-color: rgba(185, 84, 229, 0.22);
}
.sc-area__title {
    font-family: var(--fm-roboto, "Roboto Condensed"), sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-terciary, #5d2d7a);
    margin: 0 0 12px;
    padding-right: 30px;
    line-height: 1.2;
}
.sc-area__text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}
.sc-areas__outro {
    text-align: center;
    margin-top: 44px;
    font-size: 16px;
    color: #666;
    font-style: italic;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .sc-areas__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .sc-areas__grid { grid-template-columns: 1fr; }
    .sc-areas { padding: 60px 0; }
}

/* ==========================================================================
   INDUSTRIES WE SERVE
   ========================================================================== */
.sc-industries {
    padding: 90px 0;
    background: #fff;
}
.sc-industries__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 40px;
}
.sc-industry {
    padding: 32px 28px;
    border-radius: 16px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sc-industry:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(93, 45, 122, 0.10);
    border-color: rgba(185, 84, 229, 0.22);
}
.sc-industry__title {
    font-family: var(--fm-roboto, "Roboto Condensed"), sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-terciary, #5d2d7a);
    margin: 0 0 12px;
    padding-left: 18px;
    position: relative;
    line-height: 1.2;
}
.sc-industry__title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 6px;
    height: 22px;
    background: linear-gradient(180deg, var(--color-primary, #b954e5), var(--color-secondary, #d24991));
    border-radius: 6px;
}
.sc-industry__text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}
.sc-industries__outro {
    text-align: center;
    margin-top: 44px;
    font-size: 16px;
    color: #666;
    font-style: italic;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .sc-industries__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .sc-industries__grid { grid-template-columns: 1fr; }
    .sc-industries { padding: 60px 0; }
}

/* ==========================================================================
   CALLOUT (prose block — Construction "Why Hard Water" etc.)
   Visual language: clean centered heading + 2-col (stat badge + prose)
   ========================================================================== */
.sc-callout {
    padding: 80px 0;
    background: #fff;
}
.sc-callout__wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}
.sc-callout__title {
    font-family: var(--fm-roboto, "Roboto Condensed"), sans-serif;
    font-size: clamp(26px, 3.4vw, 36px);
    font-weight: 700;
    color: var(--color-terciary, #5d2d7a);
    margin: 0 0 34px;
    line-height: 1.2;
    text-align: center;
}
.sc-callout__title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary, #b954e5), var(--color-secondary, #d24991));
    margin: 16px auto 0;
    border-radius: 3px;
}
.sc-callout__body {
    max-width: 820px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.9;
    color: #3a3a3a;
    column-count: 1;
}
.sc-callout__body p { margin: 0 0 16px; }
.sc-callout__body p:last-child { margin-bottom: 0; }
.sc-callout__body strong {
    color: var(--color-primary, #b954e5);
    font-weight: 700;
}
.sc-callout__body p:first-child::first-letter {
    font-family: var(--fm-roboto, "Roboto Condensed"), sans-serif;
    font-size: 52px;
    font-weight: 700;
    float: left;
    line-height: 0.95;
    padding: 4px 12px 0 0;
    background: linear-gradient(135deg, var(--color-primary, #b954e5), var(--color-secondary, #d24991));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (max-width: 600px) {
    .sc-callout { padding: 60px 0; }
    .sc-callout__body { font-size: 16px; }
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.sc-cta-banner {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--color-terciary, #5d2d7a) 0%, var(--color-primary, #b954e5) 60%, var(--color-secondary, #d24991) 100%);
    color: #fff;
    text-align: center;
}
.sc-cta-banner__title {
    font-family: var(--fm-roboto, "Roboto Condensed"), sans-serif;
    font-size: clamp(26px, 3.5vw, 38px);
    margin: 0 0 18px;
    color: #fff;
}
.sc-cta-banner__desc {
    font-size: 17px;
    max-width: 100%;
    margin: 0 auto 30px;
    opacity: 0.95;
    line-height: 1.7;
    text-align: left;
}
.sc-cta-banner__desc p { margin: 0 0 14px; }
.sc-cta-banner__desc p:last-child { margin-bottom: 22px; text-align: center; }
.sc-cta-banner__desc a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.sc-cta-banner__desc a:hover { opacity: 0.85; }
.sc-cta-banner__desc strong { color: #fff; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.sc-faq {
    padding: 90px 0;
    background: #f5f5f7;
}
.sc-faq__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: flex-start;
}
.sc-faq__accordion {
    margin-top: 30px;
}
.sc-faq__item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease;
}
.sc-faq__item.active {
    box-shadow: 0 10px 30px rgba(185, 84, 229, 0.15);
}
.sc-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-terciary, #5d2d7a);
}
.sc-faq__marker {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary, #b954e5), var(--color-secondary, #d24991));
    flex-shrink: 0;
}
.sc-faq__text { flex: 1; }
.sc-faq__toggle {
    font-size: 26px;
    font-weight: 300;
    color: var(--color-primary, #b954e5);
    width: 28px;
    text-align: center;
    line-height: 1;
}
.sc-faq__answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    transition: max-height 0.35s ease, padding 0.35s ease;
    font-size: 15px;
    line-height: 1.75;
    color: #555;
}
.sc-faq__item.active .sc-faq__answer {
    max-height: 500px;
    padding: 0 22px 22px 48px;
}
.sc-faq__image {
    position: sticky;
    top: 100px;
}
.sc-faq__image img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.sc-contact {
    padding: 90px 0;
    background: #fff;
}
.sc-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    background: linear-gradient(135deg, rgba(185, 84, 229, 0.04), rgba(210, 73, 145, 0.04));
    border-radius: 24px;
    padding: 60px 50px;
    border: 1px solid rgba(185, 84, 229, 0.1);
}
.sc-contact__title {
    font-family: var(--fm-roboto, "Roboto Condensed"), sans-serif;
    font-size: clamp(24px, 3vw, 34px);
    color: var(--color-terciary, #5d2d7a);
    margin: 0 0 18px;
    line-height: 1.2;
}
.sc-contact__text {
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 26px;
}
.sc-contact__text p { margin: 0 0 10px; }
.sc-contact__form form,
.sc-contact__form .wpcf7 {
    display: block;
}
.sc-contact__form p {
    margin: 0 0 16px;
    position: relative;
}
.sc-contact__form label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: var(--color-terciary, #5d2d7a);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sc-contact__form :where(
    input[type="text"], input[type="email"], input[type="tel"],
    input[type="url"], input[type="number"], textarea, select
) {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(93, 45, 122, 0.18);
    border-radius: 12px !important;
    background: #fff;
    font-family: inherit;
    font-size: 15px;
    color: #333;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    line-height: 1.4;
}
.sc-contact__form :where(input:focus, textarea:focus, select:focus) {
    outline: none;
    border-color: var(--color-primary, #b954e5);
    box-shadow: 0 0 0 3px rgba(185, 84, 229, 0.15);
}
.sc-contact__form textarea {
    min-height: 130px;
    resize: vertical;
}
.sc-contact__form input[type="submit"],
.sc-contact__form .wpcf7-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--color-primary, #b954e5), var(--color-secondary, #d24991)) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    font-family: inherit;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 8px;
}
.sc-contact__form input[type="submit"]:hover,
.sc-contact__form .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(185, 84, 229, 0.35);
}
.sc-contact__form .wpcf7-not-valid-tip {
    color: #d24949;
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
}
.sc-contact__form .wpcf7-response-output {
    padding: 14px 18px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 14px;
    border: 1px solid rgba(93, 45, 122, 0.2) !important;
}
.sc-contact__form .wpcf7-list-item { margin: 0 14px 0 0; }
.sc-contact__form ::placeholder { color: #999; opacity: 1; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
    .sc-hero { padding: 60px 0 80px; }
    .sc-hero__grid,
    .sc-services__grid,
    .sc-faq__grid,
    .sc-contact__grid {
        grid-template-columns: 1fr;
    }
    .sc-services__image,
    .sc-faq__image {
        position: static;
        max-width: 480px;
    }
    .sc-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sc-process__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sc-contact__grid {
        padding: 40px 30px;
    }
}

@media (max-width: 600px) {
    .sc-hero { padding: 50px 0 70px; }
    .sc-cards,
    .sc-services,
    .sc-why,
    .sc-process,
    .sc-faq,
    .sc-contact {
        padding: 60px 0;
    }
    .sc-cards__grid,
    .sc-process__grid {
        grid-template-columns: 1fr;
    }
    .sc-hero__ctas,
    .sc-hero__badges {
        justify-content: flex-start;
    }
    .sc-contact__grid {
        padding: 30px 20px;
    }
    .sc-faq__item.active .sc-faq__answer {
        padding: 0 22px 22px 22px;
    }
    .sc-hero__title {
        font-size: 34px;
    }
    .sc-services__image {
        max-width: 100%;
    }
}
