@font-face {
    font-family: 'ArialRounded';
    src: url('../fonts/arialroundedmtbold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BorisBlackBloxx';
    src: url('../fonts/BorisBlackBloxx.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    overflow-x: hidden;
    background-color: var(--ink-900);
    /* The top bar is now sticky (procom-site.css .pc-header) and so occupies
       flow; the old fixed-navbar offset would show as a gap above it. */
}



.container_servise {
    max-width: 1200px;
    margin: 70px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 30px;
    align-items: start;
}

.hero-box {
    color: white;
    padding: 10px 0px;
    border-radius: 24px;
}

@keyframes float {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(-20px) translateY(-20px);
    }
}

.procom-contact-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.procom-contact-container {
    background: linear-gradient(135deg, rgba(224,91,15,0.35) 0%, rgba(224,91,15,0.50) 25%, rgba(224,91,15,0.56) 50%, rgba(224,91,15,0.58) 75%, rgba(224,91,15,0.34) 100%);
    box-shadow: 0 25px 50px rgba(224, 91, 15, 0.3);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    max-width: 1200px;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    position: relative;
    border-radius: 24px;
}

.procom-contact-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}

.procom-left-section {
    padding: 40px;
    color: #ffffff;
}

.procom-logo {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #808080;
}

.procom-title2 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.1;
}

.procom-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    line-height: 1.4;
}

.procom-contact-info {
    margin-top: auto;
}

.procom-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.procom-contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(224, 91, 15, 0.2);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.procom-contact-icon svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.procom-contact-details {
    color: #ffffff;
}

.procom-contact-label {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 2px;
}

.procom-contact-value {
    font-size: 14px;
    opacity: 0.8;
}

.procom-right-section {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.procom-form-header {
    margin-bottom: 30px;
}

.procom-form-title {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.procom-form-group {
    margin-bottom: 20px;
}

.procom-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.procom-form-label {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
    display: block;
}

.procom-form-input,
.procom-form-select,
.procom-form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #444;
    border-radius: 50px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background-color: #333;
    color: #ffffff;
}

.procom-form-input::placeholder,
.procom-form-textarea::placeholder {
    color: #808080;
}

.procom-form-textarea {
    border-radius: 24px;
}

.procom-form-input:focus,
.procom-form-select:focus,
.procom-form-textarea:focus {
    outline: none;
    border-color: var(--procom-orange);
    background-color: #2d2d2d;
}

.procom-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23808080' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.procom-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, var(--procom-orange), var(--orange-600));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 10px;
}

.procom-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(224, 91, 15, 0.3);
}

.procom-submit-btn:active {
    transform: translateY(0);
}


/* Features grid section */

.procom_cctv {
    text-align: center;
    padding-bottom: 30px;
}

.procom_cctv h1 {
    font-family: 'BorisBlackBloxx', sans-serif;
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 40px;
    letter-spacing: -3px;
    color: #ffffff;
}

.procom_cctv h1 span {
    background: linear-gradient(90deg, var(--procom-orange), var(--orange-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'BorisBlackBloxx', sans-serif;
    letter-spacing: 3px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    width: 1200px;
}

.badge {
    width: 50px;
    height: 40px;
    background: linear-gradient(to bottom right, var(--procom-orange), var(--orange-600));
    position: relative;
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.badge-text {
    font-size: 25px;
    letter-spacing: -2px;
}

.cta-button {
    background: linear-gradient(90deg, var(--procom-orange), var(--orange-600));
    color: white;
    padding: 17px 70px;
    font-size: 15px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 400;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: var(--procom-orange);
}

.upper-features {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive — tablet (≤900px) */
@media (max-width: 900px) {
    .cctv-partners-grid {
        grid-template-columns: 1fr;
    }

    .cctv-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive — mobile (≤600px) */
@media (max-width: 600px) {
    .cctv-info-section {
        padding: 32px 16px 48px;
    }

    .cctv-why-hero {
        margin-bottom: 40px;
    }

    .cctv-partners-grid {
        gap: 16px;
        margin-bottom: 40px;
    }

    .cctv-section-label {
        margin-bottom: 20px;
    }

    /* Keep 2 columns on mobile — do not collapse to 1 */
    .cctv-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 32px;
    }

    .cctv-sla-banner {
        padding: 1.25rem;
    }

    .cctv-sla-title {
        font-size: 22px;
    }

    .cctv-sla-list {
        gap: 8px;
    }

    .cctv-sla-list li {
        font-size: 12px;
        padding: 6px 12px;
    }

    .cctv-cta-wrap {
        padding: 0 0 16px;
    }
}


/* Industries we Empower */

.industries_container {
    text-align: center;
    padding-bottom: 40px;
}

.industries_container h1 {
    font-size: 50px;
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 40px;
    color: #ffffff;
}

.industries_container h1 span {
    background: linear-gradient(90deg, var(--procom-orange), var(--orange-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.industries {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.industry {
    width: 150px;
    text-align: center;
}

.industry img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.industry p {
    font-size: 14px;
    font-weight: 900;
    line-height: 15px;
    letter-spacing: -1px;
    color: #808080;
}


/* Secure your world */

.secure-container {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px auto;
}

.secure-card {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.secure-btn {
    text-align: center;
    background: var(--procom-orange);
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 16px;
    transition: background 0.3s ease;
    display: block;
    margin-left: auto;
    width: 50%;
    margin-right: auto;
    margin-bottom: 5px;
}

.secure-btn:hover {
    background: var(--orange-600);
    color: #fff;
}

.secure-text-container {
    text-align: end;
}

.secure-text {
    font-family: 'BorisBlackBloxx', sans-serif;
    font-size: 90px;
    font-weight: 900;
    margin: 0;
    line-height: 1.2;
    color: #ffffff;
}

.secure-right-text .orange {
    background: linear-gradient(90deg, var(--procom-orange), var(--orange-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.free-rental-container {
    padding: 30px;
    text-align: center;
    gap: 20px;
}

.free-rental-container h2 {
    font-family: 'BorisBlackBloxx', sans-serif;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
}

.highlight-orange {
    background: linear-gradient(90deg, var(--procom-orange), var(--orange-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: BorisBlackBloxx, sans-serif;
    letter-spacing: 1px;
}

.highlight-orange-black {
    font-family: BorisBlackBloxx, sans-serif;
    letter-spacing: 1px;
    color: #ffffff;
}

.offer-box {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 100px;
    margin: auto;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 24px;
    max-width: 1200px;
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
    background: #2d2d2d;
    border: 1px solid #3a3a3a;
}

.offer-image img {
    width: 220px;
    border-radius: 24px;
}

.offer-details {
    text-align: left;
}

.offer-details h2 {
    font-family: 'BorisBlackBloxx', sans-serif;
    font-size: 40px;
    margin-bottom: -16px;
    margin-top: 0;
    text-align: left;
    color: #ffffff;
}

.free-monthly {
    font-family: 'BorisBlackBloxx', sans-serif;
    font-size: 20px;
    font-weight: 900;
    margin: 15px 0;
    line-height: 23px;
    color: #ffffff;
}

.offer-list {
    list-style: disc;
    padding-left: 20px;
    font-size: 15px;
    color: #808080;
    margin-bottom: 10px;
}

.free-text {
    font-family: 'BorisBlackBloxx', sans-serif;
    letter-spacing: 2px;
    color: #ffffff;
}


/* Tablet Responsive */
@media (max-width: 968px) {
    .procom-contact-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .procom-left-section {
        padding: 30px;
        text-align: center;
    }

    .procom-title {
        font-size: 36px;
    }

    .procom-contact-info {
        margin-top: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 15px;
    }

    .procom-contact-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 0;
    }

    .procom-contact-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .procom-right-section {
        padding: 30px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .procom-contact-wrapper {
        padding: 10px;
    }

    .procom-contact-container {
        max-width: 100%;
        border-radius: 24px;
    }

    .procom-left-section {
        padding: 25px 20px;
    }

    .procom-title {
        font-size: 28px;
    }

    .procom-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .procom-contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .procom-contact-item {
        flex-direction: row;
        text-align: left;
    }

    .procom-contact-icon {
        margin-right: 15px;
        margin-bottom: 0;
    }

    .procom-right-section {
        padding: 25px 20px;
    }

    .procom-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .procom-form-group {
        margin-bottom: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .procom-left-section,
    .procom-right-section {
        padding: 20px 15px;
    }

    .procom-title {
        font-size: 24px;
    }

    .procom-contact-details {
        font-size: 12px;
    }

    .procom-contact-label {
        font-size: 14px;
    }

    .procom-contact-value {
        font-size: 12px;
    }

    .offer-box {
        display: block;
    }

    .highlight-orange {
        font-size: 26px;
    }

    .offer-image img {
        width: 266px;
    }

    .secure-text {
        text-align: center;
        margin: 22px;
    }

    .procom_cctv h1 {
        font-size: 32px;
        letter-spacing: 2px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container_servise {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
        gap: 20px;
    }

    body {
        padding: 15px;
    }

    .hero-title,
    .procom-text_service {
        font-size: 2.5em;
    }

    .feature-box,
    .hero-box {
        padding: 25px;
    }

    .feature-title {
        font-size: 1.5em;
    }
}
@media (max-width: 480px) {
}



/* Tablet specific adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .container_servise {
        gap: 25px;
    }

    .hero-title,
    .procom-text_service {
        font-size: 3em;
    }

    .feature-box,
    .hero-box {
        padding: 35px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container_servise {
        grid-template-columns: 1fr;
        gap: 15px;
        grid-template-areas:
            "hero"
            "dahua1"
            "maintenance"
            "hikvision"
            "superhero";
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .card {
        padding: 20px;
    }
}
@media (max-width: 480px) {
body {
        padding: 10px;
    }

    .card {
        padding: 15px;
    }

    .feature-item {
        font-size: 0.9rem;
    }
}



/* Hover animations */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(224, 91, 15, 0.15);
    transition: all 0.3s ease;
}

.hero-card:hover {
    transform: none;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.6s ease forwards;
}

.card:nth-child(2) {
    animation-delay: 0.1s;
}

.card:nth-child(3) {
    animation-delay: 0.2s;
}

.card:nth-child(4) {
    animation-delay: 0.3s;
}

.card:nth-child(5) {
    animation-delay: 0.4s;
}



/* ============================================================
   SERVICE PAGES — restyled to the homepage design language.
   Mirrors procom-site.css (.pc-hero / .pc-services / .pc-card)
   using this site's existing service-page markup. Buttons and
   icon coins reuse .pc-btn / .pc-coin — no parallel styles here.
   ============================================================ */

/* ---------- Hero — light, type-led, no imagery ---------- */
.cctv-card {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: var(--space-6);
    align-items: start;
    background: var(--bg-page);
    padding: var(--space-8) max(48px, calc((100% - 1200px) / 2));
    font-family: var(--font-sans);
}

.cctv-content {
    max-width: 720px;
    min-width: 0;
}

.svc-hero__eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-weight: var(--fw-bold);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--procom-orange);
    margin: 0 0 var(--space-4);
}

.svc-hero__title {
    font-family: var(--font-heading);
    font-weight: var(--fw-regular);
    font-size: 64px;
    line-height: 0.96;
    letter-spacing: var(--ls-tight);
    text-transform: uppercase;
    color: var(--text-strong);
    margin: 0;
    /* Boris is very wide; long service names must not overrun on mobile. */
    overflow-wrap: break-word;
}

.cctv-why-headline { overflow-wrap: break-word; }

.svc-hero__rule {
    display: block;
    width: 44px;
    height: 3px;
    background: var(--procom-orange);
    border-radius: var(--radius-pill);
    margin: var(--space-5) 0;
}

.svc-hero__lede {
    font-family: var(--font-sans);
    font-weight: var(--fw-regular);
    font-size: var(--fs-lg);
    line-height: var(--lh-relaxed);
    /* The brief asked for --text-secondary, which the token file does not
       define; --text-body is the readable body colour on a light surface. */
    color: var(--text-body);
    max-width: 44ch;
    margin: 0 0 var(--space-6);
}

.cctv-content strong { color: var(--text-strong); font-weight: var(--fw-bold); }

.cctv-header-buttons {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

/* ---------- "At a glance" spec panel ---------- */
.svc-glance {
    background: var(--white);
    border: 1px solid var(--border-hairline);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    min-width: 0;
}

.svc-glance__label {
    display: block;
    font-family: var(--font-sans);
    font-weight: var(--fw-bold);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 var(--space-4);
}

.svc-glance__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.svc-glance__row {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}

.svc-glance__icon {
    flex: none;
    display: inline-flex;
    line-height: 0;
    margin-top: 1px;
    color: var(--procom-orange);
}

.svc-glance__text { min-width: 0; }

.svc-glance__title {
    display: block;
    font-family: var(--font-sans);
    font-weight: var(--fw-bold);
    font-size: 13px;
    line-height: 1.3;
    color: var(--text-strong);
}

.svc-glance__sub {
    display: block;
    font-family: var(--font-sans);
    font-weight: var(--fw-regular);
    font-size: 11px;
    line-height: 1.45;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Lede remainder, relocated verbatim out of the hero. */
.svc-intro {
    font-family: var(--font-sans);
    font-weight: var(--fw-regular);
    font-size: var(--fs-lg);
    line-height: var(--lh-relaxed);
    color: var(--text-body);
    max-width: 68ch;
    margin: 0 auto var(--space-8);
    text-align: center;
}

/* ---------- Solution-builder wizards (shared) ----------
   Each wizard keeps its own class prefix so its JS selectors stay intact;
   only presentation changes. Icons come from x-spec-icon via <use>. */
.sb-ico {
    display: block;
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ---------- Technology partners strip ---------- */
.svc-partners {
    background: var(--white);
    border-top: 1px solid var(--border-hairline);
    padding: var(--space-6) max(48px, calc((100% - 1200px) / 2));
}

.svc-partners__inner {
    display: flex;
    align-items: center;
    gap: var(--space-4) var(--space-7);
    flex-wrap: wrap;
}

.svc-partners__label {
    font-family: var(--font-sans);
    font-weight: var(--fw-bold);
    font-size: var(--fs-xs);
    letter-spacing: var(--ls-label);
    text-transform: uppercase;
    color: var(--text-muted);
}

.svc-partners__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3) var(--space-7);
}

.svc-partners__list li {
    font-family: var(--font-sans);
    font-weight: var(--fw-heavy);
    font-size: var(--fs-lg);
    color: var(--text-strong);
}

/* ---------- Light content section (.cctv-info-section) ---------- */
.cctv-info-section {
    background: var(--bg-page);
    padding: 90px max(48px, calc((100% - 1200px) / 2));
    font-family: var(--font-sans);
}

/* Intro block */
.cctv-why-hero {
    text-align: center;
    margin-bottom: 76px;
}

.cctv-why-headline {
    font-family: var(--font-heading);
    font-weight: var(--fw-regular);
    font-size: 48px;
    line-height: 1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--text-strong);
    display: block;
}

.cctv-why-hero .hero-title          { color: var(--text-strong); }
.cctv-why-hero .procom-text_service { color: var(--procom-orange); }

.subtitle_service {
    font-size: var(--fs-lg);
    font-weight: var(--fw-regular);
    color: var(--text-muted);
    margin: 14px 0 28px;
}

/* Section headings */
.cctv-section-label { margin-bottom: 32px; }

.cctv-section-label h2 {
    font-family: var(--font-heading);
    font-weight: var(--fw-regular);
    font-size: 40px;
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--text-strong);
    margin: 0;
}

/* Shared white card treatment — matches .pc-card on the homepage. */
.feature-box,
.cctv-features-grid .feature {
    background: var(--white);
    border: 1px solid var(--border-hairline);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    box-shadow: var(--shadow-xs);
    transform: translateY(0);
    transition: border-color var(--dur-base) var(--ease-out),
                box-shadow var(--dur-base) var(--ease-out),
                transform var(--dur-base) var(--ease-out);
}

.feature-box:hover,
.cctv-features-grid .feature:hover {
    border-color: var(--procom-orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* Partner cards */
.cctv-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
    margin-bottom: 76px;
}

.feature-title {
    font-family: var(--font-sans);
    font-weight: var(--fw-heavy);
    font-size: 20px;
    color: var(--text-strong);
    margin: 0 0 10px;
}

.feature-description {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0 0 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.feature-list li {
    position: relative;
    padding-left: 26px;
    font-size: 15px;
    line-height: 1.45;
    color: var(--text-body);
}

/* Circular bullet — the brand's coin motif, never an angular tick. */
.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 9px;
    height: 9px;
    border-radius: var(--radius-circle);
    background: var(--procom-orange);
}

/* Numbered advantage grid */
.cctv-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
    margin-bottom: 76px;
}

/* .cctv-feat-num also carries .pc-coin .pc-coin--52 in the markup. */
.cctv-feat-num span:first-child {
    font-size: 24px;              /* round(52 * 0.46), per IconCoin.jsx */
    line-height: 1;
    font-weight: var(--fw-heavy);
    color: var(--white);
}

.cctv-features-grid .feature h2 {
    font-family: var(--font-sans);
    font-weight: var(--fw-heavy);
    font-size: 20px;
    color: var(--text-strong);
    margin: 20px 0 8px;
}

.cctv-features-grid .feature p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

/* ---------- Maintenance SLA — rounded orange panel ---------- */
.cctv-sla-banner {
    position: relative;
    overflow: hidden;
    background: var(--procom-orange);
    border-radius: var(--radius-xl);
    padding: 52px 48px;
}

.cctv-sla-banner::after {
    content: '';
    position: absolute;
    top: -34%;
    right: -6%;
    width: 420px;
    height: 420px;
    border-radius: var(--radius-circle);
    background: rgba(255,255,255,.10);
    pointer-events: none;
}

.cctv-sla-title,
.cctv-sla-desc,
.cctv-sla-list { position: relative; z-index: 1; }

.cctv-sla-title {
    font-family: var(--font-heading);
    font-weight: var(--fw-regular);
    font-size: 40px;
    line-height: 1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 14px;
}

.cctv-sla-desc {
    font-weight: var(--fw-medium);
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255,255,255,.92);
    margin: 0 0 26px;
    max-width: 640px;
}

.cctv-sla-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px 28px;
}

.cctv-sla-list li {
    position: relative;
    padding-left: 26px;
    font-size: 15px;
    font-weight: var(--fw-medium);
    color: var(--white);
}

.cctv-sla-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 9px;
    height: 9px;
    border-radius: var(--radius-circle);
    background: var(--white);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .cctv-card { padding: var(--space-8) 24px; }
    .svc-partners { padding: var(--space-5) 24px; }
    .svc-hero__title { font-size: 48px; }
    .cctv-info-section { padding: 72px 24px; }
    .svc-intro { margin-bottom: var(--space-7); }
    .cctv-why-headline { font-size: 38px; }
    .cctv-section-label h2 { font-size: 32px; }
    .cctv-sla-banner { padding: 44px 32px; }
    .cctv-sla-title { font-size: 32px; }
}

/* Panel drops below the copy — it is already last in the DOM. */
@media (max-width: 900px) {
    .cctv-card {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--space-6);
        padding: var(--space-7) 24px;
    }
    .svc-glance { max-width: 520px; }
}

@media (max-width: 720px) {
    .cctv-card { padding: var(--space-7) 20px; }
    .svc-partners { padding: var(--space-5) 20px; }
    .svc-hero__title { font-size: 38px; }
    .svc-hero__lede { font-size: var(--fs-body); }
    /* Split the row only when there is a pair; a lone button keeps its own width. */
    .cctv-header-buttons .pc-btn:not(:only-child) { flex: 1 1 auto; }
    .cctv-info-section { padding: 60px 20px; }
    .cctv-why-headline { font-size: 30px; }
    .cctv-partners-grid,
    .cctv-features-grid { grid-template-columns: 1fr; gap: 16px; }
    .cctv-sla-banner { padding: 36px 24px; border-radius: var(--radius-lg); }
    .cctv-sla-title { font-size: 26px; }
    .cctv-sla-desc { font-size: 16px; }
}

@media (max-width: 420px) {
    .cctv-card { padding: var(--space-7) 16px; }
    .svc-glance { padding: var(--space-4); }
    .svc-partners { padding: var(--space-5) 16px; }
    .svc-hero__title { font-size: 30px; }
    .cctv-info-section { padding: 52px 16px; }
    .cctv-why-headline { font-size: 21px; }
    .cctv-section-label h2 { font-size: 24px; }
    .feature-box,
    .cctv-features-grid .feature { padding: 24px 20px; }
    .cctv-sla-banner { padding: 30px 20px; }
}
