body {
           
            font-family: Arial, sans-serif;
            
        }
        .custom-navbar {
            background: #fff;
            border-radius: 20px;
            margin: 24px auto 0 auto;
            max-width: 90vw;
            box-shadow: 0 4px 24px rgba(0,0,0,0.08);
            padding: 0.5rem 2rem;
        }
        .custom-navbar .navbar-brand img {
            height: 48px;
            right: 12px;
        }
        .custom-navbar .nav-link {
            color: #111 !important;
            font-family: Arial, sans-serif;
            font-weight: 600;
            font-size: 1.08rem;
            margin-right: 1.5rem;
            letter-spacing: 0.01em;
            text-transform: none;
            transition: color 0.2s, transform 0.2s;
        }
        .custom-navbar .nav-link.active, .custom-navbar .nav-link:focus, .custom-navbar .nav-link:hover, .nav-item .nav-link.active {
            color: #6c2eb9 !important;
        }

        .custom-navbar .navbar-nav,
        .custom-navbar .navbar-nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .custom-navbar .navbar-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            align-items: center;
        }

        .custom-navbar .navbar-nav .nav-item {
            position: relative;
        }
        .custom-navbar .nav-item-cta .nav-cta-link {
            background: linear-gradient(135deg, #f28c38 0%, #db6b1d 100%);
            color: #ffffff !important;
            box-shadow: 0 10px 22px rgba(219, 107, 29, 0.28);
        }

        .custom-navbar .nav-item-cta .nav-cta-link:hover,
        .custom-navbar .nav-item-cta .nav-cta-link:focus,
        .custom-navbar .nav-item-cta .nav-cta-link.active {
            background: #ffffff;
            color: linear-gradient(135deg, #f28c38 0%, #db6b1d 100%);
        }

        .custom-navbar .navbar-nav > li > a {
            padding: 0.75rem 1rem;
            border-radius: 999px;
            transition: transform 0.2s ease, background 0.25s ease, color 0.25s ease;
        }

        .custom-navbar .navbar-nav > li > a:hover,
        .custom-navbar .navbar-nav > li > a.active {
            background: rgba(108, 46, 185, 0.08);
            color: #6c2eb9 !important;
            transform: translateY(-1px);
        }

        .custom-navbar .navbar-nav li.submenu > a::after {
            content: '\25BC';
            display: inline-block;
            margin-left: 0.35rem;
            font-size: 0.65rem;
            transform: translateY(1px);
        }

        .custom-navbar .navbar-nav li ul {
            opacity: 0;
            visibility: hidden;
            position: absolute;
            top: calc(100% + 10px);
            left: 0;
            background: linear-gradient(180deg, #ffffff 0%, #f8f3ff 100%);
            border: 1px solid rgba(108, 46, 185, 0.14);
            border-radius: 18px;
            box-shadow: 0 22px 48px rgba(42, 18, 81, 0.16);
            padding: 0.5rem 0;
            min-width: 280px;
            z-index: 1000;
            transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
            transform: translateY(12px);
        }

        .custom-navbar .navbar-nav li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .custom-navbar .navbar-nav li ul li {
            width: 100%;
        }

        .custom-navbar .navbar-nav li ul li .nav-link {
            display: block;
            padding: 0.75rem 1.2rem;
            margin: 0;
            font-weight: 600;
            color: #39234a !important;
            transition: background 0.2s ease, color 0.2s ease;
            white-space: nowrap;
        }

        .custom-navbar .navbar-nav li ul li + li {
            margin-top: 0.15rem;
        }

        .custom-navbar .navbar-nav li ul li .nav-link:hover {
            background: rgba(108, 46, 185, 0.12);
            color: #6c2eb9 !important;
        }

        .custom-navbar .navbar-nav li ul li .nav-link.active {
            background: rgba(108, 46, 185, 0.12);
            color: #6c2eb9 !important;
        }

        .custom-navbar .navbar-nav li ul li ul {
            top: 0;
            left: 100%;
            margin-left: 10px;
            min-width: 260px;
        }

        .custom-navbar .navbar-toggler {
            border-color: rgba(108, 46, 185, 0.25);
            border-width: 1.5px;
        }

        .custom-navbar .navbar-toggler-icon {
            filter: invert(12%) sepia(22%) saturate(1665%) hue-rotate(221deg) brightness(92%) contrast(85%);
        }

        @media (max-width: 992px) {
            .custom-navbar {
                padding: 0.6rem 1rem;
            }
            .custom-navbar .navbar-collapse {
                width: 100%;
            }
            .custom-navbar .navbar-nav {
                flex-direction: column;
                align-items: stretch;
                width: 100%;
            }
            .custom-navbar .navbar-nav > li {
                width: 100%;
            }
            .custom-navbar .navbar-nav > li > a {
                width: 100%;
                padding: 0.85rem 1rem;
            }
            .custom-navbar .navbar-nav li ul {
                position: static;
                box-shadow: none;
                background: transparent;
                min-width: auto;
                padding: 0;
                display: none;
                opacity: 1;
                visibility: visible;
                transform: none;
            }
            .custom-navbar .navbar-nav li.submenu.submenu-open > ul {
                display: block;
            }
            .custom-navbar .navbar-nav li.submenu > a::after {
                transform: rotate(0deg);
            }
            .custom-navbar .navbar-nav li.submenu.submenu-open > a::after {
                transform: rotate(180deg);
            }
            .custom-navbar .navbar-nav li ul li .nav-link {
                padding-left: 1.8rem;
            }
            .custom-navbar .navbar-nav li ul li ul li .nav-link {
                padding-left: 3rem;
            }
        }

        body {
  cursor: auto;
}

.cursor,
.cursor-dot {
  display: none !important;
}


       



        .fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.performance-card:hover,
.client-logo-card:hover,
.achievement-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px rgba(108,46,185,0.18);
}


        .main-hero {
            background: #fff;
            border-radius: 24px;
            box-shadow: 0 6px 32px rgba(0,0,0,0.10);
            margin: 32px auto 0 auto;
            max-width: 90vw;
            padding: 0 40px; /* Add horizontal padding for balance */
            overflow: hidden;
            min-height: 620px;
            display: flex;
            align-items: center;
            position: relative;
            gap: 14px;
            justify-content: space-between; /* Ensures left and right are at edges */
        }
        .hero-left {
            flex: 1 1 0;
            padding: 50px 42px 0 42px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .hero-actions {
            display: flex;
            flex-wrap: nowrap;
            align-items: center;
            gap: 14px;
            margin-top: 1px;
        }
        .hero-title {
            font-size: 2.9rem;
            font-weight: 700;
            margin-bottom: 18px;
            color: #111;
            line-height: 1.25;
        }
        .hero-desc {
            font-size: 1.1rem;
            color: #222;
            margin-bottom: 28px;
        }
        .btn-contact,
        .btn-services {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            max-width: 420px;
            padding: 14px 28px;
            border-radius: 999px;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.01em;
            text-decoration: none;
            border: 1px solid transparent;
            transition: transform 0.22s ease, box-shadow 0.22s ease, 
            background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
        }
        .btn-contact:hover,
        .btn-services:hover {
            transform: translateY(-2px);
        }
        .btn-contact {
            background: linear-gradient(135deg, #f28c38 0%, #db6b1d 100%);
            color: #fff;
            box-shadow: 0 14px 26px rgba(219, 107, 29, 0.22);
        }
        .btn-contact:hover {
            background: linear-gradient(135deg, #6c2eb9 0%, #4e2194 100%);
            color: #fff;
            box-shadow: 0 16px 30px rgba(108, 46, 185, 0.24);
        }
        .btn-services {
            background: rgba(255, 255, 255, 0.92);
            color: #4f248f;
            border-color: rgba(108, 46, 185, 0.18);
            box-shadow: 0 14px 26px rgba(65, 37, 104, 0.1);
        }
        .btn-services:hover {
            background: #f4ecff;
            color: #3f1d73;
            border-color: rgba(108, 46, 185, 0.28);
            box-shadow: 0 16px 30px rgba(65, 37, 104, 0.14);
        }
        .hero-right {
            flex: 1 1 0;
            display: flex;
            align-items: center;
            justify-content: flex-end; /* Push image to the far right */
            padding: 12px 0 12px 18px;
        }
        .hero-img {
            width: 100%;
            max-width: 590px;
            height: 400px;
            object-fit: cover;
            border-radius: 21px;
            box-shadow: 0 4px 24px rgba(108,46,185,0.10);
            background: #eee;
            margin: 12px;

        }
        .hero-bottom-img {
            position: absolute;
            left: 48px;
            bottom: -60px;
            width: 120px;
            z-index: 2;
        }
        @media (max-width: 1200px) {
            .main-hero {
                flex-direction: column;
                min-height: unset;
            }
            .hero-left, .hero-right {
                padding: 32px 24px 0 24px;
            }
            .hero-right {
                padding: 24px;
                justify-content: flex-start;
            }
        }
        @media (max-width: 768px) {
            .custom-navbar {
                padding: 0.5rem 1rem;
            }
            .main-hero {
                border-radius: 12px;
                margin: 16px auto 0 auto;
            }
            .hero-left, .hero-right {
                padding: 18px 8px 0 8px;
            }
            .hero-actions {
                flex-wrap: wrap;
            }
            .hero-title {
                font-size: 1.5rem;
            }
            .hero-img {
                max-width: 100%;
                height: 220px;
            }
            .hero-bottom-img {
                left: 8px;
                width: 70px;
                bottom: -30px;
            }
        }

        /* Additional responsive styles for index.html */
        @media (max-width: 992px) {
            .about-uniqo-wrapper {
                flex-direction: column;
                align-items: center;
                padding: 24px 8px;
                gap: 18px;
            }
            .about-text-col {
                margin-left: 0 !important;
                margin-top: 24px !important;
                text-align: center;
            }
            .about-img-col {
                margin-bottom: 0;
            }
            .performance-card-lg {
                min-height: 220px;
            }
            .performance-card {
                min-height: 140px;
            }
            .performance-card-bottom {
                font-size: 1.3rem;
                padding: 0.8rem 1rem;
                min-height: 50px;
            }
            .performance-card-top {
                font-size: 1.1rem;
                padding: 0.8rem 1rem 0.3rem 1rem;
            }
            .clients-title {
                font-size: 1.5rem;
                margin-bottom: 1.2rem;
            }
            .client-logo-card {
                width: 90px;
                height: 90px;
            }
            .client-logo-card img {
                max-height: 80px;
            }
        }
        @media (max-width: 576px) {
            .about-uniqo-wrapper {
                padding: 14px 2vw;
                border-radius: 14px;
                gap: 10px;
            }
            .about-person-img {
                max-width: 100%;
                max-height: 400px;
            }
            .about-text-col {
                font-size: 0.98rem;
                padding: 0 2vw;
                top: 10px;
            }
            .performance-title {
                margin-bottom: 1.2rem;
            }
            .performance-card-lg {
                min-height: 150px;
            }
            .performance-card {
                min-height: 140px;
            }
            .performance-card-bottom {
                font-size: 1rem;
                padding: 0.6rem 0.7rem;
                min-height: 36px;
            }
            .performance-card-top {
                font-size: 0.98rem;
                padding: 0.6rem 0.7rem 0.2rem 0.7rem;
            }
            .clients-wrapper {
                padding: 18px 2vw 18px 2vw;
                border-radius: 10px;
            }
            .client-logo-card {
                width: 60px;
                height: 60px;
                border-radius: 8px;
            }
            .client-logo-card img {
                max-height: 50px;
            }
        }

    .about-uniqo-section {
    background: none;
    margin-bottom: 32px;
}
.about-uniqo-wrapper {
    background: #6c2eb9;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(108,46,185,0.10);
    max-width: 90vw;
    width: 100%;
    padding: 32px 32px 32px 32px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.about-img-col {
    min-width: 520px;
    max-height: 620px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-person-img {
    max-width: 820px;
    height: 730px;
    display: block;
    z-index: 1;
    position: relative;
    right: 30px;
    bottom: 50px;

}
.about-text-col {
    color: #fff;
    font-size: 1.03rem;
    max-width: 940px;
}
.about-desc {
    line-height: 1.6;
    font-size: 1.03rem;
    font-weight: 700;
}
.about-thankyou {
    font-weight: 600;
    color: #fff;
    font-size: 1.2rem;
}
.btn-readmore {
    background: #f47c3c;
   display: inline-flex;
            align-items: center;
            justify-content: center;
            max-width: 420px;
            padding: 14px 28px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.01em;
            text-decoration: none;
            border: 1px solid transparent;
            transition: transform 0.22s ease, box-shadow 0.22s ease, 
            background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.btn-readmore:hover {
    background: #fff;
    color: #f47c3c;
}

.about-us-section {
    background: none;
    margin: 22px auto;
    max-width: 90vw;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0 2rem;
    height: auto;
    bottom: 80px;

}

.why-uniqo-section {
    background: none;
    margin-bottom: 28px;
}

.why-uniqo-shell {
    width: 100%;
    max-width: 90vw;
    display: grid;
    gap: 24px;
}

.why-uniqo-header {
    max-width: 760px;
    margin: 0 auto;
}

.why-uniqo-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(108, 46, 185, 0.1);
    color: #6c2eb9;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.why-uniqo-header h2,
.industries-band-copy h3 {
    margin: 14px 0 10px;
    color: #39234a;
    font-family: "Sora", sans-serif;
}

.why-uniqo-header h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.why-uniqo-header p {
    margin: 0;
    color: #000000;
    font-size: 0.98rem;
    line-height: 1.8;
}

.why-uniqo-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}

.why-uniqo-card {
    grid-column: span 3;
    min-height: 220px;
    padding: 24px 20px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #ece8f6;
    box-shadow: 0 16px 34px rgba(56, 34, 91, 0.08);
}

.why-uniqo-card-feature {
    background: linear-gradient(180deg, #ffffff 0%, #f7f4ff 100%);
}

.why-uniqo-card-accent {
    background: linear-gradient(135deg, #6528b8 0%, #7a39d0 100%);
    border: none;
}

.why-uniqo-card h3 {
    margin: 16px 0 10px;
    color: #39234a;
    font-size: 1.05rem;
    font-weight: 700;
}

.why-uniqo-card p {
    margin: 0;
    color: #000000;
    font-size: 0.86rem;
    line-height: 1.75;
}

.why-uniqo-card-accent h3,
.why-uniqo-card-accent p {
    color: #ffffff;
}

.why-uniqo-card-accent p {
    color: rgba(255, 255, 255, 0.82);
}

.why-uniqo-icon {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(108, 46, 185, 0.1);
    color: #6c2eb9;
    font-size: 1rem;
}

.why-uniqo-icon-light {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.industries-band {
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.4fr);
    gap: 22px;
    align-items: center;
    padding: 26px 28px;
    border-radius: 22px;
    background: linear-gradient(135deg, #f8f4ff 0%, #ffffff 100%);
    border: 1px solid #ece8f6;
    box-shadow: 0 16px 34px rgba(56, 34, 91, 0.08);
}

.industries-band-copy h3 {
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    line-height: 1.2;
}

.industries-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.industries-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 999px;
    background: #ffffff;
    color: #4d3a67;
    border: 1px solid rgba(108, 46, 185, 0.12);
    box-shadow: 0 10px 20px rgba(56, 34, 91, 0.06);
    font-size: 0.86rem;
    font-weight: 700;
}

/* Responsive styles */
@media (max-width: 992px) {
    .about-uniqo-wrapper {
        flex-direction: column;
        align-items: center;
        padding: 24px 8px;
        gap: 18px;
    }
    .about-text-col {
        margin-left: 0 !important;
        margin-top: 24px !important;
        text-align: center;
    }
    .about-img-col {
        margin-bottom: 0;
    }
    /* New responsive styles for about-us-section */
    .about-us-section {
        flex-direction: column !important;
        padding: 0 1rem;
        height: auto !important;
    }
    .about-us-image {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 1rem;
    }
    .about-us-image img {
        width: 100% !important;
        height: auto !important;
        border-radius: 12px;
        margin-top: 20px;
    }
    .about-us-text {
        width: 100% !important;
        text-align: center;
        font-size: 1rem !important;
        padding: 0 1rem !important;
    }
    .about-us-text2 {
        width: 100% !important;
        text-align: center;
        font-size: 1rem !important;
        padding: 0 1rem !important;
        margin-top: 16px !important;
    }
    .why-uniqo-card {
        grid-column: span 6;
    }
    .industries-band {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .about-uniqo-wrapper {
        padding: 14px 2vw;
        border-radius: 14px;
        gap: 02px;
    }
    .about-person-img {
        max-width: 405px;
        max-height: 320px;
    }
    .about-text-col {
        font-size: 0.98rem;
        padding: 0 2vw;
        top: 02px;
    }
    .why-uniqo-shell {
        max-width: 92vw;
    }
    .why-uniqo-grid {
        grid-template-columns: 1fr;
    }
    .why-uniqo-card {
        grid-column: span 12;
        min-height: auto;
    }
    .industries-band {
        padding: 22px 18px;
    }
    .industries-tags span {
        width: 100%;
        justify-content: flex-start;
    }
}

.performance-section {
    background: none;
}
.performance-title {
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: 0.5px;
    margin-bottom: 2.5rem;
}
.performance-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 4px 24px rgba(108,46,185,0.10);
}
.performance-card-lg {
    min-height: 340px;
    justify-content: flex-end;
}
.performance-card-top {
    flex: 1 1 0;
    padding: 1.2rem 1.2rem 0.5rem 1.2rem;
    font-size: 1.45rem;
    color: #222;
    font-weight: 400;
    letter-spacing: 0.2px;
    display: flex;
    align-items: flex-end;
}
.performance-card-bottom {
    background: #6c2eb9;
    color: #fff;
    padding: 1.2rem 1.2rem 1.2rem 1.2rem;
    text-align: left;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    min-height: 70px;
    display: flex;
    align-items: center;
}
.performance-value {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}
.performance-label {
    font-size: 1.25rem;
    font-weight: 400;
    color: #222;
}
@media (max-width: 991.98px) {
    .performance-card-lg {
        min-height: 220px;
    }
    .performance-card {
        min-height: 140px;
    }
    .performance-card-bottom {
        font-size: 1.3rem;
        padding: 0.8rem 1rem;
        min-height: 50px;
    }
    .performance-card-top {
        font-size: 1.1rem;
        padding: 0.8rem 1rem 0.3rem 1rem;
    }
}
@media (max-width: 767.98px) {
    .performance-title {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    .performance-card-lg {
        min-height: 150px;
    }
    .performance-card {
        min-height: 140px;
    }
    .performance-card-bottom {
        font-size: 1rem;
        padding: 0.6rem 0.7rem;
        min-height: 36px;
    }
    .performance-card-top {
        font-size: 0.98rem;
        padding: 0.6rem 0.7rem 0.2rem 0.7rem;
    }
}

.clients-section {
  background: none;
  margin-bottom: 12px;
}
.clients-wrapper {
  background: #6c2eb9;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(108,46,185,0.10);
  max-width: 90vw;
  height: 720px;
  padding: 12px 12px 40px 12px;
}
.clients-title {
  color: #fff;
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 2.2rem;
}
.client-logo-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  width: 100%;           /* fill the Bootstrap column */
  max-width: 220px;      /* optional max so cards don't grow too large */
  height: 160px;         /* reduced height so 4 fit comfortably */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: transform 0.15s;
}
/* ensure images scale nicely inside the card */
.clients-section .client-logo-card img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.client-logo-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px rgba(108,46,185,0.18);
}
@media (max-width: 991.98px) {
  .clients-title {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
  .client-logo-card {
    width: 90px;
    height: 90px;
  }
  .client-logo-card img {
    max-height: 80px;
  }
  .clients-wrapper {
    height: auto;
    padding: 24px 8px 24px 8px;}
  }
@media (max-width: 575.98px) {
  .clients-wrapper {
    padding: 18px 2vw 18px 2vw;
    border-radius: 10px;
  }
  .client-logo-card {
    width: 60px;
    height: 60px;
    border-radius: 8px;
  }
  .client-logo-card img {
    max-height: 50px;
  }
}
.footer-main-section {
  background: none;
  margin-top: 2px;
}
.footer-wrapper {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(108,46,185,0.10);
  max-width: 90vw;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.footer-left {
  flex: 1 1 0;
  min-width: 260px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  right: 100px;
  font-weight: bold;
}
.footer-logo {
  height: 48px;
  width: auto;
}
.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}
.footer-social {
  margin-top: 12px;
  display: flex;
}
.footer-social-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  color: #6c2eb9;
  text-decoration: none;
  font-size: 1.15rem;
}


.footer-social-icon:hover {
  box-shadow: 0 6px 18px rgba(108,46,185,0.18);
  transform: translateY(-2px) scale(1.08);
}
.footer-right {
  flex: 1 1 0;
  max-width: 660px;
  display: flex;
  flex-direction: column;
}
.footer-right iframe {
  width: 100%;
  min-width: 220px;
  max-width: 600px;
  height: 220px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 2px 12px rgba(108,46,185,0.08);
  display: block;
}
.footer-copyright {
  background: #6c2eb9;
  color: #fff;
  border-radius: 18px;
  margin: 32px auto 0 auto;
  max-width: 90vw;
  font-size: 1.1rem;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 12px rgba(108,46,185,0.10);
}

@media (max-width: 576px) {
  .footer-contact .contact-item { flex-wrap: wrap; justify-content: center; }
  .footer-contact .contact-text { white-space: normal; text-align: center; }
}
/* Medium and small tablets */
@media (max-width: 991.98px) {
  .footer-wrapper {
    flex-direction: column;
    padding: 18px 12px;
    gap: 12px;
  }
  .footer-left, .footer-right {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0;
  }
  .map-card iframe {
    height: 180px;
  }
  .footer-contact { text-align: center; align-items: center; }
  .footer-contact .contact-item { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-contact .contact-icon { margin-top: 2px; }
}

/* Small phones */
@media (max-width: 575.98px) {
  .map-card iframe { height: 140px; }
  .footer-social-icon { width: 40px; height: 40px; font-size: 1rem; }
  .footer-contact { font-size: 0.95rem; }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

.service-hero-section {
  background: none;
  margin-bottom: 24px;
}
.service-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
}
.text-orange {
  color: #f47c3c;
}
.service-desc {
  font-size: 1.1rem;
  color: #222;
  line-height: 1.6;
}
.service-person-img {
  width: 280px;
  max-width: 100%;
  left: 100px;
  z-index: 2;
  height: 380px;
  margin-top: -20px;
}
.service-main-img-wrapper {
  background: #f7f7fa;
  border-radius: 24px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.10);
  padding: 0;
  overflow: hidden;
  max-width: 100%;
  margin-top: 96px;
}
.service-main-img {
  border-radius: 24px;
  width: 100%;
  display: block;
}
@media (max-width: 991.98px) {
  .service-title {
    font-size: 2rem;
  }
  .service-person-img {
    display: none;
  }
  .service-main-img-wrapper {
    border-radius: 16px;
  }
  .service-main-img {
    border-radius: 16px;
  }
}
@media (max-width: 575.98px) {
  .service-title {
    font-size: 1.3rem;
  }
  .service-desc {
    font-size: 0.98rem;
  }
  .service-main-img-wrapper {
    border-radius: 10px;
    margin-top: 48px;
  }
  .service-main-img {
    border-radius: 10px;
  }
}
.core-services-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
}
.service-card-img {
  width: 340px;
  height: 340px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  background: #f7f7fa;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  margin: auto;
  transition: transform 0.18s;
}
.service-card-img:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 48px rgba(108,46,185,0.13);
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
}

.service-label {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255,255,255,0.85);
  color: #222;
  font-size: 1.18rem;
  font-weight: 600;
  padding: 10px 32px;
  border-radius: 12px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  letter-spacing: 0.2px;
  min-width: 120px;
  text-align: center;
}
@media (max-width: 991.98px) {
  .core-services-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  .service-card-img {
    width: 240px;
    height: 240px;
    border-radius: 12px;
  }
  .service-img {
    border-radius: 16px;
  }
  .service-label {
    font-size: 1rem;
    left: 12px;
    bottom: 12px;
    padding: 7px 18px;
    border-radius: 8px;
    min-width: 80px;
  }
}
@media (max-width: 575.98px) {
  .service-card-img {
    width: 98vw;
    height: 54vw;
    min-width: 0;
    min-height: 160px;
    border-radius: 10px;
    max-width: 340px;
    max-height: 220px;
  }
  .service-img {
    border-radius: 10px;
  }
  .service-label {
    font-size: 0.98rem;
    left: 8px;
    bottom: 8px;
    padding: 4px 12px;
    border-radius: 6px;
    min-width: 60px;
  }
}

/* Service card responsive offsets (replace inline styles) */
.service-card-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  transition: transform .28s ease, box-shadow .28s ease;
}

/* optional named offsets to reproduce your staggered layout */
.service-card--offset-1 { transform: translateX(40px); max-width: 450px; }
.service-card--offset-2 { transform: translateX(-40px); max-width: 420px; }
.service-card--offset-3 { transform: translateX(24px); max-width: 400px; }
.service-card--offset-4 { transform: translateX(-36px); max-width: 380px; }

/* keep labels/popup positioned inside card */
.service-label { position: absolute; left: 16px; bottom: 16px; z-index: 5; }

/* responsive: remove transforms and make cards full-width on medium/smaller screens */
@media (max-width: 991.98px) {
  .service-card-img,
  .service-card--offset-1,
  .service-card--offset-2,
  .service-card--offset-3,
  .service-card--offset-4 {
    transform: none !important;
    max-width: 100%;
    margin: 0 auto;
  }

  .service-card-img { padding: 0 8px; }
}

.why-choose-us-section {
  max-width: 90vw;
}

.why-box {
  background: #841e7d;
  border-radius: 18px;
  padding: 1.5rem;
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

.why-box:hover {
  transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(132,30,125,0.3);
      border-color: #f47c3c;
}

.why-box i {
  font-size: 2.8rem;
      margin-bottom: 1rem;
      display: block;
      animation: pulse 2s infinite;}

      @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.15); }
      100% { transform: scale(1); }
    }

.why-box h5 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.why-box p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .why-box {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}
@media (max-width: 575.98px) {
  .why-choose-us-section {
    padding: 0 1rem;
  }
}

.vmv-section {
    max-width: 90vw;
}

.vmv-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(108,46,185,0.10);
    text-align: center;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.vmv-card img {
    margin: 0 auto 1rem auto;
}

.vmv-card h5 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.vmv-card p {
    font-size: 1rem;
    color: #222;
    line-height: 1.4;
    margin-bottom: 0;
}
.vmv-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 20px 40px rgba(108,46,185,0.2);
    }

.about-standout-section {
    background:
        radial-gradient(circle at top left, rgba(108, 46, 185, 0.08), transparent 28%),
        linear-gradient(180deg, #fafafe 0%, #f5f4fb 100%);
}

.about-standout-header {
    max-width: 760px;
    margin: 0 auto 28px;
}

.about-standout-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(108, 46, 185, 0.1);
    color: #6c2eb9;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-standout-header h2 {
    margin: 14px 0 10px;
    color: #39234a;
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
}

.about-standout-header p {
    margin: 0;
    color: #000000;
    font-size: 0.98rem;
    line-height: 1.8;
}

.about-standout-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.about-standout-card {
    grid-column: span 4;
    min-height: 220px;
    padding: 24px 22px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #ece8f6;
    box-shadow: 0 16px 34px rgba(56, 34, 91, 0.08);
}

.about-standout-card-accent {
    grid-column: span 6;
    background: linear-gradient(135deg, #6528b8 0%, #7b3fd1 100%);
    border: none;
}

.about-standout-card h3 {
    margin: 16px 0 10px;
    color: #39234a;
    font-size: 1.08rem;
    font-weight: 700;
}

.about-standout-card p {
    margin: 0;
    color: #000000;
    font-size: 0.88rem;
    line-height: 1.75;
}

.about-standout-card-accent h3 {
    color: #ffffff;
}

.about-standout-card-accent p {
    color: rgba(255, 255, 255, 0.82);
}

.about-standout-icon {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(108, 46, 185, 0.1);
    color: #6c2eb9;
    font-size: 1rem;
}

.about-standout-icon-light {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

@media (max-width: 768px) {
    .vmv-card {
        height: auto;
    }
    .about-standout-grid {
        grid-template-columns: 1fr;
    }
    .about-standout-card,
    .about-standout-card-accent {
        grid-column: span 12;
        min-height: auto;
    }
}
.service-card-img {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.service-popup {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: #fff;
  color: #333;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: none;
  z-index: 5;
  animation: fadeInUp 0.3s ease;
}

.service-popup h6 {
  margin: 0 0 5px;
}

.service-label {
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 500;
  position: absolute;
  bottom: 15px;
  left: 15px;
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Detailed Achievements Section */
.detailed-achievements {
  background: none;
  margin-bottom: 32px;
}

.achievement-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(108,46,185,0.10);
  padding: 2rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.achievement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(108,46,185,0.18);
}

.achievement-icon {
  font-size: 3rem;
  color: #6c2eb9;
  margin-bottom: 1rem;
}

.achievement-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.achievement-desc {
  font-size: 1rem;
  color: #222;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .achievement-card {
    padding: 1.5rem;
  }
  .achievement-icon {
    font-size: 2.5rem;
  }
  .achievement-title {
    font-size: 1.1rem;
  }
  .achievement-desc {
    font-size: 0.95rem;
  }
}
.contact-container {
      max-width: 90vw;
      margin: 3rem auto;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
      display: flex;
      flex-wrap: wrap;
      padding: 2rem;
      gap: 2rem;
    }
    .contact-text {
      flex: 1 1 40%;
      padding: 1rem 2rem 1rem 1rem;
      color: #333;
    }
    .contact-text h1 {
      color: #e36a1e;
      font-weight: 700;
      margin-bottom: 1rem;
    }
    .contact-text p {
      font-size: 1rem;
      line-height: 1.5;
      margin-bottom: 1rem;
    }
    .contact-form {
      flex: 1 1 50%;
      background: white;
      border-radius: 16px;
      padding: 2rem;
      box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
      max-width: 700px;
    }
    .contact-form-wrapper {
      flex: 1 1 50%;
      display: grid;
      gap: 1.5rem;
      max-width: 700px;
    }
    .contact-form h2 {
      font-weight: 700;
      margin-bottom: 0.25rem;
    }
    .contact-form p {
      margin-bottom: 1.5rem;
      font-weight: 600;
      color: #000;
    }
    .contact-process-card {
      background: white;
      border-radius: 16px;
      padding: 1.75rem;
      box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
    }
    .contact-process-card h2 {
      font-weight: 700;
      margin-bottom: 0.25rem;
    }
    .contact-process-card p {
      margin-bottom: 1.5rem;
      font-weight: 600;
      color: #000;
    }
    .contact-process-card .footer-contact {
      display: grid;
      gap: 1rem;
      margin: 0;
    }
    .contact-process-card .contact-item {
      align-items: flex-start;
      padding: 0.95rem 1rem;
      border-radius: 16px;
      background: linear-gradient(180deg, #ffffff, #f7f3fc);
      border: 1px solid rgba(108, 46, 185, 0.12);
      box-shadow: 0 10px 22px rgba(41, 23, 74, 0.05);
    }
    .contact-process-card .contact-text {
      display: block;
      padding-left: 0;
      color: #39234a;
      line-height: 1.65;
      font-size: 0.96rem;
    }
    .contact-process-card .contact-icon {
      margin-top: 0.2rem;
    }
    .form-control {
      border-radius: 20px;
      margin-bottom: 1rem;
      padding: 0.75rem 1rem;
      font-size: 1rem;
      border: 1px solid #ccc;
    }
    .form-control:focus {
      border-color: #6c2eb9;
      box-shadow: 0 0 5px #6c2eb9;
      outline: none;
    }
    textarea.form-control {
      height: 100px;
      resize: vertical;
    }
    .contact-form .row.g-3 {
      --bs-gutter-y: 0;
      margin-bottom: 0;
    }
    .contact-form .row.g-3 > div .form-control {
      margin-bottom: 1rem;
    }
    .recaptcha-checkbox-wrapper {
      margin: 0.25rem 0 1rem;
      overflow-x: auto;
    }
    .form-status {
      min-height: 1.5rem;
      margin-bottom: 0.75rem;
      font-size: 0.95rem;
      font-weight: 600;
    }
    .form-status.pending {
      color: #6c2eb9;
    }
    .form-status.success {
      color: #1f7a46;
    }
    .form-status.error {
      color: #c53929;
    }
    .btn-submit {
      background-color: #6c2eb9;
      border: none;
      color: white;
      padding: 0.75rem 1.5rem;
      font-size: 1.1rem;
      border-radius: 20px;
      width: 100%;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    .btn-submit:hover {
      background-color: #5a2490;
    }
    @media (max-width: 768px) {
      .contact-container {
        flex-direction: column;
        padding: 1rem;
      }
      .contact-text, .contact-form, .contact-form-wrapper {
        flex: 1 1 100%;
        padding: 1rem;
      }
      .contact-process-card {
        padding: 1rem;
      }
    }



.footer-right {
  flex: 1;
  position: relative;
  min-height: 300px;
  overflow: hidden;
}


.footer-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}


.footer-illustration {
  position: absolute;  
  right: 50%;
  transform: translateX(50%);
  z-index: 2;
  margin-bottom: -120px;
  pointer-events: none;  
  text-align: center;
  width: 100%;
}

.footer-illustration img {
  max-height: 650px;  
  width: 350px;
  display: inline-block;
  box-shadow: 0 4px 24px rgba(108,46,185,0.10);
  border-radius: 12px;
  padding: 12px;
  object-fit: cover;
  z-index: 2;
}


@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .footer-left, .footer-right {
    padding: 1.5rem;
    min-width: 100%;
  }
  .footer-right {
    min-height: 200px;
  }
  .footer-illustration img {
    max-height: 180px;
  }
}
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(108,46,185,0.10);
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-quote {
  font-size: 1.1rem;
  color: #222;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.testimonial-author-info {
  text-align: left;
}
.testimonial-author-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.testimonial-author-position {
  font-size: 0.95rem;
  color: #666;
}
.testimonial-section {
  max-width: 90vw;
  margin: 32px auto;
}
.testimonial-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 1rem;
  }
  .testimonial-quote {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .testimonial-author img {
    width: 50px;
    height: 50px;
  }
  .testimonial-author-name {
    font-size: 1rem;
  }
  .testimonial-author-position {
    font-size: 0.85rem;
  }
  .testimonial-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
}
/* Additional styles for services.html */


@media (max-width: 991px) {
  .achievements-section {
    background: radial-gradient(circle at 60% 0%, #f2c2ab 10%,#f0eaf4  100%);
  }
  .achievements-content {
    border-left: 5px solid #c59fc7;
    border-radius: 10px;
  }
  .achievements-title {
    font-size: 1.6rem;
  }
  .achievements-image-wrapper {
    min-height: 200px;
  }
  .achievements-trophy {
    max-height: 500px;
  }
}

/* Achievements Hero Section */
.achievements-hero {
  position: relative;
  overflow: visible;
  padding: 80px 0;
  min-height: 520px;
}

/* inner container centers the content and keeps the right area free for the trophy */
.achievements-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

/* left column containing the text card */
.achievements-left { flex: 0 0 60%; }
.achievements-right { flex: 1 1 50%; }

/* content card */
.achievements-box {
  background: rgba(255,255,255,0.92);
  border-left: 12px solid #c6b2c7;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  max-width: 780px;
}

/* trophy positioned absolutely relative to viewport-right (touches edge) */
.achievements-trophy-img {
  position: absolute;           /* fixed so it touches viewport right reliably */
  right: 10px;                  /* flush to viewport right edge */
  bottom: 1480px ;                 /* distance from top (adjust if navbar height changes) */
  height: 90vh;              /* responsive size — adjust to taste */
  width: auto;
  z-index: 1000;              /* lower than navbar (navbar z-index: 2200) */
  pointer-events: none;
  filter: drop-shadow(0 8px 32px rgba(80,0,80,0.12));
  transform-origin: right center;
}


/* smaller screens: inline trophy below content */
@media (max-width: 991px) {
  .achievements-trophy-img {
    position: static;
    display: block;
    margin: 22px auto 0 auto;
    max-height: 220px;
    height: auto;
    width: auto;
    transform: none;
  }
  .achievements-inner { flex-direction: column; padding: 0 4%; }
  .achievements-left { width: 100%; }
}

/* extra small phones */
@media (max-width: 576px) {
  .achievements-box { padding: 18px; border-left-width: 8px; }
  .achievements-trophy-img { max-height: 260px; margin-top: 12px; }
}

@media (min-width: 1200px) {
  .achievements-trophy-img { max-height: 620px; }
}
@media (max-width: 991px) {
  .achievements-hero {
    min-height: 340px;
    background: radial-gradient(circle at 60% 0%, #f2c2ab 10%,#f0eaf4  100%);
  }
  .achievements-box {
    border-left: 7px solid #c6b2c7;
    padding: 22px 12px;
    margin-left: 0;
    max-width: 100%;
  }
  .achievements-title {
    font-size: 1.5rem;
  }
  .achievements-trophy-img {
    position: static;
    max-height: 280px;
    margin-top: 24px;
  }
}
.timeline-col {
  position: relative;
  min-height: 260px;
  padding-top: 18px;
  padding-bottom: 18px;
}

/* vertical line */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 8px;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  z-index: 0;
}

/* dot / marker */
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background: #7a3f7a;
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* award image card that appears near the dot */
.award-card {
  position: absolute;
  left: 55%;
  top: 18px;
  transform: translateX(10%); /* nudge right so image overlaps content */
  width: 290px;
  max-width: 290px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  z-index: 2;
  padding: 1px;
  box-shadow: 0 18px 38px rgba(32, 16, 56, 0.16);
  animation: awardCardFloat 4.8s ease-in-out infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* image inside the card */
.award-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.award-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.38) 50%, transparent 80%);
  transform: translateX(-140%);
  opacity: 0;
  pointer-events: none;
}

.award-card:hover {
  transform: translateX(10%) translateY(-10px) scale(1.03);
  box-shadow: 0 24px 52px rgba(32, 16, 56, 0.22);
}

.award-card:hover::before {
  opacity: 1;
  animation: awardCardShine 0.95s ease;
}

.award-card:hover .award-img {
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.03);
}

/* right side content */
.award-content {
  padding: 28px 36px;
  margin-top: 10px;
  margin-left: 150px;
}

.award-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.award-desc {
  color: #222;
  line-height: 1.9;
  max-width: 705px;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .timeline-line { left: 36px; width: 6px; }
  .timeline-dot { left: 36px; top: 36px; width: 22px; height: 22px; }
  .award-card {
    position: relative;
    transform: none;
    left: 0;
    top: 0;
    max-width: 460px;
    margin: 0 auto 18px auto;
    width: calc(100% - 48px);
    animation: none;
  }
  .award-content { padding: 18px; text-align: left; }
  .award-title { font-size: 1.4rem; }
  .award-desc { font-size: 0.98rem; }
}

@media (max-width: 576px) {
  .timeline-line { display: none; }
  .timeline-dot { display: none; }
  .timeline-col { padding: 0; }
  .award-card { width: 100%; border-radius: 10px; margin-bottom: 12px; animation: none; }
  .award-content { padding: 14px; }
}

/* Ensure navbar stays above decorative trophy */
.custom-navbar { position: relative; z-index: 2200; }

/* Default (mobile-first) trophy / layout */
.achievements-trophy-img {
  position: static;
  display: block;
  margin: 20px auto 0;
  max-width: 100%;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 8px 24px rgba(80,0,80,0.10));
}

/* base inner layout */
.achievements-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.achievements-left { flex: 0 0 60%; }
.achievements-right { flex: 1 1 40%; }


/* Large screens: trophy flush to viewport right */
@media (min-width: 1200px) {
  .achievements-inner { padding: 0 4%; }
  .achievements-left { flex: 0 0 58%; }
  .achievements-right { flex: 1 1 42%; }

  .achievements-trophy-img {
    position: fixed;      /* fixed so it always touches viewport right */
    right: 0;
    top: 64px;            /* adjust if navbar height differs */
    height: 78vh;         /* responsive height */
    max-height: 860px;
    width: auto;
    z-index: 100;         /* lower than .custom-navbar */
    transform-origin: right center;
  }
}

/* Medium screens: trophy positioned absolute within hero (keeps it near right edge) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .achievements-inner { padding: 0 4%; }
  .achievements-left { flex: 0 0 56%; }
  .achievements-right { flex: 1 1 44%; }

  .achievements-hero { position: relative; }
  .achievements-trophy-img {
    position: absolute;
    right: 0;
    top: 56px;
    height: 62vh;
    max-height: 720px;
    z-index: 100;
  }
}

/* Tablets and small desktops: stack content, hide timeline vertical line */
@media (max-width: 991.98px) {
  .achievements-inner { flex-direction: column; padding: 0 4%; }
  .achievements-left, .achievements-right { width: 100%; flex: auto; }
  .achievements-right { display: none; } /* right spacer not needed on stacked layout */

  /* make trophy inline and smaller */
  .achievements-trophy-img {
    position: static;
    display: block;
    margin: 18px auto 0;
    max-height: 560px;
    height: auto;
  }

  /* timeline -> stacked cards */
  .timeline-line { display: none; }
  .timeline-dot { display: none; }
  .award-card {
    position: relative;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 420px;
    margin: 0 auto 18px;
  }
  .award-content { padding: 16px; text-align: justify; }
  .achievements-box { max-width: 100%; padding: 20px; border-left-width: 5px; }
}

/* Extra small phones */
@media (max-width: 575.98px) {
  .achievements-hero { padding-top: 28px; padding-bottom: 28px; }
  .achievements-box { padding: 14px; border-left-width: 6px; }
  .achievements-title { font-size: 1.4rem; }
  .award-content { padding: 12px; font-size: 0.95rem; }
  .achievements-trophy-img { max-height: 160px; margin-top: 12px; }
}

/* Minor safeguard: if trophy ever overlaps nav, push it down slightly */
@media (min-width: 1200px) {
  .achievements-trophy-img.overlap-fix { top: 88px; } /* add class in DOM if needed */
}

/* --- Scroll + entry animations for Achievements --- */
:root { --anim-ease: cubic-bezier(.2,.9,.3,1); }

.animate-hidden {
  opacity: 0;
  transform-origin: center;
  will-change: transform, opacity;
}

/* revealed state */
.in-view {
  opacity: 1;
  transform: none;
  transition: opacity 640ms var(--anim-ease), transform 640ms var(--anim-ease);
  transition-delay: var(--delay, 0s);
}

/* element-specific initial offsets */
.achievements-box.animate-hidden    { transform: translateX(-18px) scale(.998); }
.award-card.animate-hidden          { transform: translateY(22px) scale(.995); }
.award-content.animate-hidden       { transform: translateY(14px) scale(.998); }
.achievements-trophy-img.animate-hidden { transform: translateX(48px) scale(.99); opacity: 0; }

/* trophy reveal + gentle float */
.achievements-trophy-img.in-view {
  opacity: 1 !important;
  transform: translateX(0) !important;
  transition: transform 720ms var(--anim-ease), opacity 720ms var(--anim-ease);
  animation: trophyFloat 6s ease-in-out 1.2s infinite;
  will-change: transform;
}

/* tiny pop/zoom for award image card */
.award-card.in-view {
  transform: none;
  transition: transform 640ms var(--anim-ease), opacity 640ms var(--anim-ease);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* keyframes */
@keyframes trophyFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

@keyframes awardCardFloat {
  0%   { transform: translateX(10%) translateY(0); }
  50%  { transform: translateX(10%) translateY(-8px); }
  100% { transform: translateX(10%) translateY(0); }
}

@keyframes awardCardShine {
  0% { transform: translateX(-140%); }
  100% { transform: translateX(140%); }
}

/* stagger helper when JS sets --delay */
.award-card, .award-content, .achievements-box, .achievements-trophy-img {
  --delay: 0s;
}

/* disable heavy float on small viewports */
@media (max-width: 991.98px) {
  .achievements-trophy-img.in-view { animation: none; }
}

/* tweak durations on very small devices */
@media (max-width: 575.98px) {
  .achievements-box { transition-duration: 420ms; }
  .award-card, .award-content { transition-duration: 420ms; }
}

/* Change trophy to be positioned inside the hero (scrolls with the page) */
.achievements-hero { position: relative; } /* ensure the hero is the positioning context */

.achievements-trophy-img {
  position: absolute;       /* was fixed - now absolute so it scrolls with the section */
  margin-right: 0.1px;                 /* flush to the right edge of the hero */
  top: 3px;                /* adjust vertical offset inside the hero */
  height: 78vh;             /* responsive size */
  max-height: 820px;
  width: auto;
  z-index: 100;             /* keep below navbar (.custom-navbar z-index: 2200) */
  pointer-events: none;
  filter: drop-shadow(0 8px 32px rgba(80,0,80,0.12));
}

/* keep mobile behavior unchanged */
@media (max-width: 991px) {
  .achievements-trophy-img {
    position: static;
    display: block;
    margin: 22px auto 0 auto;
    max-height: 320px;
    height: auto;
    width: auto;
    transform: none;
  }
}

/* Standard cursor */
.cursor,
.cursor-dot,
.cursor--hover,
.cursor--hidden,
.cursor--small,
.cursor-dot--hidden {
  display: none !important;
}

/* reCAPTCHA responsive wrapper */
.recaptcha-checkbox-wrapper {
  margin: 20px 0;
  /* display: flex; */
  text-align: left;
  line-height: 0;
  /* justify-content: flex-start; */
  /* align-items: center; */
}

/* reCAPTCHA iframe responsiveness */
.g-recaptcha {
  transform-origin: 0 0;
  max-width: 100%;
}

/* Scale reCAPTCHA on mobile/tablet */
@media (max-width: 576px) {
  .recaptcha-checkbox-wrapper {
    /* transform: scale(0.92); */
    transform-origin: 0.0;
  }
}

@media (max-width: 400px) {
  .recaptcha-checkbox-wrapper {
    /* transform: scale(0.80); */
    transform-origin: 0.0;
  }
}

/* Contact form styling */
.contact-form {
  background: #fff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  max-width: 100%;
  margin: 0;
}

.contact-form h2 {
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}

.contact-form > p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.contact-form .form-control {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.95rem;
  margin-bottom: 12px;
  transition: border-color 180ms;
}

.contact-form .form-control:focus {
  border-color: #6c2eb9;
  box-shadow: 0 0 0 3px rgba(108,46,185,0.08);
}

.btn-submit {
  width: 100%;
  background: #6c2eb9;
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms, transform 120ms;
  margin-top: 8px;
}

.btn-submit:hover:not(:disabled) {
  background: #562298;
  transform: translateY(-2px);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Responsive contact container */
@media (max-width: 768px) {
  .contact-form {
    padding: 20px;
    margin: 0;
  }
}

@media (max-width: 576px) {
  .contact-form {
    padding: 14px;
    margin: 0;
  }
  .contact-form .row.g-3 { --bs-gutter-x: 0.5rem; }
}

/* Contact page redesign */
.contact-page {
  padding: 1.5rem 0 0;
}

.contact-page .contact-hero,
.contact-page .contact-process-section,
.contact-page .contact-location-section {
  max-width: 90vw;
  margin: 0 auto 2rem;
}

.contact-page .contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2rem;
  padding: 2rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(227, 106, 30, 0.14), transparent 32%),
    linear-gradient(135deg, #fff8f3 0%, #ffffff 42%, #f7f1ff 100%);
  box-shadow: 0 18px 50px rgba(57, 35, 74, 0.09);
}

.contact-page .contact-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(108, 46, 185, 0.08);
  color: #6c2eb9;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-page .contact-hero-copy h1 {
  margin: 0 0 1rem;
  color: #23152f;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.08;
}

.contact-page .contact-hero-copy > p {
  max-width: 60ch;
  margin: 0 0 1.5rem;
  color: #4b4453;
  font-size: 1.05rem;
  line-height: 1.75;
}

.contact-page .contact-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-page .contact-highlight-card {
  padding: 1.3rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(108, 46, 185, 0.1);
  box-shadow: 0 12px 30px rgba(57, 35, 74, 0.06);
}

.contact-page .contact-highlight-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 0.9rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #e36a1e, #6c2eb9);
  color: #fff;
  font-size: 1.2rem;
}

.contact-page .contact-highlight-card h2 {
  margin-bottom: 0.6rem;
  color: #23152f;
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-page .contact-highlight-card p {
  margin-bottom: 0.55rem;
  color: #4b4453;
  line-height: 1.7;
}

.contact-page .contact-highlight-card p:last-child {
  margin-bottom: 0;
}

.contact-page .contact-highlight-card a {
  color: #6c2eb9;
  font-weight: 700;
  text-decoration: none;
}

.contact-page .contact-hero-form {
  align-self: start;
  max-width: 100%;
  margin: 0;
  border: 1px solid rgba(108, 46, 185, 0.09);
  box-shadow: 0 18px 40px rgba(57, 35, 74, 0.1);
}

.contact-page .contact-form-tag {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: #e36a1e;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-page .contact-process-section {
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fff8f1 100%);
  box-shadow: 0 18px 50px rgba(57, 35, 74, 0.07);
}

.contact-page .contact-section-heading {
  max-width: 62ch;
  margin-bottom: 1.5rem;
}

.contact-page .contact-section-heading h2 {
  margin: 0 0 0.8rem;
  color: #23152f;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.contact-page .contact-section-heading p {
  margin: 0;
  color: #4b4453;
  line-height: 1.75;
}

.contact-page .contact-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.contact-page .contact-process-step {
  padding: 1.35rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(108, 46, 185, 0.08);
  box-shadow: 0 10px 30px rgba(57, 35, 74, 0.05);
}

.contact-page .contact-step-number {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: #e36a1e;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.contact-page .contact-process-step h3 {
  margin-bottom: 0.75rem;
  color: #23152f;
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-page .contact-process-step p {
  margin: 0;
  color: #4b4453;
  line-height: 1.7;
}

.contact-page .contact-location-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f7f2ff 100%);
  box-shadow: 0 18px 50px rgba(57, 35, 74, 0.07);
}

.contact-page .contact-location-map {
  min-width: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(57, 35, 74, 0.08);
  background: #f3eef8;
  min-height: 160px;
}

.contact-page .contact-location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.contact-page .contact-location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.contact-page .contact-location-info h2 {
  margin: 0.2rem 0 0.85rem;
  color: #23152f;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
}

.contact-page .contact-location-info p {
  margin: 0;
  color: #4b4453;
  line-height: 1.75;
}

.contact-page .service-area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.contact-page .service-area-chips span {
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(108, 46, 185, 0.12);
  color: #39234a;
  font-size: 0.93rem;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .contact-page .contact-hero,
  .contact-page .contact-location-section {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding-top: 1rem;
  }

  .contact-page .contact-hero,
  .contact-page .contact-process-section,
  .contact-page .contact-location-section {
    max-width: calc(100vw - 1.5rem);
    padding: 1.2rem;
    border-radius: 22px;
  }

  .contact-page .contact-highlight-grid,
  .contact-page .contact-process-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-hero-copy h1 {
    font-size: 2rem;
  }

  .contact-page .contact-hero-copy > p,
  .contact-page .contact-section-heading p,
  .contact-page .contact-process-step p,
  .contact-page .contact-highlight-card p,
  .contact-page .contact-location-info p {
    font-size: 0.98rem;
  }

  .contact-page .service-area-chips {
    gap: 0.6rem;
  }

  .contact-page .service-area-chips span {
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .contact-page .contact-hero,
  .contact-page .contact-process-section,
  .contact-page .contact-location-section {
    max-width: calc(100vw - 1rem);
    padding: 1rem;
  }

  .contact-page .contact-eyebrow,
  .contact-page .contact-form-tag {
    font-size: 0.76rem;
  }

  .contact-page .contact-highlight-card,
  .contact-page .contact-process-step {
    padding: 1rem;
  }

  .contact-page .contact-location-map iframe {
    height: 260px;
    min-height: 260px;
  }
}
/* Gallery Hero Section */
.gallery-hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 60px 0;
}

.gallery-hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.qna-directory-section,
.qna-faq-section {
  background: linear-gradient(180deg, #fff 0%, #f8f3ff 100%);
}

.qna-directory-section {
  position: relative;
  overflow: hidden;
}

.qna-directory-section::before {
  content: "";
  position: absolute;
  inset: 30px auto auto 6%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 140, 56, 0.16), transparent 68%);
  pointer-events: none;
}

.qna-directory-section::after {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 12px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 46, 185, 0.12), transparent 70%);
  pointer-events: none;
}

.qna-directory-section .container {
  position: relative;
  z-index: 1;
}

.qna-section-head {
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.qna-directory-section .qna-section-head {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 243, 255, 0.96) 100%);
  border: 1px solid rgba(108, 46, 185, 0.08);
  box-shadow: 0 18px 40px rgba(57, 35, 74, 0.08);
}

.qna-kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(108, 46, 185, 0.1);
  color: #6c2eb9;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qna-section-head h2 {
  color: #23152f;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 0.85rem;
}

.qna-section-head p {
  color: #4f4a56;
  line-height: 1.7;
  margin-bottom: 0;
}

.qna-directory-grid {
  margin-top: 0.35rem;
}

.qna-service-card,
.qna-mini-card {
  height: 100%;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(108, 46, 185, 0.08);
  box-shadow: 0 16px 34px rgba(57, 35, 74, 0.08);
}

.qna-service-card {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(242, 140, 56, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f9f5ff 100%);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.qna-service-card::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -24px;
  width: 110px;
  height: 110px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(242, 140, 56, 0.12), rgba(108, 46, 185, 0.08));
  transform: rotate(24deg);
}

.qna-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 140, 56, 0.18);
  box-shadow: 0 20px 42px rgba(57, 35, 74, 0.12);
}

.qna-service-icon {
  position: relative;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #f28c38 0%, #db6b1d 100%);
  color: #fff;
  font-size: 1.25rem;
}

.qna-service-card h3,
.qna-group-heading h3,
.qna-mini-card h4 {
  position: relative;
  z-index: 1;
  color: #23152f;
  font-weight: 700;
}

.qna-service-card p,
.qna-group-heading p,
.qna-mini-card p {
  position: relative;
  z-index: 1;
  color: #4f4a56;
  line-height: 1.7;
}

.qna-link-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.qna-link-item p {
  margin: 0;
}

.qna-link-list a,
.qna-mini-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.72rem 0.9rem;
  border-radius: 16px;
  background: rgba(108, 46, 185, 0.05);
  border: 1px solid rgba(108, 46, 185, 0.08);
  color: #6c2eb9;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.qna-link-list a::after {
  content: "\2192";
  font-size: 0.95rem;
  opacity: 0.8;
}

.qna-link-list a:hover,
.qna-mini-card a:hover {
  background: rgba(242, 140, 56, 0.12);
  color: #db6b1d;
  transform: translateX(2px);
}

.qna-faq-group + .qna-faq-group {
  margin-top: 2rem;
}

.qna-group-heading {
  margin-bottom: 1rem;
}

.qna-group-heading p {
  margin-bottom: 0;
}

.qna-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.qna-mini-grid-tight {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.qna-mini-card {
  padding: 1.3rem;
}

.qna-mini-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}

.qna-mini-card p {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .qna-mini-grid,
  .qna-mini-grid-tight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .qna-directory-section .qna-section-head {
    padding: 1.2rem;
    border-radius: 22px;
  }

  .qna-service-card,
  .qna-mini-card {
    border-radius: 20px;
  }

  .qna-mini-grid,
  .qna-mini-grid-tight {
    grid-template-columns: 1fr;
  }
}

.gallery-hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin-bottom: 16px;
}

.gallery-hero-desc {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
  font-weight: 500;
}

/* Gallery Grid Section */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Large gallery item (spans 2 columns on desktop) */
.gallery-item--lg {
  grid-column: span 2;
  min-height: 380px;
}

/* Medium gallery item */
.gallery-item--md {
  grid-column: span 1;
  min-height: 300px;
}

/* Regular gallery item */
.gallery-item {
  grid-column: span 1;
  min-height: 240px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 300ms cubic-bezier(.2,.9,.3,1), box-shadow 300ms;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* Image wrapper */
.gallery-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms cubic-bezier(.2,.9,.3,1);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

/* Overlay on hover */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(108,46,185,0.12);
  opacity: 0;
  transition: opacity 300ms;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Responsive: adjust grid for tablets */
@media (max-width: 991.98px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .gallery-item--lg {
    grid-column: span 2;
    min-height: 300px;
  }

  .gallery-item--md {
    grid-column: span 1;
    min-height: 240px;
  }

  .gallery-item {
    min-height: 200px;
  }

  .gallery-hero-title {
    font-size: 2rem;
  }

  .gallery-hero-desc {
    font-size: 1rem;
  }
}

/* Responsive: single column on mobile */
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-item--lg,
  .gallery-item--md,
  .gallery-item {
    grid-column: span 1 !important;
    min-height: 240px;
  }

  .gallery-hero {
    padding: 40px 0;
  }

  .gallery-hero-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .gallery-hero-desc {
    font-size: 0.95rem;
  }
}

/* ========== Team Section Styling ========== */
.team-section {
  background: linear-gradient(135deg, #f8f7f9 0%, #f3f0f6 100%);
  padding-top: 60px;
  padding-bottom: 60px;
}

.team-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform .3s cubic-bezier(.2,.9,.3,1), box-shadow .3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(108,46,185,0.15);
}

.team-member-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #6c2eb9;
  transition: transform .3s;
}

.team-card:hover .team-member-img {
  transform: scale(1.08);
}

.team-card h5 {
  color: #111;
  margin-top: 8px;
  font-size: 1.1rem;
}

.team-card p {
  color: #000000;
  font-size: 0.95rem;
  margin: 4px 0 0 0;
}

/* Responsive: adjust on tablets */
@media (max-width: 991.98px) {
  .team-section { padding-top: 40px; padding-bottom: 40px; }
  .team-member-img { width: 160px; height: 160px; }
  .team-card { padding: 18px !important; }
}

/* Responsive: adjust on mobile */
@media (max-width: 576px) {
  .team-section { padding-top: 30px; padding-bottom: 30px; }
  .team-member-img { width: 140px; height: 140px; }
  .team-card { padding: 14px !important; }
.team-card h5 { font-size: 1rem; }
}
/* ========== Core Services Section - Responsive ========== */
.core-services-section {
  padding: 60px 0;
}

.core-services-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 40px;
}

/* Service Card Base Styles */
.service-card-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.service-card-img:hover .service-img {
  transform: scale(1.05);
}

.service-card-img:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

/* Individual Card Sizing - Desktop */
@media (min-width: 992px) {
  .service-card-1 {
    width: 450px;
    height: 380px;
    left: 50px;
  }

  .service-card-2 {
    width: 380px;
    height: 350px;
    right: 170px;
    top: 40px;
  }

  .service-card-3 {
    width: 360px;
    height: 300px;
    left: 100px;
  }

  .service-card-4 {
    width: 320px;
    height: 300px;
    right: 190px;
    top: 20px;
  }
}

/* Tablet - Adjust Sizes */
@media (max-width: 991.98px) and (min-width: 768px) {
  .service-card-1 {
    width: 340px;
    height: 280px;
    left: 20px;
  }

  .service-card-2 {
    width: 300px;
    height: 260px;
    right: 30px;
    top: 20px;
  }

  .service-card-3 {
    width: 280px;
    height: 240px;
    left: 40px;
  }

  .service-card-4 {
    width: 260px;
    height: 220px;
    right: 50px;
    top: 10px;
  }
}

/* Mobile - Full Width Stacked */
@media (max-width: 767.98px) {
  .service-card-1,
  .service-card-2,
  .service-card-3,
  .service-card-4 {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    height: 280px !important;
    margin: 0 auto;
  }

  .core-services-title {
    font-size: 1.6rem;
  }
}

/* Small Phones */
@media (max-width: 576px) {
  .service-card-1,
  .service-card-2,
  .service-card-3,
  .service-card-4 {
    height: 240px !important;
  }

  .core-services-section {
    padding: 40px 0;
  }
}

/* Testing Page */
.footer {
  margin-top: 34px;
  max-width: 90vw;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 26px;
  padding: 28px clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(228, 230, 242, 0.95);
  box-shadow: 0 18px 50px rgba(32, 18, 71, 0.08);
 
}

.footer-brand img {
  width: 126px;
  margin-bottom: 16px;
}

.footer-brand p,
.footer-col a,
.footer-contact li {
  color: #000000;
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer a,
.footer a:visited,
.footer a:hover,
.footer a:focus {
  text-decoration: none;
}

.footer-col h4 {
  margin: 0 0 12px;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6f59bc;
  font-weight: 700;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(109, 50, 201, 0.08);
  color: #6d32c9;
}

.copyright {
  margin-top: 18px;
  width: min(1120px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #6d32c9;
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .footer {
    width: min(100% - 22px, 100%);
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .footer {
    width: min(100% - 22px, 100%);
    border-radius: 24px;
  }

  .copyright {
    width: min(100% - 22px, 100%);
  }
}

.testing-page {
  --bg: #f4f5fb;
  --surface: #ffffff;
  --surface-muted: #ffffff;
  --text: #000000;
  --text-soft: #000000;
  --primary: #6d32c9;
  --primary-dark: #2a1557;
  --accent: #f08f1b;
  --border: #e4e6f2;
  --shadow: 0 18px 50px rgba(32, 18, 71, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --container: 90vw;;
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(109, 50, 201, 0.08), transparent 25%),
    linear-gradient(180deg, #f7f8fc 0%, #eef1f8 100%);
}

.testing-page *,
.testing-page *::before,
.testing-page *::after {
  box-sizing: border-box;
}

.testing-page img {
  max-width: 100%;
  display: block;
}

.testing-page a {
  color: inherit;
  text-decoration: none;
}

.testing-page .page-shell {
 max-width: 90vw;
  margin: 0 auto;
  padding: 28px 0 40px;
}

.testing-page .section {
  margin: 34px auto 0;
  width: 100%;
}

.testing-page .hero {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border-radius: 36px;
  background: linear-gradient(115deg, rgba(111, 44, 200, 0.98) 0%, rgba(67, 36, 151, 0.96) 40%, rgba(18, 18, 43, 0.97) 100%);
  box-shadow: 0 30px 80px rgba(34, 18, 70, 0.25);
  padding: 42px clamp(24px, 4vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: center;
  isolation: isolate;
}

.testing-page .hero::before,
.testing-page .hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  z-index: -1;
}

.testing-page .hero::before {
  width: 320px;
  height: 320px;
  top: -90px;
  right: -70px;
  background: rgba(129, 93, 255, 0.28);
}

.testing-page .hero::after {
  width: 260px;
  height: 260px;
  bottom: -120px;
  left: 20%;
  background: rgba(76, 177, 255, 0.14);
}

.testing-page .eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
}

.testing-page .hero h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.95;
  color: #ffffff;
  max-width: 960px;
}

.testing-page .hero p {
  margin: 18px 0 0;
  max-width: 480px;
  color: rgba(240, 241, 250, 0.8);
  line-height: 1.75;
  font-size: 0.98rem;
}

.testing-page .hero-copy {
  padding-right: 12px;
  max-width: 700px;
}

.testing-page .hero-visual {
  position: relative;
  min-height: 340px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.testing-page .hero-lead {
  max-width: 560px;
  color: rgba(247, 248, 252, 0.9);
}

.testing-page .hero-support {
  margin-top: 12px;
  max-width: 540px;
  color: rgba(229, 232, 244, 0.76);
  font-size: 0.93rem;
}

.testing-page .lab-platform,
.testing-page .lab-column,
.testing-page .lab-column::before,
.testing-page .lab-column::after,
.testing-page .lab-reactor,
.testing-page .lab-tank,
.testing-page .lab-stand,
.testing-page .lab-stand::before,
.testing-page .lab-grid {
  position: absolute;
}

.testing-page .lab-platform {
  inset: auto 5% 8% 10%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(126, 178, 255, 0.18), rgba(255, 255, 255, 0.08));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.testing-page .lab-column {
  width: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(132, 189, 255, 0.85), rgba(132, 189, 255, 0.12));
  box-shadow: 0 0 16px rgba(112, 170, 255, 0.28);
}

.testing-page .lab-column::before,
.testing-page .lab-column::after {
  content: "";
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(132, 189, 255, 0.7);
}

.testing-page .lab-column::before { width: 44px; height: 4px; top: 8px; }
.testing-page .lab-column::after { width: 54px; height: 4px; bottom: 16px; }
.testing-page .lab-column.is-one { left: 14%; bottom: 11%; height: 220px; opacity: 0.7; }
.testing-page .lab-column.is-two { left: 34%; bottom: 11%; height: 284px; opacity: 0.92; }

.testing-page .lab-reactor {
  right: 12%;
  bottom: 11%;
  width: 118px;
  height: 184px;
  border: 2px solid rgba(130, 187, 255, 0.42);
  border-radius: 26px 26px 18px 18px;
  background: linear-gradient(180deg, rgba(120, 166, 255, 0.28), rgba(120, 166, 255, 0.05));
  box-shadow: inset 0 0 40px rgba(106, 126, 255, 0.12);
}

.testing-page .lab-reactor::before,
.testing-page .lab-reactor::after {
  content: "";
  position: absolute;
  background: rgba(133, 188, 255, 0.42);
}

.testing-page .lab-reactor::before {
  width: 74%;
  height: 4px;
  top: 26px;
  left: 13%;
  border-radius: 999px;
}

.testing-page .lab-reactor::after {
  width: 18px;
  height: 50px;
  left: 50%;
  top: -38px;
  transform: translateX(-50%);
  border-radius: 999px;
}

.testing-page .lab-tank {
  right: 31%;
  bottom: 11%;
  width: 42px;
  height: 118px;
  border-radius: 20px;
  border: 2px solid rgba(126, 187, 255, 0.32);
  background: linear-gradient(180deg, rgba(159, 189, 255, 0.25), rgba(159, 189, 255, 0.03));
}

.testing-page .lab-stand {
  right: 48%;
  bottom: 11%;
  width: 6px;
  height: 160px;
  background: rgba(132, 189, 255, 0.55);
  border-radius: 999px;
}

.testing-page .lab-stand::before {
  content: "";
  width: 60px;
  height: 60px;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 2px solid rgba(132, 189, 255, 0.3);
  box-shadow: inset 0 0 24px rgba(132, 189, 255, 0.18);
}

.testing-page .lab-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8) 22%, rgba(0, 0, 0, 1) 100%);
}

.testing-page .section-head {
  margin: 0 auto 20px;
  text-align: center;
  max-width: 720px;
}

.testing-page .section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #7a61ca;
  font-weight: 700;
}

.testing-page .section-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--text);
  
}

.testing-page .section-note {
  margin: 0px auto 0;
  max-width: 720px;
  color: var(--text-soft);
  line-height: 1.7;
}

.testing-page .capabilities-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.testing-page .cap-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  min-height: 180px;
  position: relative;
  overflow: hidden;
}

.testing-page .cap-card.featured {
  background: linear-gradient(145deg, #6f31cb, #4f2496);
  color: #ffffff;
  border-color: transparent;
}

.testing-page .cap-card.featured p,
.testing-page .cap-card.featured .cap-list {
  color: rgba(255, 255, 255, 0.8);
}

.testing-page .cap-card.card-lifting { grid-column: span 4; }
.testing-page .cap-card.card-load { grid-column: span 4; }
.testing-page .cap-card.card-air { grid-column: span 4; }
.testing-page .cap-card.card-calibration {
  grid-column: span 4;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 242, 248, 0.98));
}
.testing-page .cap-card.card-ndt { grid-column: span 6; }
.testing-page .cap-card.card-pullout { grid-column: span 3; }
.testing-page .cap-card.card-noise { grid-column: span 3; }
.testing-page .cap-card.card-welding { grid-column: span 3; }
.testing-page .cap-card.card-lux { grid-column: span 3; }

.testing-page .cap-card.card-logos {
  grid-column: span 6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.testing-page .cap-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(109, 50, 201, 0.1);
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.testing-page .featured .cap-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.testing-page .cap-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
}

.testing-page .cap-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.testing-page .cap-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  color: #665d88;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.testing-page .tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(109, 50, 201, 0.08);
}

.testing-page .equipment-ghost {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 112px;
  height: 82px;
  opacity: 0.18;
  border-radius: 16px;
  background: radial-gradient(circle at 65% 28%, rgba(255, 255, 255, 0.8), transparent 18%), linear-gradient(180deg, #7e8195, #c4c7d5);
}

.testing-page .equipment-ghost::before,
.testing-page .equipment-ghost::after {
  content: "";
  position: absolute;
  background: #7c7f91;
}

.testing-page .equipment-ghost::before {
  width: 72px;
  height: 48px;
  left: 10px;
  top: 14px;
  border-radius: 8px;
}

.testing-page .equipment-ghost::after {
  width: 44px;
  height: 10px;
  right: 10px;
  bottom: -8px;
  border-radius: 999px;
}

.testing-page .logo-pill {
  min-width: 120px;
  padding: 14px 18px;
  text-align: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f3f4fa);
  border: 1px solid var(--border);
  color: #6f63a4;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.testing-page .methodology {
  background: rgba(255, 255, 255, 0.56);
  border-radius: 32px;
  padding: 36px clamp(20px, 4vw, 40px);
  border: 1px solid rgba(228, 230, 242, 0.95);
}

.testing-page .methodology-top {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 34px;
}

.testing-page .steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.testing-page .steps::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 20px;
  height: 2px;
  background: linear-gradient(90deg, rgba(240, 143, 27, 0.18), rgba(109, 50, 201, 0.32),
   rgba(240, 143, 27, 0.18));
  z-index: 0;
}

.testing-page .step-card {
  position: relative;
  text-align: center;
  padding-top: 4px;
  z-index: 1;
}

.testing-page .step-no {
  width: 42px;
  height: 42px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #efe6ff;
  color: #ea8320;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(65, 38, 118, 0.12);
}

.testing-page .step-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.testing-page .step-card p {
  margin: 0 auto;
  max-width: 260px;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.testing-page .infrastructure {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(109, 50, 201, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 245, 251, 0.94));
  border: 1px solid rgba(228, 230, 242, 0.95);
  box-shadow: 0 24px 56px rgba(42, 28, 88, 0.08);
}

.testing-page .infra-copy {
  margin: 0 auto;
}

.testing-page .infra-copy .section-title {
  max-width: 460px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.testing-page .infra-points {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.testing-page .infra-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(125, 117, 167, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 28px rgba(66, 40, 115, 0.06);
}

.testing-page .infra-point i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(240, 143, 27, 0.12);
  color: var(--accent);
  font-size: 1rem;
  margin-top: 0;
}

.testing-page .infra-point strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
  color: var(--text);
}

.testing-page .infra-point span {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

.testing-page .device-stage {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
}

.testing-page .device-card {
  width: min(100%, 430px);
  aspect-ratio: 1 / 0.82;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.98), rgba(235, 238, 246, 0.94) 42%, rgba(214, 219, 231, 0.86) 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 70px rgba(42, 28, 88, 0.16);
  position: relative;
  transform: rotate(-2deg);
}

.testing-page .device-card::before {
  content: "";
  position: absolute;
  inset: 8% 8% auto auto;
  width: 58%;
  aspect-ratio: 1 / 0.8;
  border-radius: 24px 24px 44px 24px;
  background: linear-gradient(180deg, #6f8da6, #2d4353);
  box-shadow: inset 0 -16px 26px rgba(7, 17, 25, 0.22);
  transform: rotate(-3deg);
}

.testing-page .device-card::after {
  content: "";
  position: absolute;
  left: 13%;
  right: 9%;
  bottom: 10%;
  height: 36%;
  border-radius: 36px 28px 22px 22px;
  background: linear-gradient(180deg, #e5e7ee 0%, #cfd4de 45%, #8d929f 100%);
  box-shadow: inset 0 8px 18px rgba(255, 255, 255, 0.6), inset 0 -10px 16px rgba(66, 71, 85, 0.18);
}

.testing-page .device-screen,
.testing-page .device-panel,
.testing-page .device-base-shadow {
  position: absolute;
}

.testing-page .device-screen {
  top: 14%;
  right: 17%;
  width: 42%;
  aspect-ratio: 1 / 0.75;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(112, 147, 170, 0.95), rgba(35, 54, 68, 0.98)), linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
  border: 6px solid rgba(198, 205, 214, 0.84);
  transform: rotate(-4deg);
  overflow: hidden;
}

.testing-page .device-screen::before {
  content: "";
  position: absolute;
  inset: 18% 16%;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(133, 222, 255, 0.32), rgba(58, 164, 226, 0.06)), linear-gradient(90deg, rgba(255, 255, 255, 0.25) 0 28%, transparent 28% 38%, rgba(255, 255, 255, 0.14) 38% 100%);
}

.testing-page .device-panel {
  left: 22%;
  bottom: 21%;
  width: 18%;
  height: 16%;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(170, 176, 188, 0.9), rgba(110, 116, 127, 0.94));
}

.testing-page .device-panel::before,
.testing-page .device-panel::after {
  content: "";
  position: absolute;
  background: rgba(241, 145, 28, 0.96);
  border-radius: 50%;
}

.testing-page .device-panel::before {
  width: 22px;
  height: 22px;
  left: 20%;
  top: 24%;
}

.testing-page .device-panel::after {
  width: 12px;
  height: 12px;
  right: 24%;
  top: 30%;
}

.testing-page .device-base-shadow {
  left: 14%;
  right: 14%;
  bottom: 6%;
  height: 20px;
  border-radius: 999px;
  background: rgba(68, 57, 103, 0.15);
  filter: blur(8px);
}

.testing-page .device-badge {
  position: absolute;
  right: 18px;
  /*bottom: 18px;*/
  padding: 14px 16px;
  border-radius: 16px 16px 16px 4px;
  background: linear-gradient(145deg, #ff8d18, #d85a00);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 18px 32px rgba(216, 90, 0, 0.28);
}

.testing-page .device-badge strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  font-family: "Sora", sans-serif;
}

.testing-page .device-badge span {
  display: block;
  margin-top: 3px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.86;
}

.testing-page .cta {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, #712fcb, #55259f);
  box-shadow: 0 28px 58px rgba(76, 35, 148, 0.24);
  padding: clamp(28px, 4vw, 42px);
  color: #ffffff;
  text-align: center;
}

.testing-page .cta::before,
.testing-page .cta::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.testing-page .cta::before {
  width: 220px;
  height: 220px;
  right: -70px;
  top: -80px;
}

.testing-page .cta::after {
  width: 180px;
  height: 180px;
  left: -40px;
  bottom: -90px;
}

.testing-page .cta h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.testing-page .cta p {
  margin: 12px auto 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.testing-page .cta-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.testing-page .btn-main,
.testing-page .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.testing-page .btn-main {
  background: linear-gradient(135deg, #ff9b1e, #ea6b09);
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(240, 143, 27, 0.28);
}

.testing-page .btn-ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.testing-page .btn-main:hover,
.testing-page .btn-ghost:hover {
  transform: translateY(-2px);
}

.testing-page .footer {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 26px;
  padding: 28px clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(228, 230, 242, 0.95);
  box-shadow: var(--shadow);
}

.testing-page .footer-brand img {
  width: 126px;
  margin-bottom: 16px;
}

.testing-page .footer-brand p,
.testing-page .footer-col a,
.testing-page .footer-contact li {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.testing-page .footer-col h4 {
  margin: 0 0 12px;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a7eb7;
}

.testing-page .footer-links,
.testing-page .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.testing-page .socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.testing-page .socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(109, 50, 201, 0.08);
  color: var(--primary);
}

.testing-page .copyright {
  margin-top: 18px;
  text-align: center;
  color: #9a9db1;
  font-size: 0.85rem;
}

@media (max-width: 991px) {
  .testing-page .hero,
  .testing-page .infrastructure,
  .testing-page .footer { grid-template-columns: 1fr; }

  .testing-page .hero-visual {
    min-height: 280px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 16px;
  }

  .testing-page .cap-card.card-air,
  .testing-page .cap-card.card-lifting,
  .testing-page .cap-card.card-calibration,
  .testing-page .cap-card.card-ndt,
  .testing-page .cap-card.card-load,
  .testing-page .cap-card.card-pullout,
  .testing-page .cap-card.card-noise,
  .testing-page .cap-card.card-welding,
  .testing-page .cap-card.card-lux,
  .testing-page .cap-card.card-logos { grid-column: span 6; }

  .testing-page .steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testing-page .steps::before {
    left: 20px;
    top: 0;
    bottom: 0;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(240, 143, 27, 0.18), rgba(109, 50, 201, 0.32), rgba(240, 143, 27, 0.18));
  }

  .testing-page .step-card {
    text-align: left;
    padding-left: 64px;
  }

  .testing-page .step-no {
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
  }

  .testing-page .step-card p { margin: 0; }
}

@media (max-width: 767px) {
  .testing-page .page-shell {
    width: min(100% - 22px, 100%);
    padding-top: 12px;
  }

  .testing-page .hero {
    border-radius: 28px;
    min-height: auto;
    padding: 28px 20px;
  }

  .testing-page .capabilities-grid { grid-template-columns: 1fr; }

  .testing-page .cap-card.card-air,
  .testing-page .cap-card.card-lifting,
  .testing-page .cap-card.card-calibration,
  .testing-page .cap-card.card-ndt,
  .testing-page .cap-card.card-load,
  .testing-page .cap-card.card-pullout,
  .testing-page .cap-card.card-noise,
  .testing-page .cap-card.card-welding,
  .testing-page .cap-card.card-lux,
  .testing-page .cap-card.card-logos { grid-column: auto; }

  .testing-page .methodology,
  .testing-page .cta,
  .testing-page .footer { border-radius: 24px; }

  .testing-page .infra-points { grid-template-columns: 1fr; }
  .testing-page .device-stage { min-height: 340px; }
  .testing-page .device-badge strong { font-size: 1.25rem; }
}

@media (prefers-reduced-motion: no-preference) {
  .testing-page .hero::before,
  .testing-page .hero::after,
  .testing-page .cta::before,
  .testing-page .cta::after { animation: testing-page-float 8s ease-in-out infinite; }

  .testing-page .hero::after,
  .testing-page .cta::after { animation-delay: -3s; }
}

@keyframes testing-page-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Certification Page */
.certification-page {
  background:
    radial-gradient(circle at top center, rgba(111, 49, 203, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfbfd 0%, #f3f1f8 100%);
  color: #26224c;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.certification-page .page-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 24px 0 46px;
}

.certification-page .section {
  margin-top: 34px;
}

.certification-page .cert-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 30px;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(90deg, rgba(37, 24, 61, 0.94) 0%, rgba(37, 24, 61, 0.78) 40%, rgba(37, 24, 61, 0.28) 100%),
    linear-gradient(180deg, rgba(9, 12, 24, 0.16), rgba(9, 12, 24, 0.54)),
    url("images/Inspection_Image.jpg") center/cover no-repeat;
  box-shadow: 0 30px 70px rgba(32, 18, 71, 0.24);
}

.certification-page .cert-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(12, 18, 28, 0.58) 0%, transparent 32%),
    radial-gradient(circle at 84% 24%, rgba(255, 255, 255, 0.12), transparent 22%);
  pointer-events: none;
}

.certification-page .cert-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 90vw;
}

.certification-page .cert-kicker,
.certification-page .cert-section-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgb(95 44 175 / 82%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.certification-page .cert-hero h1 {
  margin: 16px 0 0;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.6rem, 5.2vw, 3.8rem);
  line-height: 0.94;
  max-width: 760px;
}

.certification-page .cert-hero p {
  margin: 16px 0 0;
  max-width: 500px;
  color: rgba(242, 245, 249, 0.84);
  font-size: 1rem;
  line-height: 1.8;
}

.certification-page .cert-hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.certification-page .btn-main,
.certification-page .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 700;
}

.certification-page .btn-main {
  background: linear-gradient(135deg, #ff9b1e, #d96b0d);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(217, 107, 13, 0.26);
}

.certification-page .btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.certification-page .cert-intro,
.certification-page .cert-services {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(235, 229, 243, 0.95);
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(41, 23, 74, 0.05);
  padding: clamp(22px, 4vw, 34px);
}

.certification-page .cert-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.92fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.certification-page .cert-section-label {
  background: rgba(111, 49, 203, 0.08);
  color: #6f31cb;
}

.certification-page .cert-intro-copy h2,
.certification-page .cert-section-head h2,
.certification-page .cert-benefits-head h2,
.certification-page .cert-cta h2 {
  margin: 14px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.certification-page .cert-intro-text,
.certification-page .cert-section-subtitle {
  margin: 10px 0 0;
  color: #000000;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 860px;
}

.certification-page .cert-intro-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
}

.certification-page .cert-intro-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #26224c;
  font-size: 0.86rem;
  line-height: 1.6;
}

.certification-page .cert-intro-list i {
  color: #6f31cb;
  margin-top: 2px;
}

.certification-page .cert-photo-card {
  position: relative;
  border-radius: 12px;
  overflow: visible;
  background: linear-gradient(180deg, #dfe7ec 0%, #edf2f5 100%);
  box-shadow: 0 18px 42px rgba(24, 29, 39, 0.18);
}

.certification-page .cert-photo-card img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 12px;
}

.certification-page .cert-note-card {
  position: absolute;
  right: -10px;
  bottom: -14px;
  width: min(230px, calc(100% - 36px));
  padding: 14px 16px;
  border-radius: 12px 12px 12px 6px;
  background: rgba(255, 249, 242, 0.96);
  box-shadow: 0 14px 28px rgba(67, 49, 26, 0.12);
}

.certification-page .cert-note-card span {
  display: block;
  color: #e08a18;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.certification-page .cert-note-card strong {
  display: block;
  margin-top: 8px;
  color: #26224c;
  font-size: 0.92rem;
  line-height: 1.5;
}

.certification-page .cert-section-head,
.certification-page .cert-benefits-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.certification-page .cert-section-copy {
  max-width: 990px;
}

.certification-page .cert-section-no {
  color: #ded8ea;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
}

.certification-page .cert-service-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 0.72fr;
  gap: 14px;
  align-items: stretch;
}

.certification-page .cert-service-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #ece6f4;
  background: #ffffff;
  padding: 20px;
}

.certification-page .cert-service-card h3 {
  margin: 14px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.certification-page .cert-service-card p,
.certification-page .cert-service-list li,
.certification-page .cert-inline-link {
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.6;
}

.certification-page .cert-service-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(111, 49, 203, 0.08);
  color: #6f31cb;
  font-size: 0.72rem;
}

.certification-page .cert-service-card-iso {
  min-height: 188px;
}

.certification-page .cert-service-list {
  margin: 14px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.certification-page .cert-service-card-featured {
  min-height: 188px;
  background: linear-gradient(160deg, rgba(111, 49, 203, 0.96), rgba(87, 36, 158, 0.9));
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.certification-page .cert-service-card-featured .cert-service-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.certification-page .cert-service-card-featured p {
  color: rgba(255, 255, 255, 0.82);
}

.certification-page .cert-service-tags {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.certification-page .cert-service-tags span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
}

.certification-page .cert-service-card-value {
  min-height: 188px;
  background: linear-gradient(180deg, #f1eff6, #fcfcfd);
}

.certification-page .cert-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: #6f31cb;
  font-size: 0.78rem;
  font-weight: 700;
}

.certification-page .cert-benefits {
  text-align: center;
  padding: 10px 0 4px;
}

.certification-page .cert-benefits-head {
  justify-content: center;
  text-align: center;
  margin-bottom: 18px;
}

.certification-page .cert-benefits-head h2 {
  max-width: 1120px;
}

.certification-page .cert-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.certification-page .cert-benefit-card {
  padding: 10px 12px;
  border-radius: 20px;
  background: transparent;
}

.certification-page .cert-benefit-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #f1eef6;
  color: #ff8e04;
  font-size: 1rem;
}

.certification-page .cert-benefit-card h3 {
  margin: 14px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
}

.certification-page .cert-benefit-card p {
  margin: 0 auto;
  max-width: 220px;
  color: #151515;
  font-size: 0.90rem;
  line-height: 1.6;
}

.certification-page .cert-cta {
  overflow: hidden;
  position: relative;
  border-radius: 25px;
  max-width: 90vw;
  padding: clamp(34px, 5vw, 52px);
  text-align: center;
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(135deg, #6d2bc3 0%, #5b1fa4 100%);
  box-shadow: 0 22px 44px rgba(76, 35, 148, 0.16);
}

.certification-page .cert-cta p {
  max-width: 620px;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.75;
  font-size: 0.88rem;
}

.certification-page .cert-cta-actions {
  justify-content: center;
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.certification-page .cert-cta-light,
.certification-page .cert-cta-strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
}

.certification-page .cert-cta-light {
  background: #ffffff;
  color: #5b1fa4;
}

.certification-page .cert-cta-strong {
  background: linear-gradient(135deg, #ff9b1e, #d96b0d);
  color: #ffffff;
}

@media (max-width: 991px) {
  .certification-page .cert-service-grid,
  .certification-page .cert-intro,
  .certification-page .cert-benefit-grid {
    grid-template-columns: 1fr;
  }

  .certification-page .cert-section-head {
    flex-direction: column;
  }

  .certification-page .cert-intro-list {
    grid-template-columns: 1fr;
  }

  .certification-page .cert-hero {
    min-height: 500px;
    background-position: center;
  }
}

@media (max-width: 767px) {
  .certification-page .page-shell {
    width: min(100% - 18px, 100%);
    padding-top: 10px;
  }

  .certification-page .cert-hero,
  .certification-page .cert-intro,
  .certification-page .cert-services,
  .certification-page .cert-cta {
    border-radius: 24px;
  }

  .certification-page .cert-hero {
    min-height: 460px;
    padding: 24px 20px;
    align-items: flex-end;
  }

  .certification-page .btn-main,
  .certification-page .btn-ghost,
  .certification-page .cert-cta-light,
  .certification-page .cert-cta-strong {
    width: 100%;
  }

  .certification-page .cert-section-no {
    font-size: 2.5rem;
  }

  .certification-page .cert-photo-card img {
    min-height: 300px;
  }

  .certification-page .cert-note-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }
}

/* Inspection Page */
.inspection-page {
  --bg: #f7f6fb;
  --surface: #ffffff;
  --surface-soft: #f0eef6;
  --surface-muted: #ece9f3;
  --text: #000000;
  --text-soft: #000000;
  --primary: #6f31cb;
  --primary-dark: #2a184d;
  --accent: #ec8f15;
  --border: #e6e0f0;
  --shadow: 0 18px 44px rgba(40, 21, 79, 0.08);
  margin: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(111, 49, 203, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfbfd 0%, #f3f1f8 100%);
}

.inspection-page *,
.inspection-page *::before,
.inspection-page *::after {
  box-sizing: border-box;
}

.inspection-page img {
  max-width: 100%;
  display: block;
}

.inspection-page a {
  color: inherit;
  text-decoration: none;
}

.inspection-page .page-shell {
  max-width: 90vw;
  margin: 0 auto;
 padding: 24px 0 46px;
}

.inspection-page .section {
  margin-top: 34px;
}

.inspection-page .inspection-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 30px;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(90deg, rgba(18, 39, 59, 0.92) 0%, rgba(18, 39, 59, 0.74) 38%, rgba(18, 39, 59, 0.18) 100%),
    linear-gradient(180deg, rgba(6, 15, 24, 0.14), rgba(6, 15, 24, 0.62)),
    url("images/inspection.jpeg") center/cover no-repeat;
  box-shadow: 0 30px 70px rgba(17, 28, 44, 0.24);
}

.inspection-page .inspection-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(12, 18, 28, 0.62) 0%, transparent 30%),
    radial-gradient(circle at 85% 22%, rgba(255, 255, 255, 0.12), transparent 22%);
  pointer-events: none;
}

.inspection-page .inspection-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 90vw;
}

.inspection-page .inspection-kicker,
.inspection-page .inspection-section-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.inspection-page .inspection-hero h1 {
  margin: 16px 0 0;
  max-width: 820px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.6rem, 5.2vw, 3.8rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.inspection-page .inspection-hero p {
  margin: 16px 0 0;
  max-width: 430px;
  color: rgba(242, 245, 249, 0.84);
  line-height: 1.75;
  font-size: 1rem;
}

.inspection-page .inspection-hero-actions,
.inspection-page .inspection-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.inspection-page .inspection-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.inspection-page .inspection-btn:hover {
  transform: translateY(-2px);
}

.inspection-page .inspection-btn-primary,
.inspection-page .inspection-btn-outline {
  background: linear-gradient(135deg, #ef9517, #d96b0d);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(217, 107, 13, 0.26);
}

.inspection-page .inspection-btn-secondary,
.inspection-page .inspection-btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.inspection-page .inspection-section-head,
.inspection-page .inspection-benefits-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.inspection-page .inspection-section-label {
  background: rgba(111, 49, 203, 0.08);
  color: var(--primary);
}

.inspection-page .inspection-section-copy {
  max-width: 990px;
}

.inspection-page .inspection-section-subtitle {
  margin: 10px 0 0;
  color: #a8a2b6;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 860px;
}

.inspection-page .inspection-section-head h2,
.inspection-page .inspection-checklist h2,
.inspection-page .inspection-benefits-head h2,
.inspection-page .inspection-cta h2 {
  margin: 14px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.inspection-page .inspection-section-no {
  color: #ded8ea;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
}

.inspection-page .inspection-verticals,
.inspection-page .inspection-checklist,
.inspection-page .inspection-benefits,
.inspection-page .inspection-cta {
  max-width: 90vw;
  margin-left: auto;
  margin-right: auto;
}

.inspection-page .inspection-verticals,
.inspection-page .inspection-checklist {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(235, 229, 243, 0.95);
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(41, 23, 74, 0.05);
  padding: clamp(22px, 4vw, 34px);
}

.inspection-page .inspection-intro-panel {
  align-items: stretch;
}

.inspection-page .inspection-trust-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.inspection-page .inspection-risk-panel {
  padding: 10px 0 6px;
}

.inspection-page .inspection-discipline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.inspection-page .inspection-discipline-card {
  padding: 24px 22px;
  border-radius: 20px;
  border: 1px solid #ece6f4;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 245, 251, 0.92));
  box-shadow: 0 16px 34px rgba(41, 23, 74, 0.06);
}

.inspection-page .inspection-discipline-card-accent {
  background: linear-gradient(140deg, rgba(111, 49, 203, 0.98), rgba(87, 36, 158, 0.94));
  border-color: rgba(111, 49, 203, 0.24);
  color: #ffffff;
}

.inspection-page .inspection-discipline-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(111, 49, 203, 0.08);
  color: var(--primary);
  font-size: 1rem;
}

.inspection-page .inspection-discipline-card-accent .inspection-discipline-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.inspection-page .inspection-discipline-card h3 {
  margin: 18px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.16rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.inspection-page .inspection-discipline-card p {
  margin: 0;
  max-width: 44ch;
  color: #5d5870;
  font-size: 0.95rem;
  line-height: 1.72;
}

.inspection-page .inspection-discipline-card-accent p,
.inspection-page .inspection-discipline-card-accent h3 {
  color: #ffffff;
}

.inspection-page .inspection-discipline-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inspection-page .inspection-discipline-card-accent a {
  color: rgba(255, 255, 255, 0.92);
}

.inspection-page .inspection-vertical-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 0.72fr;
  grid-template-areas:
    "gear gear primary"
    "muted plant plant";
  gap: 14px;
  align-items: stretch;
}

.inspection-page .vertical-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #ece6f4;
  background: #ffffff;
  box-shadow: none;
  padding: 20px;
}

.inspection-page .vertical-card h3 {
  margin: 14px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 0.96rem;
  letter-spacing: -0.02em;
}

.inspection-page .vertical-card p {
  margin: 0;
  color: #000000;
  font-size: 1rem;
  line-height: 1.55;
}

.inspection-page .vertical-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
}

.inspection-page .vertical-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(111, 49, 203, 0.08);
  color: var(--primary);
  font-size: 0.7rem;
}

.inspection-page .vertical-card-gear {
  grid-area: gear;
  min-height: 188px;
  display: grid;
  grid-template-columns: minmax(130px, 0.72fr) 168px;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  padding: 16px 18px 16px 16px;
}

.inspection-page .vertical-card-gear .vertical-content {
  max-width: 185px;
}

.inspection-page .vertical-card-gear .vertical-icon {
  margin-bottom: 10px;
}

.inspection-page .vertical-card-gear h3 {
  margin-top: 0;
}

.inspection-page .vertical-card-gear p {
  max-width: 175px;
}

.inspection-page .vertical-card-gear a {
  position: relative;
  margin-top: 14px;
  padding-left: 12px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.inspection-page .vertical-card-gear a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}

.inspection-page .gear-visual {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.inspection-page .gear-core,
.inspection-page .gear-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.inspection-page .gear-core {
  inset: 26px;
  background:
    radial-gradient(circle, #ffb13a 0 24%, #e88300 24% 58%, #b85d00 58% 100%);
  box-shadow: inset 0 -10px 20px rgba(88, 32, 0, 0.18), 0 8px 18px rgba(225, 132, 11, 0.18);
}

.inspection-page .gear-ring {
  background:
    conic-gradient(from 0deg, #f8a31b 0 10%, transparent 10% 15%, #f8a31b 15% 25%, transparent 25% 30%, #f8a31b 30% 40%, transparent 40% 45%, #f8a31b 45% 55%, transparent 55% 60%, #f8a31b 60% 70%, transparent 70% 75%, #f8a31b 75% 85%, transparent 85% 90%, #f8a31b 90% 100%);
  -webkit-mask: radial-gradient(circle, transparent 0 41%, #000 42% 100%);
  mask: radial-gradient(circle, transparent 0 41%, #000 42% 100%);
  filter: drop-shadow(0 12px 16px rgba(236, 143, 21, 0.22));
}

.inspection-page .vertical-card-primary {
  grid-area: primary;
  min-height: 188px;
  background:
    linear-gradient(160deg, rgba(111, 49, 203, 0.96), rgba(87, 36, 158, 0.9)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 30%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 16px 14px;
}

.inspection-page .vertical-card-primary::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -24px;
  width: 116px;
  height: 116px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
  transform: rotate(20deg);
}

.inspection-page .vertical-card-primary::before {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transform: rotate(18deg);
}

.inspection-page .vertical-card-primary .vertical-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  margin-bottom: 12px;
}

.inspection-page .vertical-card-primary p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 145px;
}

.inspection-page .vertical-card-primary-copy {
  position: relative;
  z-index: 1;
}

.inspection-page .vertical-card-muted {
  grid-area: muted;
  background: linear-gradient(180deg, #f1eff6, #fcfcfd);
  min-height: 152px;
  padding: 16px;
}

.inspection-page .vertical-card-plant {
  grid-area: plant;
  min-height: 152px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 148px;
  gap: 16px;
  align-items: end;
  padding: 16px;
}

.inspection-page .vertical-card-plant h3,
.inspection-page .vertical-card-plant p {
  max-width: 270px;
}

.inspection-page .vertical-card-plant p {
  margin-top: 4px;
}

.inspection-page .vertical-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 0;
  align-self: stretch;
}

.inspection-page .vertical-stats div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 64px;
  padding: 10px 8px;
  border-radius: 12px;
  background: #f3f0f8;
  text-align: center;
}

.inspection-page .vertical-stats strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  color: var(--primary);
}

.inspection-page .vertical-stats span {
  display: block;
  margin-top: 2px;
  color: var(--text-soft);
  font-size: 0.66rem;
  line-height: 1.35;
}

.inspection-page .inspection-checklist {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.92fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding-top: clamp(24px, 4vw, 36px);
  padding-bottom: clamp(24px, 4vw, 36px);
}

.inspection-page .inspection-intro {
  margin: 16px 0 0;
  max-width: 560px;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 0.88rem;
}

.inspection-page .inspection-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
}

.inspection-page .inspection-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.55;
}

.inspection-page .inspection-list i {
  color: var(--primary);
  margin-top: 2px;
}

.inspection-page .inspection-photo-card {
  position: relative;
  border-radius: 12px;
  overflow: visible;
  background: linear-gradient(180deg, #dfe7ec 0%, #edf2f5 100%);
  box-shadow: 0 18px 42px rgba(24, 29, 39, 0.18);
  padding: 0;
}

.inspection-page .inspection-photo-card img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 12px;
}

.inspection-page .inspection-note-card {
  position: absolute;
  right: -10px;
  bottom: -14px;
  width: min(210px, calc(100% - 36px));
  padding: 14px 16px;
  border-radius: 12px 12px 12px 6px;
  background: rgba(255, 249, 242, 0.96);
  box-shadow: 0 14px 28px rgba(67, 49, 26, 0.12);
}

.inspection-page .inspection-note-card span {
  display: block;
  color: #e08a18;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inspection-page .inspection-note-card strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.5;
}

.inspection-page .inspection-benefits {
  text-align: center;
  padding: 10px 0 4px;
}

.inspection-page .inspection-benefits-head {
  justify-content: center;
  text-align: center;
  margin-bottom: 18px;
}

.inspection-page .inspection-benefits-head h2 {
  max-width: 620px;
}

.inspection-page .inspection-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.inspection-page .benefit-card {
  padding: 10px 12px;
  border-radius: 20px;
  background: transparent;
  border: 0;
}

.inspection-page .benefit-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #f1eef6;
  color: #f08f1b;
  font-size: 1rem;
}

.inspection-page .benefit-card h3 {
  margin: 14px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
}

.inspection-page .benefit-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.8rem;
  line-height: 1.6;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

.inspection-page .inspection-cta {
  overflow: hidden;
  position: relative;
  border-radius: 50px;
  max-width: 90vw;
  padding: clamp(34px, 8vw, 52px);
  text-align: center;
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(135deg, #6d2bc3 0%, #5b1fa4 100%);
  box-shadow: 0 22px 44px rgba(76, 35, 148, 0.16);
}

.inspection-page .inspection-cta p {
  max-width: 620px;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.75;
  font-size: 0.88rem;
}

.inspection-page .inspection-cta-actions {
  justify-content: center;
}

.inspection-page .inspection-btn-outline {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

@media (max-width: 991px) {
  .inspection-page .inspection-discipline-grid,
  .inspection-page .inspection-vertical-grid,
  .inspection-page .inspection-checklist,
  .inspection-page .inspection-benefit-grid {
    grid-template-columns: 1fr;
  }

  .inspection-page .inspection-hero {
    min-height: 500px;
    background-position: center;
  }

  .inspection-page .inspection-section-head {
    flex-direction: column;
  }

  .inspection-page .inspection-section-no {
    align-self: flex-end;
  }

  .inspection-page .inspection-vertical-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "gear"
      "primary"
      "muted"
      "plant";
  }

  .inspection-page .vertical-card-gear,
  .inspection-page .vertical-card-plant {
    grid-template-columns: 1fr;
  }

  .inspection-page .gear-visual {
    margin: 0 auto;
  }

  .inspection-page .vertical-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 8px;
  }

  .inspection-page .inspection-list {
    grid-template-columns: 1fr;
  }

  .inspection-page .inspection-trust-list {
    grid-template-columns: 1fr;
  }

  .inspection-page .inspection-verticals,
  .inspection-page .inspection-checklist,
  .inspection-page .inspection-benefits,
  .inspection-page .inspection-cta {
    max-width: 90vw;
  }

  .inspection-page .inspection-photo-card img {
    min-height: 360px;
  }
}

@media (max-width: 767px) {
  .inspection-page .page-shell {
    width: min(100% - 18px, 100%);
    padding-top: 10px;
  }

  .inspection-page .inspection-hero,
  .inspection-page .inspection-verticals,
  .inspection-page .inspection-checklist,
  .inspection-page .inspection-cta {
    border-radius: 24px;
  }

  .inspection-page .inspection-hero {
    min-height: 460px;
    padding: 24px 20px;
    align-items: flex-end;
  }

  .inspection-page .inspection-btn {
    width: 100%;
  }

  .inspection-page .inspection-section-no {
    font-size: 2.5rem;
  }

  .inspection-page .vertical-card {
    border-radius: 18px;
  }

  .inspection-page .inspection-photo-card img {
    min-height: 300px;
  }

  .inspection-page .inspection-note-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }
}

/* Audit Page */
.audit-page {
  --bg: #f5f6fb;
  --surface: #ffffff;
  --surface-soft: #f0f2f8;
  --text: #23213f;
  --text-soft: #4f4775;
  --primary: #6d2fc0;
  --primary-dark: #4c1e8b;
  --accent: #ef8d18;
  --border: #e7e8f1;
  margin: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(109, 47, 192, 0.06), transparent 24%),
    linear-gradient(180deg, #f7f8fc 0%, #eff2f8 100%);
}

.audit-page *,
.audit-page *::before,
.audit-page *::after {
  box-sizing: border-box;
}

.audit-page a {
  color: inherit;
  text-decoration: none;
}

.audit-page .page-shell {
 max-width: 90vw;
  margin: 0 auto;
  padding: 20px 0 40px;
}

.audit-page .section {
  margin-top: 34px;
}

.audit-page .audit-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  background:
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #241538 0%, #3a2460 48%, #612db0 100%);
  box-shadow: 0 26px 60px rgba(38, 22, 70, 0.18);
}

.audit-page .audit-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(12, 18, 28, 0.58) 0%, transparent 32%),
    radial-gradient(circle at 84% 24%, rgba(255, 255, 255, 0.12), transparent 22%);
  pointer-events: none;
}

.audit-page .audit-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
  color: #ffffff;
}

.audit-page .audit-kicker,
.audit-page .audit-section-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgb(95 44 175 / 82%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audit-page .audit-hero h1 {
  margin: 16px 0 0;
  max-width: 760px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.6rem, 5.2vw, 3.8rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.audit-page .audit-hero h1 span {
  color: #ffb248;
}

.audit-page .audit-hero p {
  margin: 16px 0 0;
  max-width: 560px;
  color: rgba(242, 245, 249, 0.84);
  font-size: 1rem;
  line-height: 1.8;
}

.audit-page .audit-hero-actions,
.audit-page .audit-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.audit-page .audit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.audit-page .audit-btn:hover {
  transform: translateY(-2px);
}

.audit-page .audit-btn-primary {
  background: linear-gradient(135deg, #ff9b1e, #d96b0d);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(217, 107, 13, 0.26);
}

.audit-page .audit-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.audit-page .audit-hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.audit-page .audit-hero-image-wrap {
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 44px rgba(18, 10, 36, 0.26);
}

.audit-page .audit-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audit-page .audit-dimensions {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(230, 232, 241, 0.95);
  border-radius: 26px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 14px 34px rgba(31, 25, 57, 0.04);
}

.audit-page .audit-section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.audit-page .audit-section-copy {
  max-width: 640px;
}

.audit-page .audit-section-copy h2,
.audit-page .audit-journey-head h2,
.audit-page .audit-reporting-copy h2,
.audit-page .audit-cta h2 {
  margin: 14px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.audit-page .audit-section-copy p:last-child,
.audit-page .audit-journey-head p:last-child {
  margin: 10px 0 0;
  color: #9a96aa;
  font-size: 0.82rem;
  line-height: 1.7;
}

.audit-page .audit-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 6px;
}

.audit-page .audit-dimension-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.audit-page .audit-dimension-card {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 18px 16px;
  box-shadow: 0 10px 24px rgba(33, 24, 56, 0.04);
}

.audit-page .audit-dimension-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary);
  font-size: 0.74rem;
}

.audit-page .audit-dimension-icon.accent {
  background: rgba(239, 141, 24, 0.1);
  color: var(--accent);
}

.audit-page .audit-dimension-icon.blue {
  background: rgba(74, 120, 237, 0.1);
  color: #4a78ed;
}

.audit-page .audit-dimension-icon.lilac {
  background: rgba(185, 159, 242, 0.14);
  color: #9c7be8;
}

.audit-page .audit-dimension-card h3 {
  margin: 14px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
}

.audit-page .audit-dimension-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.8rem;
  line-height: 1.65;
}

.audit-page .audit-journey {
  text-align: center;
  padding: 8px 0 2px;
}

.audit-page .audit-journey-head {
  max-width: 720px;
  margin: 0 auto;
}

.audit-page .audit-journey-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.audit-page .audit-journey-steps::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(109, 47, 192, 0.16), rgba(109, 47, 192, 0.32), rgba(109, 47, 192, 0.16));
}

.audit-page .audit-step {
  position: relative;
  padding-top: 8px;
}

.audit-page .audit-step-no {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6d2fc0, #5521a2);
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 0.8rem;
  box-shadow: 0 12px 24px rgba(93, 36, 161, 0.2);
}

.audit-page .audit-step h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 0.94rem;
}

.audit-page .audit-step p {
  margin: 8px auto 0;
  max-width: 210px;
  color: var(--text-soft);
  font-size: 0.76rem;
  line-height: 1.6;
}

.audit-page .audit-reporting {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
}

.audit-page .audit-report-card {
  border-radius: 18px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 22px 44px rgba(26, 22, 46, 0.12);
}

.audit-page .audit-report-screen {
  min-height: 250px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(12, 23, 35, 0.96), rgba(18, 37, 48, 0.98)),
    radial-gradient(circle at top left, rgba(77, 193, 255, 0.12), transparent 18%);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.audit-page .audit-report-screen::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42px;
  background: linear-gradient(180deg, transparent, rgba(7, 12, 18, 0.3));
}

.audit-page .audit-report-ui {
  border-radius: 12px;
  background: rgba(137, 229, 255, 0.1);
  border: 1px solid rgba(137, 229, 255, 0.1);
}

.audit-page .audit-report-ui-top {
  height: 54px;
  width: 56%;
}

.audit-page .audit-report-ui-chart {
  width: 100%;
  height: 92px;
  margin-top: 14px;
  position: relative;
}

.audit-page .audit-report-ui-chart::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 14px;
  height: 38px;
  background:
    linear-gradient(90deg, transparent 0 10%, rgba(130, 240, 255, 0.55) 10% 12%, transparent 12% 18%, rgba(130, 240, 255, 0.38) 18% 20%, transparent 20% 28%, rgba(130, 240, 255, 0.62) 28% 30%, transparent 30% 38%, rgba(130, 240, 255, 0.42) 38% 40%, transparent 40% 100%);
  border-radius: 10px;
}

.audit-page .audit-report-ui-chart.small {
  width: 46%;
  height: 72px;
  margin-top: 14px;
}

.audit-page .audit-report-ui-bars {
  position: absolute;
  right: 18px;
  bottom: 24px;
  width: 32%;
  height: 118px;
}

.audit-page .audit-report-ui-bars::before {
  content: "";
  position: absolute;
  inset: 12px;
  background:
    linear-gradient(180deg, transparent 0 16%, rgba(124, 223, 255, 0.8) 16% 100%),
    linear-gradient(180deg, transparent 0 32%, rgba(124, 223, 255, 0.8) 32% 100%),
    linear-gradient(180deg, transparent 0 44%, rgba(124, 223, 255, 0.8) 44% 100%);
  background-size: 18% 100%, 18% 100%, 18% 100%;
  background-position: 8% 0, 42% 0, 76% 0;
  background-repeat: no-repeat;
}

.audit-page .audit-report-tags {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.audit-page .audit-report-tags span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(33, 24, 56, 0.05);
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 600;
}

.audit-page .audit-report-tags i {
  color: var(--primary);
}

.audit-page .audit-benefit-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.audit-page .audit-benefit-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
}

.audit-page .audit-benefit-dot {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
}

.audit-page .audit-benefit-list h3 {
  margin: 0 0 6px;
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
}

.audit-page .audit-benefit-list p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.65;
}

.audit-page .audit-cta {
  border-radius: 22px;
  padding: clamp(28px, 5vw, 44px);
  text-align: center;
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(135deg, #6d2bc3 0%, #5a239f 100%);
  box-shadow: 0 24px 50px rgba(76, 35, 148, 0.2);
}

.audit-page .audit-cta p {
  max-width: 560px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  line-height: 1.7;
}

.audit-page .audit-cta-actions {
  justify-content: center;
}

@media (max-width: 991px) {
  .audit-page .audit-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .audit-page .audit-hero-image-wrap {
    min-height: 300px;
  }

  .audit-page .audit-dimension-grid,
  .audit-page .audit-journey-steps,
  .audit-page .audit-reporting {
    grid-template-columns: 1fr;
  }

  .audit-page .audit-section-head {
    flex-direction: column;
  }

  .audit-page .audit-journey-steps::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .audit-page .page-shell {
    width: min(100% - 18px, 100%);
    padding-top: 10px;
  }

  .audit-page .audit-hero,
  .audit-page .audit-dimensions,
  .audit-page .audit-cta {
    border-radius: 22px;
  }

  .audit-page .audit-btn {
    width: 100%;
  }
}

/* NDT Page */
.ndt-page {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --surface-soft: #eef2f8;
  --text: #000000;
  --text-soft: #000000;
  --primary: #6d2fc0;
  --primary-dark: #4f2391;
  --accent: #ef8f1a;
  --border: #e4e8f1;
  margin: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(109, 47, 192, 0.06), transparent 25%),
    linear-gradient(180deg, #f8f9fc 0%, #eff3f9 100%);
}

.ndt-page *,
.ndt-page *::before,
.ndt-page *::after {
  box-sizing: border-box;
}

.ndt-page img {
  max-width: 100%;
  display: block;
}

.ndt-page a {
  color: inherit;
  text-decoration: none;
}

.ndt-page .page-shell {
  
  max-width: 90vw;
  margin: 0 auto;
  padding: 18px 0 40px;
}

.ndt-page .section {
  margin-top: 34px;
}

.ndt-page .ndt-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 10px;
  border-radius: 999px;
  background:rgb(57 25 100 / 69%);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ndt-page .ndt-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  min-height: 420px;
  width: 100%;
  margin: 0;
}

.ndt-page .ndt-hero-copy {
  max-width: 820px;
}

.ndt-page .ndt-hero h1 {
  margin: 14px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4.8vw, 4.3rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.ndt-page .ndt-hero h1 span {
  color: var(--primary);
}

.ndt-page .ndt-hero p {
  margin: 16px 0 0;
  max-width: 660px;
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.75;
}

.ndt-page .ndt-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.ndt-page .ndt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.ndt-page .ndt-btn:hover {
  transform: translateY(-2px);
}

.ndt-page .ndt-btn-primary {
  background: linear-gradient(135deg, #ef8f1a, #d66a10);
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(214, 106, 16, 0.16);
}

.ndt-page .ndt-btn-secondary {
  background: transparent;
  color: var(--primary);
}

.ndt-page .ndt-hero-visual {
  position: relative;
  max-width: 370px;
  justify-self: end;
}

.ndt-page .ndt-hero-image {
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(180deg, #132338, #20334c);
  box-shadow: 0 20px 46px rgba(26, 24, 49, 0.14);
}

.ndt-page .ndt-hero-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.ndt-page .ndt-stat-card {
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 130px;
  padding: 14px 14px 12px;
  border-radius: 10px;
  background: rgba(255, 248, 243, 0.98);
  box-shadow: 0 14px 28px rgba(45, 28, 20, 0.12);
}

.ndt-page .ndt-stat-card strong {
  display: block;
  color: #ef7c16;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
}

.ndt-page .ndt-stat-card span {
  display: block;
  margin-top: 4px;
  color: #93847d;
  font-size: 0.62rem;
  line-height: 1.45;
}

.ndt-page .ndt-overview {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(22px, 4vw, 36px);
  padding: clamp(24px, 4vw, 34px);
  border-radius: 24px;
  background: #edf2f8;
}

.ndt-page .ndt-overview-title h2,
.ndt-page .ndt-section-head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.ndt-page .ndt-overview-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.75;
}

.ndt-page .ndt-overview-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.ndt-page .ndt-overview-points div {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px 10px;
  align-items: start;
}

.ndt-page .ndt-overview-points i {
  color: var(--accent);
  margin-top: 2px;
}

.ndt-page .ndt-overview-points span {
  font-weight: 700;
  font-size: 0.78rem;
}

.ndt-page .ndt-overview-points small {
  grid-column: 2;
  color: var(--text-soft);
  font-size: 0.68rem;
  line-height: 1.6;
}

.ndt-page .ndt-methods,
.ndt-page .ndt-sectors {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.ndt-page .ndt-section-head {
  text-align: center;
  margin-bottom: 24px;
}

.ndt-page .ndt-section-head-left {
  text-align: left;
}

.ndt-page .ndt-method-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.ndt-page .ndt-method-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  min-height: 170px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(27, 25, 51, 0.08);
}

.ndt-page .ndt-method-copy {
  position: relative;
  z-index: 1;
  padding: 20px 18px;
  max-width: 270px;
}

.ndt-page .ndt-method-icon {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.72rem;
}

.ndt-page .ndt-method-card h3 {
  margin: 14px 0 8px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.ndt-page .ndt-method-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  line-height: 1.6;
}

.ndt-page .ndt-method-card-lg {
  min-height: 190px;
  background:
    linear-gradient(160deg, rgba(113, 53, 183, 0.96), rgba(89, 34, 157, 0.94)),
    url("images/Inspection_Image.jpg") center/cover no-repeat;
}

.ndt-page .ndt-method-card-sm {
  background: linear-gradient(180deg, #eceff8, #e9edf6);
}

.ndt-page .ndt-method-card-sm .ndt-method-copy {
  max-width: 230px;
}

.ndt-page .ndt-method-card-sm .ndt-method-icon {
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary);
}

.ndt-page .ndt-method-card-sm h3,
.ndt-page .ndt-method-card-sm p {
  color: var(--text);
}

.ndt-page .ndt-method-card-sm p {
  color: var(--text-soft);
}

.ndt-page .ndt-method-accent {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #27d3cc 0 74%, #13151f 74% 100%);
}

.ndt-page .ndt-method-card-photo {
  min-height: 220px;
  background: linear-gradient(160deg, rgba(111, 49, 203, 0.96), rgba(78, 28, 151, 0.96));
}

.ndt-page .ndt-method-photo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 96px;
  overflow: hidden;
}

.ndt-page .ndt-method-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
}

.ndt-page .ndt-method-card-liquid {
  min-height: 220px;
  background: linear-gradient(135deg, #6c2ec2, #5b239e);
}

.ndt-page .ndt-can {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 120px;
  height: 138px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(43, 42, 54, 0.15), rgba(15, 14, 21, 0.28)),
    linear-gradient(180deg, #f2f3f7 0%, #d7dbe6 58%, #afb4c3 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45), 0 14px 24px rgba(16, 13, 33, 0.24);
}

.ndt-page .ndt-can::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 26px;
  height: 54px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(130, 137, 161, 0.22);
}

.ndt-page .ndt-can::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 34px;
  width: 52px;
  height: 12px;
  border-radius: 4px 4px 0 0;
  background: #2d3140;
}

.ndt-page .ndt-sector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ndt-page .ndt-sector-card {
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(27, 25, 51, 0.08);
}

.ndt-page .ndt-sector-visual {
  min-height: 210px;
  position: relative;
}

.ndt-page .ndt-sector-visual-city {
  background:
    linear-gradient(180deg, rgba(56, 164, 170, 0.94), rgba(37, 126, 132, 0.98));
}

.ndt-page .ndt-sector-visual-city::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 18%;
  height: 44%;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.32) 0 12%, transparent 12% 16%, rgba(255,255,255,0.32) 16% 30%, transparent 30% 35%, rgba(255,255,255,0.32) 35% 54%, transparent 54% 58%, rgba(255,255,255,0.32) 58% 72%, transparent 72% 76%, rgba(255,255,255,0.32) 76% 100%);
  border-bottom: 4px solid rgba(255, 255, 255, 0.44);
}

.ndt-page .ndt-sector-visual-city::after {
  content: "INFRASTRUCTURE NDT SCORE";
  position: absolute;
  right: 12%;
  bottom: 10%;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(13, 46, 49, 0.36);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
}

.ndt-page .ndt-sector-visual-plant {
  background:
    linear-gradient(180deg, rgba(16, 24, 38, 0.98), rgba(24, 34, 45, 0.98));
}

.ndt-page .ndt-sector-visual-plant::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 14%;
  height: 54%;
  background:
    radial-gradient(circle at 18% 100%, transparent 0 18%, rgba(255,255,255,0.18) 18% 20%, transparent 20% 100%),
    linear-gradient(90deg, transparent 0 10%, rgba(255,255,255,0.18) 10% 12%, transparent 12% 20%, rgba(255,255,255,0.18) 20% 22%, transparent 22% 34%, rgba(255,255,255,0.18) 34% 36%, transparent 36% 48%, rgba(255,255,255,0.18) 48% 50%, transparent 50% 66%, rgba(255,255,255,0.18) 66% 68%, transparent 68% 100%);
}

.ndt-page .ndt-sector-copy {
  padding: 18px 18px 20px;
}

.ndt-page .ndt-sector-copy h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.ndt-page .ndt-sector-copy p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 0.8rem;
  line-height: 1.68;
}

.ndt-page .ndt-sector-copy a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #cf6211;
  font-size: 0.74rem;
  font-weight: 800;
}

@media (max-width: 991px) {
  .ndt-page .ndt-hero,
  .ndt-page .ndt-overview,
  .ndt-page .ndt-method-grid,
  .ndt-page .ndt-sector-grid {
    grid-template-columns: 1fr;
  }

  .ndt-page .ndt-overview-points {
    grid-template-columns: 1fr;
  }

  .ndt-page .ndt-hero-visual {
    justify-self: start;
  }
}

@media (max-width: 767px) {
  .ndt-page .page-shell {
    width: 90vw;
    max-width: 90vw;
    padding-top: 10px;
  }

  .ndt-page .ndt-hero,
  .ndt-page .ndt-overview,
  .ndt-page .ndt-methods,
  .ndt-page .ndt-sectors {
    width: 100%;
    max-width: 100%;
  }

  .ndt-page .ndt-btn {
    width: 100%;
  }

  .ndt-page .ndt-stat-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }
}

/* Lifting Tools & Pressure Vessel Testing Page */
.ltpv-page {
   --bg: #f4f6fb;
  --surface: #ffffff;
  --surface-soft: #eef2f8;
  --text: #000000;
  --text-soft: #000000;
  --primary: #6d2fc0;
  --primary-dark: #4f2391;
  --accent: #ef8f1a;
  --border: #e4e8f1;
  margin: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(109, 47, 192, 0.06), transparent 25%),
    linear-gradient(180deg, #f8f9fc 0%, #eff3f9 100%);
}

.ltpv-page *,
.ltpv-page *::before,
.ltpv-page *::after {
  box-sizing: border-box;
}

.ltpv-page img {
  max-width: 100%;
  display: block;
}

.ltpv-page a {
  color: inherit;
  text-decoration: none;
}

.ltpv-page .page-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 24px 0 46px;
}

.ltpv-page .section {
  margin-top: 36px;
}

.ltpv-page .ndt-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgb(109 47 192 / 80%);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ltpv-page .ndt-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.8fr);
  gap: clamp(28px, 5vw, 54px);
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(244, 247, 252, 0.95)),
    linear-gradient(135deg, rgba(109, 47, 192, 0.06), rgba(239, 143, 26, 0.05));
  box-shadow: 0 20px 60px rgba(27, 25, 51, 0.1);
  overflow: hidden;
}

.ltpv-page .ndt-hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -20% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 47, 192, 0.18), transparent 68%);
  pointer-events: none;
}

.ltpv-page .ndt-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.ltpv-page .ndt-hero h1 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.ltpv-page .ndt-hero h1 span {
  color: var(--primary);
}

.ltpv-page .ndt-hero p {
  margin: 18px 0 0;
  max-width: 680px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.82;
}

.ltpv-page .ndt-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.ltpv-page .ndt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.ltpv-page .ndt-btn:hover {
  transform: translateY(-2px);
}

.ltpv-page .ndt-btn-primary {
  background: linear-gradient(135deg, var(--accent), #d66a10);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(214, 106, 16, 0.18);
}

.ltpv-page .ndt-btn-secondary {
  background: rgba(109, 47, 192, 0.06);
  color: var(--primary-dark);
  border: 1px solid rgba(109, 47, 192, 0.12);
}

.ltpv-page .ndt-hero-visual {
  position: relative;
  max-width: 390px;
  width: 100%;
  justify-self: end;
}

.ltpv-page .ndt-hero-image {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: linear-gradient(180deg, #132338, #20334c);
  box-shadow: 0 24px 54px rgba(26, 24, 49, 0.16);
}

.ltpv-page .ndt-hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}

.ltpv-page .ndt-stat-card {
  position: absolute;
  left: -22px;
  bottom: 22px;
  width: 150px;
  padding: 16px 16px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(109, 47, 192, 0.08);
  box-shadow: 0 18px 34px rgba(27, 25, 51, 0.12);
}

.ltpv-page .ndt-stat-card strong {
  display: block;
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
}

.ltpv-page .ndt-stat-card span {
  display: block;
  margin-top: 5px;
  color: #8c817d;
  font-size: 0.77rem;
  line-height: 1.45;
}

.ltpv-page .ndt-overview {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  padding: 36px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(109, 47, 192, 0.12);
  box-shadow: 0 22px 56px rgba(46, 25, 88, 0.12);
  backdrop-filter: blur(18px);
}

.ltpv-page .ndt-overview-title h2,
.ltpv-page .ndt-section-head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.ltpv-page .ndt-overview-copy p {
  margin: 0 0 22px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.85;
}

.ltpv-page .ndt-overview-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ltpv-page .ndt-overview-points div {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(109, 47, 192, 0.1);
  box-shadow: 0 14px 28px rgba(46, 25, 88, 0.06);
}

.ltpv-page .ndt-overview-points i {
  color: var(--primary);
  font-size: 1.3rem;
}

.ltpv-page .ndt-overview-points span {
  display: block;
  margin-top: 12px;
  font-weight: 700;
}

.ltpv-page .ndt-overview-points small {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.7;
}

.ltpv-page .ndt-methods,
.ltpv-page .ndt-sectors {
  width: 100%;
}

.ltpv-page .ndt-section-head {
  text-align: center;
  margin-bottom: 28px;
}

.ltpv-page .ndt-section-head-left {
  text-align: left;
}

.ltpv-page .ndt-method-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.ltpv-page .ndt-method-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 182px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 16px 34px rgba(27, 25, 51, 0.1);
}

.ltpv-page .ndt-method-copy {
  position: relative;
  z-index: 1;
  padding: 22px 20px;
  max-width: 310px;
}

.ltpv-page .ndt-method-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 1rem;
}

.ltpv-page .ndt-method-card h3 {
  margin: 16px 0 8px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.ltpv-page .ndt-method-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.68;
}

.ltpv-page .ndt-method-card-lg {
  min-height: 210px;
  background:
    linear-gradient(145deg, rgba(109, 47, 192, 0.95), rgba(79, 35, 145, 0.95)),
    url("images/Inspection_Image.jpg") center/cover no-repeat;
}

.ltpv-page .ndt-method-card-sm {
  background:
    linear-gradient(180deg, #f7f8fc, #eaedf6);
}

.ltpv-page .ndt-method-card-sm .ndt-method-copy {
  max-width: 250px;
}

.ltpv-page .ndt-method-card-sm .ndt-method-icon {
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary);
}

.ltpv-page .ndt-method-card-sm h3,
.ltpv-page .ndt-method-card-sm p {
  color: var(--text);
}

.ltpv-page .ndt-method-card-sm p {
  color: var(--text-soft);
}

.ltpv-page .ndt-method-accent {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6d2fc0 0 78%, #e3e7f1 78% 100%);
}

.ltpv-page .ndt-method-card-photo {
  min-height: 236px;
  background: linear-gradient(145deg, rgba(239, 143, 26, 0.98), rgba(214, 106, 16, 0.96));
}

.ltpv-page .ndt-method-photo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 108px;
  overflow: hidden;
}

.ltpv-page .ndt-method-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  mix-blend-mode: multiply;
}

.ltpv-page .ndt-method-card-liquid {
  min-height: 236px;
  background: linear-gradient(145deg, #6f31cb, #59229d);
}

.ltpv-page .ndt-can {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 124px;
  height: 142px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(26, 31, 43, 0.15), rgba(5, 11, 18, 0.28)),
    linear-gradient(180deg, #f8fafc 0%, #dae3ea 60%, #a7b6c1 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48), 0 14px 24px rgba(7, 16, 27, 0.24);
}

.ltpv-page .ndt-can::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 26px;
  height: 54px;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff, #edf2f5);
  box-shadow: inset 0 0 0 1px rgba(106, 122, 137, 0.22);
}

.ltpv-page .ndt-can::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 35px;
  width: 54px;
  height: 12px;
  border-radius: 5px 5px 0 0;
  background: #263341;
}

.ltpv-page .ndt-sector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.ltpv-page .ndt-sector-card {
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(109, 47, 192, 0.08);
  box-shadow: 0 16px 34px rgba(27, 25, 51, 0.08);
}

.ltpv-page .ndt-sector-visual {
  min-height: 224px;
  position: relative;
}

.ltpv-page .ndt-sector-visual-city {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(160deg, #38a4aa, #257e84);
}

.ltpv-page .ndt-sector-visual-city::before {
  content: "";
  position: absolute;
  inset: auto 10% 18% 10%;
  height: 48%;
  border-radius: 18px 18px 0 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.34) 0 10%, transparent 10% 15%, rgba(255,255,255,0.32) 15% 29%, transparent 29% 35%, rgba(255,255,255,0.34) 35% 46%, transparent 46% 53%, rgba(255,255,255,0.34) 53% 64%, transparent 64% 70%, rgba(255,255,255,0.34) 70% 82%, transparent 82% 100%);
}

.ltpv-page .ndt-sector-visual-city::after {
  content: "ON-SITE TESTING";
  position: absolute;
  right: 10%;
  bottom: 10%;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  letter-spacing: 0.16em;
}

.ltpv-page .ndt-sector-visual-plant {
  background:
    linear-gradient(180deg, #101826, #18222d);
}

.ltpv-page .ndt-sector-visual-plant::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: 15%;
  height: 56%;
  background:
    linear-gradient(90deg, transparent 0 9%, rgba(255,255,255,0.16) 9% 12%, transparent 12% 21%, rgba(255,255,255,0.16) 21% 23%, transparent 23% 36%, rgba(255,255,255,0.16) 36% 39%, transparent 39% 52%, rgba(255,255,255,0.16) 52% 54%, transparent 54% 68%, rgba(255,255,255,0.16) 68% 70%, transparent 70% 100%),
    radial-gradient(circle at 24% 100%, transparent 0 16%, rgba(255,255,255,0.16) 16% 18%, transparent 18% 100%);
}

.ltpv-page .ndt-sector-copy {
  padding: 20px 20px 22px;
}

.ltpv-page .ndt-sector-copy h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.ltpv-page .ndt-sector-copy p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.ltpv-page .ndt-sector-copy a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 800;
}

.ltpv-page .ltpv-test-matrix,
.ltpv-page .ltpv-process,
.ltpv-page .ltpv-compliance {
  width: 100%;
}

.ltpv-page .ltpv-test-head {
  max-width: 760px;
  margin: 0 auto 28px;
}

.ltpv-page .ltpv-test-head p {
  margin: 14px auto 0;
  max-width: 620px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.ltpv-page .ltpv-test-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.ltpv-page .ltpv-test-card {
  grid-column: span 4;
  padding: 24px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.94));
  border: 1px solid rgba(109, 47, 192, 0.08);
  box-shadow: 0 18px 40px rgba(27, 25, 51, 0.07);
}

.ltpv-page .ltpv-test-card-featured {
  grid-column: span 6;
  background:
    linear-gradient(135deg, rgba(109, 47, 192, 0.97), rgba(79, 35, 145, 0.94));
  border-color: rgba(255, 255, 255, 0.12);
}

.ltpv-page .ltpv-test-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ltpv-page .ltpv-test-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary);
  font-size: 1rem;
}

.ltpv-page .ltpv-test-card-featured .ltpv-test-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.ltpv-page .ltpv-test-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(109, 47, 192, 0.08);
  color: #8d86a6;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ltpv-page .ltpv-test-card-featured .ltpv-test-label {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
}

.ltpv-page .ltpv-test-card h3 {
  margin: 18px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  line-height: 1.2;
}

.ltpv-page .ltpv-test-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.72;
}

.ltpv-page .ltpv-test-card-featured h3,
.ltpv-page .ltpv-test-card-featured p {
  color: #ffffff;
}

.ltpv-page .ltpv-test-card-featured p {
  color: rgba(255, 255, 255, 0.84);
}

.ltpv-page .ltpv-process-shell {
  padding: clamp(28px, 4vw, 40px);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(36, 31, 67, 0.98), rgba(79, 35, 145, 0.96));
  box-shadow: 0 24px 60px rgba(27, 25, 51, 0.16);
}

.ltpv-page .ltpv-process-intro {
  max-width: 720px;
}

.ltpv-page .ltpv-process-intro h2 {
  margin: 16px 0 0;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.ltpv-page .ltpv-process-intro p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.8;
}

.ltpv-page .ltpv-process-panels {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 28px;
}

.ltpv-page .ltpv-process-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.ltpv-page .ltpv-process-card-accent {
  background: linear-gradient(180deg, rgba(239, 143, 26, 0.18), rgba(255, 255, 255, 0.09));
}

.ltpv-page .ltpv-process-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  
  color: #ffffff;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ltpv-page .ltpv-process-card h3 {
  margin: 16px 0 12px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.ltpv-page .ltpv-process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.74;
}

.ltpv-page .ltpv-process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.ltpv-page .ltpv-process-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.66;
}

.ltpv-page .ltpv-process-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #ef8f1a);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.ltpv-page .ltpv-deliverable-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.ltpv-page .ltpv-deliverable-callout i {
  color: #ffd090;
  font-size: 1.1rem;
}

.ltpv-page .ltpv-deliverable-callout span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  line-height: 1.62;
}

.ltpv-page .ltpv-compliance-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  gap: 22px;
  align-items: stretch;
}

.ltpv-page .ltpv-compliance-copy {
  padding: clamp(26px, 4vw, 36px);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.94));
  border: 1px solid rgba(109, 47, 192, 0.08);
  box-shadow: 0 18px 40px rgba(27, 25, 51, 0.06);
}

.ltpv-page .ltpv-compliance-copy h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.ltpv-page .ltpv-compliance-copy p {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.82;
}

.ltpv-page .ltpv-compliance-panels {
  display: grid;
  gap: 16px;
}

.ltpv-page .ltpv-compliance-card {
  padding: 24px 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #edf2f8);
  border: 1px solid rgba(109, 47, 192, 0.09);
  box-shadow: 0 16px 36px rgba(27, 25, 51, 0.06);
}

.ltpv-page .ltpv-compliance-card i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary);
  font-size: 1rem;
}

.ltpv-page .ltpv-compliance-card h3 {
  margin: 16px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.ltpv-page .ltpv-compliance-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .ltpv-page .ndt-hero,
  .ltpv-page .ndt-overview,
  .ltpv-page .ndt-method-grid,
  .ltpv-page .ndt-sector-grid {
    grid-template-columns: 1fr;
  }

  .ltpv-page .ndt-overview-points {
    grid-template-columns: 1fr;
  }

  .ltpv-page .ndt-hero-visual {
    justify-self: start;
  }

  .ltpv-page .ltpv-test-card,
  .ltpv-page .ltpv-test-card-featured {
    grid-column: span 6;
  }

  .ltpv-page .ltpv-process-panels,
  .ltpv-page .ltpv-compliance-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .ltpv-page .page-shell {
    width: 90vw;
    max-width: 90vw;
    padding-top: 12px;
  }

  .ltpv-page .ndt-hero,
  .ltpv-page .ndt-overview,
  .ltpv-page .ndt-methods,
  .ltpv-page .ndt-sectors {
    width: 100%;
    max-width: 100%;
  }

  .ltpv-page .ndt-btn {
    width: 100%;
  }

  .ltpv-page .ndt-stat-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .ltpv-page .ltpv-test-grid {
    grid-template-columns: 1fr;
  }

  .ltpv-page .ltpv-test-card,
  .ltpv-page .ltpv-test-card-featured {
    grid-column: auto;
  }
}

.locations-page {
  --locations-primary: #6a35bd;
  --locations-primary-dark: #4b248f;
  --locations-accent: #f07d2f;
  --locations-ink: #2d2150;
  --locations-soft: #6f6888;
  --locations-bg: #f4f5fb;
  background:
    radial-gradient(circle at top left, rgba(108, 46, 185, 0.12), transparent 30%),
    linear-gradient(180deg, #f8f8fd 0%, #f2f4fb 100%);
  color: var(--locations-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.locations-page * ,
.locations-page *::before,
.locations-page *::after {
  box-sizing: border-box;
}

.locations-page .locations-shell {
  max-width: 90vw;
  margin: 26px auto 56px;
}

.locations-page .locations-hero {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 390px;
  padding: 42px clamp(26px, 4vw, 44px);
  display: flex;
  align-items: flex-end;
  background:
     linear-gradient(90deg, rgba(48, 19, 96, 0.9) 0%, rgba(69, 29, 132, 0.76) 45%, rgba(240, 125, 47, 0.08) 100%);
  box-shadow: 0 28px 56px rgba(59, 32, 113, 0.2);
}
/*
    url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat; */;

.locations-page .locations-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--locations-primary) 0%, rgba(255, 255, 255, 0.38) 100%);
}

.locations-page .locations-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  color: #ffffff;
}

.locations-page .locations-kicker {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(240, 125, 47, 0.2);
  color: #ffd4b4;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.locations-page .locations-hero h1,
.locations-page .locations-section-head h2,
.locations-page .locations-overview-copy h2,
.locations-page .locations-global-copy h2,
.locations-page .locations-cta h2 {
  font-family: "Sora", sans-serif;
}

.locations-page .locations-hero h1 {
  margin: 16px 0 14px;
  font-size: clamp(2.5rem, 5.8vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.locations-page .locations-hero p {
  margin: 0;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  line-height: 1.75;
}

.locations-page .locations-overview {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 26px;
  margin-top: 28px;
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(57, 41, 99, 0.08);
}

.locations-page .locations-overview-copy h2 {
  margin: 0;
  max-width: 420px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.04;
  color: var(--locations-primary-dark);
}

.locations-page .locations-overview-copy p {
  margin: 18px 0 0;
  max-width: 560px;
  color: var(--locations-soft);
  font-size: 0.97rem;
  line-height: 1.85;
}

.locations-page .locations-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.locations-page .locations-tags a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(107, 53, 189, 0.12);
  background: #f7f5fd;
  color: #625985;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.locations-page .locations-tags a:hover {
  transform: translateY(-2px);
  color: var(--locations-primary);
  box-shadow: 0 10px 22px rgba(92, 55, 161, 0.12);
}

.locations-page .locations-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.locations-page .locations-stat-card {
  min-height: 152px;
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(54, 37, 97, 0.08);
}

.locations-page .locations-stat-card strong {
  display: block;
  color: #dc6e27;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1;
}

.locations-page .locations-stat-card span {
  display: inline-block;
  margin-top: 12px;
  color: #8e88a4;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.locations-page .locations-hubs {
  margin-top: 36px;
}

.locations-page .locations-section-head {
  margin-bottom: 18px;
}

.locations-page .locations-section-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  color: var(--locations-primary-dark);
}

.locations-page .locations-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.locations-page .locations-hub-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(51, 36, 92, 0.08);
}

.locations-page .locations-hub-media {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.locations-page .locations-hub-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 16, 40, 0) 10%, rgba(25, 19, 58, 0.38) 100%);
}

.locations-page .locations-hub-media span {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #5a4a87;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.locations-page .locations-hub-media-mumbai {
  background:
    linear-gradient(180deg, rgba(255, 189, 96, 0.18), rgba(61, 34, 15, 0.3)),
    url("https://images.unsplash.com/photo-1595658658481-d53d3f999875?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.locations-page .locations-hub-media-delhi {
  background:
    linear-gradient(180deg, rgba(128, 202, 255, 0.2), rgba(36, 60, 88, 0.28)),
    url("https://images.unsplash.com/photo-1587474260584-136574528ed5?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.locations-page .locations-hub-media-bangalore {
  background:
    linear-gradient(180deg, rgba(130, 229, 255, 0.18), rgba(23, 75, 103, 0.28)),
    url("https://images.unsplash.com/photo-1596176530529-78163a4f7af2?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.locations-page .locations-hub-body {
  padding: 20px 20px 22px;
}

.locations-page .locations-hub-body h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  color: #3a2e62;
}

.locations-page .locations-hub-body ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.locations-page .locations-hub-body li {
  display: flex;
  gap: 10px;
  color: var(--locations-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

.locations-page .locations-hub-body i {
  color: #dd7231;
  margin-top: 3px;
}

.locations-page .locations-global {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
  margin-top: 44px;
  padding: clamp(30px, 4vw, 44px);
  border-radius: 32px;
  background: linear-gradient(135deg, #652fad 0%, #7e3fc5 54%, #6d2bb4 100%);
  box-shadow: 0 24px 56px rgba(77, 36, 139, 0.22);
}

.locations-page .locations-global-copy {
  color: #ffffff;
}

.locations-page .locations-global-copy h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.02;
}

.locations-page .locations-global-copy p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.9;
}

.locations-page .locations-global-points {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.locations-page .locations-global-points div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: start;
}

.locations-page .locations-global-points i {
  grid-row: span 2;
  color: #ffd289;
  font-size: 1rem;
  margin-top: 2px;
}

.locations-page .locations-global-points span {
  font-size: 0.9rem;
  font-weight: 800;
}

.locations-page .locations-global-points small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.7;
}

.locations-page .locations-map-card {
  position: relative;
  padding: 18px;
  border-radius: 28px;
  background: rgba(25, 18, 53, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.locations-page .locations-map-glow {
  position: absolute;
  inset: 30px auto auto 34px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 173, 88, 0.44) 0%, rgba(255, 173, 88, 0) 72%);
  filter: blur(10px);
}

.locations-page .locations-world-map {
  position: relative;
  min-height: 340px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 55%, rgba(255, 163, 76, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(16, 14, 35, 0.92), rgba(31, 27, 55, 0.98));
}

.locations-page .locations-world-map::before {
  content: "";
  position: absolute;
  inset: 18px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500'%3E%3Cg fill='%23c6c9d6' opacity='0.9'%3E%3Cpath d='M118 188l35-26 43 5 31 30 50 13 14 33-22 33-38 18-16 38-43 17-56-5-43-30-12-33 22-32 22-52z'/%3E%3Cpath d='M323 130l36-13 34 8 21-17 35 9 10 34 33 13 22 43-21 21-30-12-24 10-18 43-31 26-32-18-4-35-34-9-15-31 18-33z'/%3E%3Cpath d='M489 142l36-9 32 10 29 35 46 12 30 35-25 29-47-4-30 9-18 30-25 17-27-21-8-39-18-18 2-48z'/%3E%3Cpath d='M715 183l44-21 57 4 48 21 27 34-10 31-46 13-21 26-53 1-40-17-18-31 12-32z'/%3E%3Cpath d='M791 321l27-13 24 8 11 29-14 27-25 10-24-7-11-21z'/%3E%3Cpath d='M601 306l30-9 25 13 13 30-8 26-23 17-34-9-18-26 5-27z'/%3E%3C/g%3E%3C/svg%3E") center/88% no-repeat;
  opacity: 0.8;
}

.locations-page .locations-world-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04)) 0 33% / 100% 1px no-repeat,
    linear-gradient(0deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04)) 0 66% / 100% 1px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04)) 33% 0 / 1px 100% no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04)) 66% 0 / 1px 100% no-repeat;
}

.locations-page .map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff9b4a;
  box-shadow: 0 0 0 8px rgba(255, 155, 74, 0.14);
}

.locations-page .map-dot::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 155, 74, 0.3);
}

.locations-page .map-dot-india {
  left: 52%;
  top: 56%;
}

.locations-page .map-dot-emea {
  left: 43%;
  top: 47%;
}

.locations-page .map-dot-apac {
  left: 68%;
  top: 52%;
}

.locations-page .locations-cta {
  margin-top: 42px;
  padding: 34px 22px 10px;
  text-align: center;
}

.locations-page .locations-cta h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--locations-primary-dark);
}

.locations-page .locations-cta p {
  max-width: 640px;
  margin: 14px auto 0;
  color: var(--locations-soft);
  font-size: 0.95rem;
  line-height: 1.85;
}

.locations-page .locations-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.locations-page .locations-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 196px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.locations-page .locations-btn:hover {
  transform: translateY(-2px);
}

.locations-page .locations-btn-primary {
  background: linear-gradient(135deg, #da6d27, #f08737);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(218, 109, 39, 0.26);
}

.locations-page .locations-btn-secondary {
  border: 1px solid rgba(107, 53, 189, 0.16);
  background: #ffffff;
  color: #6a56a4;
}

@media (max-width: 991px) {
  .locations-page .locations-overview,
  .locations-page .locations-global {
    grid-template-columns: 1fr;
  }

  .locations-page .locations-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .locations-page .locations-shell {
    width: 92vw;
    margin-top: 20px;
  }

  .locations-page .locations-hero,
  .locations-page .locations-overview,
  .locations-page .locations-global {
    border-radius: 24px;
  }

  .locations-page .locations-overview {
    padding: 24px;
  }

  .locations-page .locations-stats,
  .locations-page .locations-hub-grid {
    grid-template-columns: 1fr;
  }

  .locations-page .locations-world-map {
    min-height: 260px;
  }

  .locations-page .locations-btn {
    width: 100%;
  }
}

.metro-page {
  --metro-primary: #6d32c9;
  --metro-primary-dark: #4b248f;
  --metro-ink: #2b2444;
  --metro-soft: #7a7392;
  --metro-surface: #ffffff;
  --metro-line: #ece8f7;
  background:
    radial-gradient(circle at top left, rgba(109, 50, 201, 0.08), transparent 24%),
    linear-gradient(180deg, #f8f8fc 0%, #f4f5fb 100%);
  color: var(--metro-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.metro-page *,
.metro-page *::before,
.metro-page *::after {
  box-sizing: border-box;
}

.metro-page .metro-shell {
  max-width: 90vw;
  margin: 18px auto 36px;
  display: grid;
  gap: 34px;
}

.metro-page .metro-kicker {
  display: inline-block;
  color: #c26b46;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.metro-page .metro-hero,
.metro-page .metro-story,
.metro-page .metro-performance {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 30px;
  align-items: center;
}

.metro-page .metro-hero-copy h1,
.metro-page .metro-story-copy h2,
.metro-page .metro-section-head h2,
.metro-page .metro-performance-copy h2,
.metro-page .metro-cta h2 {
  font-family: "Sora", sans-serif;
}

.metro-page .metro-hero-copy h1 {
  margin: 10px 0 16px;
  max-width: 630px;
  color: #ffffff;
  font-size: clamp(2.7rem, 6vw, 3.8rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.metro-page .metro-hero-copy p,
.metro-page .metro-story-copy p,
.metro-page .metro-performance-copy p,
.metro-page .metro-section-head p,
.metro-page .metro-cta p {
  color: var(--metro-soft);
  line-height: 1.8;
}

.metro-page .metro-hero-copy p {
  max-width: 470px;
  margin: 0;
  font-size: 0.96rem;
}

.metro-page .metro-hero-actions,
.metro-page .metro-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.metro-page .metro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  padding: 13px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.metro-page .metro-btn:hover {
  transform: translateY(-2px);
}

.metro-page .metro-btn-primary {
  background: linear-gradient(135deg, #6d32c9, #8448dc);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(109, 50, 201, 0.2);
}

.metro-page .metro-btn-secondary {
  background: transparent;
  color: var(--metro-primary-dark);
}

.metro-page .metro-btn-secondary-dark {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.metro-page .metro-hero-visual,
.metro-page .metro-performance-visual {
  display: flex;
  justify-content: center;
}

.metro-page .metro-hero-image,
.metro-page .metro-performance-image {
  position: relative;
  width: min(100%, 430px);
  min-height: 390px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 42px rgba(50, 33, 91, 0.18);
}

.metro-page .metro-hero-image {
  background:
    linear-gradient(180deg, rgba(32, 62, 130, 0.1), rgba(54, 22, 86, 0.3)),
    url("https://images.unsplash.com/photo-1545239351-1141bd82e8a6?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.metro-page .metro-hero-image::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 52%;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(190, 210, 255, 0.55) 18% 20%, transparent 20% 80%, rgba(190, 210, 255, 0.55) 80% 82%, transparent 82% 100%),
    linear-gradient(180deg, transparent 0 12%, rgba(78, 45, 119, 0.7) 12% 14%, transparent 14% 100%);
  clip-path: polygon(0 100%, 22% 0, 78% 0, 100% 100%);
}

.metro-page .metro-hero-image::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12%;
  width: 78%;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
}

.metro-page .metro-hero-image span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
}

.metro-page .metro-story-copy h2,
.metro-page .metro-performance-copy h2,
.metro-page .metro-section-head h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
}

.metro-page .metro-story-copy h2 span,
.metro-page .metro-performance-copy h2 span {
  color: #de7430;
}

.metro-page .metro-story-copy p {
  margin: 16px 0 0;
  max-width: 500px;
  font-size: 0.95rem;
}

.metro-page .metro-story-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.metro-page .metro-story-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--metro-soft);
  font-size: 0.88rem;
}

.metro-page .metro-story-list i {
  color: var(--metro-primary);
  margin-top: 3px;
}

.metro-page .metro-story-aside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.metro-page .metro-profile-card,
.metro-page .metro-note-card,
.metro-page .metro-tunnel-card,
.metro-page .metro-expertise-card {
  border-radius: 14px;
  background: var(--metro-surface);
  box-shadow: 0 16px 32px rgba(47, 34, 84, 0.08);
}

.metro-page .metro-profile-card {
  grid-row: span 2;
  overflow: hidden;
}

.metro-page .metro-portrait {
  min-height: 228px;
  background:
    linear-gradient(180deg, rgba(9, 38, 49, 0.18), rgba(5, 10, 27, 0.2)),
    linear-gradient(135deg, #173a40, #385165);
  position: relative;
}

.metro-page .metro-portrait::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 22%;
  width: 84px;
  height: 84px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(180deg, #d6a27d, #915c44);
  box-shadow: 0 96px 0 26px #162e33;
}

.metro-page .metro-portrait::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 19%;
  width: 94px;
  height: 26px;
  transform: translateX(-50%);
  border-radius: 999px 999px 12px 12px;
  background: #101826;
}

.metro-page .metro-profile-meta {
  padding: 14px 16px 16px;
}

.metro-page .metro-profile-meta span {
  display: block;
  color: #8a84a1;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.metro-page .metro-profile-meta strong {
  display: block;
  margin-top: 6px;
  font-size: 0.92rem;
}

.metro-page .metro-note-card {
  padding: 18px 16px;
  background: linear-gradient(145deg, #662db4, #7b3dd1);
  color: #ffffff;
}

.metro-page .metro-note-card strong {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
}

.metro-page .metro-note-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  line-height: 1.6;
}

.metro-page .metro-tunnel-card {
  min-height: 156px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(254, 195, 75, 0.12), rgba(43, 20, 50, 0.95));
}

.metro-page .metro-tunnel-card::before {
  content: "";
  position: absolute;
  inset: 12% 10%;
  border-radius: 50%;
  border: 10px solid rgba(216, 128, 48, 0.85);
  box-shadow:
    inset 0 0 0 10px rgba(110, 44, 17, 0.35),
    0 0 0 14px rgba(241, 164, 84, 0.18),
    0 0 0 34px rgba(241, 164, 84, 0.08);
}

.metro-page .metro-tunnel-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #f8bc67;
  box-shadow: 0 0 22px rgba(248, 188, 103, 0.9);
}

.metro-page .metro-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 22px;
}

.metro-page .metro-section-head p {
  margin: 10px 0 0;
  font-size: 0.92rem;
}

.metro-page .metro-expertise-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.metro-page .metro-expertise-card {
  grid-column: span 4;
  min-height: 180px;
  padding: 20px 18px;
  border: 1px solid var(--metro-line);
}

.metro-page .metro-expertise-card h3 {
  margin: 14px 0 8px;
  font-size: 1rem;
}

.metro-page .metro-expertise-card p {
  margin: 0;
  color: var(--metro-soft);
  font-size: 0.85rem;
  line-height: 1.7;
}

.metro-page .metro-card-icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(109, 50, 201, 0.08);
  color: var(--metro-primary);
  font-size: 0.88rem;
}

.metro-page .metro-expertise-card-accent {
  grid-column: span 6;
  min-height: 188px;
  background:
    linear-gradient(180deg, rgba(130, 70, 210, 0.94), rgba(102, 45, 180, 0.96)),
    linear-gradient(0deg, rgba(255,255,255,0.12), rgba(255,255,255,0.12));
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.metro-page .metro-expertise-card-accent::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  height: 52px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, transparent, rgba(255,255,255,0.08)),
    linear-gradient(90deg, transparent 0 10%, rgba(255,255,255,0.35) 10% 11%, transparent 11% 89%, rgba(255,255,255,0.35) 89% 90%, transparent 90% 100%);
}

.metro-page .metro-expertise-card-accent p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 430px;
}

.metro-page .metro-expertise-card-light {
  grid-column: span 6;
  background: #f8f8fd;
}

.metro-page .metro-performance-image {
  min-height: 300px;
  background:
    linear-gradient(180deg, rgba(6, 14, 27, 0.08), rgba(6, 14, 27, 0.3)),
    linear-gradient(135deg, #04131b, #0b2931);
}

.metro-page .metro-performance-image::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 18%;
  height: 36%;
  background:
    linear-gradient(90deg, rgba(239, 169, 74, 0.08), rgba(255, 212, 113, 0.2)),
    linear-gradient(90deg, rgba(255,255,255,0.16) 0 8%, transparent 8% 14%, rgba(255,255,255,0.16) 14% 22%, transparent 22% 28%, rgba(255,255,255,0.16) 28% 40%, transparent 40% 46%, rgba(255,255,255,0.16) 46% 54%, transparent 54% 60%, rgba(255,255,255,0.16) 60% 72%, transparent 72% 78%, rgba(255,255,255,0.16) 78% 100%);
  border-bottom: 3px solid rgba(247, 178, 78, 0.58);
}

.metro-page .metro-performance-image::after {
  content: "";
  position: absolute;
  inset: 18px;
  background:
    radial-gradient(circle at 22% 24%, rgba(70, 195, 255, 0.3), transparent 16%),
    radial-gradient(circle at 68% 32%, rgba(255, 138, 78, 0.28), transparent 18%),
    linear-gradient(180deg, transparent 0 30%, rgba(255,255,255,0.05) 30% 31%, transparent 31% 100%);
}

.metro-page .metro-performance-image span {
  position: absolute;
  left: -6px;
  bottom: 18px;
  padding: 12px 18px;
  border-radius: 0 12px 12px 0;
  background: rgba(246, 242, 255, 0.92);
  color: var(--metro-primary-dark);
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  box-shadow: 0 10px 22px rgba(34, 28, 58, 0.16);
}

.metro-page .metro-performance-copy p {
  margin: 16px 0 0;
  font-size: 0.95rem;
}

.metro-page .metro-performance-points {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.metro-page .metro-performance-points div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: start;
}

.metro-page .metro-performance-points i {
  grid-row: span 2;
  color: var(--metro-primary);
  margin-top: 2px;
}

.metro-page .metro-performance-points span {
  font-size: 0.9rem;
  font-weight: 800;
}

.metro-page .metro-performance-points small {
  color: var(--metro-soft);
  font-size: 0.82rem;
  line-height: 1.7;
}

.metro-page .metro-cta {
  padding: 40px 26px;
  border-radius: 18px;
  text-align: center;
  background: linear-gradient(135deg, #6d32c9, #7b3ed2);
  color: #ffffff;
  box-shadow: 0 20px 42px rgba(69, 36, 124, 0.18);
}

.metro-page .metro-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.metro-page .metro-cta p {
  max-width: 560px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.76);
}

.metro-page .metro-cta-actions {
  justify-content: center;
}

@media (max-width: 991px) {
  .metro-page .metro-hero,
  .metro-page .metro-story,
  .metro-page .metro-performance {
    grid-template-columns: 1fr;
  }

  .metro-page .metro-expertise-card,
  .metro-page .metro-expertise-card-accent,
  .metro-page .metro-expertise-card-light {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .metro-page .metro-shell {
    width: 92vw;
    gap: 28px;
  }

  .metro-page .metro-hero-image,
  .metro-page .metro-performance-image {
    min-height: 280px;
  }

  .metro-page .metro-story-aside,
  .metro-page .metro-expertise-grid {
    grid-template-columns: 1fr;
  }

  .metro-page .metro-profile-card {
    grid-row: auto;
  }

  .metro-page .metro-expertise-card,
  .metro-page .metro-expertise-card-accent,
  .metro-page .metro-expertise-card-light {
    grid-column: span 12;
  }

  .metro-page .metro-btn {
    width: 100%;
  }
}

.scaffold-page {
  --scaffold-primary: #662cb4;
  --scaffold-primary-dark: #48207f;
  --scaffold-accent: #d36b23;
  --scaffold-ink: #2f2945;
  --scaffold-soft: #7e7894;
  --scaffold-surface: #ffffff;
  --scaffold-line: #ece8f6;
  background:
    radial-gradient(circle at top left, rgba(102, 44, 180, 0.08), transparent 24%),
    linear-gradient(180deg, #fafafe 0%, #f4f5fb 100%);
  color: var(--scaffold-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.scaffold-page *,
.scaffold-page *::before,
.scaffold-page *::after {
  box-sizing: border-box;
}

.scaffold-page .scaffold-shell {
  max-width: 88vw;
  margin: 28px auto 56px;
  display: grid;
  gap: 38px;
}

.scaffold-page .scaffold-kicker {
  display: inline-block;
  color: #ca7e52;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scaffold-page .scaffold-hero,
.scaffold-page .scaffold-overview,
.scaffold-page .scaffold-philosophy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.scaffold-page .scaffold-hero-copy h1,
.scaffold-page .scaffold-overview-copy h2,
.scaffold-page .scaffold-section-head h2,
.scaffold-page .scaffold-philosophy-copy h2,
.scaffold-page .scaffold-check-card h3 {
  font-family: "Sora", sans-serif;
}

.scaffold-page .scaffold-hero-copy h1 {
  margin: 12px 0 16px;
  max-width: 430px;
  color: var(--scaffold-primary-dark);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.scaffold-page .scaffold-hero-copy p,
.scaffold-page .scaffold-overview-copy p,
.scaffold-page .scaffold-section-head p,
.scaffold-page .scaffold-check-card p,
.scaffold-page .scaffold-philosophy-copy p {
  color: var(--scaffold-soft);
  line-height: 1.8;
}

.scaffold-page .scaffold-hero-copy p {
  margin: 0;
  max-width: 450px;
  font-size: 0.95rem;
}

.scaffold-page .scaffold-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.scaffold-page .scaffold-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  padding: 13px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.scaffold-page .scaffold-btn:hover {
  transform: translateY(-2px);
}

.scaffold-page .scaffold-btn-primary {
  background: linear-gradient(135deg, #c56520, #de7b31);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(197, 101, 32, 0.2);
}

.scaffold-page .scaffold-btn-secondary {
  color: #ffffff;
  background: transparent;
}

.scaffold-page .scaffold-btn-inline {
  margin-top: 22px;
  width: fit-content;
  background: linear-gradient(135deg, #5f2caf, #7236c6);
}

.scaffold-page .scaffold-hero-visual {
  display: flex;
  justify-content: center;
}

.scaffold-page .scaffold-hero-image {
  position: relative;
  width: min(100%, 430px);
  min-height: 440px;
  border-radius: 14px;
  overflow: hidden;
  border: 10px solid #ffffff;
  box-shadow: 0 24px 46px rgba(54, 38, 95, 0.16);
  background:
    linear-gradient(180deg, rgba(34, 26, 26, 0.08), rgba(51, 42, 26, 0.22)),
    url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.scaffold-page .scaffold-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.1) 0 2%, transparent 2% 98%, rgba(255,255,255,0.1) 98% 100%),
    linear-gradient(180deg, transparent 0 14%, rgba(255,255,255,0.08) 14% 15%, transparent 15% 100%);
}

.scaffold-page .scaffold-hero-image span,
.scaffold-page .scaffold-hero-image small {
  position: absolute;
  right: 18px;
  background: linear-gradient(145deg, #6c31bf, #7e40d1);
  color: #ffffff;
}

.scaffold-page .scaffold-hero-image span {
  bottom: 42px;
  padding: 12px 18px 4px;
  border-radius: 10px 10px 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
}

.scaffold-page .scaffold-hero-image small {
  bottom: 18px;
  padding: 0 18px 12px;
  border-radius: 0 0 10px 10px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scaffold-page .scaffold-overview-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.scaffold-page .scaffold-mini-card,
.scaffold-page .scaffold-check-card {
  border-radius: 12px;
  background: var(--scaffold-surface);
  box-shadow: 0 14px 30px rgba(43, 31, 74, 0.08);
}

.scaffold-page .scaffold-mini-card {
  min-height: 150px;
  overflow: hidden;
}

.scaffold-page .scaffold-mini-card-photo {
  background:
    linear-gradient(180deg, rgba(7, 11, 25, 0.06), rgba(28, 18, 23, 0.22)),
    url("https://images.unsplash.com/photo-1599707254554-027aeb4deacd?auto=format&fit=crop&w=800&q=80") center/cover no-repeat;
}

.scaffold-page .scaffold-mini-card-stat {
  padding: 18px;
  background: linear-gradient(145deg, #6a30bc, #7c3fd1);
  color: #ffffff;
}

.scaffold-page .scaffold-mini-card-stat strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
}

.scaffold-page .scaffold-mini-card-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scaffold-page .scaffold-mini-card-detail {
  background:
    linear-gradient(180deg, rgba(12, 24, 32, 0.04), rgba(12, 24, 32, 0.18)),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=800&q=80") center/cover no-repeat;
}

.scaffold-page .scaffold-mini-card-note {
  padding: 16px;
  background: #f8f8fd;
}

.scaffold-page .scaffold-mini-card-note h3 {
  margin: 0;
  font-size: 0.92rem;
  color: var(--scaffold-ink);
}

.scaffold-page .scaffold-mini-card-note p {
  margin: 8px 0 0;
  color: var(--scaffold-soft);
  font-size: 0.8rem;
  line-height: 1.65;
}

.scaffold-page .scaffold-overview-copy h2,
.scaffold-page .scaffold-philosophy-copy h2,
.scaffold-page .scaffold-section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  color: var(--scaffold-primary-dark);
}

.scaffold-page .scaffold-overview-copy p {
  margin: 16px 0 0;
  font-size: 0.94rem;
}

.scaffold-page .scaffold-overview-points {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.scaffold-page .scaffold-overview-points div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: start;
}

.scaffold-page .scaffold-overview-points i {
  grid-row: span 2;
  color: var(--scaffold-accent);
  margin-top: 2px;
}

.scaffold-page .scaffold-overview-points span {
  font-size: 0.9rem;
  font-weight: 800;
}

.scaffold-page .scaffold-overview-points small {
  color: var(--scaffold-soft);
  font-size: 0.82rem;
  line-height: 1.7;
}

.scaffold-page .scaffold-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 24px;
}

.scaffold-page .scaffold-section-head p {
  margin: 10px 0 0;
  font-size: 0.9rem;
}

.scaffold-page .scaffold-checklist-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}

.scaffold-page .scaffold-check-card {
  grid-column: span 4;
  min-height: 182px;
  padding: 20px 18px;
  border: 1px solid var(--scaffold-line);
}

.scaffold-page .scaffold-card-icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(102, 44, 180, 0.08);
  color: var(--scaffold-primary);
}

.scaffold-page .scaffold-card-icon-accent {
  background: rgba(211, 107, 35, 0.08);
  color: var(--scaffold-accent);
}

.scaffold-page .scaffold-card-icon-warm {
  background: rgba(255, 139, 86, 0.1);
  color: #db7d42;
}

.scaffold-page .scaffold-check-card h3 {
  margin: 14px 0 8px;
  font-size: 1.05rem;
}

.scaffold-page .scaffold-check-card p {
  margin: 0;
  font-size: 0.84rem;
}

.scaffold-page .scaffold-check-card small {
  display: inline-block;
  margin-top: 14px;
  color: #a19bb3;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scaffold-page .scaffold-check-card-accent {
  grid-column: span 12;
  min-height: 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, #5f2caf, #783dd1);
  color: #ffffff;
}

.scaffold-page .scaffold-check-card-copy h3 {
  margin: 0;
  color: #ffffff;
}

.scaffold-page .scaffold-check-card-copy p {
  margin: 10px 0 0;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
}

.scaffold-page .scaffold-check-badge {
  min-width: 124px;
  padding: 16px 14px;
  border-radius: 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
}

.scaffold-page .scaffold-check-badge i {
  font-size: 1.2rem;
}

.scaffold-page .scaffold-check-badge span {
  display: block;
  margin-top: 8px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scaffold-page .scaffold-philosophy-visual {
  display: flex;
  justify-content: center;
}

.scaffold-page .scaffold-philosophy-image {
  width: min(100%, 440px);
  min-height: 360px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 22px 42px rgba(45, 31, 78, 0.14);
  background:
    linear-gradient(180deg, rgba(8, 14, 29, 0.06), rgba(8, 14, 29, 0.24)),
    url("https://images.unsplash.com/photo-1541976844346-f18aeac57b06?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.scaffold-page .scaffold-philosophy-copy p {
  margin: 14px 0 0;
  font-size: 0.94rem;
}

.scaffold-page .scaffold-philosophy-points {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.scaffold-page .scaffold-philosophy-points div {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--scaffold-line);
  background: rgba(255, 255, 255, 0.86);
}

.scaffold-page .scaffold-philosophy-points strong {
  display: block;
  color: var(--scaffold-primary-dark);
  font-size: 0.9rem;
}

.scaffold-page .scaffold-philosophy-points small {
  display: block;
  margin-top: 8px;
  color: var(--scaffold-soft);
  font-size: 0.82rem;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .scaffold-page .scaffold-hero,
  .scaffold-page .scaffold-overview,
  .scaffold-page .scaffold-philosophy {
    grid-template-columns: 1fr;
  }

  .scaffold-page .scaffold-check-card {
    grid-column: span 6;
  }

  .scaffold-page .scaffold-check-card-accent {
    grid-column: span 12;
  }
}

@media (max-width: 767px) {
  .scaffold-page .scaffold-shell {
    width: 92vw;
    gap: 30px;
  }

  .scaffold-page .scaffold-hero-image,
  .scaffold-page .scaffold-philosophy-image {
    min-height: 320px;
  }

  .scaffold-page .scaffold-overview-cards,
  .scaffold-page .scaffold-checklist-grid {
    grid-template-columns: 1fr;
  }

  .scaffold-page .scaffold-check-card,
  .scaffold-page .scaffold-check-card-accent {
    grid-column: span 12;
  }

  .scaffold-page .scaffold-check-card-accent {
    flex-direction: column;
    align-items: flex-start;
  }

  .scaffold-page .scaffold-btn {
    width: 100%;
  }
}

.ap-location-page {
  --ap-primary: #6426b5;
  --ap-primary-dark: #44197d;
  --ap-accent: #e1952f;
  --ap-ink: #342c4d;
  --ap-soft: #8e88a3;
  --ap-surface: #ffffff;
  --ap-line: #eee9f7;
  background:
    radial-gradient(circle at top left, rgba(100, 38, 181, 0.1), transparent 26%),
    linear-gradient(180deg, #f8f8fd 0%, #f3f4fa 100%);
  color: var(--ap-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.ap-location-page *,
.ap-location-page *::before,
.ap-location-page *::after {
  box-sizing: border-box;
}

.ap-location-page .ap-shell {
  max-width: 90vw;
  margin: 28px auto 56px;
  display: grid;
  gap: 34px;
}

.ap-location-page .ap-hero,
.ap-location-page .ap-gateway {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 30px;
  align-items: center;
}

.ap-location-page .ap-hero {
  min-height: 520px;
  padding: 34px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(90deg, rgba(65, 25, 120, 0.88) 0%, rgba(87, 35, 153, 0.78) 44%, rgba(106, 47, 176, 0.52) 100%),
    linear-gradient(180deg, rgba(20, 17, 46, 0.12), rgba(20, 17, 46, 0.42)),
    url("images/Inspection_Image.jpg") center/cover no-repeat;
  box-shadow: 0 26px 48px rgba(60, 37, 112, 0.18);
}

.ap-location-page .ap-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 12px;
  background: rgba(27, 13, 53, 0.88);
}

.ap-location-page .ap-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 670px;
  color: #ffffff;
}

.ap-location-page .ap-kicker {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(225, 149, 47, 0.96);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ap-location-page .ap-hero-copy h1,
.ap-location-page .ap-heading h2,
.ap-location-page .ap-gateway-copy h2,
.ap-location-page .ap-section-center h2,
.ap-location-page .ap-cta h2 {
  font-family: "Sora", sans-serif;
}

.ap-location-page .ap-hero-copy h1 {
  margin: 16px 0 14px;
  font-size: clamp(2.4rem, 4.8vw, 3.25rem);
  line-height: 0.97;
  letter-spacing: -0.05em;
}

.ap-location-page .ap-hero-copy p {
  margin: 0;
  max-width: 430px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.8;
}

.ap-location-page .ap-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.ap-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.ap-btn:hover {
  transform: translateY(-2px);
}

.ap-btn-primary,
.ap-btn-outline {
  background: linear-gradient(135deg, var(--ap-accent), #d96b0d);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(225, 149, 47, 0.26);
}

.ap-btn-secondary,
.ap-btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.arunachal-location-page {
  --ap-primary: #5b27aa;
  --ap-primary-deep: #43167f;
  --ap-accent: #d26f1c;
  --ap-accent-deep: #b95d12;
  --ap-bg: #f4f5fb;
  --ap-surface: #ffffff;
  --ap-soft: #6e6d84;
  --ap-ink: #14131d;
  --ap-border: rgba(90, 71, 149, 0.12);
  --ap-shadow: 0 18px 38px rgba(37, 28, 72, 0.1);
  background: linear-gradient(180deg, #f8f7fc 0%, #f2f4fa 100%);
  color: var(--ap-ink);
}

.arunachal-location-page .ap-page-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 24px 0 46px;
}

.arunachal-location-page .ap-hero-panel,
.arunachal-location-page .ap-section,
.arunachal-location-page .ap-stats-band {
  width: 100%;
}

.arunachal-location-page .ap-hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 570px;
  padding: 42px clamp(22px, 4vw, 42px) 120px;
  border-radius: 0 0 34px 34px;
  background:
    radial-gradient(circle at 30% 18%, rgba(126, 91, 215, 0.18), transparent 32%),
    radial-gradient(circle at 78% 58%, rgba(72, 146, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #4f1f8f 0%, #4a1c88 50%, #4f208f 100%);
  box-shadow: 0 24px 52px rgba(58, 27, 108, 0.24);
}

.arunachal-location-page .ap-hero-copy,
.arunachal-location-page .ap-hero-watermark {
  position: relative;
  z-index: 1;
}

.arunachal-location-page .ap-hero-copy {
  max-width: 720px;
  color: #fff;
}

.arunachal-location-page .ap-kicker {
  margin-bottom: 18px;
}

.arunachal-location-page .ap-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: clamp(3rem, 6vw, 4.65rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.arunachal-location-page .ap-hero-copy h1 br:last-child,
.arunachal-location-page .ap-hero-copy h1 {
  word-break: break-word;
}

.arunachal-location-page .ap-hero-copy p {
  margin: 18px 0 0;
  max-width: 340px;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.7;
}

.arunachal-location-page .ap-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.arunachal-location-page .ap-btn {
  min-width: 152px;
  min-height: 42px;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 0.8rem;
  text-decoration: none;
}

.arunachal-location-page .ap-btn-primary {
  background: linear-gradient(135deg, var(--ap-accent), var(--ap-accent-deep));
  color: #fff;
}

.arunachal-location-page .ap-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.arunachal-location-page .ap-btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ap-primary-deep);
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: none;
}

.arunachal-location-page .ap-hero-watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.arunachal-location-page .ap-watermark-mark {
  position: absolute;
  top: 72px;
  left: 53%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  transform: translateX(-50%);
  border: 2px solid rgba(79, 163, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(79, 163, 255, 0.04);
}

.arunachal-location-page .ap-watermark-mark::before,
.arunachal-location-page .ap-watermark-mark::after {
  content: "";
  position: absolute;
  inset: 36px;
  border: 2px solid rgba(79, 163, 255, 0.08);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.arunachal-location-page .ap-watermark-mark::after {
  inset: 72px 72px 42px;
  border-width: 1px;
}

.arunachal-location-page .ap-watermark-word {
  position: absolute;
  left: 51%;
  top: 176px;
  transform: translateX(-4%);
  color: rgba(87, 159, 255, 0.1);
  font-family: "Sora", sans-serif;
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.arunachal-location-page .ap-watermark-lines {
  position: absolute;
  left: 48%;
  top: 238px;
  width: 330px;
  height: 110px;
  border-top: 2px solid rgba(87, 159, 255, 0.08);
  border-bottom: 2px solid rgba(87, 159, 255, 0.05);
}

.arunachal-location-page .ap-watermark-lines::before,
.arunachal-location-page .ap-watermark-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  border-top: 1px solid rgba(87, 159, 255, 0.06);
}

.arunachal-location-page .ap-watermark-lines::before {
  top: 38px;
}

.arunachal-location-page .ap-watermark-lines::after {
  top: 74px;
}

.arunachal-location-page .ap-stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: -64px;
  padding: 0 8px;
  position: relative;
  z-index: 2;
}

.arunachal-location-page .ap-stat-card {
  display: grid;
  gap: 8px;
  min-height: 88px;
  padding: 18px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(229, 231, 242, 0.9);
  box-shadow: 0 12px 24px rgba(55, 39, 94, 0.08);
}

.arunachal-location-page .ap-stat-card strong {
  color: #241d78;
  font-size: 1.8rem;
  line-height: 1;
}

.arunachal-location-page .ap-stat-card span {
  color: #8b889b;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.arunachal-location-page .ap-section {
  margin-top: 42px;
}

.arunachal-location-page .ap-capability-section,
.arunachal-location-page .ap-assurance-section {
  padding: 28px 0;
}

.arunachal-location-page .ap-hubs-section {
  margin-top: 34px;
  padding: 30px 0 34px;
  background: linear-gradient(180deg, #f0f2f9 0%, #f6f7fb 100%);
  border-radius: 26px;
}

.arunachal-location-page .ap-section-head {
  margin-bottom: 20px;
}

.arunachal-location-page .ap-section-head h2,
.arunachal-location-page .ap-assurance-copy h2,
.arunachal-location-page .ap-cta-panel h2 {
  margin: 0;
  color: #17151f;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.arunachal-location-page .ap-section-head p {
  margin: 12px 0 0;
  max-width: 520px;
  color: #8a8898;
  font-size: 0.88rem;
  line-height: 1.7;
}

.arunachal-location-page .ap-section-head-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.arunachal-location-page .ap-section-head-center {
  text-align: center;
}

.arunachal-location-page .ap-slider-arrows {
  display: flex;
  gap: 8px;
  align-items: center;
}

.arunachal-location-page .ap-arrow {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ap-primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(78, 32, 149, 0.2);
}

.arunachal-location-page .ap-arrow-muted {
  background: #fff;
  color: #121212;
  border: 1px solid rgba(18, 18, 18, 0.14);
  box-shadow: none;
}

.arunachal-location-page .ap-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.arunachal-location-page .ap-capability-card {
  position: relative;
  overflow: hidden;
  min-height: 274px;
  border-radius: 12px;
  background-color: #27222d;
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 28px rgba(19, 15, 30, 0.18);
}

.arunachal-location-page .ap-capability-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 14, 0.06) 8%, rgba(15, 14, 24, 0.34) 54%, rgba(18, 18, 24, 0.9) 100%);
}

.arunachal-location-page .ap-capability-hydro {
  background-image:
    linear-gradient(180deg, rgba(52, 99, 147, 0.08), rgba(10, 12, 24, 0.1)),
    url("images/What-is-Included-in-Construction-Site-Inspections.jpg");
}

.arunachal-location-page .ap-capability-border {
  background-image:
    linear-gradient(180deg, rgba(201, 181, 131, 0.12), rgba(29, 24, 19, 0.12)),
    url("images/Inspection_Image.jpg");
}

.arunachal-location-page .ap-capability-eco {
  background-image:
    linear-gradient(180deg, rgba(196, 222, 112, 0.18), rgba(19, 26, 14, 0.15)),
    url("images/inspectionimage.png");
}

.arunachal-location-page .ap-capability-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 18px 16px 16px;
  color: #fff;
}

.arunachal-location-page .ap-capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f58427, #dc5f1a);
  color: #fff;
  font-size: 0.7rem;
}

.arunachal-location-page .ap-capability-overlay h3 {
  margin: 10px 0 6px;
  font-size: 1.15rem;
  font-weight: 700;
}

.arunachal-location-page .ap-capability-overlay p {
  margin: 0;
  max-width: 240px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.74rem;
  line-height: 1.55;
}

.arunachal-location-page .ap-hub-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
  gap: 12px;
}

.arunachal-location-page .ap-hub-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 96px;
  padding: 18px 18px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--ap-border);
  box-shadow: 0 10px 24px rgba(50, 39, 84, 0.06);
}

.arunachal-location-page .ap-hub-card-wide {
  grid-column: 1;
}

.arunachal-location-page .ap-hub-card-purple {
  grid-column: 2;
  background: linear-gradient(135deg, #672cb5 0%, #7b41ca 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.arunachal-location-page .ap-hub-card-purple::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  transform: rotate(-18deg);
}

.arunachal-location-page .ap-hub-card-lab {
  border-left: 2px solid #d95333;
}

.arunachal-location-page .ap-hub-card-apply {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.arunachal-location-page .ap-hub-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(91, 39, 170, 0.08);
  color: var(--ap-primary);
  font-size: 0.95rem;
  flex: 0 0 auto;
}

.arunachal-location-page .ap-hub-icon-accent {
  background: rgba(217, 83, 51, 0.08);
  color: #cf512d;
}

.arunachal-location-page .ap-hub-content h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
}

.arunachal-location-page .ap-hub-content p {
  margin: 0;
  color: #7f7d8e;
  font-size: 0.78rem;
  line-height: 1.65;
}

.arunachal-location-page .ap-hub-card-purple .ap-hub-content p,
.arunachal-location-page .ap-hub-card-purple .ap-hub-content h3 {
  color: #fff;
}

.arunachal-location-page .gujarat-projects-section .ap-section-head-center p {
  max-width: 720px;
  margin: 12px auto 0;
}

.arunachal-location-page .gujarat-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.arunachal-location-page .gujarat-project-card {
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f1ff 100%);
  border: 1px solid rgba(103, 44, 181, 0.12);
  box-shadow: 0 18px 40px rgba(23, 16, 45, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.arunachal-location-page .gujarat-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(23, 16, 45, 0.14);
}

.arunachal-location-page .gujarat-project-media {
  position: relative;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
}

.arunachal-location-page .gujarat-project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 13, 31, 0.02) 0%, rgba(18, 13, 31, 0.24) 100%);
}

.arunachal-location-page .gujarat-project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.arunachal-location-page .gujarat-project-copy {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.arunachal-location-page .gujarat-project-tag {
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(103, 44, 181, 0.08);
  color: var(--ap-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.arunachal-location-page .gujarat-project-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  color: #22173f;
}

.arunachal-location-page .gujarat-project-card p {
  margin: 0;
  color: #645b7d;
  line-height: 1.6;
}

.arunachal-location-page .ap-hub-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.arunachal-location-page .ap-hub-tags span {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(91, 39, 170, 0.08);
  color: #726a92;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.arunachal-location-page .ap-pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 8px;
  background: #111111;
  color: #fff;
  font-size: 0.63rem;
  font-weight: 700;
  text-decoration: none;
}

.arunachal-location-page .ap-assurance-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.arunachal-location-page .ap-assurance-visual {
  position: relative;
  overflow: visible;
  min-height: 420px;
  border-radius: 12px;
  background: linear-gradient(180deg, #0d1e2a 0%, #142533 100%);
  box-shadow: 0 16px 34px rgba(17, 23, 41, 0.18);
}

.arunachal-location-page .ap-assurance-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0.9;
}

.arunachal-location-page .ap-assurance-badge {
  position: absolute;
  left: 126px;
  bottom: -18px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, #d26f1c, #b65711);
  color: #fff;
  box-shadow: 0 14px 26px rgba(193, 98, 24, 0.34);
}

.arunachal-location-page .ap-assurance-badge i {
  font-size: 0.95rem;
}

.arunachal-location-page .ap-assurance-badge strong,
.arunachal-location-page .ap-assurance-badge span {
  display: block;
  line-height: 1.25;
}

.arunachal-location-page .ap-assurance-badge strong {
  font-size: 0.75rem;
}

.arunachal-location-page .ap-assurance-badge span {
  font-size: 0.54rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.arunachal-location-page .ap-assurance-copy {
  padding-right: 12px;
}

.arunachal-location-page .ap-feature-list {
  display: grid;
  gap: 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.arunachal-location-page .ap-feature-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
}

.arunachal-location-page .ap-feature-icon {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(91, 39, 170, 0.08);
  color: var(--ap-primary);
  font-size: 0.9rem;
}

.arunachal-location-page .ap-feature-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.arunachal-location-page .ap-feature-list p {
  margin: 0;
  color: #858294;
  font-size: 0.8rem;
  line-height: 1.7;
}

.arunachal-location-page .ap-cta-wrap {
  margin-top: 30px;
}

.arunachal-location-page .ap-cta-panel {
  position: relative;
  overflow: hidden;
  padding: 42px 20px 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #5d27ac 0%, #6f36bf 100%);
  text-align: center;
  color: #fff;
}

.arunachal-location-page .ap-cta-panel::before,
.arunachal-location-page .ap-cta-panel::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
}

.arunachal-location-page .ap-cta-panel::before {
  right: 138px;
  top: 0;
  width: 2px;
  height: 100%;
}

.arunachal-location-page .ap-cta-panel::after {
  right: 26px;
  bottom: 42px;
  width: 136px;
  height: 2px;
}

.arunachal-location-page .ap-cta-panel h2 {
  color: #fff;
}

.arunachal-location-page .ap-cta-panel p {
  margin: 12px auto 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  line-height: 1.7;
}

.arunachal-location-page .ap-cta-actions {
  justify-content: center;
  margin-top: 24px;
}

@media (max-width: 991px) {
  .arunachal-location-page .ap-stats-band,
  .arunachal-location-page .ap-capability-grid,
  .arunachal-location-page .ap-hub-grid,
  .arunachal-location-page .ap-assurance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .arunachal-location-page .gujarat-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .arunachal-location-page .ap-hub-card-wide,
  .arunachal-location-page .ap-hub-card-purple {
    grid-column: auto;
  }

  .arunachal-location-page .ap-assurance-copy {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .arunachal-location-page .ap-page-shell {
    padding: 16px 12px 56px;
  }

  .arunachal-location-page .ap-hero-panel {
    min-height: auto;
    padding: 28px 18px 96px;
    border-radius: 0 0 24px 24px;
  }

  .arunachal-location-page .ap-hero-copy {
    max-width: 100%;
  }

  .arunachal-location-page .ap-hero-copy p {
    max-width: 100%;
  }

  .arunachal-location-page .ap-hero-watermark {
    opacity: 0.55;
  }

  .arunachal-location-page .ap-watermark-mark {
    left: 72%;
    top: 92px;
    width: 150px;
    height: 150px;
  }

  .arunachal-location-page .ap-watermark-word {
    left: 56%;
    top: 188px;
    font-size: 4rem;
  }

  .arunachal-location-page .ap-watermark-lines {
    left: 46%;
    top: 228px;
    width: 210px;
  }

  .arunachal-location-page .ap-stats-band,
  .arunachal-location-page .ap-capability-grid,
  .arunachal-location-page .ap-hub-grid,
  .arunachal-location-page .ap-assurance-grid {
    grid-template-columns: 1fr;
  }

  .arunachal-location-page .gujarat-project-grid {
    grid-template-columns: 1fr;
  }

  .arunachal-location-page .ap-section-head-split,
  .arunachal-location-page .ap-hub-card-apply {
    flex-direction: column;
    align-items: flex-start;
  }

  .arunachal-location-page .ap-assurance-visual {
    min-height: 320px;
  }

  .arunachal-location-page .ap-assurance-visual img {
    min-height: 320px;
  }

  .arunachal-location-page .ap-assurance-badge {
    left: 18px;
    bottom: -16px;
  }

  .arunachal-location-page .ap-hero-actions,
  .arunachal-location-page .ap-cta-actions {
    flex-direction: column;
  }

  .arunachal-location-page .ap-btn {
    width: 100%;
  }
}

/* END ARUNACHAL STYLES */
.ap-location-page .ap-btn {
  min-width: 150px;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
   background 0.2s ease, color 0.2s ease;
}

.ap-location-page .ap-btn:hover {
  transform: translateY(-2px);
}

.ap-location-page .ap-btn-primary {
  background: linear-gradient(135deg, #d57f1d, #ecac33);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(215, 127, 29, 0.24);
}

.ap-location-page .ap-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.ap-location-page .ap-hero-visual {
  min-height: 100%;
  position: relative;
}

.ap-location-page .ap-hero-overlay {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background:
    linear-gradient(180deg, transparent 0 65%, rgba(255, 141, 68, 0.16) 65% 100%),
    linear-gradient(90deg, transparent 0 18%, rgba(255,255,255,0.12) 18% 19%, transparent 19% 33%, rgba(255,255,255,0.1) 33% 34%, transparent 34% 54%, rgba(255,255,255,0.12) 54% 55%, transparent 55% 68%, rgba(255,255,255,0.08) 68% 69%, transparent 69% 100%);
  opacity: 0.9;
}

.ap-location-page .ap-section {
  display: grid;
  gap: 22px;
}

.ap-location-page .ap-heading h2,
.ap-location-page .ap-section-center h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  color: var(--ap-primary-dark);
}

.ap-location-page .ap-heading span {
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #dd7f3e, #f1b25e);
}

.ap-location-page .ap-impact-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.ap-location-page .ap-card,
.ap-location-page .ap-service-card {
  border-radius: 16px;
  background: var(--ap-surface);
  box-shadow: 0 16px 32px rgba(45, 31, 78, 0.08);
}

.ap-location-page .ap-card {
  min-height: 188px;
  padding: 22px 20px;
  position: relative;
  border: 1px solid var(--ap-line);
}

.ap-location-page .ap-card-wide {
  grid-column: span 8;
  overflow: hidden;
}

.ap-location-page .ap-card-wide::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 14px;
  width: 130px;
  height: 90px;
  opacity: 0.12;
  background:
    radial-gradient(circle at 30% 28%, #7e7a95 0 20%, transparent 21%),
    linear-gradient(90deg, transparent 0 18%, #7e7a95 18% 30%, transparent 30% 100%),
    linear-gradient(180deg, transparent 0 55%, #7e7a95 55% 67%, transparent 67% 100%);
}

.ap-location-page .ap-card-accent {
  grid-column: span 4;
  background: linear-gradient(180deg, #6b2bc0 0%, #5a22a2 100%);
  color: #ffffff;
  border: 0;
}

.ap-location-page .ap-card-soft {
  grid-column: span 4;
  background: #fbfbfe;
}

.ap-location-page .ap-card-photo {
  grid-column: span 4;
  padding: 0;
  overflow: hidden;
}

.ap-location-page .ap-card-photo img,
.ap-location-page .ap-gateway-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ap-location-page .ap-card h3,
.ap-location-page .ap-service-card h3 {
  margin: 16px 0 10px;
  font-size: 1rem;
}

.ap-location-page .ap-card p,
.ap-location-page .ap-service-card p,
.ap-location-page .ap-gateway-copy p,
.ap-location-page .ap-section-center p,
.ap-location-page .ap-cta p {
  margin: 0;
  color: var(--ap-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.ap-location-page .ap-card small,
.ap-location-page .ap-inline-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ap-location-page .ap-card small {
  color: #ada7bf;
}

.ap-location-page .ap-card-accent p,
.ap-location-page .ap-card-accent small {
  color: rgba(255, 255, 255, 0.78);
}

.ap-location-page .ap-card-accent strong {
  display: block;
  margin-top: 16px;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.ap-location-page .ap-card-icon,
.ap-location-page .ap-service-icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(100, 38, 181, 0.08);
  color: var(--ap-primary);
  font-size: 0.86rem;
}

.ap-location-page .ap-card-icon-light {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.ap-location-page .ap-card-icon-warm {
  background: rgba(225, 149, 47, 0.12);
  color: #dc8930;
}

.ap-location-page .ap-card-icon-navy {
  background: rgba(70, 86, 147, 0.1);
  color: #4b5ca9;
}

.ap-location-page .ap-gateway {
  align-items: stretch;
}

.ap-location-page .ap-gateway-visual,
.ap-location-page .ap-gateway-copy {
  position: relative;
}

.ap-location-page .ap-gateway-visual {
  min-height: 340px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 22px 42px rgba(45, 31, 78, 0.12);
}

.ap-location-page .ap-gateway-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 21, 42, 0.08), rgba(12, 21, 42, 0.22));
}

.ap-location-page .ap-hub-card {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 1;
  min-width: 120px;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, #6528b8, #4f1f96);
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(59, 29, 110, 0.24);
}

.ap-location-page .ap-hub-card span {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
}

.ap-location-page .ap-hub-card small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.ap-location-page .ap-gateway-copy {
  align-self: center;
}

.ap-location-page .ap-gateway-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.04;
  color: var(--ap-primary-dark);
}

.ap-location-page .ap-gateway-copy h2 span {
  color: var(--ap-primary);
}

.ap-location-page .ap-gateway-copy p {
  margin-top: 16px;
  max-width: 470px;
}

.ap-location-page .ap-gateway-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.ap-location-page .ap-gateway-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ap-ink);
  font-size: 0.85rem;
  font-weight: 700;
}

.ap-location-page .ap-gateway-list i {
  color: #d38330;
}

.ap-location-page .ap-inline-link {
  color: #867db0;
  text-decoration: none;
}

.ap-location-page .ap-section-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.ap-location-page .ap-section-center p {
  margin-top: 12px;
}

.ap-location-page .ap-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ap-location-page .ap-service-card {
  min-height: 204px;
  padding: 22px 20px;
  border: 1px solid var(--ap-line);
}

.ap-location-page .ap-service-icon-lilac {
  background: rgba(168, 117, 255, 0.12);
  color: #9b65df;
}

.ap-location-page .ap-service-icon-peach {
  background: rgba(236, 164, 100, 0.16);
  color: #d98943;
}

.ap-location-page .ap-service-icon-blue {
  background: rgba(86, 114, 236, 0.12);
  color: #4f69d4;
}

.ap-location-page .ap-cta {
  padding: 38px 26px;
  border-radius: 18px;
  text-align: center;
  background: linear-gradient(135deg, #6426b5, #7d3bd5);
  color: #ffffff;
  box-shadow: 0 20px 42px rgba(69, 36, 124, 0.18);
}

.ap-location-page .ap-cta h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.ap-location-page .ap-cta p {
  max-width: 560px;
  margin: 12px auto 20px;
  color: rgba(255, 255, 255, 0.76);
}

.ap-location-page .ap-cta .ap-btn {
  min-width: 190px;
}

@media (max-width: 991px) {
  .ap-location-page .ap-hero,
  .ap-location-page .ap-gateway,
  .ap-location-page .ap-services-grid {
    grid-template-columns: 1fr;
  }

  .ap-location-page .ap-card-wide,
  .ap-location-page .ap-card-accent,
  .ap-location-page .ap-card-soft,
  .ap-location-page .ap-card-photo {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .ap-location-page .ap-shell {
    width: 92vw;
    gap: 28px;
  }

  .ap-location-page .ap-hero {
    min-height: 420px;
    padding: 24px 20px;
  }

  .ap-location-page .ap-hero-copy h1 {
    font-size: 2.2rem;
  }

  .ap-location-page .ap-impact-grid,
  .ap-location-page .ap-services-grid {
    grid-template-columns: 1fr;
  }

  .ap-location-page .ap-card-wide,
  .ap-location-page .ap-card-accent,
  .ap-location-page .ap-card-soft,
  .ap-location-page .ap-card-photo {
    grid-column: span 12;
  }

  .ap-location-page .ap-card-photo {
    min-height: 220px;
  }

  .ap-location-page .ap-btn {
    width: 100%;
  }
}

/* NDT Page Refresh */
.ndt-page {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --surface-soft: #eef2f8;
  --text: #000000;
  --text-soft: #000000;
  --primary: #6d2fc0;
  --primary-dark: #4f2391;
  --accent: #ef8f1a;
  --border: #e4e8f1;
  margin: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(109, 47, 192, 0.06), transparent 25%),
    linear-gradient(180deg, #f8f9fc 0%, #eff3f9 100%);
}

.ndt-page .page-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 24px 0 46px;
}

.ndt-page .section {
  margin-top: 36px;
}

.ndt-page .ndt-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 13px;
  border-radius: 999px;
  background:rgb(57 25 100 / 69%);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ndt-page .ndt-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.8fr);
  gap: clamp(28px, 5vw, 54px);
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(244, 247, 252, 0.95)),
    linear-gradient(135deg, rgba(109, 47, 192, 0.06), rgba(239, 143, 26, 0.05));
  box-shadow: 0 20px 60px rgba(27, 25, 51, 0.1);
  overflow: hidden;
}

.ndt-page .ndt-hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -20% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 47, 192, 0.18), transparent 68%);
  pointer-events: none;
}

.ndt-page .ndt-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.ndt-page .ndt-hero h1 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.ndt-page .ndt-hero h1 span {
  color: var(--primary);
}

.ndt-page .ndt-hero p {
  margin: 18px 0 0;
  max-width: 680px;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.82;
}

.ndt-page .ndt-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.ndt-page .ndt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.ndt-page .ndt-btn:hover {
  transform: translateY(-2px);
}

.ndt-page .ndt-btn-primary {
  background: linear-gradient(135deg, var(--accent), #d66a10);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(214, 106, 16, 0.18);
}

.ndt-page .ndt-btn-secondary {
  background: rgba(109, 47, 192, 0.06);
  color: var(--primary-dark);
  border: 1px solid rgba(109, 47, 192, 0.12);
}

.ndt-page .ndt-hero-visual {
  position: relative;
  max-width: 390px;
  width: 100%;
  justify-self: end;
}

.ndt-page .ndt-hero-image {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: linear-gradient(180deg, #132338, #20334c);
  box-shadow: 0 24px 54px rgba(26, 24, 49, 0.16);
}

.ndt-page .ndt-hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}

.ndt-page .ndt-stat-card {
  position: absolute;
  left: -22px;
  bottom: 22px;
  width: 150px;
  padding: 16px 16px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(109, 47, 192, 0.08);
  box-shadow: 0 18px 34px rgba(27, 25, 51, 0.12);
}

.ndt-page .ndt-stat-card strong {
  display: block;
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
}

.ndt-page .ndt-stat-card span {
  display: block;
  margin-top: 5px;
  color: #8c817d;
  font-size: 0.87rem;
  line-height: 1.45;
}

.ndt-page .ndt-overview {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 4vw, 40px);
  padding: clamp(28px, 4vw, 38px);
  border: 1px solid rgba(109, 47, 192, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.96));
  box-shadow: 0 18px 38px rgba(27, 25, 51, 0.07);
}

.ndt-page .ndt-overview-title h2,
.ndt-page .ndt-section-head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.ndt-page .ndt-overview-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.82;
}

.ndt-page .ndt-overview-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.ndt-page .ndt-overview-points div {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px 12px;
  align-items: start;
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: var(--surface-soft);
}

.ndt-page .ndt-overview-points i {
  color: var(--accent);
  margin-top: 2px;
}

.ndt-page .ndt-overview-points span {
  font-weight: 800;
  font-size: 1rem;
}

.ndt-page .ndt-overview-points small {
  grid-column: 2;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.ndt-page .ltpv-test-matrix,
.ndt-page .ltpv-process,
.ndt-page .ltpv-compliance {
  width: 100%;
}

.ndt-page .ltpv-test-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.ndt-page .ltpv-test-head p {
  margin: 14px auto 0;
  max-width: 620px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.ndt-page .ltpv-test-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.ndt-page .ltpv-test-card {
  grid-column: span 4;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.94));
  border: 1px solid rgba(109, 47, 192, 0.08);
  box-shadow: 0 18px 40px rgba(27, 25, 51, 0.07);
}

.ndt-page .ltpv-test-card-featured {
  grid-column: span 6;
  background: linear-gradient(135deg, rgba(109, 47, 192, 0.97), rgba(79, 35, 145, 0.94));
  border-color: rgba(255, 255, 255, 0.12);
}

.ndt-page .ltpv-test-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ndt-page .ltpv-test-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary);
  font-size: 1rem;
}

.ndt-page .ltpv-test-card-featured .ltpv-test-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.ndt-page .ltpv-test-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(109, 47, 192, 0.08);
  color: #8d86a6;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ndt-page .ltpv-test-card-featured .ltpv-test-label {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
}

.ndt-page .ltpv-test-card h3 {
  margin: 18px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  line-height: 1.2;
}

.ndt-page .ltpv-test-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.ndt-page .ltpv-test-card-featured h3,
.ndt-page .ltpv-test-card-featured p {
  color: #ffffff;
}

.ndt-page .ltpv-test-card-featured p {
  color: rgba(255, 255, 255, 0.84);
}

.ndt-page .ltpv-process-shell {
  padding: clamp(28px, 4vw, 40px);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(36, 31, 67, 0.98), rgba(79, 35, 145, 0.96));
  box-shadow: 0 24px 60px rgba(27, 25, 51, 0.16);
}

.ndt-page .ltpv-process-intro {
  max-width: 720px;
}

.ndt-page .ltpv-process-intro h2 {
  margin: 16px 0 0;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.ndt-page .ltpv-process-intro p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.8;
}

.ndt-page .ltpv-process-panels {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 28px;
}

.ndt-page .ltpv-process-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.ndt-page .ltpv-process-card-accent {
  background: linear-gradient(180deg, rgba(239, 143, 26, 0.18), rgba(255, 255, 255, 0.09));
}

.ndt-page .ltpv-process-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ndt-page .ltpv-process-card h3 {
  margin: 16px 0 12px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.ndt-page .ltpv-process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.ndt-page .ltpv-process-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.89rem;
  line-height: 1.66;
}

.ndt-page .ltpv-process-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #ef8f1a);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.ndt-page .ltpv-compliance-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  gap: 22px;
  align-items: stretch;
}

.ndt-page .ltpv-compliance-copy {
  padding: clamp(26px, 4vw, 36px);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.94));
  border: 1px solid rgba(109, 47, 192, 0.08);
  box-shadow: 0 18px 40px rgba(27, 25, 51, 0.06);
}

.ndt-page .ltpv-compliance-copy h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.ndt-page .ltpv-compliance-copy p {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.82;
}

.ndt-page .ltpv-compliance-panels {
  display: grid;
  gap: 16px;
}

.ndt-page .ltpv-compliance-card {
  padding: 24px 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #edf2f8);
  border: 1px solid rgba(109, 47, 192, 0.09);
  box-shadow: 0 16px 36px rgba(27, 25, 51, 0.06);
}

.ndt-page .ltpv-compliance-card i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary);
  font-size: 1rem;
}

.ndt-page .ltpv-compliance-card h3 {
  margin: 16px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.ndt-page .ltpv-compliance-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .ndt-page .ndt-hero,
  .ndt-page .ndt-overview,
  .ndt-page .ltpv-process-panels,
  .ndt-page .ltpv-compliance-shell {
    grid-template-columns: 1fr;
  }

  .ndt-page .ndt-overview-points {
    grid-template-columns: 1fr;
  }

  .ndt-page .ndt-hero-visual {
    justify-self: start;
  }

  .ndt-page .ltpv-test-card,
  .ndt-page .ltpv-test-card-featured {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .ndt-page .page-shell {
    width: 90vw;
    max-width: 90vw;
    padding-top: 12px;
  }

  .ndt-page .ndt-btn {
    width: 100%;
  }

  .ndt-page .ndt-stat-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .ndt-page .ltpv-test-grid {
    grid-template-columns: 1fr;
  }

  .ndt-page .ltpv-test-card,
  .ndt-page .ltpv-test-card-featured {
    grid-column: auto;
  }
}

/* Welding Page */
.welding-page {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --surface-soft: #eef2f8;
  --text: #000000;
  --text-soft: #000000;
  --primary: #6d2fc0;
  --primary-dark: #4f2391;
  --accent: #ef8f1a;
  --border: #e4e8f1;
  margin: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(109, 47, 192, 0.06), transparent 24%),
    radial-gradient(circle at bottom right, rgba(239, 143, 26, 0.06), transparent 22%),
    linear-gradient(180deg, #f8f9fc 0%, #eff3f9 100%);
}

.welding-page *,
.welding-page *::before,
.welding-page *::after {
  box-sizing: border-box;
}

.welding-page img {
  max-width: 100%;
  display: block;
}

.welding-page a {
  color: inherit;
  text-decoration: none;
}

.welding-page .page-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 24px 0 46px;
}

.welding-page .section {
  margin-top: 36px;
}

.welding-page .ndt-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(109, 47, 192, 0.08);
  color: #8d86a6;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.welding-page .ndt-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.8fr);
  gap: clamp(28px, 5vw, 54px);
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(244, 247, 252, 0.96)),
    linear-gradient(130deg, rgba(109, 47, 192, 0.07), rgba(239, 143, 26, 0.05));
  box-shadow: 0 20px 60px rgba(27, 25, 51, 0.1);
  overflow: hidden;
}

.welding-page .ndt-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 47, 192, 0.18), transparent 68%);
  pointer-events: none;
}

.welding-page .ndt-hero::after {
  content: "";
  position: absolute;
  left: 42%;
  bottom: -130px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 143, 26, 0.12), transparent 68%);
  pointer-events: none;
}

.welding-page .ndt-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.welding-page .ndt-hero h1 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.welding-page .ndt-hero h1 span {
  color: var(--primary);
}

.welding-page .ndt-hero p {
  margin: 18px 0 0;
  max-width: 680px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.82;
}

.welding-page .ndt-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.welding-page .ndt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.welding-page .ndt-btn:hover {
  transform: translateY(-2px);
}

.welding-page .ndt-btn-primary {
  background: linear-gradient(135deg, var(--accent), #d66a10);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(214, 106, 16, 0.18);
}

.welding-page .ndt-btn-secondary {
  background: rgba(109, 47, 192, 0.06);
  color: var(--primary-dark);
  border: 1px solid rgba(109, 47, 192, 0.12);
}

.welding-page .ndt-hero-visual {
  position: relative;
  max-width: 390px;
  width: 100%;
  justify-self: end;
}

.welding-page .ndt-hero-image {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, #132338, #20334c);
  box-shadow: 0 26px 56px rgba(26, 24, 49, 0.16);
}

.welding-page .ndt-hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.92);
}

.welding-page .ndt-stat-card {
  position: absolute;
  left: -22px;
  bottom: 22px;
  width: 156px;
  padding: 16px 16px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(109, 47, 192, 0.08);
  box-shadow: 0 18px 34px rgba(27, 25, 51, 0.12);
}

.welding-page .ndt-stat-card strong {
  display: block;
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
}

.welding-page .ndt-stat-card span {
  display: block;
  margin-top: 5px;
  color: #8c817d;
  font-size: 0.89rem;
  line-height: 1.45;
}

.welding-page .ndt-overview {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 4vw, 40px);
  padding: clamp(28px, 4vw, 38px);
  border: 1px solid rgba(109, 47, 192, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.96));
  box-shadow: 0 18px 38px rgba(27, 25, 51, 0.07);
}

.welding-page .ndt-overview-title h2,
.welding-page .ndt-section-head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.welding-page .ndt-overview-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.82;
}

.welding-page .ndt-overview-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.welding-page .ndt-overview-points div {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px 12px;
  align-items: start;
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: var(--surface-soft);
}

.welding-page .ndt-overview-points i {
  color: var(--accent);
  margin-top: 2px;
}

.welding-page .ndt-overview-points span {
  font-weight: 800;
  font-size: 0.98rem;
}

.welding-page .ndt-overview-points small {
  grid-column: 2;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

.welding-page .ltpv-test-matrix,
.welding-page .ltpv-process,
.welding-page .ltpv-compliance {
  width: 100%;
}

.welding-page .ltpv-test-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.welding-page .ltpv-test-head p {
  margin: 14px auto 0;
  max-width: 620px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.welding-page .ltpv-test-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.welding-page .ltpv-test-card {
  grid-column: span 4;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.94));
  border: 1px solid rgba(109, 47, 192, 0.08);
  box-shadow: 0 18px 40px rgba(27, 25, 51, 0.07);
}

.welding-page .ltpv-test-card-featured {
  grid-column: span 6;
  background: linear-gradient(135deg, rgba(109, 47, 192, 0.97), rgba(79, 35, 145, 0.94));
  border-color: rgba(255, 255, 255, 0.12);
}

.welding-page .ltpv-test-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.welding-page .ltpv-test-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary);
  font-size: 1rem;
}

.welding-page .ltpv-test-card-featured .ltpv-test-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.welding-page .ltpv-test-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(109, 47, 192, 0.08);
  color: #8d86a6;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.welding-page .ltpv-test-card-featured .ltpv-test-label {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
}

.welding-page .ltpv-test-card h3 {
  margin: 18px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  line-height: 1.2;
}

.welding-page .ltpv-test-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.welding-page .ltpv-test-card-featured h3,
.welding-page .ltpv-test-card-featured p {
  color: #ffffff;
}

.welding-page .ltpv-test-card-featured p {
  color: rgba(255, 255, 255, 0.84);
}

.welding-page .ltpv-process-shell {
  padding: clamp(28px, 4vw, 40px);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(36, 31, 67, 0.98), rgba(79, 35, 145, 0.96));
  box-shadow: 0 24px 60px rgba(27, 25, 51, 0.16);
}

.welding-page .ltpv-process-intro {
  max-width: 720px;
}

.welding-page .ltpv-process-intro h2 {
  margin: 16px 0 0;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.welding-page .ltpv-process-intro p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.8;
}

.welding-page .ltpv-process-panels {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 28px;
}

.welding-page .ltpv-process-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.welding-page .ltpv-process-card-accent {
  background: linear-gradient(180deg, rgba(239, 143, 26, 0.18), rgba(255, 255, 255, 0.09));
}

.welding-page .ltpv-process-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.welding-page .ltpv-process-card h3 {
  margin: 16px 0 12px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.welding-page .ltpv-process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.welding-page .ltpv-process-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.66;
}

.welding-page .ltpv-process-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #ef8f1a);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.welding-page .ltpv-compliance-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  gap: 22px;
  align-items: stretch;
}

.welding-page .ltpv-compliance-copy {
  padding: clamp(26px, 4vw, 36px);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.94));
  border: 1px solid rgba(109, 47, 192, 0.08);
  box-shadow: 0 18px 40px rgba(27, 25, 51, 0.06);
}

.welding-page .ltpv-compliance-copy h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.welding-page .ltpv-compliance-copy p {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.82;
}

.welding-page .ltpv-compliance-panels {
  display: grid;
  gap: 16px;
}

.welding-page .ltpv-compliance-card {
  padding: 24px 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #edf2f8);
  border: 1px solid rgba(109, 47, 192, 0.09);
  box-shadow: 0 16px 36px rgba(27, 25, 51, 0.06);
}

.welding-page .ltpv-compliance-card i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary);
  font-size: 1rem;
}

.welding-page .ltpv-compliance-card h3 {
  margin: 16px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.welding-page .ltpv-compliance-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .welding-page .ndt-hero,
  .welding-page .ndt-overview,
  .welding-page .ltpv-process-panels,
  .welding-page .ltpv-compliance-shell {
    grid-template-columns: 1fr;
  }

  .welding-page .ndt-overview-points {
    grid-template-columns: 1fr;
  }

  .welding-page .ndt-hero-visual {
    justify-self: start;
  }

  .welding-page .ltpv-test-card,
  .welding-page .ltpv-test-card-featured {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .welding-page .page-shell {
    width: 90vw;
    max-width: 90vw;
    padding-top: 12px;
  }

  .welding-page .ndt-btn {
    width: 100%;
  }

  .welding-page .ndt-stat-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .welding-page .ltpv-test-grid {
    grid-template-columns: 1fr;
  }

  .welding-page .ltpv-test-card,
  .welding-page .ltpv-test-card-featured {
    grid-column: auto;
  }
}

/* Pullout Page */
.pullout-page {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --surface-soft: #eef2f8;
  --text: #000000;
  --text-soft: #000000;
  --primary: #6d2fc0;
  --primary-dark: #4f2391;
  --accent: #ef8f1a;
  --border: #e4e8f1;
  margin: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(109, 47, 192, 0.06), transparent 24%),
    radial-gradient(circle at right center, rgba(239, 143, 26, 0.05), transparent 20%),
    linear-gradient(180deg, #f8f9fc 0%, #eff3f9 100%);
}

.pullout-page *,
.pullout-page *::before,
.pullout-page *::after {
  box-sizing: border-box;
}

.pullout-page img {
  max-width: 100%;
  display: block;
}

.pullout-page a {
  color: inherit;
  text-decoration: none;
}

.pullout-page .page-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 24px 0 46px;
}

.pullout-page .section {
  margin-top: 36px;
}

.pullout-page .ndt-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(109, 47, 192, 0.08);
  color: #8d86a6;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pullout-page .ndt-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.8fr);
  gap: clamp(28px, 5vw, 54px);
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(244, 247, 252, 0.96)),
    linear-gradient(130deg, rgba(109, 47, 192, 0.06), rgba(239, 143, 26, 0.05));
  box-shadow: 0 20px 60px rgba(27, 25, 51, 0.1);
  overflow: hidden;
}

.pullout-page .ndt-hero::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 47, 192, 0.16), transparent 68%);
}

.pullout-page .ndt-hero::after {
  content: "";
  position: absolute;
  left: 46%;
  bottom: -120px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 143, 26, 0.1), transparent 68%);
}

.pullout-page .ndt-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.pullout-page .ndt-hero h1 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.pullout-page .ndt-hero h1 span {
  color: var(--primary);
}

.pullout-page .ndt-hero p {
  margin: 18px 0 0;
  max-width: 680px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.82;
}

.pullout-page .ndt-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.pullout-page .ndt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.pullout-page .ndt-btn:hover {
  transform: translateY(-2px);
}

.pullout-page .ndt-btn-primary {
  background: linear-gradient(135deg, var(--accent), #d66a10);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(214, 106, 16, 0.18);
}

.pullout-page .ndt-btn-secondary {
  background: rgba(109, 47, 192, 0.06);
  color: var(--primary-dark);
  border: 1px solid rgba(109, 47, 192, 0.12);
}

.pullout-page .ndt-hero-visual {
  position: relative;
  max-width: 390px;
  width: 100%;
  justify-self: end;
}

.pullout-page .ndt-hero-image {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, #132338, #20334c);
  box-shadow: 0 24px 54px rgba(26, 24, 49, 0.16);
}

.pullout-page .ndt-hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.92);
}

.pullout-page .ndt-stat-card {
  position: absolute;
  left: -22px;
  bottom: 22px;
  width: 156px;
  padding: 16px 16px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(109, 47, 192, 0.08);
  box-shadow: 0 18px 34px rgba(27, 25, 51, 0.12);
}

.pullout-page .ndt-stat-card strong {
  display: block;
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
}

.pullout-page .ndt-stat-card span {
  display: block;
  margin-top: 5px;
  color: #8c817d;
  font-size: 0.77rem;
  line-height: 1.45;
}

.pullout-page .ndt-overview {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 4vw, 40px);
  padding: clamp(28px, 4vw, 38px);
  border: 1px solid rgba(109, 47, 192, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.96));
  box-shadow: 0 18px 38px rgba(27, 25, 51, 0.07);
}

.pullout-page .ndt-overview-title h2,
.pullout-page .ndt-section-head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.pullout-page .ndt-overview-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.82;
}

.pullout-page .ndt-overview-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.pullout-page .ndt-overview-points div {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px 12px;
  align-items: start;
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: var(--surface-soft);
}

.pullout-page .ndt-overview-points i {
  color: var(--accent);
  margin-top: 2px;
}

.pullout-page .ndt-overview-points span {
  font-weight: 800;
  font-size: 0.97rem;
}

.pullout-page .ndt-overview-points small {
  grid-column: 2;
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.65;
}

.pullout-page .ltpv-test-matrix,
.pullout-page .ltpv-process,
.pullout-page .ltpv-compliance {
  width: 100%;
}

.pullout-page .ltpv-test-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.pullout-page .ltpv-test-head p {
  margin: 14px auto 0;
  max-width: 620px;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.8;
}

.pullout-page .ltpv-test-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.pullout-page .ltpv-test-card {
  grid-column: span 4;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.94));
  border: 1px solid rgba(109, 47, 192, 0.08);
  box-shadow: 0 18px 40px rgba(27, 25, 51, 0.07);
}

.pullout-page .ltpv-test-card-featured {
  grid-column: span 6;
  background: linear-gradient(135deg, rgba(109, 47, 192, 0.97), rgba(79, 35, 145, 0.94));
  border-color: rgba(255, 255, 255, 0.12);
}

.pullout-page .ltpv-test-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pullout-page .ltpv-test-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary);
  font-size: 1rem;
}

.pullout-page .ltpv-test-card-featured .ltpv-test-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.pullout-page .ltpv-test-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(109, 47, 192, 0.08);
  color: #8d86a6;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pullout-page .ltpv-test-card-featured .ltpv-test-label {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
}

.pullout-page .ltpv-test-card h3 {
  margin: 18px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  line-height: 1.2;
}

.pullout-page .ltpv-test-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.72;
}

.pullout-page .ltpv-test-card-featured h3,
.pullout-page .ltpv-test-card-featured p {
  color: #ffffff;
}

.pullout-page .ltpv-test-card-featured p {
  color: rgba(255, 255, 255, 0.84);
}

.pullout-page .ltpv-process-shell {
  padding: clamp(28px, 4vw, 40px);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(36, 31, 67, 0.98), rgba(79, 35, 145, 0.96));
  box-shadow: 0 24px 60px rgba(27, 25, 51, 0.16);
}

.pullout-page .ltpv-process-intro {
  max-width: 720px;
}

.pullout-page .ltpv-process-intro h2 {
  margin: 16px 0 0;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.pullout-page .ltpv-process-intro p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  line-height: 1.8;
}

.pullout-page .ltpv-process-panels {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 28px;
}

.pullout-page .ltpv-process-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.pullout-page .ltpv-process-card-accent {
  background: linear-gradient(180deg, rgba(239, 143, 26, 0.18), rgba(255, 255, 255, 0.09));
}

.pullout-page .ltpv-process-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pullout-page .ltpv-process-card h3 {
  margin: 16px 0 12px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.pullout-page .ltpv-process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.pullout-page .ltpv-process-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.66;
}

.pullout-page .ltpv-process-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #ef8f1a);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.pullout-page .ltpv-compliance-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  gap: 22px;
  align-items: stretch;
}

.pullout-page .ltpv-compliance-copy {
  padding: clamp(26px, 4vw, 36px);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.94));
  border: 1px solid rgba(109, 47, 192, 0.08);
  box-shadow: 0 18px 40px rgba(27, 25, 51, 0.06);
}

.pullout-page .ltpv-compliance-copy h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.pullout-page .ltpv-compliance-copy p {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.82;
}

.pullout-page .ltpv-compliance-panels {
  display: grid;
  gap: 16px;
}

.pullout-page .ltpv-compliance-card {
  padding: 24px 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #edf2f8);
  border: 1px solid rgba(109, 47, 192, 0.09);
  box-shadow: 0 16px 36px rgba(27, 25, 51, 0.06);
}

.pullout-page .ltpv-compliance-card i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary);
  font-size: 1rem;
}

.pullout-page .ltpv-compliance-card h3 {
  margin: 16px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.pullout-page .ltpv-compliance-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .pullout-page .ndt-hero,
  .pullout-page .ndt-overview,
  .pullout-page .ltpv-process-panels,
  .pullout-page .ltpv-compliance-shell {
    grid-template-columns: 1fr;
  }

  .pullout-page .ndt-overview-points {
    grid-template-columns: 1fr;
  }

  .pullout-page .ndt-hero-visual {
    justify-self: start;
  }

  .pullout-page .ltpv-test-card,
  .pullout-page .ltpv-test-card-featured {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .pullout-page .page-shell {
    width: 90vw;
    max-width: 90vw;
    padding-top: 12px;
  }

  .pullout-page .ndt-btn {
    width: 100%;
  }

  .pullout-page .ndt-stat-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .pullout-page .ltpv-test-grid {
    grid-template-columns: 1fr;
  }

  .pullout-page .ltpv-test-card,
  .pullout-page .ltpv-test-card-featured {
    grid-column: auto;
  }
}

/* Noise Page */
.noise-page {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --surface-soft: #eef2f8;
  --text: #000000;
  --text-soft: #000000;
  --primary: #6d2fc0;
  --primary-dark: #4f2391;
  --accent: #ef8f1a;
  --border: #e4e8f1;
  margin: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(109, 47, 192, 0.06), transparent 24%),
    radial-gradient(circle at 85% 18%, rgba(239, 143, 26, 0.05), transparent 20%),
    linear-gradient(180deg, #f8f9fc 0%, #eff3f9 100%);
}

.noise-page *,
.noise-page *::before,
.noise-page *::after {
  box-sizing: border-box;
}

.noise-page img {
  max-width: 100%;
  display: block;
}

.noise-page a {
  color: inherit;
  text-decoration: none;
}

.noise-page .page-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 24px 0 46px;
}

.noise-page .section {
  margin-top: 36px;
}

.noise-page .ndt-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(109, 47, 192, 0.08);
  color: #8d86a6;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.noise-page .ndt-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.8fr);
  gap: clamp(28px, 5vw, 54px);
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(244, 247, 252, 0.96)),
    linear-gradient(130deg, rgba(109, 47, 192, 0.06), rgba(239, 143, 26, 0.05));
  box-shadow: 0 20px 60px rgba(27, 25, 51, 0.1);
  overflow: hidden;
}

.noise-page .ndt-hero::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 47, 192, 0.16), transparent 68%);
}

.noise-page .ndt-hero::after {
  content: "";
  position: absolute;
  left: 44%;
  bottom: -118px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 143, 26, 0.1), transparent 68%);
}

.noise-page .ndt-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.noise-page .ndt-hero h1 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.noise-page .ndt-hero h1 span {
  color: var(--primary);
}

.noise-page .ndt-hero p {
  margin: 18px 0 0;
  max-width: 680px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.82;
}

.noise-page .ndt-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.noise-page .ndt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.noise-page .ndt-btn:hover {
  transform: translateY(-2px);
}

.noise-page .ndt-btn-primary {
  background: linear-gradient(135deg, var(--accent), #d66a10);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(214, 106, 16, 0.18);
}

.noise-page .ndt-btn-secondary {
  background: rgba(109, 47, 192, 0.06);
  color: var(--primary-dark);
  border: 1px solid rgba(109, 47, 192, 0.12);
}

.noise-page .ndt-hero-visual {
  position: relative;
  max-width: 390px;
  width: 100%;
  justify-self: end;
}

.noise-page .ndt-hero-image {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, #132338, #20334c);
  box-shadow: 0 24px 54px rgba(26, 24, 49, 0.16);
}

.noise-page .ndt-hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.92);
}

.noise-page .ndt-stat-card {
  position: absolute;
  left: -22px;
  bottom: 22px;
  width: 156px;
  padding: 16px 16px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(109, 47, 192, 0.08);
  box-shadow: 0 18px 34px rgba(27, 25, 51, 0.12);
}

.noise-page .ndt-stat-card strong {
  display: block;
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
}

.noise-page .ndt-stat-card span {
  display: block;
  margin-top: 5px;
  color: #8c817d;
  font-size: 0.77rem;
  line-height: 1.45;
}

.noise-page .ndt-overview {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 4vw, 40px);
  padding: clamp(28px, 4vw, 38px);
  border: 1px solid rgba(109, 47, 192, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.96));
  box-shadow: 0 18px 38px rgba(27, 25, 51, 0.07);
}

.noise-page .ndt-overview-title h2,
.noise-page .ndt-section-head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.noise-page .ndt-overview-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.82;
}

.noise-page .ndt-overview-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.noise-page .ndt-overview-points div {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px 12px;
  align-items: start;
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: var(--surface-soft);
}

.noise-page .ndt-overview-points i {
  color: var(--accent);
  margin-top: 2px;
}

.noise-page .ndt-overview-points span {
  font-weight: 800;
  font-size: 1rem;
}

.noise-page .ndt-overview-points small {
  grid-column: 2;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

.noise-page .ltpv-test-matrix,
.noise-page .ltpv-process,
.noise-page .ltpv-compliance {
  width: 100%;
}

.noise-page .ltpv-test-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.noise-page .ltpv-test-head p {
  margin: 14px auto 0;
  max-width: 620px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.noise-page .ltpv-test-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.noise-page .ltpv-test-card {
  grid-column: span 4;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.94));
  border: 1px solid rgba(109, 47, 192, 0.08);
  box-shadow: 0 18px 40px rgba(27, 25, 51, 0.07);
}

.noise-page .ltpv-test-card-featured {
  grid-column: span 6;
  background: linear-gradient(135deg, rgba(109, 47, 192, 0.97), rgba(79, 35, 145, 0.94));
  border-color: rgba(255, 255, 255, 0.12);
}

.noise-page .ltpv-test-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.noise-page .ltpv-test-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary);
  font-size: 1rem;
}

.noise-page .ltpv-test-card-featured .ltpv-test-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.noise-page .ltpv-test-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(109, 47, 192, 0.08);
  color: #8d86a6;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.noise-page .ltpv-test-card-featured .ltpv-test-label {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
}

.noise-page .ltpv-test-card h3 {
  margin: 18px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  line-height: 1.2;
}

.noise-page .ltpv-test-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.noise-page .ltpv-test-card-featured h3,
.noise-page .ltpv-test-card-featured p {
  color: #ffffff;
}

.noise-page .ltpv-test-card-featured p {
  color: rgba(255, 255, 255, 0.84);
}

.noise-page .ltpv-process-shell {
  padding: clamp(28px, 4vw, 40px);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(36, 31, 67, 0.98), rgba(79, 35, 145, 0.96));
  box-shadow: 0 24px 60px rgba(27, 25, 51, 0.16);
}

.noise-page .ltpv-process-intro {
  max-width: 720px;
}

.noise-page .ltpv-process-intro h2 {
  margin: 16px 0 0;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.noise-page .ltpv-process-intro p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.8;
}

.noise-page .ltpv-process-panels {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 28px;
}

.noise-page .ltpv-process-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.noise-page .ltpv-process-card-accent {
  background: linear-gradient(180deg, rgba(239, 143, 26, 0.18), rgba(255, 255, 255, 0.09));
}

.noise-page .ltpv-process-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.noise-page .ltpv-process-card h3 {
  margin: 16px 0 12px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.noise-page .ltpv-process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.noise-page .ltpv-process-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.66;
}

.noise-page .ltpv-process-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #ef8f1a);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.noise-page .ltpv-compliance-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  gap: 22px;
  align-items: stretch;
}

.noise-page .ltpv-compliance-copy {
  padding: clamp(26px, 4vw, 36px);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.94));
  border: 1px solid rgba(109, 47, 192, 0.08);
  box-shadow: 0 18px 40px rgba(27, 25, 51, 0.06);
}

.noise-page .ltpv-compliance-copy h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.noise-page .ltpv-compliance-copy p {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.82;
}

.noise-page .ltpv-compliance-panels {
  display: grid;
  gap: 16px;
}

.noise-page .ltpv-compliance-card {
  padding: 24px 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #edf2f8);
  border: 1px solid rgba(109, 47, 192, 0.09);
  box-shadow: 0 16px 36px rgba(27, 25, 51, 0.06);
}

.noise-page .ltpv-compliance-card i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary);
  font-size: 1rem;
}

.noise-page .ltpv-compliance-card h3 {
  margin: 16px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.noise-page .ltpv-compliance-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .noise-page .ndt-hero,
  .noise-page .ndt-overview,
  .noise-page .ltpv-process-panels,
  .noise-page .ltpv-compliance-shell {
    grid-template-columns: 1fr;
  }

  .noise-page .ndt-overview-points {
    grid-template-columns: 1fr;
  }

  .noise-page .ndt-hero-visual {
    justify-self: start;
  }

  .noise-page .ltpv-test-card,
  .noise-page .ltpv-test-card-featured {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .noise-page .page-shell {
    width: 90vw;
    max-width: 90vw;
    padding-top: 12px;
  }

  .noise-page .ndt-btn {
    width: 100%;
  }

  .noise-page .ndt-stat-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .noise-page .ltpv-test-grid {
    grid-template-columns: 1fr;
  }

  .noise-page .ltpv-test-card,
  .noise-page .ltpv-test-card-featured {
    grid-column: auto;
  }
}

/* Lux Page */
.lux-page {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --surface-soft: #eef2f8;
  --text: #000000;
  --text-soft: #000000;
  --primary: #6d2fc0;
  --primary-dark: #4f2391;
  --accent: #ef8f1a;
  --border: #e4e8f1;
  margin: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(109, 47, 192, 0.06), transparent 24%),
    radial-gradient(circle at 82% 15%, rgba(239, 143, 26, 0.06), transparent 20%),
    linear-gradient(180deg, #f8f9fc 0%, #eff3f9 100%);
}

.lux-page *,
.lux-page *::before,
.lux-page *::after {
  box-sizing: border-box;
}

.lux-page img {
  max-width: 100%;
  display: block;
}

.lux-page a {
  color: inherit;
  text-decoration: none;
}

.lux-page .page-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 24px 0 46px;
}

.lux-page .section {
  margin-top: 36px;
}

.lux-page .ndt-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(109, 47, 192, 0.08);
  color: #8d86a6;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lux-page .ndt-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.8fr);
  gap: clamp(28px, 5vw, 54px);
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(244, 247, 252, 0.96)),
    linear-gradient(130deg, rgba(109, 47, 192, 0.06), rgba(239, 143, 26, 0.05));
  box-shadow: 0 20px 60px rgba(27, 25, 51, 0.1);
  overflow: hidden;
}

.lux-page .ndt-hero::before {
  content: "";
  position: absolute;
  top: -108px;
  right: -76px;
  width: 278px;
  height: 278px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 47, 192, 0.16), transparent 68%);
}

.lux-page .ndt-hero::after {
  content: "";
  position: absolute;
  left: 42%;
  bottom: -116px;
  width: 228px;
  height: 228px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 143, 26, 0.1), transparent 68%);
}

.lux-page .ndt-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.lux-page .ndt-hero h1 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.lux-page .ndt-hero h1 span {
  color: var(--primary);
}

.lux-page .ndt-hero p {
  margin: 18px 0 0;
  max-width: 680px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.82;
}

.lux-page .ndt-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.lux-page .ndt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.lux-page .ndt-btn:hover {
  transform: translateY(-2px);
}

.lux-page .ndt-btn-primary {
  background: linear-gradient(135deg, var(--accent), #d66a10);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(214, 106, 16, 0.18);
}

.lux-page .ndt-btn-secondary {
  background: rgba(109, 47, 192, 0.06);
  color: var(--primary-dark);
  border: 1px solid rgba(109, 47, 192, 0.12);
}

.lux-page .ndt-hero-visual {
  position: relative;
  max-width: 390px;
  width: 100%;
  justify-self: end;
}

.lux-page .ndt-hero-image {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, #132338, #20334c);
  box-shadow: 0 24px 54px rgba(26, 24, 49, 0.16);
}

.lux-page .ndt-hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.92);
}

.lux-page .ndt-stat-card {
  position: absolute;
  left: -22px;
  bottom: 22px;
  width: 156px;
  padding: 16px 16px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(109, 47, 192, 0.08);
  box-shadow: 0 18px 34px rgba(27, 25, 51, 0.12);
}

.lux-page .ndt-stat-card strong {
  display: block;
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
}

.lux-page .ndt-stat-card span {
  display: block;
  margin-top: 5px;
  color: #8c817d;
  font-size: 0.77rem;
  line-height: 1.45;
}

.lux-page .ndt-overview {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 4vw, 40px);
  padding: clamp(28px, 4vw, 38px);
  border: 1px solid rgba(109, 47, 192, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.96));
  box-shadow: 0 18px 38px rgba(27, 25, 51, 0.07);
}

.lux-page .ndt-overview-title h2,
.lux-page .ndt-section-head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.lux-page .ndt-overview-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.82;
}

.lux-page .ndt-overview-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.lux-page .ndt-overview-points div {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px 12px;
  align-items: start;
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: var(--surface-soft);
}

.lux-page .ndt-overview-points i {
  color: var(--accent);
  margin-top: 2px;
}

.lux-page .ndt-overview-points span {
  font-weight: 800;
  font-size: 0.98rem;
}

.lux-page .ndt-overview-points small {
  grid-column: 2;
  color: var(--text-soft);
  font-size: 0.87rem;
  line-height: 1.65;
}

.lux-page .ltpv-test-matrix,
.lux-page .ltpv-process,
.lux-page .ltpv-compliance {
  width: 100%;
}

.lux-page .ltpv-test-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.lux-page .ltpv-test-head p {
  margin: 14px auto 0;
  max-width: 620px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.lux-page .ltpv-test-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.lux-page .ltpv-test-card {
  grid-column: span 4;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.94));
  border: 1px solid rgba(109, 47, 192, 0.08);
  box-shadow: 0 18px 40px rgba(27, 25, 51, 0.07);
}

.lux-page .ltpv-test-card-featured {
  grid-column: span 6;
  background: linear-gradient(135deg, rgba(109, 47, 192, 0.97), rgba(79, 35, 145, 0.94));
  border-color: rgba(255, 255, 255, 0.12);
}

.lux-page .ltpv-test-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lux-page .ltpv-test-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary);
  font-size: 1rem;
}

.lux-page .ltpv-test-card-featured .ltpv-test-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.lux-page .ltpv-test-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(109, 47, 192, 0.08);
  color: #8d86a6;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lux-page .ltpv-test-card-featured .ltpv-test-label {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
}

.lux-page .ltpv-test-card h3 {
  margin: 18px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  line-height: 1.2;
}

.lux-page .ltpv-test-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.lux-page .ltpv-test-card-featured h3,
.lux-page .ltpv-test-card-featured p {
  color: #ffffff;
}

.lux-page .ltpv-test-card-featured p {
  color: rgba(255, 255, 255, 0.84);
}

.lux-page .ltpv-process-shell {
  padding: clamp(28px, 4vw, 40px);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(36, 31, 67, 0.98), rgba(79, 35, 145, 0.96));
  box-shadow: 0 24px 60px rgba(27, 25, 51, 0.16);
}

.lux-page .ltpv-process-intro {
  max-width: 720px;
}

.lux-page .ltpv-process-intro h2 {
  margin: 16px 0 0;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.lux-page .ltpv-process-intro p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.8;
}

.lux-page .ltpv-process-panels {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 28px;
}

.lux-page .ltpv-process-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.lux-page .ltpv-process-card-accent {
  background: linear-gradient(180deg, rgba(239, 143, 26, 0.18), rgba(255, 255, 255, 0.09));
}

.lux-page .ltpv-process-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lux-page .ltpv-process-card h3 {
  margin: 16px 0 12px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.lux-page .ltpv-process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.lux-page .ltpv-process-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.66;
}

.lux-page .ltpv-process-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #ef8f1a);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.lux-page .ltpv-compliance-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  gap: 22px;
  align-items: stretch;
}

.lux-page .ltpv-compliance-copy {
  padding: clamp(26px, 4vw, 36px);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.94));
  border: 1px solid rgba(109, 47, 192, 0.08);
  box-shadow: 0 18px 40px rgba(27, 25, 51, 0.06);
}

.lux-page .ltpv-compliance-copy h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.lux-page .ltpv-compliance-copy p {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.82;
}

.lux-page .ltpv-compliance-panels {
  display: grid;
  gap: 16px;
}

.lux-page .ltpv-compliance-card {
  padding: 24px 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #edf2f8);
  border: 1px solid rgba(109, 47, 192, 0.09);
  box-shadow: 0 16px 36px rgba(27, 25, 51, 0.06);
}

.lux-page .ltpv-compliance-card i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary);
  font-size: 1rem;
}

.lux-page .ltpv-compliance-card h3 {
  margin: 16px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.lux-page .ltpv-compliance-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .lux-page .ndt-hero,
  .lux-page .ndt-overview,
  .lux-page .ltpv-process-panels,
  .lux-page .ltpv-compliance-shell {
    grid-template-columns: 1fr;
  }

  .lux-page .ndt-overview-points {
    grid-template-columns: 1fr;
  }

  .lux-page .ndt-hero-visual {
    justify-self: start;
  }

  .lux-page .ltpv-test-card,
  .lux-page .ltpv-test-card-featured {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .lux-page .page-shell {
    width: 90vw;
    max-width: 90vw;
    padding-top: 12px;
  }

  .lux-page .ndt-btn {
    width: 100%;
  }

  .lux-page .ndt-stat-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .lux-page .ltpv-test-grid {
    grid-template-columns: 1fr;
  }

  .lux-page .ltpv-test-card,
  .lux-page .ltpv-test-card-featured {
    grid-column: auto;
  }
}

/* Air Monitoring Page */
.air-page {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --surface-soft: #eef2f8;
  --text: #000000;
  --text-soft: #000000;
  --primary: #6d2fc0;
  --primary-dark: #4f2391;
  --accent: #ef8f1a;
  --border: #e4e8f1;
  margin: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(109, 47, 192, 0.06), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(239, 143, 26, 0.05), transparent 20%),
    linear-gradient(180deg, #f8f9fc 0%, #eff3f9 100%);
}

.air-page *,
.air-page *::before,
.air-page *::after {
  box-sizing: border-box;
}

.air-page img {
  max-width: 100%;
  display: block;
}

.air-page a {
  color: inherit;
  text-decoration: none;
}

.air-page .page-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 24px 0 46px;
}

.air-page .section {
  margin-top: 36px;
}

.air-page .ndt-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgb(109 47 192 / 80%);
    color: #ffffffe8;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.air-page .ndt-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.8fr);
  gap: clamp(28px, 5vw, 54px);
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(244, 247, 252, 0.96)),
    linear-gradient(130deg, rgba(109, 47, 192, 0.06), rgba(239, 143, 26, 0.05));
  box-shadow: 0 20px 60px rgba(27, 25, 51, 0.1);
  overflow: hidden;
}

.air-page .ndt-hero::before {
  content: "";
  position: absolute;
  top: -108px;
  right: -76px;
  width: 278px;
  height: 278px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 47, 192, 0.16), transparent 68%);
}

.air-page .ndt-hero::after {
  content: "";
  position: absolute;
  left: 43%;
  bottom: -118px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 143, 26, 0.1), transparent 68%);
}

.air-page .ndt-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.air-page .ndt-hero h1 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.air-page .ndt-hero h1 span {
  color: var(--primary);
}

.air-page .ndt-hero p {
  margin: 18px 0 0;
  max-width: 680px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.82;
}

.air-page .ndt-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.air-page .ndt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.air-page .ndt-btn:hover {
  transform: translateY(-2px);
}

.air-page .ndt-btn-primary {
  background: linear-gradient(135deg, var(--accent), #d66a10);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(214, 106, 16, 0.18);
}

.air-page .ndt-btn-secondary {
  background: rgba(109, 47, 192, 0.06);
  color: var(--primary-dark);
  border: 1px solid rgba(109, 47, 192, 0.12);
}

.air-page .ndt-hero-visual {
  position: relative;
  max-width: 390px;
  width: 100%;
  justify-self: end;
}

.air-page .ndt-hero-image {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, #132338, #20334c);
  box-shadow: 0 24px 54px rgba(26, 24, 49, 0.16);
}

.air-page .ndt-hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.92);
}

.air-page .ndt-stat-card {
  position: absolute;
  left: -22px;
  bottom: 22px;
  width: 156px;
  padding: 16px 16px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(109, 47, 192, 0.08);
  box-shadow: 0 18px 34px rgba(27, 25, 51, 0.12);
}

.air-page .ndt-stat-card strong {
  display: block;
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
}

.air-page .ndt-stat-card span {
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-size: 0.67rem;
  line-height: 1.45;
}

.air-page .ndt-overview {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 4vw, 40px);
  padding: clamp(28px, 4vw, 38px);
  border: 1px solid rgba(109, 47, 192, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.96));
  box-shadow: 0 18px 38px rgba(27, 25, 51, 0.07);
}

.air-page .ndt-overview-title h2,
.air-page .ndt-section-head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.air-page .ndt-overview-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.82;
}

.air-page .ndt-overview-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.air-page .ndt-overview-points div {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px 12px;
  align-items: start;
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: var(--surface-soft);
}

.air-page .ndt-overview-points i {
  color: var(--accent);
  margin-top: 2px;
}

.air-page .ndt-overview-points span {
  font-weight: 800;
  font-size: 0.98rem;
}

.air-page .ndt-overview-points small {
  grid-column: 2;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.65;
}

.air-page .ltpv-test-matrix,
.air-page .ltpv-process,
.air-page .ltpv-compliance {
  width: 100%;
}

.air-page .ltpv-test-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.air-page .ltpv-test-head p {
  margin: 14px auto 0;
  max-width: 620px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.air-page .ltpv-test-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.air-page .ltpv-test-card {
  grid-column: span 4;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.94));
  border: 1px solid rgba(109, 47, 192, 0.08);
  box-shadow: 0 18px 40px rgba(27, 25, 51, 0.07);
}

.air-page .ltpv-test-card-featured {
  grid-column: span 6;
  background: linear-gradient(135deg, rgba(109, 47, 192, 0.97), rgba(79, 35, 145, 0.94));
  border-color: rgba(255, 255, 255, 0.12);
}

.air-page .ltpv-test-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.air-page .ltpv-test-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary);
  font-size: 1rem;
}

.air-page .ltpv-test-card-featured .ltpv-test-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.air-page .ltpv-test-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(109, 47, 192, 0.08);
  color: #8d86a6;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.air-page .ltpv-test-card-featured .ltpv-test-label {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
}

.air-page .ltpv-test-card h3 {
  margin: 18px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  line-height: 1.2;
}

.air-page .ltpv-test-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.air-page .ltpv-test-card-featured h3,
.air-page .ltpv-test-card-featured p {
  color: #ffffff;
}

.air-page .ltpv-test-card-featured p {
  color: rgba(255, 255, 255, 0.84);
}

.air-page .ltpv-process-shell {
  padding: clamp(28px, 4vw, 40px);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(36, 31, 67, 0.98), rgba(79, 35, 145, 0.96));
  box-shadow: 0 24px 60px rgba(27, 25, 51, 0.16);
}

.air-page .ltpv-process-intro {
  max-width: 720px;
}

.air-page .ltpv-process-intro h2 {
  margin: 16px 0 0;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.air-page .ltpv-process-intro p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.8;
}

.air-page .ltpv-process-panels {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 28px;
}

.air-page .ltpv-process-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.air-page .ltpv-process-card-accent {
  background: linear-gradient(180deg, rgba(239, 143, 26, 0.18), rgba(255, 255, 255, 0.09));
}

.air-page .ltpv-process-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.air-page .ltpv-process-card h3 {
  margin: 16px 0 12px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.air-page .ltpv-process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.air-page .ltpv-process-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.66;
}

.air-page .ltpv-process-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #ef8f1a);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.air-page .ltpv-compliance-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  gap: 22px;
  align-items: stretch;
}

.air-page .ltpv-compliance-copy {
  padding: clamp(26px, 4vw, 36px);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.94));
  border: 1px solid rgba(109, 47, 192, 0.08);
  box-shadow: 0 18px 40px rgba(27, 25, 51, 0.06);
}

.air-page .ltpv-compliance-copy h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.air-page .ltpv-compliance-copy p {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.82;
}

.air-page .ltpv-compliance-panels {
  display: grid;
  gap: 16px;
}

.air-page .ltpv-compliance-card {
  padding: 24px 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #edf2f8);
  border: 1px solid rgba(109, 47, 192, 0.09);
  box-shadow: 0 16px 36px rgba(27, 25, 51, 0.06);
}

.air-page .ltpv-compliance-card i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary);
  font-size: 1rem;
}

.air-page .ltpv-compliance-card h3 {
  margin: 16px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.air-page .ltpv-compliance-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .air-page .ndt-hero,
  .air-page .ndt-overview,
  .air-page .ltpv-process-panels,
  .air-page .ltpv-compliance-shell {
    grid-template-columns: 1fr;
  }

  .air-page .ndt-overview-points {
    grid-template-columns: 1fr;
  }

  .air-page .ndt-hero-visual {
    justify-self: start;
  }

  .air-page .ltpv-test-card,
  .air-page .ltpv-test-card-featured {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .air-page .page-shell {
    width: 90vw;
    max-width: 90vw;
    padding-top: 12px;
  }

  .air-page .ndt-btn {
    width: 100%;
  }

  .air-page .ndt-stat-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .air-page .ltpv-test-grid {
    grid-template-columns: 1fr;
  }

  .air-page .ltpv-test-card,
  .air-page .ltpv-test-card-featured {
    grid-column: auto;
  }
}

/* Calibration Page */
.calibration-page {
  --bg: linear-gradient(180deg, #f7f2ff 0%, #f5efff 44%, #fff8ee 100%);
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --border-soft: rgba(109, 47, 192, 0.12);
  --text-main: #000000;
  --text-soft: #000000;
  --primary: #6d2fc0;
  --primary-deep: #4c1d95;
  --accent: #f4a21d;
  --accent-soft: rgba(244, 162, 29, 0.16);
  --shadow-soft: 0 22px 56px rgba(46, 25, 88, 0.12);
  background:
    radial-gradient(circle at 12% 8%, rgba(109, 47, 192, 0.12), transparent 30%),
    radial-gradient(circle at 86% 10%, rgba(244, 162, 29, 0.12), transparent 24%),
    var(--bg);
  color: var(--text-main);
}

.calibration-page *,
.calibration-page *::before,
.calibration-page *::after {
  box-sizing: border-box;
}

.calibration-page img {
  max-width: 100%;
  display: block;
}

.calibration-page a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.calibration-page .page-shell {
  max-width: 90vw;
  margin: 0 auto;
 padding: 24px 0 46px; 
}

.calibration-page .section {
  margin-top: 36px;
}

.calibration-page .ndt-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgb(109 47 192 / 80%);
  color: #ffffffe8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.calibration-page .ndt-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(249, 242, 255, 0.82));
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.calibration-page .ndt-hero::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 47, 192, 0.2), transparent 70%);
}

.calibration-page .ndt-hero::after {
  content: "";
  position: absolute;
  top: -60px;
  left: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 162, 29, 0.16), transparent 70%);
}

.calibration-page .ndt-hero-copy,
.calibration-page .ndt-hero-visual {
  position: relative;
  z-index: 1;
}

.calibration-page .ndt-hero h1 {
  margin: 0 0 18px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.45rem, 4vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.calibration-page .ndt-hero h1 span {
  color: var(--primary);
}

.calibration-page .ndt-hero p {
  margin: 0;
  max-width: 58ch;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.85;
}

.calibration-page .ndt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.calibration-page .ndt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.calibration-page .ndt-btn:hover {
  transform: translateY(-2px);
}

.calibration-page .ndt-btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  box-shadow: 0 16px 30px rgba(76, 29, 149, 0.22);
}

.calibration-page .ndt-btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary-deep);
  border-color: rgba(109, 47, 192, 0.14);
}

.calibration-page .ndt-hero-visual {
  display: grid;
  gap: 18px;
}

.calibration-page .ndt-hero-image {
  overflow: hidden;
  min-height: 420px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.calibration-page .ndt-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.calibration-page .ndt-stat-card {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, #281743, #3b2162);
  color: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(35, 19, 61, 0.24);
}

.calibration-page .ndt-stat-card strong {
  color: #fff;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calibration-page .ndt-stat-card span {
  font-size: 0.94rem;
  line-height: 1.7;
}

.calibration-page .ndt-overview {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  padding: 36px;
  border-radius: 30px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.calibration-page .ndt-overview-title h2,
.calibration-page .ndt-section-head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.calibration-page .ndt-overview-copy p {
  margin: 0 0 22px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.85;
}

.calibration-page .ndt-overview-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.calibration-page .ndt-overview-points div {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(109, 47, 192, 0.1);
  box-shadow: 0 14px 28px rgba(46, 25, 88, 0.06);
}

.calibration-page .ndt-overview-points i {
  color: var(--primary);
  font-size: 1.3rem;
}

.calibration-page .ndt-overview-points span {
  display: block;
  margin-top: 12px;
  font-weight: 700;
}

.calibration-page .ndt-overview-points small {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.7;
}

.calibration-page .ltpv-test-matrix,
.calibration-page .ltpv-process,
.calibration-page .ltpv-compliance {
  position: relative;
}

.calibration-page .ltpv-test-head {
  margin-bottom: 24px;
}

.calibration-page .ltpv-test-head p {
  margin: 14px 0 0;
  max-width: 74ch;
  color: var(--text-soft);
  line-height: 1.85;
}

.calibration-page .ltpv-test-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.calibration-page .ltpv-test-card,
.calibration-page .ltpv-test-card-featured {
  grid-column: span 3;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(46, 25, 88, 0.08);
}

.calibration-page .ltpv-test-card {
  background: var(--surface-strong);
  border: 1px solid var(--border-soft);
}

.calibration-page .ltpv-test-card-featured {
  background: linear-gradient(145deg, #5a2ea6, #7a45cb);
  color: #fff;
}

.calibration-page .ltpv-test-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.calibration-page .ltpv-test-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(109, 47, 192, 0.1);
  color: var(--primary);
  font-size: 1.15rem;
}

.calibration-page .ltpv-test-card-featured .ltpv-test-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.calibration-page .ltpv-test-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calibration-page .ltpv-test-card-featured .ltpv-test-label {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.calibration-page .ltpv-test-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
  line-height: 1.45;
}

.calibration-page .ltpv-test-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

.calibration-page .ltpv-test-card-featured p {
  color: rgba(255, 255, 255, 0.84);
}

.calibration-page .ltpv-process-shell {
  padding: 36px;
  border-radius: 30px;
  background: linear-gradient(145deg, #23133d, #3f216a);
  color: #fff;
  box-shadow: 0 22px 52px rgba(31, 17, 56, 0.18);
}

.calibration-page .ltpv-process-intro {
  max-width: 760px;
}

.calibration-page .ltpv-process-intro h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.calibration-page .ltpv-process-intro p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.82;
}

.calibration-page .ltpv-process-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.calibration-page .ltpv-process-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.calibration-page .ltpv-process-card-accent {
  background: linear-gradient(145deg, rgba(244, 162, 29, 0.16), rgba(255, 255, 255, 0.08));
}

.calibration-page .ltpv-process-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calibration-page .ltpv-process-card h3 {
  margin: 18px 0 12px;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
}

.calibration-page .ltpv-process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.calibration-page .ltpv-process-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.72;
}

.calibration-page .ltpv-process-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(244, 162, 29, 0.14);
}

.calibration-page .ltpv-compliance-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 18px;
}

.calibration-page .ltpv-compliance-copy {
  padding: 34px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.calibration-page .ltpv-compliance-copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.calibration-page .ltpv-compliance-copy p {
  margin: 16px 0 0;
  color: var(--text-soft);
  line-height: 1.82;
}

.calibration-page .ltpv-compliance-panels {
  display: grid;
  gap: 18px;
}

.calibration-page .ltpv-compliance-card {
  padding: 24px 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #f1ebff);
  border: 1px solid rgba(109, 47, 192, 0.09);
  box-shadow: 0 16px 36px rgba(27, 25, 51, 0.06);
}

.calibration-page .ltpv-compliance-card i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--primary);
  font-size: 1rem;
}

.calibration-page .ltpv-compliance-card h3 {
  margin: 16px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.calibration-page .ltpv-compliance-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .calibration-page .ndt-hero,
  .calibration-page .ndt-overview,
  .calibration-page .ltpv-process-panels,
  .calibration-page .ltpv-compliance-shell {
    grid-template-columns: 1fr;
  }

  .calibration-page .ndt-overview-points {
    grid-template-columns: 1fr;
  }

  .calibration-page .ndt-hero-visual {
    justify-self: start;
  }

  .calibration-page .ltpv-test-card,
  .calibration-page .ltpv-test-card-featured {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .calibration-page .page-shell {
    width: 90vw;
    max-width: 90vw;
    padding-top: 12px;
  }

  .calibration-page .ndt-btn {
    width: 100%;
  }

  .calibration-page .ndt-stat-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .calibration-page .ltpv-test-grid {
    grid-template-columns: 1fr;
  }

  .calibration-page .ltpv-test-card,
  .calibration-page .ltpv-test-card-featured {
    grid-column: auto;
  }
}

/* Unified Testing Service Page Theme */
/* :is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) {
  --bg: linear-gradient(180deg, #f7f2ff 0%, #f5efff 44%, #fff8ee 100%);
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --border-soft: rgba(109, 47, 192, 0.12);
  --text-main: #000000;
  --text-soft: #000000;
  --primary: #6d2fc0;
  --primary-deep: #4c1d95;
  --accent: #f4a21d;
  --accent-soft: rgba(244, 162, 29, 0.16);
  --shadow-soft: 0 22px 56px rgba(46, 25, 88, 0.12);
  background:
    radial-gradient(circle at 12% 8%, rgba(109, 47, 192, 0.12), transparent 30%),
    radial-gradient(circle at 86% 10%, rgba(244, 162, 29, 0.12), transparent 24%),
    var(--bg);
  color: var(--text-main);
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) *,
:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) *::before,
:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) *::after {
  box-sizing: border-box;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) img {
  max-width: 100%;
  display: block;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) a {
  text-decoration: none;
  transition: all 0.3s ease;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .page-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 24px 0 46px;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .section {
  margin-top: 36px;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(109, 47, 192, 0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(249, 242, 255, 0.82));
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-hero::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 47, 192, 0.2), transparent 70%);
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-hero::after {
  content: "";
  position: absolute;
  top: -60px;
  left: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 162, 29, 0.16), transparent 70%);
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-hero-copy,
:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-hero-visual {
  position: relative;
  z-index: 1;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-hero h1 {
  margin: 0 0 18px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.45rem, 4vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-hero h1 span {
  color: var(--primary);
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-hero p {
  margin: 0;
  max-width: 58ch;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.85;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid transparent;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-btn:hover {
  transform: translateY(-2px);
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  box-shadow: 0 16px 30px rgba(76, 29, 149, 0.22);
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary-deep);
  border-color: rgba(109, 47, 192, 0.14);
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-hero-visual {
  display: grid;
  gap: 18px;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-hero-image {
  overflow: hidden;
  min-height: 420px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-stat-card {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, #281743, #3b2162);
  color: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(35, 19, 61, 0.24);
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-stat-card strong {
  color: #fff;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-stat-card span {
  font-size: 0.94rem;
  line-height: 1.7;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-overview {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  padding: 36px;
  border-radius: 30px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-overview-title h2,
:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-section-head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-overview-copy p {
  margin: 0 0 22px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.85;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-overview-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-overview-points div {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(109, 47, 192, 0.1);
  box-shadow: 0 14px 28px rgba(46, 25, 88, 0.06);
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-overview-points i {
  color: var(--primary);
  font-size: 1.3rem;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-overview-points span {
  display: block;
  margin-top: 12px;
  font-weight: 700;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-overview-points small {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.7;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-test-matrix,
:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-process,
:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-compliance {
  position: relative;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-test-head {
  margin-bottom: 24px;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-test-head p {
  margin: 14px 0 0;
  max-width: 74ch;
  color: var(--text-soft);
  line-height: 1.85;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-test-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-test-card,
:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-test-card-featured {
  grid-column: span 3;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(46, 25, 88, 0.08);
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-test-card {
  background: var(--surface-strong);
  border: 1px solid var(--border-soft);
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-test-card-featured {
  background: linear-gradient(145deg, #5a2ea6, #7a45cb);
  color: #fff;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-test-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-test-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(109, 47, 192, 0.1);
  color: var(--primary);
  font-size: 1.15rem;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-test-card-featured .ltpv-test-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-test-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-test-card-featured .ltpv-test-label {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-test-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
  line-height: 1.45;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-test-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-test-card-featured p {
  color: rgba(255, 255, 255, 0.84);
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-process-shell {
  padding: 36px;
  border-radius: 30px;
  background: linear-gradient(145deg, #23133d, #3f216a);
  color: #fff;
  box-shadow: 0 22px 52px rgba(31, 17, 56, 0.18);
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-process-intro {
  max-width: 760px;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-process-intro h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-process-intro p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.82;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-process-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-process-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-process-card-accent {
  background: linear-gradient(145deg, rgba(244, 162, 29, 0.16), rgba(255, 255, 255, 0.08));
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-process-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-process-card h3 {
  margin: 18px 0 12px;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-process-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.72;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-process-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(244, 162, 29, 0.14);
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-compliance-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 18px;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-compliance-copy {
  padding: 34px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-compliance-copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-compliance-copy p {
  margin: 16px 0 0;
  color: var(--text-soft);
  line-height: 1.82;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-compliance-panels {
  display: grid;
  gap: 18px;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-compliance-card {
  padding: 24px 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #f1ebff);
  border: 1px solid rgba(109, 47, 192, 0.09);
  box-shadow: 0 16px 36px rgba(27, 25, 51, 0.06);
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-compliance-card i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--primary);
  font-size: 1rem;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-compliance-card h3 {
  margin: 16px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

:is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-compliance-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 991px) {
  :is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-hero,
  :is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-overview,
  :is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-process-panels,
  :is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-compliance-shell {
    grid-template-columns: 1fr;
  }

  :is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-overview-points {
    grid-template-columns: 1fr;
  }

  :is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-hero-visual {
    justify-self: start;
  }

  :is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-test-card,
  :is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-test-card-featured {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  :is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .page-shell {
    width: 90vw;
    max-width: 90vw;
    padding-top: 12px;
  }

  :is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-btn {
    width: 100%;
  }

  :is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ndt-stat-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  :is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-test-grid {
    grid-template-columns: 1fr;
  }

  :is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-test-card,
  :is(.calibration-page, .air-page, .ltpv-page, .lux-page, .noise-page, .ndt-page, .pullout-page, .welding-page) .ltpv-test-card-featured {
    grid-column: auto;
  }
}

/* Air Monitoring Hero Aligned To Calibration UI */
.air-page .ndt-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgb(109 47 192 / 80%);
    color: #ffffffe8;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.air-page .ndt-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(249, 242, 255, 0.82));
  border: 1px solid rgba(109, 47, 192, 0.12);
  box-shadow: 0 22px 56px rgba(46, 25, 88, 0.12);
}

.air-page .ndt-hero::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 47, 192, 0.2), transparent 70%);
}

.air-page .ndt-hero::after {
  content: "";
  position: absolute;
  top: -60px;
  left: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 162, 29, 0.16), transparent 70%);
}

.air-page .ndt-hero-copy,
.air-page .ndt-hero-visual {
  position: relative;
  z-index: 1;
}

.air-page .ndt-hero-copy {
  max-width: 620px;
}

.air-page .ndt-hero h1 {
  margin: 0 0 18px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.45rem, 4vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.air-page .ndt-hero h1 span {
  color: #6d2fc0;
}

.air-page .ndt-hero p {
  margin: 0;
  max-width: 58ch;
  color: #6b6282;
  font-size: 1rem;
  line-height: 1.85;
}

.air-page .ndt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.air-page .ndt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.air-page .ndt-btn:hover {
  transform: translateY(-2px);
}

.air-page .ndt-btn-primary {
  background: linear-gradient(135deg, #6d2fc0, #4c1d95);
  color: #fff;
  box-shadow: 0 16px 30px rgba(76, 29, 149, 0.22);
}

.air-page .ndt-btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: #4c1d95;
  border-color: rgba(109, 47, 192, 0.14);
}

.air-page .ndt-hero-visual {
  display: grid;
  gap: 18px;
  max-width: none;
  width: 100%;
  justify-self: stretch;
}

.air-page .ndt-hero-image {
  overflow: hidden;
  min-height: 420px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  box-shadow: none;
}

.air-page .ndt-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.air-page .ndt-stat-card {
  position: static;
  left: auto;
  bottom: auto;
  width: 100%;
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, #281743, #3b2162);
  color: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(35, 19, 61, 0.24);
}

.air-page .ndt-stat-card strong {
  color: #fff;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.air-page .ndt-stat-card span {
  font-size: 0.94rem;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .air-page .ndt-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .air-page .ndt-btn {
    width: 100%;
  }

  .air-page .ndt-stat-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
}

/* Air Monitoring Test Matrix Aligned To Calibration UI */
.air-page .ltpv-test-head {
  max-width: none;
  margin: 0 0 24px;
  text-align: left;
}

.air-page .ltpv-test-head p {
  margin: 14px 0 0;
  max-width: 74ch;
  color: var(--text-soft);
  line-height: 1.85;
}

.air-page .ltpv-test-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.air-page .ltpv-test-card,
.air-page .ltpv-test-card-featured {
  grid-column: span 3;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(46, 25, 88, 0.08);
}

.air-page .ltpv-test-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(109, 47, 192, 0.12);
}

.air-page .ltpv-test-card-featured {
  background: linear-gradient(145deg, #5a2ea6, #7a45cb);
  border-color: transparent;
  color: #fff;
}

.air-page .ltpv-test-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.air-page .ltpv-test-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(109, 47, 192, 0.1);
  color: var(--primary);
  font-size: 1.15rem;
}

.air-page .ltpv-test-card-featured .ltpv-test-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.air-page .ltpv-test-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: auto;
}

.air-page .ltpv-test-card-featured .ltpv-test-label {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.air-page .ltpv-test-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
  line-height: 1.45;
}

.air-page .ltpv-test-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

.air-page .ltpv-test-card-featured p {
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 991px) {
  .air-page .ltpv-test-card,
  .air-page .ltpv-test-card-featured {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .air-page .ltpv-test-grid {
    grid-template-columns: 1fr;
  }

  .air-page .ltpv-test-card,
  .air-page .ltpv-test-card-featured {
    grid-column: auto;
  }
}

/* Air Monitoring And Calibration Test Matrix Type Scale */
.air-page .ltpv-test-head p,
.calibration-page .ltpv-test-head p,
.air-page .ltpv-test-card h3,
.calibration-page .ltpv-test-card h3,
.air-page .ltpv-test-card p,
.calibration-page .ltpv-test-card p {
  font-size: 1rem;
}

.air-page .ltpv-test-label,
.calibration-page .ltpv-test-label {
  font-size: 0.76rem;
}

/* LTPV Content Type Scale */
.ltpv-page .ndt-hero p,
.ltpv-page .ndt-overview-copy p,
.ltpv-page .ndt-overview-points span,
.ltpv-page .ndt-overview-points small,
.ltpv-page .ltpv-test-head p,
.ltpv-page .ltpv-test-card h3,
.ltpv-page .ltpv-test-card p,
.ltpv-page .ltpv-process-intro p,
.ltpv-page .ltpv-process-card h3,
.ltpv-page .ltpv-process-list li,
.ltpv-page .ltpv-compliance-copy p,
.ltpv-page .ltpv-compliance-card h3,
.ltpv-page .ltpv-compliance-card p {
  font-size: 1rem;
}

.ltpv-page .ltpv-test-label,
.ltpv-page .ltpv-process-badge,
.ltpv-page .ndt-kicker {
  font-size: 0.78rem;
}

/* LTPV Hero Aligned To Calibration UI */
.ltpv-page .ndt-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(249, 242, 255, 0.82));
  border: 1px solid rgba(109, 47, 192, 0.12);
  box-shadow: 0 22px 56px rgba(46, 25, 88, 0.12);
}

.ltpv-page .ndt-hero::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 47, 192, 0.2), transparent 70%);
}

.ltpv-page .ndt-hero::after {
  content: "";
  position: absolute;
  top: -60px;
  left: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 162, 29, 0.16), transparent 70%);
}

.ltpv-page .ndt-hero-copy,
.ltpv-page .ndt-hero-visual {
  position: relative;
  z-index: 1;
}

.ltpv-page .ndt-hero-copy {
  max-width: 620px;
}

.ltpv-page .ndt-hero h1 {
  margin: 0 0 18px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.45rem, 4vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.ltpv-page .ndt-hero h1 span {
  color: var(--primary);
}

.ltpv-page .ndt-hero p {
  margin: 0;
  max-width: 58ch;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.85;
}

.ltpv-page .ndt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.ltpv-page .ndt-btn:hover {
  transform: translateY(-2px);
}

.ltpv-page .ndt-hero-visual {
  display: grid;
  gap: 18px;
  max-width: none;
  width: 100%;
  justify-self: stretch;
}

.ltpv-page .ndt-hero-image {
  overflow: hidden;
  min-height: 420px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  box-shadow: none;
}

.ltpv-page .ndt-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.ltpv-page .ndt-stat-card {
  position: static;
  left: auto;
  bottom: auto;
  width: 100%;
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, #281743, #3b2162);
  color: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(35, 19, 61, 0.24);
}

.ltpv-page .ndt-stat-card strong {
  color: #fff;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ltpv-page .ndt-stat-card span {
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 991px) {
  .ltpv-page .ndt-hero {
    grid-template-columns: 1fr;
  }

  .ltpv-page .ndt-hero-visual {
    justify-self: start;
  }
}

@media (max-width: 767px) {
  .ltpv-page .ndt-btn {
    width: 100%;
  }

  .ltpv-page .ndt-stat-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
}

/* LTPV Test Matrix Aligned To Air Monitoring UI */
.ltpv-page .ltpv-test-head {
  max-width: none;
  margin: 0 0 24px;
  text-align: left;
}

.ltpv-page .ltpv-test-head p {
  margin: 14px 0 0;
  max-width: 74ch;
  color: var(--text-soft);
  line-height: 1.85;
}

.ltpv-page .ltpv-test-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.ltpv-page .ltpv-test-card,
.ltpv-page .ltpv-test-card-featured {
  grid-column: span 3;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(46, 25, 88, 0.08);
}

.ltpv-page .ltpv-test-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(109, 47, 192, 0.12);
}

.ltpv-page .ltpv-test-card-featured {
  background: linear-gradient(145deg, #5a2ea6, #7a45cb);
  border-color: transparent;
  color: #fff;
}

.ltpv-page .ltpv-test-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.ltpv-page .ltpv-test-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(109, 47, 192, 0.1);
  color: var(--primary);
  font-size: 1.15rem;
}

.ltpv-page .ltpv-test-card-featured .ltpv-test-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.ltpv-page .ltpv-test-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary-deep);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: auto;
}

.ltpv-page .ltpv-test-card-featured .ltpv-test-label {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.ltpv-page .ltpv-test-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}

.ltpv-page .ltpv-test-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.ltpv-page .ltpv-test-card-featured p {
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 991px) {
  .ltpv-page .ltpv-test-card,
  .ltpv-page .ltpv-test-card-featured {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .ltpv-page .ltpv-test-grid {
    grid-template-columns: 1fr;
  }

  .ltpv-page .ltpv-test-card,
  .ltpv-page .ltpv-test-card-featured {
    grid-column: auto;
  }
}

/* Lux Hero Aligned To Recent LTPV UI */
.lux-page .ndt-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(249, 242, 255, 0.82));
  border: 1px solid rgba(109, 47, 192, 0.12);
  box-shadow: 0 22px 56px rgba(46, 25, 88, 0.12);
}

.lux-page .ndt-hero::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 47, 192, 0.2), transparent 70%);
}

.lux-page .ndt-hero::after {
  content: "";
  position: absolute;
  top: -60px;
  left: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 162, 29, 0.16), transparent 70%);
}

.lux-page .ndt-hero-copy,
.lux-page .ndt-hero-visual {
  position: relative;
  z-index: 1;
}

.lux-page .ndt-hero-copy {
  max-width: 620px;
}

.lux-page .ndt-hero h1 {
  margin: 0 0 18px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.45rem, 4vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.lux-page .ndt-hero h1 span {
  color: var(--primary);
}

.lux-page .ndt-hero p {
  margin: 0;
  max-width: 58ch;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.85;
}

.lux-page .ndt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.lux-page .ndt-btn:hover {
  transform: translateY(-2px);
}

.lux-page .ndt-hero-visual {
  display: grid;
  gap: 18px;
  max-width: none;
  width: 100%;
  justify-self: stretch;
}

.lux-page .ndt-hero-image {
  overflow: hidden;
  min-height: 420px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  box-shadow: none;
}

.lux-page .ndt-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.lux-page .ndt-stat-card {
  position: static;
  left: auto;
  bottom: auto;
  width: 100%;
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, #281743, #3b2162);
  color: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(35, 19, 61, 0.24);
}

.lux-page .ndt-stat-card strong {
  color: #fff;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lux-page .ndt-stat-card span {
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

/* Lux Test Matrix Aligned To Recent LTPV UI */
.lux-page .ltpv-test-head {
  max-width: none;
  margin: 0 0 24px;
  text-align: left;
}

.lux-page .ltpv-test-head p {
  margin: 14px 0 0;
  max-width: 74ch;
  color: var(--text-soft);
  line-height: 1.85;
}

.lux-page .ltpv-test-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.lux-page .ltpv-test-card,
.lux-page .ltpv-test-card-featured {
  grid-column: span 3;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(46, 25, 88, 0.08);
}

.lux-page .ltpv-test-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(109, 47, 192, 0.12);
}

.lux-page .ltpv-test-card-featured {
  background: linear-gradient(145deg, #5a2ea6, #7a45cb);
  border-color: transparent;
  color: #fff;
}

.lux-page .ltpv-test-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.lux-page .ltpv-test-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(109, 47, 192, 0.1);
  color: var(--primary);
  font-size: 1.15rem;
}

.lux-page .ltpv-test-card-featured .ltpv-test-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.lux-page .ltpv-test-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: auto;
}

.lux-page .ltpv-test-card-featured .ltpv-test-label {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.lux-page .ltpv-test-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}

.lux-page .ltpv-test-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.lux-page .ltpv-test-card-featured p {
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 991px) {
  .lux-page .ndt-hero {
    grid-template-columns: 1fr;
  }

  .lux-page .ndt-hero-visual {
    justify-self: start;
  }

  .lux-page .ltpv-test-card,
  .lux-page .ltpv-test-card-featured {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .lux-page .ndt-btn {
    width: 100%;
  }

  .lux-page .ndt-stat-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .lux-page .ltpv-test-grid {
    grid-template-columns: 1fr;
  }

  .lux-page .ltpv-test-card,
  .lux-page .ltpv-test-card-featured {
    grid-column: auto;
  }
}

/* Noise Hero Aligned To Recent LTPV UI */
.noise-page .ndt-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(249, 242, 255, 0.82));
  border: 1px solid rgba(109, 47, 192, 0.12);
  box-shadow: 0 22px 56px rgba(46, 25, 88, 0.12);
}

.noise-page .ndt-hero::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 47, 192, 0.2), transparent 70%);
}

.noise-page .ndt-hero::after {
  content: "";
  position: absolute;
  top: -60px;
  left: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 162, 29, 0.16), transparent 70%);
}

.noise-page .ndt-hero-copy,
.noise-page .ndt-hero-visual {
  position: relative;
  z-index: 1;
}

.noise-page .ndt-hero-copy {
  max-width: 620px;
}

.noise-page .ndt-hero h1 {
  margin: 0 0 18px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.45rem, 4vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.noise-page .ndt-hero h1 span {
  color: var(--primary);
}

.noise-page .ndt-hero p {
  margin: 0;
  max-width: 58ch;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.85;
}

.noise-page .ndt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.noise-page .ndt-btn:hover {
  transform: translateY(-2px);
}

.noise-page .ndt-hero-visual {
  display: grid;
  gap: 18px;
  max-width: none;
  width: 100%;
  justify-self: stretch;
}

.noise-page .ndt-hero-image {
  overflow: hidden;
  min-height: 420px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  box-shadow: none;
}

.noise-page .ndt-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.noise-page .ndt-stat-card {
  position: static;
  left: auto;
  bottom: auto;
  width: 100%;
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, #281743, #3b2162);
  color: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(35, 19, 61, 0.24);
}

.noise-page .ndt-stat-card strong {
  color: #fff;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.noise-page .ndt-stat-card span {
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

/* Noise Test Matrix Aligned To Recent LTPV UI */
.noise-page .ltpv-test-head {
  max-width: none;
  margin: 0 0 24px;
  text-align: left;
}

.noise-page .ltpv-test-head p {
  margin: 14px 0 0;
  max-width: 74ch;
  color: var(--text-soft);
  line-height: 1.85;
}

.noise-page .ltpv-test-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.noise-page .ltpv-test-card,
.noise-page .ltpv-test-card-featured {
  grid-column: span 3;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(46, 25, 88, 0.08);
}

.noise-page .ltpv-test-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(109, 47, 192, 0.12);
}

.noise-page .ltpv-test-card-featured {
  background: linear-gradient(145deg, #5a2ea6, #7a45cb);
  border-color: transparent;
  color: #fff;
}

.noise-page .ltpv-test-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.noise-page .ltpv-test-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(109, 47, 192, 0.1);
  color: var(--primary);
  font-size: 1.15rem;
}

.noise-page .ltpv-test-card-featured .ltpv-test-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.noise-page .ltpv-test-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: auto;
}

.noise-page .ltpv-test-card-featured .ltpv-test-label {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.noise-page .ltpv-test-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}

.noise-page .ltpv-test-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.noise-page .ltpv-test-card-featured p {
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 991px) {
  .noise-page .ndt-hero {
    grid-template-columns: 1fr;
  }

  .noise-page .ndt-hero-visual {
    justify-self: start;
  }

  .noise-page .ltpv-test-card,
  .noise-page .ltpv-test-card-featured {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .noise-page .ndt-btn {
    width: 100%;
  }

  .noise-page .ndt-stat-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .noise-page .ltpv-test-grid {
    grid-template-columns: 1fr;
  }

  .noise-page .ltpv-test-card,
  .noise-page .ltpv-test-card-featured {
    grid-column: auto;
  }
}

/* NDT Hero Aligned To Recent LTPV UI */
.ndt-page .ndt-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(249, 242, 255, 0.82));
  border: 1px solid rgba(109, 47, 192, 0.12);
  box-shadow: 0 22px 56px rgba(46, 25, 88, 0.12);
}

.ndt-page .ndt-hero::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 47, 192, 0.2), transparent 70%);
}

.ndt-page .ndt-hero::after {
  content: "";
  position: absolute;
  top: -60px;
  left: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 162, 29, 0.16), transparent 70%);
}

.ndt-page .ndt-hero-copy,
.ndt-page .ndt-hero-visual {
  position: relative;
  z-index: 1;
}

.ndt-page .ndt-hero-copy {
  max-width: 620px;
}

.ndt-page .ndt-hero h1 {
  margin: 0 0 18px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.45rem, 4vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.ndt-page .ndt-hero h1 span {
  color: var(--primary);
}

.ndt-page .ndt-hero p {
  margin: 0;
  max-width: 58ch;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.85;
}

.ndt-page .ndt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.ndt-page .ndt-btn:hover {
  transform: translateY(-2px);
}

.ndt-page .ndt-hero-visual {
  display: grid;
  gap: 18px;
  max-width: none;
  width: 100%;
  justify-self: stretch;
}

.ndt-page .ndt-hero-image {
  overflow: hidden;
  min-height: 420px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  box-shadow: none;
}

.ndt-page .ndt-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.ndt-page .ndt-stat-card {
  position: static;
  left: auto;
  bottom: auto;
  width: 100%;
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, #281743, #3b2162);
  color: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(35, 19, 61, 0.24);
}

.ndt-page .ndt-stat-card strong {
  color: #fff;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ndt-page .ndt-stat-card span {
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

/* NDT Test Matrix Aligned To Recent LTPV UI */
.ndt-page .ltpv-test-head {
  max-width: none;
  margin: 0 0 24px;
  text-align: left;
}

.ndt-page .ltpv-test-head p {
  margin: 14px 0 0;
  max-width: 74ch;
  color: var(--text-soft);
  line-height: 1.85;
}

.ndt-page .ltpv-test-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.ndt-page .ltpv-test-card,
.ndt-page .ltpv-test-card-featured {
  grid-column: span 3;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(46, 25, 88, 0.08);
}

.ndt-page .ltpv-test-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(109, 47, 192, 0.12);
}

.ndt-page .ltpv-test-card-featured {
  background: linear-gradient(145deg, #5a2ea6, #7a45cb);
  border-color: transparent;
  color: #fff;
}

.ndt-page .ltpv-test-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.ndt-page .ltpv-test-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(109, 47, 192, 0.1);
  color: var(--primary);
  font-size: 1.15rem;
}

.ndt-page .ltpv-test-card-featured .ltpv-test-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.ndt-page .ltpv-test-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: auto;
}

.ndt-page .ltpv-test-card-featured .ltpv-test-label {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.ndt-page .ltpv-test-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}

.ndt-page .ltpv-test-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.ndt-page .ltpv-test-card-featured p {
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 991px) {
  .ndt-page .ndt-hero {
    grid-template-columns: 1fr;
  }

  .ndt-page .ndt-hero-visual {
    justify-self: start;
  }

  .ndt-page .ltpv-test-card,
  .ndt-page .ltpv-test-card-featured {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .ndt-page .ndt-btn {
    width: 100%;
  }

  .ndt-page .ndt-stat-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .ndt-page .ltpv-test-grid {
    grid-template-columns: 1fr;
  }

  .ndt-page .ltpv-test-card,
  .ndt-page .ltpv-test-card-featured {
    grid-column: auto;
  }
}

/* Pullout Hero Aligned To Recent LTPV UI */
.pullout-page .ndt-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(249, 242, 255, 0.82));
  border: 1px solid rgba(109, 47, 192, 0.12);
  box-shadow: 0 22px 56px rgba(46, 25, 88, 0.12);
}

.pullout-page .ndt-hero::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 47, 192, 0.2), transparent 70%);
}

.pullout-page .ndt-hero::after {
  content: "";
  position: absolute;
  top: -60px;
  left: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 162, 29, 0.16), transparent 70%);
}

.pullout-page .ndt-hero-copy,
.pullout-page .ndt-hero-visual {
  position: relative;
  z-index: 1;
}

.pullout-page .ndt-hero-copy {
  max-width: 620px;
}

.pullout-page .ndt-hero h1 {
  margin: 0 0 18px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.45rem, 4vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.pullout-page .ndt-hero h1 span {
  color: var(--primary);
}

.pullout-page .ndt-hero p {
  margin: 0;
  max-width: 58ch;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.85;
}

.pullout-page .ndt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.pullout-page .ndt-btn:hover {
  transform: translateY(-2px);
}

.pullout-page .ndt-hero-visual {
  display: grid;
  gap: 18px;
  max-width: none;
  width: 100%;
  justify-self: stretch;
}

.pullout-page .ndt-hero-image {
  overflow: hidden;
  min-height: 420px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  box-shadow: none;
}

.pullout-page .ndt-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.pullout-page .ndt-stat-card {
  position: static;
  left: auto;
  bottom: auto;
  width: 100%;
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, #281743, #3b2162);
  color: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(35, 19, 61, 0.24);
}

.pullout-page .ndt-stat-card strong {
  color: #fff;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pullout-page .ndt-stat-card span {
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

/* Pullout Test Matrix Aligned To Recent LTPV UI */
.pullout-page .ltpv-test-head {
  max-width: none;
  margin: 0 0 24px;
  text-align: left;
}

.pullout-page .ltpv-test-head p {
  margin: 14px 0 0;
  max-width: 74ch;
  color: var(--text-soft);
  line-height: 1.85;
}

.pullout-page .ltpv-test-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.pullout-page .ltpv-test-card,
.pullout-page .ltpv-test-card-featured {
  grid-column: span 3;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(46, 25, 88, 0.08);
}

.pullout-page .ltpv-test-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(109, 47, 192, 0.12);
}

.pullout-page .ltpv-test-card-featured {
  background: linear-gradient(145deg, #5a2ea6, #7a45cb);
  border-color: transparent;
  color: #fff;
}

.pullout-page .ltpv-test-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.pullout-page .ltpv-test-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(109, 47, 192, 0.1);
  color: var(--primary);
  font-size: 1.15rem;
}

.pullout-page .ltpv-test-card-featured .ltpv-test-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.pullout-page .ltpv-test-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: auto;
}

.pullout-page .ltpv-test-card-featured .ltpv-test-label {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.pullout-page .ltpv-test-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}

.pullout-page .ltpv-test-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.pullout-page .ltpv-test-card-featured p {
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 991px) {
  .pullout-page .ndt-hero {
    grid-template-columns: 1fr;
  }

  .pullout-page .ndt-hero-visual {
    justify-self: start;
  }

  .pullout-page .ltpv-test-card,
  .pullout-page .ltpv-test-card-featured {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .pullout-page .ndt-btn {
    width: 100%;
  }

  .pullout-page .ndt-stat-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .pullout-page .ltpv-test-grid {
    grid-template-columns: 1fr;
  }

  .pullout-page .ltpv-test-card,
  .pullout-page .ltpv-test-card-featured {
    grid-column: auto;
  }
}

/* Welding Hero Aligned To Recent LTPV UI */
.welding-page .ndt-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(249, 242, 255, 0.82));
  border: 1px solid rgba(109, 47, 192, 0.12);
  box-shadow: 0 22px 56px rgba(46, 25, 88, 0.12);
}

.welding-page .ndt-hero::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 47, 192, 0.2), transparent 70%);
}

.welding-page .ndt-hero::after {
  content: "";
  position: absolute;
  top: -60px;
  left: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 162, 29, 0.16), transparent 70%);
}

.welding-page .ndt-hero-copy,
.welding-page .ndt-hero-visual {
  position: relative;
  z-index: 1;
}

.welding-page .ndt-hero-copy {
  max-width: 620px;
}

.welding-page .ndt-hero h1 {
  margin: 0 0 18px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.45rem, 4vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.welding-page .ndt-hero h1 span {
  color: var(--primary);
}

.welding-page .ndt-hero p {
  margin: 0;
  max-width: 58ch;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.85;
}

.welding-page .ndt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.welding-page .ndt-btn:hover {
  transform: translateY(-2px);
}

.welding-page .ndt-hero-visual {
  display: grid;
  gap: 18px;
  max-width: none;
  width: 100%;
  justify-self: stretch;
}

.welding-page .ndt-hero-image {
  overflow: hidden;
  min-height: 420px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  box-shadow: none;
}

.welding-page .ndt-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.welding-page .ndt-stat-card {
  position: static;
  left: auto;
  bottom: auto;
  width: 100%;
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, #281743, #3b2162);
  color: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(35, 19, 61, 0.24);
}

.welding-page .ndt-stat-card strong {
  color: #fff;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.welding-page .ndt-stat-card span {
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

/* Welding Test Matrix Aligned To Recent LTPV UI */
.welding-page .ltpv-test-head {
  max-width: none;
  margin: 0 0 24px;
  text-align: left;
}

.welding-page .ltpv-test-head p {
  margin: 14px 0 0;
  max-width: 74ch;
  color: var(--text-soft);
  line-height: 1.85;
}

.welding-page .ltpv-test-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.welding-page .ltpv-test-card,
.welding-page .ltpv-test-card-featured {
  grid-column: span 3;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(46, 25, 88, 0.08);
}

.welding-page .ltpv-test-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(109, 47, 192, 0.12);
}

.welding-page .ltpv-test-card-featured {
  background: linear-gradient(145deg, #5a2ea6, #7a45cb);
  border-color: transparent;
  color: #fff;
}

.welding-page .ltpv-test-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.welding-page .ltpv-test-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(109, 47, 192, 0.1);
  color: var(--primary);
  font-size: 1.15rem;
}

.welding-page .ltpv-test-card-featured .ltpv-test-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.welding-page .ltpv-test-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(109, 47, 192, 0.08);
  color: var(--primary-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: auto;
}

.welding-page .ltpv-test-card-featured .ltpv-test-label {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.welding-page .ltpv-test-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}

.welding-page .ltpv-test-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.welding-page .ltpv-test-card-featured p {
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 991px) {
  .welding-page .ndt-hero {
    grid-template-columns: 1fr;
  }

  .welding-page .ndt-hero-visual {
    justify-self: start;
  }

  .welding-page .ltpv-test-card,
  .welding-page .ltpv-test-card-featured {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .welding-page .ndt-btn {
    width: 100%;
  }

  .welding-page .ndt-stat-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .welding-page .ltpv-test-grid {
    grid-template-columns: 1fr;
  }

  .welding-page .ltpv-test-card,
  .welding-page .ltpv-test-card-featured {
    grid-column: auto;
  }
}

/* Plant & Machinery Inspection Page */
.plant-machinery-page {
  --plant-bg: #f5f6fb;
  --plant-surface: #ffffff;
  --plant-soft: #000000;
  --plant-ink: #000000;
  --plant-primary: #5f2caf;
  --plant-primary-deep: #43206f;
  --plant-accent: #d67a1f;
  --plant-border: rgba(91, 64, 141, 0.12);
  color: var(--plant-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(95, 44, 175, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfbfd 0%, #f2f4fa 100%);
}

.plant-machinery-page .plant-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 24px 0 46px;
}

.plant-machinery-page .plant-kicker,
.plant-machinery-page .plant-section-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background:rgb(95 44 175 / 80%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plant-machinery-page .plant-hero,
.plant-machinery-page .plant-overview,
.plant-machinery-page .plant-machinery-section,
.plant-machinery-page .plant-scope-section,
.plant-machinery-page .plant-cta {
  margin-top: 28px;
}

.plant-machinery-page .plant-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.86fr);
  gap: 24px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 30px;
  background:
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #25163b 0%, #3a2460 52%, #5f2caf 100%);
  box-shadow: 0 26px 60px rgba(38, 22, 70, 0.18);
}

.plant-machinery-page .plant-hero-copy {
  max-width: 630px;
  color: #ffffff;
}

.plant-machinery-page .plant-hero-copy h1,
.plant-machinery-page .plant-overview-copy h2,
.plant-machinery-page .plant-section-head h2,
.plant-machinery-page .plant-scope-copy h2,
.plant-machinery-page .plant-cta h2 {
  font-family: "Sora", sans-serif;
}

.plant-machinery-page .plant-hero-copy h1 {
  margin: 16px 0 0;
  font-size: clamp(2.4rem, 4.9vw, 3.35rem);
  line-height: 0.97;
  letter-spacing: -0.045em;
}

.plant-machinery-page .plant-hero-copy p {
  margin: 18px 0 0;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.8;
}

.plant-machinery-page .plant-hero-actions,
.plant-machinery-page .plant-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.plant-machinery-page .plant-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.plant-machinery-page .plant-btn:hover {
  transform: translateY(-2px);
}

.plant-machinery-page .plant-btn-primary {
  background: linear-gradient(135deg, var(--plant-accent), #ba5f0e);
  color: #fff;
  box-shadow: 0 14px 28px rgba(214, 122, 31, 0.28);
}

.plant-machinery-page .plant-btn-secondary,
.plant-machinery-page .plant-btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.plant-machinery-page .plant-btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--plant-primary-deep);
  border-color: rgba(255, 255, 255, 0.42);
}

.plant-machinery-page .plant-hero-visual {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.plant-machinery-page .plant-hero-image-wrap {
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 44px rgba(18, 10, 36, 0.26);
}

.plant-machinery-page .plant-hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.plant-machinery-page .plant-overview,
.plant-machinery-page .plant-machinery-section,
.plant-machinery-page .plant-scope-section {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(235, 229, 243, 0.94);
  box-shadow: 0 16px 40px rgba(41, 23, 74, 0.05);
}

.plant-machinery-page .plant-overview-copy h2,
.plant-machinery-page .plant-section-head h2,
.plant-machinery-page .plant-scope-copy h2,
.plant-machinery-page .plant-cta h2 {
  margin: 14px 0 0;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.plant-machinery-page .plant-overview-copy p {
  margin: 14px 0 0;
  max-width: 780px;
  color: var(--plant-soft);
  font-size: 0.96rem;
  line-height: 1.8;
}

.plant-machinery-page .plant-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.plant-machinery-page .plant-overview-card {
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6f4fb);
  border: 1px solid var(--plant-border);
}

.plant-machinery-page .plant-overview-card i {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(95, 44, 175, 0.08);
  color: var(--plant-primary);
  font-size: 0.95rem;
}

.plant-machinery-page .plant-overview-card h3,
.plant-machinery-page .plant-machinery-card h3,
.plant-machinery-page .plant-scope-list h3 {
  margin: 16px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.plant-machinery-page .plant-overview-card p,
.plant-machinery-page .plant-machinery-card p,
.plant-machinery-page .plant-scope-list p {
  margin: 0;
  color: var(--plant-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

.plant-machinery-page .plant-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.plant-machinery-page .plant-section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(95, 44, 175, 0.08);
  color: var(--plant-primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plant-machinery-page .plant-machinery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.plant-machinery-page .plant-machinery-card {
  min-height: 172px;
  padding: 20px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8f6fc);
  border: 1px solid var(--plant-border);
}

.plant-machinery-page .plant-machinery-card-accent {
  background: linear-gradient(145deg, #5f2caf, #7840cb);
  border-color: transparent;
}

.plant-machinery-page .plant-machinery-card-accent h3,
.plant-machinery-page .plant-machinery-card-accent p {
  color: #fff;
}

.plant-machinery-page .plant-scope-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.plant-machinery-page .plant-scope-frame {
  min-height: 420px;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #101d2d 0%, #122438 100%);
  box-shadow: 0 20px 42px rgba(16, 22, 40, 0.18);
  color: #fff;
  display: grid;
  align-content: space-between;
}

.plant-machinery-page .plant-frame-top {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plant-machinery-page .plant-frame-core {
  padding: 24px 22px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(95, 44, 175, 0.9), rgba(68, 33, 123, 0.96));
  box-shadow: 0 16px 30px rgba(27, 17, 49, 0.22);
}

.plant-machinery-page .plant-core-label {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plant-machinery-page .plant-frame-core strong {
  display: block;
  margin-top: 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.7rem;
  line-height: 1.2;
}

.plant-machinery-page .plant-frame-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.plant-machinery-page .plant-frame-stack span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 700;
}

.plant-machinery-page .plant-scope-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.plant-machinery-page .plant-scope-list article {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: #f8f7fc;
  border: 1px solid rgba(95, 44, 175, 0.08);
}

.plant-machinery-page .plant-cta {
  padding: clamp(34px, 5vw, 50px);
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(135deg, #6d2bc3 0%, #542092 100%);
  box-shadow: 0 22px 44px rgba(76, 35, 148, 0.16);
}

.plant-machinery-page .plant-cta p {
  max-width: 640px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.75;
}

.plant-machinery-page .plant-cta-actions {
  justify-content: center;
}

@media (max-width: 991px) {
  .plant-machinery-page .plant-hero,
  .plant-machinery-page .plant-scope-section,
  .plant-machinery-page .plant-overview-grid,
  .plant-machinery-page .plant-machinery-grid,
  .plant-machinery-page .plant-scope-list {
    grid-template-columns: 1fr;
  }

  .plant-machinery-page .plant-section-head {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .plant-machinery-page .plant-shell {
    padding: 14px 12px 56px;
  }

  .plant-machinery-page .plant-hero,
  .plant-machinery-page .plant-overview,
  .plant-machinery-page .plant-machinery-section,
  .plant-machinery-page .plant-scope-section,
  .plant-machinery-page .plant-cta {
    border-radius: 22px;
  }

  .plant-machinery-page .plant-frame-stack {
    grid-template-columns: 1fr;
  }

  .plant-machinery-page .plant-hero-image-wrap,
  .plant-machinery-page .plant-hero-image {
    min-height: 300px;
  }

  .plant-machinery-page .plant-btn {
    width: 100%;
  }
}

/* Pressure Vessel Inspection Page */
.pressure-vessel-page {
  --pv-ink: #000000;
  --pv-soft: #000000;
  --pv-primary: #612db0;
  --pv-primary-deep: #43206f;
  --pv-accent: #d3721c;
  --pv-border: rgba(97, 45, 176, 0.12);
  color: var(--pv-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(97, 45, 176, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfbfd 0%, #f2f4fa 100%);
}

.pressure-vessel-page .pv-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 26px 0 45px;
}

.pressure-vessel-page .pv-kicker,
.pressure-vessel-page .pv-section-label,
.pressure-vessel-page .pv-mini-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgb(97 45 176 / 82%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pressure-vessel-page .pv-hero,
.pressure-vessel-page .pv-intro,
.pressure-vessel-page .pv-types,
.pressure-vessel-page .pv-framework,
.pressure-vessel-page .pv-cta {
  margin-top: 28px;
}

.pressure-vessel-page .pv-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 30px;
  background:
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #241538 0%, #3a2460 48%, #612db0 100%);
  box-shadow: 0 26px 60px rgba(38, 22, 70, 0.18);
}

.pressure-vessel-page .pv-hero-copy {
  max-width: 640px;
  color: #fff;
}

.pressure-vessel-page .pv-hero-copy h1,
.pressure-vessel-page .pv-intro-head h2,
.pressure-vessel-page .pv-section-head h2,
.pressure-vessel-page .pv-framework-copy h2,
.pressure-vessel-page .pv-cta h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.pressure-vessel-page .pv-hero-copy p {
  margin: 16px 0 0;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  line-height: 1.8;
}

.pressure-vessel-page .pv-hero-highlight {
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 700;
}

.pressure-vessel-page .pv-hero-actions,
.pressure-vessel-page .pv-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.pressure-vessel-page .pv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.pressure-vessel-page .pv-btn:hover {
  transform: translateY(-2px);
}

.pressure-vessel-page .pv-btn-primary {
  background: linear-gradient(135deg, var(--pv-accent), #bb6010);
  color: #fff;
  box-shadow: 0 14px 28px rgba(211, 114, 28, 0.28);
}

.pressure-vessel-page .pv-btn-secondary,
.pressure-vessel-page .pv-btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.pressure-vessel-page .pv-btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--pv-primary-deep);
  border-color: rgba(255, 255, 255, 0.42);
}

.pressure-vessel-page .pv-hero-visual {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.pressure-vessel-page .pv-hero-image-wrap {
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 44px rgba(18, 10, 36, 0.26);
}

.pressure-vessel-page .pv-hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.pressure-vessel-page .pv-intro,
.pressure-vessel-page .pv-types,
.pressure-vessel-page .pv-framework {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(235, 229, 243, 0.94);
  box-shadow: 0 16px 40px rgba(41, 23, 74, 0.05);
}

.pressure-vessel-page .pv-intro-head h2,
.pressure-vessel-page .pv-section-head h2,
.pressure-vessel-page .pv-framework-copy h2,
.pressure-vessel-page .pv-cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.08;
}

.pressure-vessel-page .pv-intro-head p,
.pressure-vessel-page .pv-framework-copy p {
  margin: 14px 0 0;
  max-width: 760px;
  color: var(--pv-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

.pressure-vessel-page .pv-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.pressure-vessel-page .pv-intro-card {
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6f4fb);
  border: 1px solid var(--pv-border);
}

.pressure-vessel-page .pv-intro-card i {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--pv-primary);
  font-size: 0.95rem;
}

.pressure-vessel-page .pv-intro-card h3,
.pressure-vessel-page .pv-type-card h3,
.pressure-vessel-page .pv-framework-list h3 {
  margin: 16px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.pressure-vessel-page .pv-intro-card p,
.pressure-vessel-page .pv-type-card p,
.pressure-vessel-page .pv-framework-list p {
  margin: 0;
  color: var(--pv-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

.pressure-vessel-page .pv-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.pressure-vessel-page .pv-section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--pv-primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pressure-vessel-page .pv-types-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pressure-vessel-page .pv-type-card {
  min-height: 170px;
  padding: 20px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8f6fc);
  border: 1px solid var(--pv-border);
}

.pressure-vessel-page .pv-type-card-accent {
  background: linear-gradient(145deg, #612db0, #7b44cb);
  border-color: transparent;
}

.pressure-vessel-page .pv-type-card-accent h3,
.pressure-vessel-page .pv-type-card-accent p {
  color: #fff;
}

.pressure-vessel-page .pv-framework {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.pressure-vessel-page .pv-framework-panel {
  min-height: 420px;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #101d2d 0%, #122438 100%);
  box-shadow: 0 20px 42px rgba(16, 22, 40, 0.18);
  color: #fff;
}

.pressure-vessel-page .pv-framework-panel strong {
  display: block;
  margin-top: 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.6;
}

.pressure-vessel-page .pv-framework-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pressure-vessel-page .pv-framework-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 700;
}

.pressure-vessel-page .pv-framework-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.pressure-vessel-page .pv-framework-list article {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: #f8f7fc;
  border: 1px solid rgba(97, 45, 176, 0.08);
}

.pressure-vessel-page .pv-cta {
  padding: clamp(34px, 5vw, 50px);
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(135deg, #6d2bc3 0%, #542092 100%);
  box-shadow: 0 22px 44px rgba(76, 35, 148, 0.16);
}

.pressure-vessel-page .pv-cta p {
  max-width: 640px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.75;
}

.pressure-vessel-page .pv-cta-actions {
  justify-content: center;
}

@media (max-width: 991px) {
  .pressure-vessel-page .pv-hero,
  .pressure-vessel-page .pv-intro-grid,
  .pressure-vessel-page .pv-types-grid,
  .pressure-vessel-page .pv-framework,
  .pressure-vessel-page .pv-framework-list {
    grid-template-columns: 1fr;
  }

  .pressure-vessel-page .pv-section-head {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .pressure-vessel-page .pv-shell {
    padding: 14px 12px 56px;
  }

  .pressure-vessel-page .pv-hero,
  .pressure-vessel-page .pv-intro,
  .pressure-vessel-page .pv-types,
  .pressure-vessel-page .pv-framework,
  .pressure-vessel-page .pv-cta {
    border-radius: 22px;
  }

  .pressure-vessel-page .pv-framework-list {
    grid-template-columns: 1fr;
  }

  .pressure-vessel-page .pv-hero-image-wrap,
  .pressure-vessel-page .pv-hero-image {
    min-height: 300px;
  }

  .pressure-vessel-page .pv-btn {
    width: 100%;
  }
}

/* Scaffold Inspection Service Override */
.scaffold-page .scaffold-service-shell {
 max-width: 90vw;
  margin: 0 auto;
  padding: 26px 0 45px;
  gap: 0;
}

.scaffold-page .scaffold-service-kicker,
.scaffold-page .scaffold-service-label,
.scaffold-page .scaffold-service-mini {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgb(95 44 175 / 82%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scaffold-page .scaffold-service-hero,
.scaffold-page .scaffold-service-intro,
.scaffold-page .scaffold-service-types,
.scaffold-page .scaffold-service-framework,
.scaffold-page .scaffold-service-deliverables,
.scaffold-page .scaffold-service-cta {
  margin-top: 28px;
}

.scaffold-page .scaffold-service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 30px;
  background:
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #241538 0%, #3a2460 48%, #612db0 100%);
  box-shadow: 0 26px 60px rgba(38, 22, 70, 0.18);
}

.scaffold-page .scaffold-service-copy {
  max-width: 640px;
  color: #fff;
}

.scaffold-page .scaffold-service-copy h1,
.scaffold-page .scaffold-service-head h2,
.scaffold-page .scaffold-service-section-head h2,
.scaffold-page .scaffold-service-framework-copy h2,
.scaffold-page .scaffold-service-cta h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: inherit;
}

.scaffold-page .scaffold-service-copy p {
  margin: 16px 0 0;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  line-height: 1.8;
}

.scaffold-page .scaffold-service-highlight {
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 700;
}

.scaffold-page .scaffold-service-actions,
.scaffold-page .scaffold-service-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.scaffold-page .scaffold-service-visual {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.scaffold-page .scaffold-service-image-wrap {
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 44px rgba(18, 10, 36, 0.26);
}

.scaffold-page .scaffold-service-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.scaffold-page .scaffold-service-intro,
.scaffold-page .scaffold-service-types,
.scaffold-page .scaffold-service-framework,
.scaffold-page .scaffold-service-deliverables {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(235, 229, 243, 0.94);
  box-shadow: 0 16px 40px rgba(41, 23, 74, 0.05);
}

.scaffold-page .scaffold-service-head h2,
.scaffold-page .scaffold-service-section-head h2,
.scaffold-page .scaffold-service-framework-copy h2,
.scaffold-page .scaffold-service-cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.08;
}

.scaffold-page .scaffold-service-head p,
.scaffold-page .scaffold-service-framework-copy p {
  margin: 14px 0 0;
  max-width: 760px;
  color: #6e6a80;
  font-size: 0.95rem;
  line-height: 1.8;
}

.scaffold-page .scaffold-service-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.scaffold-page .scaffold-service-intro-card,
.scaffold-page .scaffold-service-deliverable-card {
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6f4fb);
  border: 1px solid rgba(97, 45, 176, 0.12);
}

.scaffold-page .scaffold-service-intro-card i,
.scaffold-page .scaffold-service-deliverable-card i {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(97, 45, 176, 0.08);
  color: #612db0;
  font-size: 0.95rem;
}

.scaffold-page .scaffold-service-intro-card h3,
.scaffold-page .scaffold-service-type-card h3,
.scaffold-page .scaffold-service-framework-list h3,
.scaffold-page .scaffold-service-deliverable-card h3 {
  margin: 16px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  color: #18151f;
}

.scaffold-page .scaffold-service-intro-card p,
.scaffold-page .scaffold-service-type-card p,
.scaffold-page .scaffold-service-framework-list p,
.scaffold-page .scaffold-service-deliverable-card p {
  margin: 0;
  color: #6e6a80;
  font-size: 0.88rem;
  line-height: 1.7;
}

.scaffold-page .scaffold-service-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.scaffold-page .scaffold-service-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(97, 45, 176, 0.08);
  color: #612db0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scaffold-page .scaffold-service-types-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.scaffold-page .scaffold-service-type-card {
  min-height: 170px;
  padding: 20px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8f6fc);
  border: 1px solid rgba(97, 45, 176, 0.12);
}

.scaffold-page .scaffold-service-type-accent,
.scaffold-page .scaffold-service-deliverable-accent {
  background: linear-gradient(145deg, #612db0, #7b44cb);
  border-color: transparent;
}

.scaffold-page .scaffold-service-type-accent h3,
.scaffold-page .scaffold-service-type-accent p,
.scaffold-page .scaffold-service-deliverable-accent h3,
.scaffold-page .scaffold-service-deliverable-accent p,
.scaffold-page .scaffold-service-deliverable-accent i {
  color: #fff;
}

.scaffold-page .scaffold-service-deliverable-accent i {
  background: rgba(255, 255, 255, 0.16);
}

.scaffold-page .scaffold-service-framework {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.scaffold-page .scaffold-service-framework-panel {
  min-height: 420px;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #101d2d 0%, #122438 100%);
  box-shadow: 0 20px 42px rgba(16, 22, 40, 0.18);
  color: #fff;
}

.scaffold-page .scaffold-service-framework-panel strong {
  display: block;
  margin-top: 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.6;
  color: #fff;
}

.scaffold-page .scaffold-service-framework-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.scaffold-page .scaffold-service-framework-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 700;
  color: #fff;
}

.scaffold-page .scaffold-service-framework-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.scaffold-page .scaffold-service-framework-list article {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: #f8f7fc;
  border: 1px solid rgba(97, 45, 176, 0.08);
}

.scaffold-page .scaffold-service-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.scaffold-page .scaffold-service-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 50px);
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 16%),
    radial-gradient(circle at 84% 22%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(135deg, #6d2bc3 0%, #542092 100%);
  box-shadow: 0 22px 44px rgba(76, 35, 148, 0.16);
}

.scaffold-page .scaffold-service-cta::before,
.scaffold-page .scaffold-service-cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.22;
}

.scaffold-page .scaffold-service-cta::before {
  right: 12%;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.42);
}

.scaffold-page .scaffold-service-cta::after {
  right: 6%;
  bottom: 22%;
  width: 128px;
  height: 2px;
  background: rgba(255, 255, 255, 0.42);
}

.scaffold-page .scaffold-service-cta h2,
.scaffold-page .scaffold-service-cta p,
.scaffold-page .scaffold-service-cta .scaffold-service-cta-actions {
  position: relative;
  z-index: 1;
}

.scaffold-page .scaffold-service-cta h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  text-shadow: 0 10px 24px rgba(34, 12, 71, 0.2);
}

.scaffold-page .scaffold-service-cta p {
  max-width: 640px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.75;
}

.scaffold-page .scaffold-service-cta-actions {
  justify-content: center;
  margin-top: 24px;
}

.scaffold-page .scaffold-service-cta .scaffold-btn {
  min-width: 176px;
  box-shadow: 0 14px 28px rgba(44, 17, 90, 0.18);
}

.scaffold-page .scaffold-service-cta .scaffold-btn-primary {
  background: linear-gradient(135deg, #d67a1f, #bc5e0f);
  box-shadow: 0 16px 30px rgba(202, 108, 25, 0.34);
}

.scaffold-page .scaffold-service-btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: #43206f;
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 14px 26px rgba(31, 15, 60, 0.16);
}

@media (max-width: 991px) {
  .scaffold-page .scaffold-service-hero,
  .scaffold-page .scaffold-service-intro-grid,
  .scaffold-page .scaffold-service-types-grid,
  .scaffold-page .scaffold-service-framework,
  .scaffold-page .scaffold-service-framework-list,
  .scaffold-page .scaffold-service-deliverables-grid {
    grid-template-columns: 1fr;
  }

  .scaffold-page .scaffold-service-section-head {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .scaffold-page .scaffold-service-shell {
    padding: 14px 12px 56px;
  }

  .scaffold-page .scaffold-service-hero,
  .scaffold-page .scaffold-service-intro,
  .scaffold-page .scaffold-service-types,
  .scaffold-page .scaffold-service-framework,
  .scaffold-page .scaffold-service-deliverables,
  .scaffold-page .scaffold-service-cta {
    border-radius: 22px;
  }

  .scaffold-page .scaffold-service-framework-list {
    grid-template-columns: 1fr;
  }

  .scaffold-page .scaffold-service-image-wrap,
  .scaffold-page .scaffold-service-image {
    min-height: 300px;
  }

  .scaffold-page .scaffold-btn {
    width: 100%;
  }
}

/* Lifting Tools & Tackles Inspection Page */
.ltt-page {
  --ltt-ink: #000000;
  --ltt-soft: #000000;
  --ltt-primary: #612db0;
  --ltt-primary-deep: #43206f;
  --ltt-accent: #d3721c;
  --ltt-border: rgba(97, 45, 176, 0.12);
  color: var(--ltt-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(97, 45, 176, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfbfd 0%, #f2f4fa 100%);
}

.ltt-page .ltt-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 26px 0 46px;
}

.ltt-page .ltt-kicker,
.ltt-page .ltt-section-label,
.ltt-page .ltt-mini-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgb(95 44 175 / 82%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ltt-page .ltt-hero,
.ltt-page .ltt-intro,
.ltt-page .ltt-items,
.ltt-page .ltt-checks,
.ltt-page .ltt-cta {
  margin-top: 28px;
}

.ltt-page .ltt-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 30px;
  background:
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #241538 0%, #3a2460 48%, #612db0 100%);
  box-shadow: 0 26px 60px rgba(38, 22, 70, 0.18);
}

.ltt-page .ltt-hero-copy {
  max-width: 640px;
  color: #fff;
}

.ltt-page .ltt-hero-copy h1,
.ltt-page .ltt-intro-head h2,
.ltt-page .ltt-section-head h2,
.ltt-page .ltt-checks-copy h2,
.ltt-page .ltt-cta h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.ltt-page .ltt-hero-copy p {
  margin: 16px 0 0;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  line-height: 1.8;
}

.ltt-page .ltt-hero-lead {
  margin-top: 18px;
}

.ltt-page .ltt-hero-highlight {
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 700;
}

.ltt-page .ltt-hero-subcopy {
  color: rgba(255, 255, 255, 0.92);
}

.ltt-page .ltt-hero-actions,
.ltt-page .ltt-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.ltt-page .ltt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.ltt-page .ltt-btn:hover {
  transform: translateY(-2px);
}

.ltt-page .ltt-btn-primary {
  background: linear-gradient(135deg, var(--ltt-accent), #bb6010);
  color: #fff;
  box-shadow: 0 14px 28px rgba(211, 114, 28, 0.28);
}

.ltt-page .ltt-btn-secondary,
.ltt-page .ltt-btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.ltt-page .ltt-btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ltt-primary-deep);
  border-color: rgba(255, 255, 255, 0.42);
}

.ltt-page .ltt-hero-visual {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.ltt-page .ltt-hero-image-wrap {
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 44px rgba(18, 10, 36, 0.26);
}

.ltt-page .ltt-hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.ltt-page .ltt-intro,
.ltt-page .ltt-items,
.ltt-page .ltt-checks {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(235, 229, 243, 0.94);
  box-shadow: 0 16px 40px rgba(41, 23, 74, 0.05);
}

.ltt-page .ltt-intro-head h2,
.ltt-page .ltt-section-head h2,
.ltt-page .ltt-checks-copy h2,
.ltt-page .ltt-cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.08;
}

.ltt-page .ltt-intro-head p,
.ltt-page .ltt-checks-copy p {
  margin: 14px 0 0;
  max-width: 760px;
  color: var(--ltt-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

.ltt-page .ltt-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.ltt-page .ltt-intro-card {
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6f4fb);
  border: 1px solid var(--ltt-border);
}

.ltt-page .ltt-intro-card i {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--ltt-primary);
  font-size: 0.95rem;
}

.ltt-page .ltt-intro-card h3,
.ltt-page .ltt-item-card h3,
.ltt-page .ltt-checks-list h3 {
  margin: 16px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.ltt-page .ltt-intro-card p,
.ltt-page .ltt-item-card p,
.ltt-page .ltt-checks-list p {
  margin: 0;
  color: var(--ltt-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

.ltt-page .ltt-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.ltt-page .ltt-section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--ltt-primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ltt-page .ltt-items-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ltt-page .ltt-item-card {
  min-height: 170px;
  padding: 20px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8f6fc);
  border: 1px solid var(--ltt-border);
}

.ltt-page .ltt-item-card-accent {
  background: linear-gradient(145deg, #612db0, #7b44cb);
  border-color: transparent;
}

.ltt-page .ltt-item-card-accent h3,
.ltt-page .ltt-item-card-accent p {
  color: #fff;
}

.ltt-page .ltt-checks {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.ltt-page .ltt-checks-panel {
  min-height: 420px;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #101d2d 0%, #122438 100%);
  box-shadow: 0 20px 42px rgba(16, 22, 40, 0.18);
  color: #fff;
}

.ltt-page .ltt-checks-panel strong {
  display: block;
  margin-top: 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.6;
}

.ltt-page .ltt-check-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.ltt-page .ltt-check-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 700;
}

.ltt-page .ltt-checks-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.ltt-page .ltt-checks-list article {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: #f8f7fc;
  border: 1px solid rgba(97, 45, 176, 0.08);
}

.ltt-page .ltt-cta {
  padding: clamp(34px, 5vw, 50px);
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(135deg, #6d2bc3 0%, #542092 100%);
  box-shadow: 0 22px 44px rgba(76, 35, 148, 0.16);
}

.ltt-page .ltt-cta p {
  max-width: 640px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.75;
}

.ltt-page .ltt-cta-actions {
  justify-content: center;
}

@media (max-width: 991px) {
  .ltt-page .ltt-hero,
  .ltt-page .ltt-intro-grid,
  .ltt-page .ltt-items-grid,
  .ltt-page .ltt-checks,
  .ltt-page .ltt-checks-list {
    grid-template-columns: 1fr;
  }

  .ltt-page .ltt-section-head {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .ltt-page .ltt-shell {
    padding: 14px 12px 56px;
  }

  .ltt-page .ltt-hero,
  .ltt-page .ltt-intro,
  .ltt-page .ltt-items,
  .ltt-page .ltt-checks,
  .ltt-page .ltt-cta {
    border-radius: 22px;
  }

  .ltt-page .ltt-checks-list {
    grid-template-columns: 1fr;
  }

  .ltt-page .ltt-hero-image-wrap,
  .ltt-page .ltt-hero-image {
    min-height: 300px;
  }

  .ltt-page .ltt-btn {
    width: 100%;
  }
}

/* ISO Certification Page */
.iso-page {
  --iso-ink: #000000;
  --iso-soft: #000000;
  --iso-primary: #612db0;
  --iso-primary-deep: #43206f;
  --iso-accent: #d3721c;
  --iso-border: rgba(97, 45, 176, 0.12);
  color: var(--iso-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(97, 45, 176, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfbfd 0%, #f2f4fa 100%);
}

.iso-page .iso-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 26px 0 46px;
}

.iso-page .iso-kicker,
.iso-page .iso-section-label,
.iso-page .iso-mini-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgb(95 44 175 / 82%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.iso-page .iso-section-label-light {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.iso-page .iso-hero,
.iso-page .iso-intro,
.iso-page .iso-standards,
.iso-page .iso-process,
.iso-page .iso-benefits,
.iso-page .iso-cta {
  margin-top: 28px;
}

.iso-page .iso-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 30px;
  background:
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #241538 0%, #3a2460 48%, #612db0 100%);
  box-shadow: 0 26px 60px rgba(38, 22, 70, 0.18);
}

.iso-page .iso-hero-copy {
  max-width: 640px;
  color: #fff;
}

.iso-page .iso-hero-copy h1,
.iso-page .iso-intro-head h2,
.iso-page .iso-section-head h2,
.iso-page .iso-benefits-copy h2,
.iso-page .iso-cta h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.iso-page .iso-hero-copy p {
  margin: 16px 0 0;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  line-height: 1.8;
}

.iso-page .iso-hero-lead {
  margin-top: 18px;
}

.iso-page .iso-hero-highlight {
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 700;
}

.iso-page .iso-hero-subcopy {
  color: rgba(255, 255, 255, 0.92);
}

.iso-page .iso-hero-actions,
.iso-page .iso-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.iso-page .iso-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.iso-page .iso-btn:hover {
  transform: translateY(-2px);
}

.iso-page .iso-btn-primary {
  background: linear-gradient(135deg, var(--iso-accent), #bb6010);
  color: #fff;
  box-shadow: 0 14px 28px rgba(211, 114, 28, 0.28);
}

.iso-page .iso-btn-secondary,
.iso-page .iso-btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.iso-page .iso-btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--iso-primary-deep);
  border-color: rgba(255, 255, 255, 0.42);
}

.iso-page .iso-hero-visual {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.iso-page .iso-hero-image-wrap {
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  /* border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 44px rgba(18, 10, 36, 0.26); */
}

.iso-page .iso-hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.iso-page .iso-intro,
.iso-page .iso-standards,
.iso-page .iso-process,
.iso-page .iso-benefits {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(235, 229, 243, 0.94);
  box-shadow: 0 16px 40px rgba(41, 23, 74, 0.05);
}

.iso-page .iso-intro-head h2,
.iso-page .iso-section-head h2,
.iso-page .iso-benefits-copy h2,
.iso-page .iso-cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.08;
}

.iso-page .iso-intro-head p,
.iso-page .iso-benefits-copy p,
.iso-page .iso-section-subtitle {
  margin: 14px 0 0;
  max-width: 760px;
  color: var(--iso-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

.iso-page .iso-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.iso-page .iso-intro-card,
.iso-page .iso-standard-card,
.iso-page .iso-process-card {
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6f4fb);
  border: 1px solid var(--iso-border);
}

.iso-page .iso-intro-card i {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--iso-primary);
  font-size: 0.95rem;
}

.iso-page .iso-intro-card h3,
.iso-page .iso-standard-card h3,
.iso-page .iso-process-card h3,
.iso-page .iso-benefits-list h3 {
  margin: 16px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.iso-page .iso-intro-card p,
.iso-page .iso-standard-card p,
.iso-page .iso-process-card p,
.iso-page .iso-benefits-list p {
  margin: 0;
  color: var(--iso-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

.iso-page .iso-intro-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.iso-page .iso-intro-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--iso-ink);
  font-size: 0.88rem;
  line-height: 1.65;
}

.iso-page .iso-intro-list i {
  margin-top: 2px;
  color: var(--iso-primary);
}

.iso-page .iso-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.iso-page .iso-section-copy {
  max-width: 860px;
}

.iso-page .iso-section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--iso-primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.iso-page .iso-standards-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.iso-page .iso-standard-card {
  min-height: 190px;
}

.iso-page .iso-standard-card-accent {
  background: linear-gradient(145deg, #612db0, #7b44cb);
  border-color: transparent;
}

.iso-page .iso-standard-card-accent h3,
.iso-page .iso-standard-card-accent p {
  color: #fff;
}

.iso-page .iso-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.iso-page .iso-process-card {
  min-height: 190px;
}

.iso-page .iso-benefits {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.iso-page .iso-benefits-visual {
  display: flex;
  align-items: stretch;
}

.iso-page .iso-benefits-panel {
  min-height: 420px;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #101d2d 0%, #122438 100%);
  box-shadow: 0 20px 42px rgba(16, 22, 40, 0.18);
  color: #fff;
}

.iso-page .iso-benefits-panel strong {
  display: block;
  margin-top: 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.6;
}

.iso-page .iso-benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.iso-page .iso-benefit-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 700;
}

.iso-page .iso-benefits-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.iso-page .iso-benefits-list article {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: #f8f7fc;
  border: 1px solid rgba(97, 45, 176, 0.08);
}

.iso-page .iso-cta {
  padding: clamp(34px, 5vw, 50px);
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(135deg, #6d2bc3 0%, #542092 100%);
  box-shadow: 0 22px 44px rgba(76, 35, 148, 0.16);
}

.iso-page .iso-cta-copy p {
  max-width: 640px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.75;
}

.iso-page .iso-cta-actions {
  justify-content: center;
}

@media (max-width: 991px) {
  .iso-page .iso-hero,
  .iso-page .iso-intro-grid,
  .iso-page .iso-standards-grid,
  .iso-page .iso-process-grid,
  .iso-page .iso-benefits,
  .iso-page .iso-benefits-list {
    grid-template-columns: 1fr;
  }

  .iso-page .iso-intro-list {
    grid-template-columns: 1fr;
  }

  .iso-page .iso-section-head {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .iso-page .iso-shell {
    padding: 14px 12px 56px;
  }

  .iso-page .iso-hero,
  .iso-page .iso-intro,
  .iso-page .iso-standards,
  .iso-page .iso-process,
  .iso-page .iso-benefits,
  .iso-page .iso-cta {
    border-radius: 22px;
  }

  .iso-page .iso-benefits-list {
    grid-template-columns: 1fr;
  }

  .iso-page .iso-hero-image-wrap,
  .iso-page .iso-hero-image {
    min-height: 300px;
  }

  .iso-page .iso-btn {
    width: 100%;
  }
}

/* Personal Certification Page */
.personal-page {
  --personal-ink: #000000;
  --personal-soft: #000000;
  --personal-primary: #612db0;
  --personal-primary-deep: #43206f;
  --personal-accent: #d3721c;
  --personal-border: rgba(97, 45, 176, 0.12);
  color: var(--personal-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(97, 45, 176, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfbfd 0%, #f2f4fa 100%);
}

.personal-page .personal-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 26px 0 46px;
}

.personal-page .personal-kicker,
.personal-page .personal-section-label,
.personal-page .personal-mini-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgb(95 44 175 / 82%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.personal-page .personal-section-label-light {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.personal-page .personal-hero,
.personal-page .personal-intro,
.personal-page .personal-offerings,
.personal-page .personal-benefits,
.personal-page .personal-cta {
  margin-top: 28px;
}

.personal-page .personal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 30px;
  background:
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #241538 0%, #3a2460 48%, #612db0 100%);
  box-shadow: 0 26px 60px rgba(38, 22, 70, 0.18);
}

.personal-page .personal-hero-copy {
  max-width: 640px;
  color: #fff;
}

.personal-page .personal-hero-copy h1,
.personal-page .personal-intro-head h2,
.personal-page .personal-section-head h2,
.personal-page .personal-benefits-copy h2,
.personal-page .personal-cta h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.personal-page .personal-hero-copy p {
  margin: 16px 0 0;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  line-height: 1.8;
}

.personal-page .personal-hero-lead {
  margin-top: 18px;
}

.personal-page .personal-hero-highlight {
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 700;
}

.personal-page .personal-hero-subcopy {
  color: rgba(255, 255, 255, 0.92);
}

.personal-page .personal-hero-actions,
.personal-page .personal-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.personal-page .personal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.personal-page .personal-btn:hover {
  transform: translateY(-2px);
}

.personal-page .personal-btn-primary {
  background: linear-gradient(135deg, var(--personal-accent), #bb6010);
  color: #fff;
  box-shadow: 0 14px 28px rgba(211, 114, 28, 0.28);
}

.personal-page .personal-btn-secondary,
.personal-page .personal-btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.personal-page .personal-btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--personal-primary-deep);
  border-color: rgba(255, 255, 255, 0.42);
}

.personal-page .personal-hero-visual,
.personal-page .personal-benefits-visual {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.personal-page .personal-hero-image-wrap {
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 44px rgba(18, 10, 36, 0.26);
}

.personal-page .personal-hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.personal-page .personal-intro,
.personal-page .personal-offerings,
.personal-page .personal-benefits {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(235, 229, 243, 0.94);
  box-shadow: 0 16px 40px rgba(41, 23, 74, 0.05);
}

.personal-page .personal-intro-head h2,
.personal-page .personal-section-head h2,
.personal-page .personal-benefits-copy h2,
.personal-page .personal-cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.08;
}

.personal-page .personal-intro-head p,
.personal-page .personal-benefits-copy p,
.personal-page .personal-section-subtitle {
  margin: 14px 0 0;
  max-width: 760px;
  color: var(--personal-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

.personal-page .personal-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.personal-page .personal-intro-card,
.personal-page .personal-offering-card {
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6f4fb);
  border: 1px solid var(--personal-border);
}

.personal-page .personal-intro-card i {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--personal-primary);
  font-size: 0.95rem;
}

.personal-page .personal-intro-card h3,
.personal-page .personal-offering-card h3,
.personal-page .personal-benefits-list h3 {
  margin: 16px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.personal-page .personal-intro-card p,
.personal-page .personal-offering-card p,
.personal-page .personal-benefits-list p {
  margin: 0;
  color: var(--personal-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

.personal-page .personal-intro-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.personal-page .personal-intro-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--personal-ink);
  font-size: 0.88rem;
  line-height: 1.65;
}

.personal-page .personal-intro-list i {
  margin-top: 2px;
  color: var(--personal-primary);
}

.personal-page .personal-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.personal-page .personal-section-copy {
  max-width: 860px;
}

.personal-page .personal-section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--personal-primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.personal-page .personal-offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.personal-page .personal-offering-card {
  min-height: 190px;
}

.personal-page .personal-offering-card-accent {
  background: linear-gradient(145deg, #612db0, #7b44cb);
  border-color: transparent;
}

.personal-page .personal-offering-card-accent h3,
.personal-page .personal-offering-card-accent p {
  color: #fff;
}

.personal-page .personal-benefits {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.personal-page .personal-benefits-panel {
  min-height: 420px;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #101d2d 0%, #122438 100%);
  box-shadow: 0 20px 42px rgba(16, 22, 40, 0.18);
  color: #fff;
}

.personal-page .personal-benefits-panel strong {
  display: block;
  margin-top: 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.6;
}

.personal-page .personal-benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.personal-page .personal-benefit-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 700;
}

.personal-page .personal-benefits-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.personal-page .personal-benefits-list article {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: #f8f7fc;
  border: 1px solid rgba(97, 45, 176, 0.08);
}

.personal-page .personal-cta {
  padding: clamp(34px, 5vw, 50px);
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(135deg, #6d2bc3 0%, #542092 100%);
  box-shadow: 0 22px 44px rgba(76, 35, 148, 0.16);
}

.personal-page .personal-cta-copy p {
  max-width: 640px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.75;
}

.personal-page .personal-cta-actions {
  justify-content: center;
}

@media (max-width: 991px) {
  .personal-page .personal-hero,
  .personal-page .personal-intro-grid,
  .personal-page .personal-offerings-grid,
  .personal-page .personal-benefits,
  .personal-page .personal-benefits-list {
    grid-template-columns: 1fr;
  }

  .personal-page .personal-intro-list {
    grid-template-columns: 1fr;
  }

  .personal-page .personal-section-head {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .personal-page .personal-shell {
    padding: 14px 12px 56px;
  }

  .personal-page .personal-hero,
  .personal-page .personal-intro,
  .personal-page .personal-offerings,
  .personal-page .personal-benefits,
  .personal-page .personal-cta {
    border-radius: 22px;
  }

  .personal-page .personal-benefits-list {
    grid-template-columns: 1fr;
  }

  .personal-page .personal-hero-image-wrap,
  .personal-page .personal-hero-image {
    min-height: 300px;
  }

  .personal-page .personal-btn {
    width: 100%;
  }
}

/* Asset Valuation Certification Page */
.asset-page {
  --asset-ink: #000000;
  --asset-soft: #000000;
  --asset-primary: #612db0;
  --asset-primary-deep: #43206f;
  --asset-accent: #d3721c;
  --asset-border: rgba(97, 45, 176, 0.12);
  color: var(--asset-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(97, 45, 176, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfbfd 0%, #f2f4fa 100%);
}

.asset-page .asset-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 26px 0 46px;
}

.asset-page .asset-kicker,
.asset-page .asset-section-label,
.asset-page .asset-mini-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgb(95 44 175 / 82%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.asset-page .asset-section-label-light {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.asset-page .asset-hero,
.asset-page .asset-intro,
.asset-page .asset-assets,
.asset-page .asset-bases,
.asset-page .asset-deliverables,
.asset-page .asset-cta {
  margin-top: 28px;
}

.asset-page .asset-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 30px;
  background:
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #241538 0%, #3a2460 48%, #612db0 100%);
  box-shadow: 0 26px 60px rgba(38, 22, 70, 0.18);
}

.asset-page .asset-hero-copy {
  max-width: 640px;
  color: #fff;
}

.asset-page .asset-hero-copy h1,
.asset-page .asset-intro-head h2,
.asset-page .asset-section-head h2,
.asset-page .asset-bases-copy h2,
.asset-page .asset-cta h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.asset-page .asset-hero-copy p {
  margin: 16px 0 0;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  line-height: 1.8;
}

.asset-page .asset-hero-lead {
  margin-top: 18px;
}

.asset-page .asset-hero-highlight {
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 700;
}

.asset-page .asset-hero-subcopy {
  color: rgba(255, 255, 255, 0.92);
}

.asset-page .asset-hero-actions,
.asset-page .asset-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.asset-page .asset-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.asset-page .asset-btn:hover {
  transform: translateY(-2px);
}

.asset-page .asset-btn-primary {
  background: linear-gradient(135deg, var(--asset-accent), #bb6010);
  color: #fff;
  box-shadow: 0 14px 28px rgba(211, 114, 28, 0.28);
}

.asset-page .asset-btn-secondary,
.asset-page .asset-btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.asset-page .asset-btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--asset-primary-deep);
  border-color: rgba(255, 255, 255, 0.42);
}

.asset-page .asset-hero-visual,
.asset-page .asset-bases-visual {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.asset-page .asset-hero-image-wrap {
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 44px rgba(18, 10, 36, 0.26);
}

.asset-page .asset-hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.asset-page .asset-intro,
.asset-page .asset-assets,
.asset-page .asset-bases,
.asset-page .asset-deliverables {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(235, 229, 243, 0.94);
  box-shadow: 0 16px 40px rgba(41, 23, 74, 0.05);
}

.asset-page .asset-intro-head h2,
.asset-page .asset-section-head h2,
.asset-page .asset-bases-copy h2,
.asset-page .asset-cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.08;
}

.asset-page .asset-intro-head p,
.asset-page .asset-bases-copy p,
.asset-page .asset-section-subtitle {
  margin: 14px 0 0;
  max-width: 760px;
  color: var(--asset-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

.asset-page .asset-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.asset-page .asset-intro-card,
.asset-page .asset-item-card,
.asset-page .asset-deliverable-card {
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6f4fb);
  border: 1px solid var(--asset-border);
}

.asset-page .asset-intro-card i {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--asset-primary);
  font-size: 0.95rem;
}

.asset-page .asset-intro-card h3,
.asset-page .asset-item-card h3,
.asset-page .asset-bases-list h3,
.asset-page .asset-deliverable-card h3 {
  margin: 16px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.asset-page .asset-intro-card p,
.asset-page .asset-item-card p,
.asset-page .asset-bases-list p,
.asset-page .asset-deliverable-card p {
  margin: 0;
  color: var(--asset-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

.asset-page .asset-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.asset-page .asset-section-copy {
  max-width: 860px;
}

.asset-page .asset-section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--asset-primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.asset-page .asset-assets-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.asset-page .asset-item-card {
  min-height: 190px;
}

.asset-page .asset-item-card-accent {
  background: linear-gradient(145deg, #612db0, #7b44cb);
  border-color: transparent;
}

.asset-page .asset-item-card-accent h3,
.asset-page .asset-item-card-accent p {
  color: #fff;
}

.asset-page .asset-bases {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.asset-page .asset-bases-panel {
  min-height: 420px;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #101d2d 0%, #122438 100%);
  box-shadow: 0 20px 42px rgba(16, 22, 40, 0.18);
  color: #fff;
}

.asset-page .asset-bases-panel strong {
  display: block;
  margin-top: 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.6;
}

.asset-page .asset-basis-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.asset-page .asset-basis-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 700;
}

.asset-page .asset-bases-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.asset-page .asset-bases-list article {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: #f8f7fc;
  border: 1px solid rgba(97, 45, 176, 0.08);
}

.asset-page .asset-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.asset-page .asset-deliverable-card {
  min-height: 180px;
}

.asset-page .asset-deliverable-card-accent {
  background: linear-gradient(145deg, #612db0, #7b44cb);
  border-color: transparent;
}

.asset-page .asset-deliverable-card-accent h3,
.asset-page .asset-deliverable-card-accent p {
  color: #fff;
}

.asset-page .asset-cta {
  padding: clamp(34px, 5vw, 50px);
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(135deg, #6d2bc3 0%, #542092 100%);
  box-shadow: 0 22px 44px rgba(76, 35, 148, 0.16);
}

.asset-page .asset-cta-copy p {
  max-width: 640px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.75;
}

.asset-page .asset-cta-actions {
  justify-content: center;
}

@media (max-width: 991px) {
  .asset-page .asset-hero,
  .asset-page .asset-intro-grid,
  .asset-page .asset-assets-grid,
  .asset-page .asset-bases,
  .asset-page .asset-bases-list,
  .asset-page .asset-deliverables-grid {
    grid-template-columns: 1fr;
  }

  .asset-page .asset-section-head {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .asset-page .asset-shell {
    padding: 14px 12px 56px;
  }

  .asset-page .asset-hero,
  .asset-page .asset-intro,
  .asset-page .asset-assets,
  .asset-page .asset-bases,
  .asset-page .asset-deliverables,
  .asset-page .asset-cta {
    border-radius: 22px;
  }

  .asset-page .asset-bases-list,
  .asset-page .asset-deliverables-grid {
    grid-template-columns: 1fr;
  }

  .asset-page .asset-hero-image-wrap,
  .asset-page .asset-hero-image {
    min-height: 300px;
  }

  .asset-page .asset-btn {
    width: 100%;
  }
}

/* Batching Plant Audit Page */
.batching-page {
  --batching-ink: #000000;
  --batching-soft: #000000;
  --batching-primary: #612db0;
  --batching-primary-deep: #43206f;
  --batching-accent: #d3721c;
  --batching-border: rgba(97, 45, 176, 0.12);
  color: var(--batching-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(97, 45, 176, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfbfd 0%, #f2f4fa 100%);
}

.batching-page .batching-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 26px 0 46px;
}

.batching-page .batching-kicker,
.batching-page .batching-section-label,
.batching-page .batching-mini-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgb(95 44 175 / 82%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.batching-page .batching-section-label-light {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.batching-page .batching-hero,
.batching-page .batching-intro,
.batching-page .batching-scope,
.batching-page .batching-timing,
.batching-page .batching-cta {
  margin-top: 28px;
}

.batching-page .batching-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 30px;
  background:
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #241538 0%, #3a2460 48%, #612db0 100%);
  box-shadow: 0 26px 60px rgba(38, 22, 70, 0.18);
}

.batching-page .batching-hero-copy {
  max-width: 640px;
  color: #fff;
}

.batching-page .batching-hero-copy h1,
.batching-page .batching-intro-head h2,
.batching-page .batching-section-head h2,
.batching-page .batching-timing-copy h2,
.batching-page .batching-cta h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.batching-page .batching-hero-copy p {
  margin: 16px 0 0;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  line-height: 1.8;
}

.batching-page .batching-hero-lead {
  margin-top: 18px;
}

.batching-page .batching-hero-highlight {
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 700;
}

.batching-page .batching-hero-subcopy {
  color: rgba(255, 255, 255, 0.92);
}

.batching-page .batching-hero-actions,
.batching-page .batching-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.batching-page .batching-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.batching-page .batching-btn:hover {
  transform: translateY(-2px);
}

.batching-page .batching-btn-primary {
  background: linear-gradient(135deg, var(--batching-accent), #bb6010);
  color: #fff;
  box-shadow: 0 14px 28px rgba(211, 114, 28, 0.28);
}

.batching-page .batching-btn-secondary,
.batching-page .batching-btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.batching-page .batching-btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--batching-primary-deep);
  border-color: rgba(255, 255, 255, 0.42);
}

.batching-page .batching-hero-visual,
.batching-page .batching-timing-visual {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.batching-page .batching-hero-image-wrap {
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 44px rgba(18, 10, 36, 0.26);
}

.batching-page .batching-hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.batching-page .batching-intro,
.batching-page .batching-scope,
.batching-page .batching-timing {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(235, 229, 243, 0.94);
  box-shadow: 0 16px 40px rgba(41, 23, 74, 0.05);
}

.batching-page .batching-intro-head h2,
.batching-page .batching-section-head h2,
.batching-page .batching-timing-copy h2,
.batching-page .batching-cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.08;
}

.batching-page .batching-intro-head p,
.batching-page .batching-timing-copy p,
.batching-page .batching-section-subtitle {
  margin: 14px 0 0;
  max-width: 760px;
  color: var(--batching-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

.batching-page .batching-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.batching-page .batching-intro-card,
.batching-page .batching-scope-card {
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6f4fb);
  border: 1px solid var(--batching-border);
}

.batching-page .batching-intro-card i {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--batching-primary);
  font-size: 0.95rem;
}

.batching-page .batching-intro-card h3,
.batching-page .batching-scope-card h3,
.batching-page .batching-timing-list h3 {
  margin: 16px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.batching-page .batching-intro-card p,
.batching-page .batching-scope-card p,
.batching-page .batching-timing-list p {
  margin: 0;
  color: var(--batching-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

.batching-page .batching-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.batching-page .batching-section-copy {
  max-width: 860px;
}

.batching-page .batching-section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--batching-primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.batching-page .batching-scope-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.batching-page .batching-scope-card {
  min-height: 190px;
}

.batching-page .batching-scope-card-accent {
  background: linear-gradient(145deg, #612db0, #7b44cb);
  border-color: transparent;
}

.batching-page .batching-scope-card-accent h3,
.batching-page .batching-scope-card-accent p {
  color: #fff;
}

.batching-page .batching-timing {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.batching-page .batching-timing-panel {
  min-height: 420px;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #101d2d 0%, #122438 100%);
  box-shadow: 0 20px 42px rgba(16, 22, 40, 0.18);
  color: #fff;
}

.batching-page .batching-timing-panel strong {
  display: block;
  margin-top: 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.6;
}

.batching-page .batching-timing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.batching-page .batching-timing-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 700;
}

.batching-page .batching-timing-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.batching-page .batching-timing-list article {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: #f8f7fc;
  border: 1px solid rgba(97, 45, 176, 0.08);
}

.batching-page .batching-cta {
  padding: clamp(34px, 5vw, 50px);
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(135deg, #6d2bc3 0%, #542092 100%);
  box-shadow: 0 22px 44px rgba(76, 35, 148, 0.16);
}

.batching-page .batching-cta-copy p {
  max-width: 640px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.75;
}

.batching-page .batching-cta-actions {
  justify-content: center;
}

@media (max-width: 991px) {
  .batching-page .batching-hero,
  .batching-page .batching-intro-grid,
  .batching-page .batching-scope-grid,
  .batching-page .batching-timing,
  .batching-page .batching-timing-list {
    grid-template-columns: 1fr;
  }

  .batching-page .batching-section-head {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .batching-page .batching-shell {
    padding: 14px 12px 56px;
  }

  .batching-page .batching-hero,
  .batching-page .batching-intro,
  .batching-page .batching-scope,
  .batching-page .batching-timing,
  .batching-page .batching-cta {
    border-radius: 22px;
  }

  .batching-page .batching-timing-list {
    grid-template-columns: 1fr;
  }

  .batching-page .batching-hero-image-wrap,
  .batching-page .batching-hero-image {
    min-height: 300px;
  }

  .batching-page .batching-btn {
    width: 100%;
  }
}

/* SHE Audit Page */
.she-page {
  --she-ink: #000000;
  --she-soft: #000000;
  --she-primary: #612db0;
  --she-primary-deep: #43206f;
  --she-accent: #d3721c;
  --she-border: rgba(97, 45, 176, 0.12);
  color: var(--she-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(97, 45, 176, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfbfd 0%, #f2f4fa 100%);
}

.she-page .she-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 26px 0 46px;
}

.she-page .she-kicker,
.she-page .she-section-label,
.she-page .she-mini-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgb(95 44 175 / 82%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.she-page .she-section-label-light {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.she-page .she-hero,
.she-page .she-intro,
.she-page .she-scope,
.she-page .she-industries,
.she-page .she-outcomes,
.she-page .she-cta {
  margin-top: 28px;
}

.she-page .she-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 30px;
  background:
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #241538 0%, #3a2460 48%, #612db0 100%);
  box-shadow: 0 26px 60px rgba(38, 22, 70, 0.18);
}

.she-page .she-hero-copy {
  max-width: 640px;
  color: #fff;
}

.she-page .she-hero-copy h1,
.she-page .she-intro-head h2,
.she-page .she-section-head h2,
.she-page .she-industries-copy h2,
.she-page .she-cta h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.she-page .she-hero-copy p {
  margin: 16px 0 0;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  line-height: 1.8;
}

.she-page .she-hero-lead {
  margin-top: 18px;
}

.she-page .she-hero-highlight {
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 700;
}

.she-page .she-hero-subcopy {
  color: rgba(255, 255, 255, 0.92);
}

.she-page .she-hero-actions,
.she-page .she-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.she-page .she-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.she-page .she-btn:hover {
  transform: translateY(-2px);
}

.she-page .she-btn-primary {
  background: linear-gradient(135deg, var(--she-accent), #bb6010);
  color: #fff;
  box-shadow: 0 14px 28px rgba(211, 114, 28, 0.28);
}

.she-page .she-btn-secondary,
.she-page .she-btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.she-page .she-btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--she-primary-deep);
  border-color: rgba(255, 255, 255, 0.42);
}

.she-page .she-hero-visual,
.she-page .she-industries-visual {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.she-page .she-hero-image-wrap {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  /* border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 44px rgba(18, 10, 36, 0.26); */
}

.she-page .she-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.she-page .she-intro,
.she-page .she-scope,
.she-page .she-industries,
.she-page .she-outcomes {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(235, 229, 243, 0.94);
  box-shadow: 0 16px 40px rgba(41, 23, 74, 0.05);
}

.she-page .she-intro-head h2,
.she-page .she-section-head h2,
.she-page .she-industries-copy h2,
.she-page .she-cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.08;
}

.she-page .she-intro-head p,
.she-page .she-industries-copy p,
.she-page .she-section-subtitle {
  margin: 14px 0 0;
  max-width: 760px;
  color: var(--she-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

.she-page .she-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.she-page .she-intro-card,
.she-page .she-scope-card,
.she-page .she-outcome-card {
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6f4fb);
  border: 1px solid var(--she-border);
}

.she-page .she-intro-card i {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--she-primary);
  font-size: 0.95rem;
}

.she-page .she-intro-card h3,
.she-page .she-scope-card h3,
.she-page .she-industries-list h3,
.she-page .she-outcome-card h3 {
  margin: 16px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.she-page .she-intro-card p,
.she-page .she-scope-card p,
.she-page .she-industries-list p,
.she-page .she-outcome-card p {
  margin: 0;
  color: var(--she-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

.she-page .she-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.she-page .she-section-copy {
  max-width: 860px;
}

.she-page .she-section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--she-primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.she-page .she-scope-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.she-page .she-scope-card {
  min-height: 190px;
}

.she-page .she-scope-card-accent {
  background: linear-gradient(145deg, #612db0, #7b44cb);
  border-color: transparent;
}

.she-page .she-scope-card-accent h3,
.she-page .she-scope-card-accent p {
  color: #fff;
}

.she-page .she-industries {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.she-page .she-industries-panel {
  min-height: 420px;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #101d2d 0%, #122438 100%);
  box-shadow: 0 20px 42px rgba(16, 22, 40, 0.18);
  color: #fff;
}

.she-page .she-industries-panel strong {
  display: block;
  margin-top: 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.6;
}

.she-page .she-industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.she-page .she-industry-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 700;
}

.she-page .she-industries-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.she-page .she-industries-list article {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: #f8f7fc;
  border: 1px solid rgba(97, 45, 176, 0.08);
}

.she-page .she-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.she-page .she-outcome-card {
  min-height: 180px;
}

.she-page .she-outcome-card-accent {
  background: linear-gradient(145deg, #612db0, #7b44cb);
  border-color: transparent;
}

.she-page .she-outcome-card-accent h3,
.she-page .she-outcome-card-accent p {
  color: #fff;
}

.she-page .she-cta {
  padding: clamp(34px, 5vw, 50px);
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(135deg, #6d2bc3 0%, #542092 100%);
  box-shadow: 0 22px 44px rgba(76, 35, 148, 0.16);
}

.she-page .she-cta-copy p {
  max-width: 640px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.75;
}

.she-page .she-cta-actions {
  justify-content: center;
}

@media (max-width: 991px) {
  .she-page .she-hero,
  .she-page .she-intro-grid,
  .she-page .she-scope-grid,
  .she-page .she-industries,
  .she-page .she-industries-list,
  .she-page .she-outcomes-grid {
    grid-template-columns: 1fr;
  }

  .she-page .she-section-head {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .she-page .she-shell {
    padding: 14px 12px 56px;
  }

  .she-page .she-hero,
  .she-page .she-intro,
  .she-page .she-scope,
  .she-page .she-industries,
  .she-page .she-outcomes,
  .she-page .she-cta {
    border-radius: 22px;
  }

  .she-page .she-industries-list,
  .she-page .she-outcomes-grid {
    grid-template-columns: 1fr;
  }

  .she-page .she-hero-image-wrap,
  .she-page .she-hero-image {
    min-height: 300px;
  }

  .she-page .she-btn {
    width: 100%;
  }
}

/* Structural Audit Page */
.structural-page {
  --structural-ink: #000000;
  --structural-soft: #000000;
  --structural-primary: #612db0;
  --structural-primary-deep: #43206f;
  --structural-accent: #d3721c;
  --structural-border: rgba(97, 45, 176, 0.12);
  color: var(--structural-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(97, 45, 176, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfbfd 0%, #f2f4fa 100%);
}

.structural-page .structural-shell {
  max-width: 90vw;
  margin: 0 auto;
 padding: 26px 0 46px;
}

.structural-page .structural-kicker,
.structural-page .structural-section-label,
.structural-page .structural-mini-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgb(95 44 175 / 82%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.structural-page .structural-section-label-light {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.structural-page .structural-hero,
.structural-page .structural-intro,
.structural-page .structural-assets,
.structural-page .structural-ndt,
.structural-page .structural-cta {
  margin-top: 28px;
}

.structural-page .structural-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 30px;
  background:
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #241538 0%, #3a2460 48%, #612db0 100%);
  box-shadow: 0 26px 60px rgba(38, 22, 70, 0.18);
}

.structural-page .structural-hero-copy {
  max-width: 640px;
  color: #fff;
}

.structural-page .structural-hero-copy h1,
.structural-page .structural-intro-head h2,
.structural-page .structural-section-head h2,
.structural-page .structural-ndt-copy h2,
.structural-page .structural-cta h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.structural-page .structural-hero-copy p {
  margin: 16px 0 0;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  line-height: 1.8;
}

.structural-page .structural-hero-lead {
  margin-top: 18px;
}

.structural-page .structural-hero-highlight {
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 700;
}

.structural-page .structural-hero-subcopy {
  color: rgba(255, 255, 255, 0.92);
}

.structural-page .structural-hero-actions,
.structural-page .structural-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.structural-page .structural-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.structural-page .structural-btn:hover {
  transform: translateY(-2px);
}

.structural-page .structural-btn-primary {
  background: linear-gradient(135deg, var(--structural-accent), #bb6010);
  color: #fff;
  box-shadow: 0 14px 28px rgba(211, 114, 28, 0.28);
}

.structural-page .structural-btn-secondary,
.structural-page .structural-btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.structural-page .structural-btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--structural-primary-deep);
  border-color: rgba(255, 255, 255, 0.42);
}

.structural-page .structural-hero-visual,
.structural-page .structural-ndt-visual {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.structural-page .structural-hero-image-wrap {
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  /* border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 44px rgba(18, 10, 36, 0.26); */
}

.structural-page .structural-hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.structural-page .structural-intro,
.structural-page .structural-assets,
.structural-page .structural-ndt {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(235, 229, 243, 0.94);
  box-shadow: 0 16px 40px rgba(41, 23, 74, 0.05);
}

.structural-page .structural-intro-head h2,
.structural-page .structural-section-head h2,
.structural-page .structural-ndt-copy h2,
.structural-page .structural-cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.08;
}

.structural-page .structural-intro-head p,
.structural-page .structural-ndt-copy p,
.structural-page .structural-section-subtitle {
  margin: 14px 0 0;
  max-width: 760px;
  color: var(--structural-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

.structural-page .structural-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.structural-page .structural-intro-card,
.structural-page .structural-asset-card {
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6f4fb);
  border: 1px solid var(--structural-border);
}

.structural-page .structural-intro-card i {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--structural-primary);
  font-size: 0.95rem;
}

.structural-page .structural-intro-card h3,
.structural-page .structural-asset-card h3,
.structural-page .structural-ndt-list h3 {
  margin: 16px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.structural-page .structural-intro-card p,
.structural-page .structural-asset-card p,
.structural-page .structural-ndt-list p {
  margin: 0;
  color: var(--structural-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

.structural-page .structural-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.structural-page .structural-section-copy {
  max-width: 860px;
}

.structural-page .structural-section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--structural-primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.structural-page .structural-assets-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.structural-page .structural-asset-card {
  min-height: 190px;
}

.structural-page .structural-asset-card-accent {
  background: linear-gradient(145deg, #612db0, #7b44cb);
  border-color: transparent;
}

.structural-page .structural-asset-card-accent h3,
.structural-page .structural-asset-card-accent p {
  color: #fff;
}

.structural-page .structural-ndt {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.structural-page .structural-ndt-panel {
  min-height: 420px;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #101d2d 0%, #122438 100%);
  box-shadow: 0 20px 42px rgba(16, 22, 40, 0.18);
  color: #fff;
}

.structural-page .structural-ndt-panel strong {
  display: block;
  margin-top: 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.6;
}

.structural-page .structural-ndt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.structural-page .structural-ndt-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 700;
}

.structural-page .structural-ndt-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.structural-page .structural-ndt-list article {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: #f8f7fc;
  border: 1px solid rgba(97, 45, 176, 0.08);
}

.structural-page .structural-cta {
  padding: clamp(34px, 5vw, 50px);
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(135deg, #6d2bc3 0%, #542092 100%);
  box-shadow: 0 22px 44px rgba(76, 35, 148, 0.16);
}

.structural-page .structural-cta-copy p {
  max-width: 640px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.75;
}

.structural-page .structural-cta-actions {
  justify-content: center;
}

@media (max-width: 991px) {
  .structural-page .structural-hero,
  .structural-page .structural-intro-grid,
  .structural-page .structural-assets-grid,
  .structural-page .structural-ndt,
  .structural-page .structural-ndt-list {
    grid-template-columns: 1fr;
  }

  .structural-page .structural-section-head {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .structural-page .structural-shell {
    padding: 14px 12px 56px;
  }

  .structural-page .structural-hero,
  .structural-page .structural-intro,
  .structural-page .structural-assets,
  .structural-page .structural-ndt,
  .structural-page .structural-cta {
    border-radius: 22px;
  }

  .structural-page .structural-ndt-list {
    grid-template-columns: 1fr;
  }

  .structural-page .structural-hero-image-wrap,
  .structural-page .structural-hero-image {
    min-height: 300px;
  }

  .structural-page .structural-btn {
    width: 100%;
  }
}

/* Electrical Audit Page */
.electrical-page {
  --electrical-ink: #000000;
  --electrical-soft: #000000;
  --electrical-primary: #612db0;
  --electrical-primary-deep: #43206f;
  --electrical-accent: #d3721c;
  --electrical-border: rgba(97, 45, 176, 0.12);
  color: var(--electrical-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(97, 45, 176, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfbfd 0%, #f2f4fa 100%);
}

.electrical-page .electrical-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 26px 0 46px;
}

.electrical-page .electrical-kicker,
.electrical-page .electrical-section-label,
.electrical-page .electrical-mini-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgb(95 44 175 / 82%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.electrical-page .electrical-section-label-light {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.electrical-page .electrical-hero,
.electrical-page .electrical-intro,
.electrical-page .electrical-scope,
.electrical-page .electrical-benefits,
.electrical-page .electrical-cta {
  margin-top: 28px;
}

.electrical-page .electrical-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 30px;
  background:
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #241538 0%, #3a2460 48%, #612db0 100%);
  box-shadow: 0 26px 60px rgba(38, 22, 70, 0.18);
}

.electrical-page .electrical-hero-copy {
  max-width: 640px;
  color: #fff;
}

.electrical-page .electrical-hero-copy h1,
.electrical-page .electrical-intro-head h2,
.electrical-page .electrical-section-head h2,
.electrical-page .electrical-benefits-copy h2,
.electrical-page .electrical-cta h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.electrical-page .electrical-hero-copy p {
  margin: 16px 0 0;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  line-height: 1.8;
}

.electrical-page .electrical-hero-lead {
  margin-top: 18px;
}

.electrical-page .electrical-hero-highlight {
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 700;
}

.electrical-page .electrical-hero-subcopy {
  color: rgba(255, 255, 255, 0.92);
}

.electrical-page .electrical-hero-actions,
.electrical-page .electrical-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.electrical-page .electrical-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.electrical-page .electrical-btn:hover {
  transform: translateY(-2px);
}

.electrical-page .electrical-btn-primary {
  background: linear-gradient(135deg, var(--electrical-accent), #bb6010);
  color: #fff;
  box-shadow: 0 14px 28px rgba(211, 114, 28, 0.28);
}

.electrical-page .electrical-btn-secondary,
.electrical-page .electrical-btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.electrical-page .electrical-btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--electrical-primary-deep);
  border-color: rgba(255, 255, 255, 0.42);
}

.electrical-page .electrical-hero-visual,
.electrical-page .electrical-benefits-visual {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.electrical-page .electrical-hero-image-wrap {
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 44px rgba(18, 10, 36, 0.26);
}

.electrical-page .electrical-hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.electrical-page .electrical-intro,
.electrical-page .electrical-scope,
.electrical-page .electrical-benefits {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(235, 229, 243, 0.94);
  box-shadow: 0 16px 40px rgba(41, 23, 74, 0.05);
}

.electrical-page .electrical-intro-head h2,
.electrical-page .electrical-section-head h2,
.electrical-page .electrical-benefits-copy h2,
.electrical-page .electrical-cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.08;
}

.electrical-page .electrical-intro-head p,
.electrical-page .electrical-benefits-copy p,
.electrical-page .electrical-section-subtitle {
  margin: 14px 0 0;
  max-width: 760px;
  color: var(--electrical-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

.electrical-page .electrical-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.electrical-page .electrical-intro-card,
.electrical-page .electrical-scope-card {
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6f4fb);
  border: 1px solid var(--electrical-border);
}

.electrical-page .electrical-intro-card i {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--electrical-primary);
  font-size: 0.95rem;
}

.electrical-page .electrical-intro-card h3,
.electrical-page .electrical-scope-card h3,
.electrical-page .electrical-benefits-list h3 {
  margin: 16px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.electrical-page .electrical-intro-card p,
.electrical-page .electrical-scope-card p,
.electrical-page .electrical-benefits-list p {
  margin: 0;
  color: var(--electrical-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

.electrical-page .electrical-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.electrical-page .electrical-section-copy {
  max-width: 860px;
}

.electrical-page .electrical-section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--electrical-primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.electrical-page .electrical-scope-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.electrical-page .electrical-scope-card {
  min-height: 190px;
}

.electrical-page .electrical-scope-card-accent {
  background: linear-gradient(145deg, #612db0, #7b44cb);
  border-color: transparent;
}

.electrical-page .electrical-scope-card-accent h3,
.electrical-page .electrical-scope-card-accent p {
  color: #fff;
}

.electrical-page .electrical-benefits {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.electrical-page .electrical-benefits-panel {
  min-height: 420px;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #101d2d 0%, #122438 100%);
  box-shadow: 0 20px 42px rgba(16, 22, 40, 0.18);
  color: #fff;
}

.electrical-page .electrical-benefits-panel strong {
  display: block;
  margin-top: 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.6;
}

.electrical-page .electrical-benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.electrical-page .electrical-benefit-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 700;
}

.electrical-page .electrical-benefits-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.electrical-page .electrical-benefits-list article {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: #f8f7fc;
  border: 1px solid rgba(97, 45, 176, 0.08);
}

.electrical-page .electrical-cta {
  padding: clamp(34px, 5vw, 50px);
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(135deg, #6d2bc3 0%, #542092 100%);
  box-shadow: 0 22px 44px rgba(76, 35, 148, 0.16);
}

.electrical-page .electrical-cta-copy p {
  max-width: 640px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.75;
}

.electrical-page .electrical-cta-actions {
  justify-content: center;
}

@media (max-width: 991px) {
  .electrical-page .electrical-hero,
  .electrical-page .electrical-intro-grid,
  .electrical-page .electrical-scope-grid,
  .electrical-page .electrical-benefits,
  .electrical-page .electrical-benefits-list {
    grid-template-columns: 1fr;
  }

  .electrical-page .electrical-section-head {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .electrical-page .electrical-shell {
    padding: 14px 12px 56px;
  }

  .electrical-page .electrical-hero,
  .electrical-page .electrical-intro,
  .electrical-page .electrical-scope,
  .electrical-page .electrical-benefits,
  .electrical-page .electrical-cta {
    border-radius: 22px;
  }

  .electrical-page .electrical-benefits-list {
    grid-template-columns: 1fr;
  }

  .electrical-page .electrical-hero-image-wrap,
  .electrical-page .electrical-hero-image {
    min-height: 300px;
  }

  .electrical-page .electrical-btn {
    width: 100%;
  }
}

/* Fire Audit Page */
.fire-page {
  --fire-ink: #000000;
  --fire-soft: #000000;
  --fire-primary: #612db0;
  --fire-primary-deep: #43206f;
  --fire-accent: #d3721c;
  --fire-border: rgba(97, 45, 176, 0.12);
  color: var(--fire-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(97, 45, 176, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfbfd 0%, #f2f4fa 100%);
}

.fire-page .fire-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 26px 0 46px;
}

.fire-page .fire-kicker,
.fire-page .fire-section-label,
.fire-page .fire-mini-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgb(95 44 175 / 82%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fire-page .fire-section-label-light {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.fire-page .fire-hero,
.fire-page .fire-intro,
.fire-page .fire-scope,
.fire-page .fire-compliance,
.fire-page .fire-industries,
.fire-page .fire-cta {
  margin-top: 28px;
}

.fire-page .fire-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 30px;
  background:
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #241538 0%, #3a2460 48%, #612db0 100%);
  box-shadow: 0 26px 60px rgba(38, 22, 70, 0.18);
}

.fire-page .fire-hero-copy {
  max-width: 640px;
  color: #fff;
}

.fire-page .fire-hero-copy h1,
.fire-page .fire-intro-head h2,
.fire-page .fire-section-head h2,
.fire-page .fire-compliance-copy h2,
.fire-page .fire-cta h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.fire-page .fire-hero-copy p {
  margin: 16px 0 0;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  line-height: 1.8;
}

.fire-page .fire-hero-lead {
  margin-top: 18px;
}

.fire-page .fire-hero-highlight {
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 700;
}

.fire-page .fire-hero-subcopy {
  color: rgba(255, 255, 255, 0.92);
}

.fire-page .fire-hero-actions,
.fire-page .fire-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.fire-page .fire-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.fire-page .fire-btn:hover {
  transform: translateY(-2px);
}

.fire-page .fire-btn-primary {
  background: linear-gradient(135deg, var(--fire-accent), #bb6010);
  color: #fff;
  box-shadow: 0 14px 28px rgba(211, 114, 28, 0.28);
}

.fire-page .fire-btn-secondary,
.fire-page .fire-btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.fire-page .fire-btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--fire-primary-deep);
  border-color: rgba(255, 255, 255, 0.42);
}

.fire-page .fire-hero-visual,
.fire-page .fire-compliance-visual {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.fire-page .fire-hero-image-wrap {
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 44px rgba(18, 10, 36, 0.26);
}

.fire-page .fire-hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.fire-page .fire-intro,
.fire-page .fire-scope,
.fire-page .fire-compliance,
.fire-page .fire-industries {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(235, 229, 243, 0.94);
  box-shadow: 0 16px 40px rgba(41, 23, 74, 0.05);
}

.fire-page .fire-intro-head h2,
.fire-page .fire-section-head h2,
.fire-page .fire-compliance-copy h2,
.fire-page .fire-cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.08;
}

.fire-page .fire-intro-head p,
.fire-page .fire-compliance-copy p,
.fire-page .fire-section-subtitle {
  margin: 14px 0 0;
  max-width: 760px;
  color: var(--fire-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

.fire-page .fire-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.fire-page .fire-intro-card,
.fire-page .fire-scope-card,
.fire-page .fire-industry-card {
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6f4fb);
  border: 1px solid var(--fire-border);
}

.fire-page .fire-intro-card i {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--fire-primary);
  font-size: 0.95rem;
}

.fire-page .fire-intro-card h3,
.fire-page .fire-scope-card h3,
.fire-page .fire-compliance-list h3,
.fire-page .fire-industry-card h3 {
  margin: 16px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.fire-page .fire-intro-card p,
.fire-page .fire-scope-card p,
.fire-page .fire-compliance-list p,
.fire-page .fire-industry-card p {
  margin: 0;
  color: var(--fire-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

.fire-page .fire-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.fire-page .fire-section-copy {
  max-width: 860px;
}

.fire-page .fire-section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--fire-primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fire-page .fire-scope-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.fire-page .fire-scope-card {
  min-height: 190px;
}

.fire-page .fire-scope-card-accent,
.fire-page .fire-industry-card-accent {
  background: linear-gradient(145deg, #612db0, #7b44cb);
  border-color: transparent;
}

.fire-page .fire-scope-card-accent h3,
.fire-page .fire-scope-card-accent p,
.fire-page .fire-industry-card-accent h3,
.fire-page .fire-industry-card-accent p {
  color: #fff;
}

.fire-page .fire-compliance {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.fire-page .fire-compliance-panel {
  min-height: 420px;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #101d2d 0%, #122438 100%);
  box-shadow: 0 20px 42px rgba(16, 22, 40, 0.18);
  color: #fff;
}

.fire-page .fire-compliance-panel strong {
  display: block;
  margin-top: 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.6;
}

.fire-page .fire-compliance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.fire-page .fire-compliance-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 700;
}

.fire-page .fire-compliance-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.fire-page .fire-compliance-list article {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: #f8f7fc;
  border: 1px solid rgba(97, 45, 176, 0.08);
}

.fire-page .fire-industries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.fire-page .fire-industry-card {
  min-height: 180px;
}

.fire-page .fire-cta {
  padding: clamp(34px, 5vw, 50px);
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(135deg, #6d2bc3 0%, #542092 100%);
  box-shadow: 0 22px 44px rgba(76, 35, 148, 0.16);
}

.fire-page .fire-cta-copy p {
  max-width: 640px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.75;
}

.fire-page .fire-cta-actions {
  justify-content: center;
}

@media (max-width: 991px) {
  .fire-page .fire-hero,
  .fire-page .fire-intro-grid,
  .fire-page .fire-scope-grid,
  .fire-page .fire-compliance,
  .fire-page .fire-compliance-list,
  .fire-page .fire-industries-grid {
    grid-template-columns: 1fr;
  }

  .fire-page .fire-section-head {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .fire-page .fire-shell {
    padding: 14px 12px 56px;
  }

  .fire-page .fire-hero,
  .fire-page .fire-intro,
  .fire-page .fire-scope,
  .fire-page .fire-compliance,
  .fire-page .fire-industries,
  .fire-page .fire-cta {
    border-radius: 22px;
  }

  .fire-page .fire-compliance-list,
  .fire-page .fire-industries-grid {
    grid-template-columns: 1fr;
  }

  .fire-page .fire-hero-image-wrap,
  .fire-page .fire-hero-image {
    min-height: 300px;
  }

  .fire-page .fire-btn {
    width: 100%;
  }
}

.airport-page {
  --airport-ink: #000000;
  --airport-soft: #000000;
  --airport-primary: #612db0;
  --airport-primary-deep: #43206f;
  --airport-accent: #d3721c;
  --airport-border: rgba(97, 45, 176, 0.12);
  color: var(--airport-ink);
  background:
    radial-gradient(circle at top left, rgba(97, 45, 176, 0.12), transparent 30%),
    linear-gradient(180deg, #f7f3fc 0%, #fffdf9 44%, #f5f2fb 100%);
}

.airport-page .airport-shell {
  max-width: 90vw;
  margin: 0 auto;
 padding: 26px 0 46px;
}

.airport-page .airport-kicker,
.airport-page .airport-section-label,
.airport-page .airport-mini-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgb(97 45 176 / 87%);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.airport-page .airport-kicker::before,
.airport-page .airport-section-label::before,
.airport-page .airport-mini-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--airport-accent);
}

.airport-page .airport-hero,
.tunnel-page .tunnel-hero,
.airport-page .airport-projects,
.tunnel-page .tunnel-projects,
.airport-page .airport-sectors,
.airport-page .airport-cta {
  margin-top: 24px;
}

.airport-page .airport-hero,
.tunnel-page .tunnel-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(28px, 5vw, 46px);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #29174a 0%, #43206f 46%, #612db0 100%);
  box-shadow: 0 26px 60px rgba(39, 19, 71, 0.18);
  color: #fff;
}

.airport-page .airport-hero-copy,
.tunnel-page .tunnel-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.airport-page .airport-hero-copy h1,
.airport-page .airport-section-copy h2,
.airport-page .airport-sectors-copy h2,
.airport-page .airport-cta h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  line-height: 1.04;
}

.airport-page .airport-section-copy h2,
.airport-page .airport-sectors-copy h2,
.airport-page .airport-cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.airport-page .airport-hero-copy p,
.airport-page .airport-section-copy p,
.airport-page .airport-sectors-copy p,
.airport-page .airport-cta p {
  margin: 16px 0 0;
  font-size: 0.98rem;
  line-height: 1.85;
}

.airport-page .airport-hero-copy p,
.airport-page .airport-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.airport-page .airport-section-copy p,
.airport-page .airport-sectors-copy p {
  color: var(--airport-soft);
}

.airport-page .airport-service-tags,
.airport-page .airport-hero-actions,
.airport-page .airport-cta-actions,
.airport-page .airport-sector-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.airport-page .airport-service-tags {
  margin-top: 24px;
}

.airport-page .airport-service-tags span,
.airport-page .airport-sector-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.airport-page .airport-service-tags span {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.airport-page .airport-sector-pills {
  margin-top: 22px;
}

.airport-page .airport-sector-pills span {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.airport-page .airport-hero-actions,
.airport-page .airport-cta-actions {
  margin-top: 28px;
}

.airport-page .airport-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.airport-page .airport-btn:hover {
  transform: translateY(-1px);
}

.airport-page .airport-btn-primary {
  background: linear-gradient(135deg, var(--airport-accent), #bb6010);
  box-shadow: 0 18px 34px rgba(211, 114, 28, 0.22);
  color: #fff;
}

.airport-page .airport-btn-secondary,
.airport-page .airport-btn-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.airport-page .airport-btn-light {
  background: rgba(255, 255, 255, 0.16);
}

.airport-page .airport-hero-visual {
  position: relative;
  display: flex;
  align-items: stretch;
}

.airport-page .airport-hero-image-wrap {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(34, 16, 66, 0.18);
}

.airport-page .airport-hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.airport-page .airport-hero-card {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.12)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.airport-page .airport-hero-card-overlay {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: min(260px, calc(100% - 40px));
  min-height: auto;
  padding: 20px;
  border-radius: 22px;
  background: rgba(20, 16, 35, 0.56);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 34px rgba(20, 16, 35, 0.22);
}

.airport-page .airport-hero-card-overlay::before,
.airport-page .airport-hero-card-overlay::after {
  display: none;
}

.airport-page .airport-hero-card::before,
.airport-page .airport-hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.airport-page .airport-hero-card::before {
  width: 220px;
  height: 220px;
  top: -54px;
  right: -46px;
  background: radial-gradient(circle, rgba(211, 114, 28, 0.38), transparent 68%);
}

.airport-page .airport-hero-card::after {
  width: 180px;
  height: 180px;
  bottom: -78px;
  left: -34px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 68%);
}

.airport-page .airport-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.airport-page .airport-hero-card strong {
  position: relative;
  margin-top: 18px;
  max-width: 360px;
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
  line-height: 1.45;
}

.airport-page .airport-projects,
.airport-page .airport-sectors {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(235, 229, 243, 0.94);
  box-shadow: 0 16px 40px rgba(41, 23, 74, 0.05);
}

.airport-page .airport-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.airport-page .airport-section-copy {
  max-width: 840px;
}

.airport-page .airport-project-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.airport-page .airport-project-card,
.airport-page .airport-sectors-list article {
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6f4fb);
  border: 1px solid var(--airport-border);
}

.airport-page .airport-project-card {
  min-height: 210px;
}

.airport-page .airport-project-card-accent {
  background: linear-gradient(145deg, #612db0, #7b44cb);
  border-color: transparent;
}

.airport-page .airport-project-card-accent h3,
.airport-page .airport-project-card-accent p,
.airport-page .airport-project-card-accent .airport-project-no {
  color: #ffffff;
}

.airport-page .airport-project-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--airport-primary);
  font-size: 0.84rem;
  font-weight: 800;
}

.airport-page .airport-project-card h3,
.airport-page .airport-sectors-list h3 {
  margin: 18px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.airport-page .airport-project-card p,
.airport-page .airport-sectors-list p {
  margin: 0;
  color: #000000;
  font-size: 0.88rem;
  line-height: 1.72;
}

.airport-page .airport-sectors {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.airport-page .airport-sectors-visual {
  display: flex;
}

.airport-page .airport-sectors-panel {
  min-height: 100%;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #101d2d 0%, #122438 100%);
  box-shadow: 0 20px 42px rgba(16, 22, 40, 0.18);
  color: #fff;
}

.airport-page .airport-sectors-panel strong {
  display: block;
  margin-top: 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.22rem;
  line-height: 1.6;
}

.airport-page .airport-sectors-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.airport-page .airport-cta {
  padding: clamp(34px, 5vw, 50px);
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(135deg, #6d2bc3 0%, #542092 100%);
  box-shadow: 0 22px 44px rgba(76, 35, 148, 0.16);
}

.airport-page .airport-cta p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.airport-page .airport-cta-actions {
  justify-content: center;
}

@media (max-width: 991px) {
  .airport-page .airport-hero,
  .airport-page .airport-project-grid,
  .airport-page .airport-sectors,
  .airport-page .airport-sectors-list {
    grid-template-columns: 1fr;
  }

  .airport-page .airport-section-head {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .airport-page .airport-shell {
    width: min(100% - 24px, 1180px);
    padding: 14px 0 56px;
  }

  .airport-page .airport-hero,
  .airport-page .airport-projects,
  .airport-page .airport-sectors,
  .airport-page .airport-cta {
    border-radius: 22px;
  }

  .airport-page .airport-project-grid,
  .airport-page .airport-sectors-list {
    grid-template-columns: 1fr;
  }

  .airport-page .airport-hero-image-wrap,
  .airport-page .airport-hero-image {
    min-height: 300px;
  }

  .airport-page .airport-hero-card-overlay {
    right: 14px;
    bottom: 14px;
    width: min(240px, calc(100% - 28px));
  }

  .airport-page .airport-btn {
    width: 100%;
  }
}

.infra-page {
  --infra-ink: #161125;
  --infra-soft: #5e5677;
  --infra-primary: #6d32c9;
  --infra-primary-deep: #2a1557;
  --infra-accent: #f08f1b;
  --infra-border: rgba(109, 50, 201, 0.14);
  color: var(--infra-ink);
  background:
    radial-gradient(circle at top left, rgba(109, 50, 201, 0.08), transparent 25%),
    linear-gradient(180deg, #f7f8fc 0%, #eef1f8 100%);

   
}

.infra-page .infra-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 26px 0 48px;
}

.infra-page .infra-kicker,
.infra-page .infra-section-label,
.infra-page .infra-mini-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgb(109 50 201 / 90%);
  color: #ffffff;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.infra-page .infra-kicker::before,
.infra-page .infra-section-label::before,
.infra-page .infra-mini-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--infra-accent);
}

.infra-page .infra-hero,
.infra-page .infra-marquee,
.infra-page .infra-sectors,
.infra-page .infra-services,
.infra-page .infra-benefits,
.infra-page .infra-journey,
.infra-page .infra-cta {
  margin-top: 24px;
}

.infra-page .infra-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(20px, 4vw, 32px);
  padding: clamp(20px, 5vw, 56px);
  border-radius: clamp(24px, 5vw, 40px);
  overflow: hidden;
  align-items: stretch;
  isolation: isolate;
  background: linear-gradient(115deg, rgba(111, 44, 200, 0.98) 0%, rgba(67, 36, 151, 0.96) 40%, rgba(18, 18, 43, 0.97) 100%);
  border: 1px solid rgba(110, 78, 170, 0.35);
  box-shadow: 0 30px 80px rgba(34, 18, 70, 0.25);
}

.infra-page .infra-hero::before,
.infra-page .infra-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.infra-page .infra-hero::before {
  width: 340px;
  height: 340px;
  top: -120px;
  left: -80px;
  background: rgba(129, 93, 255, 0.28);
}

.infra-page .infra-hero::after {
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: -100px;
  background: rgba(76, 177, 255, 0.14);
}

.infra-page .infra-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  max-width: 760px;
}

.infra-page .infra-hero-copy h1,
.infra-page .infra-section-copy h2,
.infra-page .infra-services-copy h2,
.infra-page .infra-journey-copy h2,
.infra-page .infra-cta h2 {
  margin: 18px 0 0;
  font-family: "Sora", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.infra-page .infra-hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  color: #ffffff;
  line-height: 1.04;
}

.infra-page .infra-section-copy h2,
.infra-page .infra-services-copy h2,
.infra-page .infra-journey-copy h2,
.infra-page .infra-cta h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.infra-page .infra-hero-copy p,
.infra-page .infra-section-copy p,
.infra-page .infra-services-copy p,
.infra-page .infra-journey-copy p,
.infra-page .infra-cta p {
  margin: 16px 0 0;
  font-size: 0.97rem;
  line-height: 1.85;
}

.infra-page .infra-hero-copy p,
.infra-page .infra-section-copy p,
.infra-page .infra-services-copy p,
.infra-page .infra-journey-copy p {
  color: var(--infra-soft);
}

.infra-page .infra-hero-copy p {
  color: rgba(255, 255, 255, 0.88);
}

.infra-page .infra-hero-subcopy {
  max-width: 720px;
}

.infra-page .infra-service-tags,
.infra-page .infra-hero-actions,
.infra-page .infra-cta-actions,
.infra-page .infra-service-pills,
.infra-page .infra-panel-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.infra-page .infra-service-tags {
  margin-top: 26px;
}

.infra-page .infra-service-tags span,
.infra-page .infra-service-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 800;
}

.infra-page .infra-service-tags span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.infra-page .infra-hero-actions,
.infra-page .infra-cta-actions {
  margin-top: 28px;
}

.infra-page .infra-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.infra-page .infra-btn:hover {
  transform: translateY(-2px);
}

.infra-page .infra-btn-primary {
  background: linear-gradient(135deg, var(--infra-accent), #d97812);
  box-shadow: 0 16px 34px rgba(240, 143, 27, 0.24);
  color: #fff;
}

.infra-page .infra-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.infra-page .infra-btn-light {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.infra-page .infra-hero-visual {
  position: relative;
  min-height: clamp(280px, 50vw, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.infra-page .infra-hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.infra-page .infra-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px dashed rgba(109, 50, 201, 0.2);
}

.infra-page .infra-orbit-one {
  inset: 34px 26px 58px 40px;
}

.infra-page .infra-orbit-two {
  inset: 70px 72px 92px 86px;
}

.infra-page .infra-float-card {
  position: absolute;
  z-index: 3;
  width: min(220px, 44%);
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 18px 28px rgba(22, 12, 48, 0.18);
}

.infra-page .infra-float-card span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--infra-primary);
}

.infra-page .infra-float-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--infra-ink);
}

.infra-page .infra-float-card-top {
  top: 30px;
  right: 24px;
}

.infra-page .infra-float-card-bottom {
  left: 22px;
  bottom: 96px;
}

.infra-page .infra-hero-panel {
  position: relative;
  z-index: 2;
  width: min(420px, calc(100% - 34px));
  margin: 0 auto;
  padding: 24px;
  border-radius: 30px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(41, 23, 74, 0.88), rgba(67, 32, 111, 0.94)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent);
  box-shadow: 0 30px 60px rgba(34, 16, 66, 0.22);
}

.infra-page .infra-panel-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.infra-page .infra-hero-panel strong,
.infra-page .infra-services-panel strong {
  display: block;
  margin-top: 18px;
  font-family: "Sora", sans-serif;
  font-size: 1.34rem;
  line-height: 1.55;
}

.infra-page .infra-panel-metrics {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.infra-page .infra-panel-metrics article {
  padding: 14px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.infra-page .infra-panel-metrics span,
.infra-page .infra-journey-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 800;
}

.infra-page .infra-panel-metrics span {
  background: rgba(255, 255, 255, 0.12);
}

.infra-page .infra-panel-metrics p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  line-height: 1.45;
}

.infra-page .infra-panel-note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  line-height: 1.65;
}

.infra-page .infra-hero-strip {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: min(420px, calc(100% - 32px));
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.infra-page .infra-hero-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.infra-page .infra-marquee {
  overflow: hidden;
  padding: 10px 0;
}

.infra-page .infra-marquee-track {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.infra-page .infra-marquee-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(109, 50, 201, 0.15);
  color: var(--infra-primary-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(109, 50, 201, 0.08);
}

.infra-page .infra-sectors,
.infra-page .infra-benefits,
.infra-page .infra-journey {
  padding: clamp(24px, 4vw, 36px);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 18px 42px rgba(41, 23, 74, 0.07);
}

.infra-page .infra-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.infra-page .infra-section-copy,
.infra-page .infra-journey-copy {
  max-width: 880px;
}

.infra-page .infra-sector-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.infra-page .infra-sector-card {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  padding: 22px 20px 18px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 244, 251, 0.94));
  border: 1px solid var(--infra-border);
  box-shadow: 0 14px 28px rgba(41, 23, 74, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.infra-page .infra-sector-card::after {
  content: "";
  position: absolute;
  inset: auto -28px -28px auto;
  width: 110px;
  height: 110px;
  border-radius: 28px;
  transform: rotate(18deg);
  background: linear-gradient(135deg, rgba(109, 50, 201, 0.1), rgba(240, 143, 27, 0.1));
}

.infra-page .infra-sector-card:hover {
  transform: translateY(-4px);
  border-color: rgba(109, 50, 201, 0.28);
  box-shadow: 0 22px 38px rgba(41, 23, 74, 0.1);
}

.infra-page .infra-sector-card-accent {
  background: linear-gradient(160deg, var(--infra-primary) 0%, var(--infra-primary-deep) 100%);
  border-color: transparent;
  box-shadow: 0 22px 38px rgba(42, 21, 87, 0.24);
}

.infra-page .infra-sector-card-accent::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
}

.infra-page .infra-sector-card-accent h3,
.infra-page .infra-sector-card-accent p,
.infra-page .infra-sector-card-accent .infra-sector-no,
.infra-page .infra-sector-card-accent .infra-sector-link {
  color: #fff;
}

.infra-page .infra-sector-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(109, 50, 201, 0.1);
  color: #000000;
  font-size: 0.84rem;
  font-weight: 800;
}

.infra-page .infra-sector-card h3,
.infra-page .infra-benefit-card h3,
.infra-page .infra-journey-card h3,
.infra-page .infra-services-list h3 {
  margin: 18px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.04rem;
}

.infra-page .infra-sector-card p,
.infra-page .infra-benefit-card p,
.infra-page .infra-journey-card p,
.infra-page .infra-services-list p {
  margin: 0;
  color: var(--infra-soft);
  font-size: 0.88rem;
  line-height: 1.75;
}

.infra-page .infra-sector-link {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 16px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--infra-primary-deep);
}

.infra-page .infra-services {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 4vw, 38px);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(135deg, #2a1557 0%, #4a2494 44%, #6d32c9 100%);
  box-shadow: 0 26px 56px rgba(34, 16, 66, 0.18);
  color: #fff;
}

.infra-page .infra-services::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  right: -110px;
  top: -80px;
  background: radial-gradient(circle, rgba(240, 143, 27, 0.22), transparent 72%);
}

.infra-page .infra-services-visual {
  display: flex;
}

.infra-page .infra-services-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.infra-page .infra-service-pills {
  margin-top: 22px;
}

.infra-page .infra-service-pills span {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.infra-page .infra-services-copy,
.infra-page .infra-services-copy p,
.infra-page .infra-services-list p {
  color: rgba(255, 255, 255, 0.84);
}

.infra-page .infra-services-copy,
.infra-page .infra-services-list article {
  min-width: 0;
}

.infra-page .infra-services-copy h2,
.infra-page .infra-services-list h3 {
  color: #fff;
}

.infra-page .infra-services-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.infra-page .infra-services-list article {
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.infra-page .infra-benefit-grid,
.infra-page .infra-journey-grid {
  display: grid;
  gap: 16px;
}

.infra-page .infra-benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.infra-page .infra-benefit-card {
  padding: 22px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f6f4fb);
  border: 1px solid var(--infra-border);
}

.infra-page .infra-journey-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.infra-page .infra-journey-card {
  padding: 22px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f8f3eb);
  border: 1px solid rgba(240, 143, 27, 0.2);
}

.infra-page .infra-journey-card span {
  background: rgba(240, 143, 27, 0.16);
  color: #934709;
}

.infra-page .infra-cta {
  padding: clamp(38px, 5vw, 56px);
  border-radius: 36px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(135deg, #6d32c9 0%, #4a2494 50%, #2a1557 100%);
  box-shadow: 0 28px 56px rgba(34, 16, 66, 0.2);
}

.infra-page .infra-cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.86);
}

.infra-page .infra-cta-actions {
  justify-content: center;
}

@media (max-width: 1199px) {
  .infra-page .infra-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
    gap: clamp(18px, 3vw, 24px);
    padding: clamp(24px, 4vw, 40px);
  }

  .infra-page .infra-services {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
    gap: 22px;
  }

  .infra-page .infra-hero-copy h1 {
    font-size: clamp(2.2rem, 4vw, 3.7rem);
  }

  .infra-page .infra-hero-visual {
    min-height: clamp(280px, 45vw, 460px);
  }

  .infra-page .infra-hero-panel {
    width: min(380px, 100%);
  }

  .infra-page .infra-float-card-top {
    top: 20px;
    right: 18px;
  }

  .infra-page .infra-float-card-bottom {
    left: 16px;
    bottom: 88px;
  }
}

@media (max-width: 991px) {
  .infra-page .infra-shell {
    width: min(100% - 28px, 1220px);
  }

  .infra-page .infra-hero {
    gap: clamp(16px, 3vw, 20px);
    padding: clamp(20px, 4vw, 28px);
  }

  .infra-page .infra-hero,
  .infra-page .infra-sector-grid,
  .infra-page .infra-services,
  .infra-page .infra-services-list,
  .infra-page .infra-benefit-grid,
  .infra-page .infra-journey-grid {
    grid-template-columns: 1fr;
  }

  .infra-page .infra-services-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .infra-page .infra-hero-actions .infra-btn {
    flex: 1 1 calc(50% - 8px);
    min-width: 160px;
    font-size: clamp(0.78rem, 2vw, 0.88rem);
  }

  .infra-page .infra-services-panel {
    padding: 24px;
  }

  .infra-page .infra-section-head {
    flex-direction: column;
  }

  .infra-page .infra-sector-card,
  .infra-page .infra-benefit-card,
  .infra-page .infra-journey-card {
    min-height: auto;
  }

  .infra-page .infra-hero-visual {
    min-height: clamp(280px, 40vw, 420px);
  }

  .infra-page .infra-float-card-top {
    right: 12px;
    top: 12px;
  }

  .infra-page .infra-float-card-bottom {
    left: 12px;
    bottom: 82px;
  }

  .infra-page .infra-hero-copy p {
    font-size: clamp(0.9rem, 1.8vw, 0.97rem);
    line-height: 1.7;
  }

  .infra-page .infra-hero-strip {
    bottom: 12px;
    padding: 8px;
  }

  .infra-page .infra-hero-strip span {
    font-size: 0.66rem;
    min-height: 28px;
  }
}

@media (max-width: 767px) {
  .infra-page .infra-shell {
    width: min(100% - 24px, 1220px);
    padding: 14px 0 60px;
  }

  .infra-page .infra-hero,
  .infra-page .infra-sectors,
  .infra-page .infra-services,
  .infra-page .infra-benefits,
  .infra-page .infra-journey,
  .infra-page .infra-cta {
    border-radius: clamp(18px, 5vw, 24px);
    padding: clamp(18px, 4vw, 28px);
  }

  .infra-page .infra-hero-copy h1 {
    max-width: none;
    font-size: clamp(1.8rem, 8vw, 2.8rem);
    line-height: 1.1;
  }

  .infra-page .infra-section-copy h2,
  .infra-page .infra-services-copy h2,
  .infra-page .infra-journey-copy h2,
  .infra-page .infra-cta h2 {
    font-size: clamp(1.4rem, 5.5vw, 2.2rem);
    line-height: 1.2;
  }

  .infra-page .infra-hero-visual {
    min-height: clamp(240px, 35vw, 320px);
    margin-top: 12px;
    display: block;
  }

  .infra-page .infra-hero-visual::before {
    inset: 0;
    border-radius: 20px;
  }

  .infra-page .infra-orbit {
    display: none;
  }

  .infra-page .infra-float-card {
    position: static;
    width: 100%;
    margin-bottom: 12px;
    backdrop-filter: blur(6px);
  }

  .infra-page .infra-hero-panel {
    width: 100%;
    padding: clamp(16px, 4vw, 22px);
    margin-top: 12px;
  }

  .infra-page .infra-panel-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .infra-page .infra-hero-strip {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    margin-top: 2px;
    padding: 8px;
  }

  .infra-page .infra-services-list,
  .infra-page .infra-benefit-grid,
  .infra-page .infra-journey-grid {
    grid-template-columns: 1fr;
  }

  .infra-page .infra-marquee {
    padding: 6px 0 2px;
  }

  .infra-page .infra-marquee-track {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 4px;
  }

  .infra-page .infra-btn {
    width: 100%;
    font-size: clamp(0.8rem, 2.2vw, 0.88rem);
    padding: clamp(10px, 2vw, 12px) clamp(12px, 2vw, 20px);
    min-height: clamp(44px, 10vw, 50px);
  }

  .infra-page .infra-hero-copy p {
    font-size: clamp(0.88rem, 2vw, 0.97rem);
    line-height: 1.65;
  }

  .infra-page .infra-service-tags {
    gap: clamp(8px, 2vw, 12px);
    margin-top: clamp(16px, 3vw, 26px);
  }

  .infra-page .infra-hero-actions {
    gap: clamp(8px, 2vw, 12px);
    margin-top: clamp(18px, 4vw, 28px);
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .infra-page .infra-shell {
    width: calc(100% - 16px);
    padding: 10px 0 52px;
  }

  .infra-page .infra-hero,
  .infra-page .infra-sectors,
  .infra-page .infra-services,
  .infra-page .infra-benefits,
  .infra-page .infra-journey,
  .infra-page .infra-cta {
    border-radius: 16px;
    padding: clamp(14px, 3vw, 18px);
  }

  .infra-page .infra-kicker,
  .infra-page .infra-section-label,
  .infra-page .infra-mini-label {
    font-size: clamp(0.6rem, 1.8vw, 0.67rem);
    letter-spacing: 0.1em;
    padding: clamp(6px, 1.5vw, 8px) clamp(8px, 1.5vw, 10px);
  }

  .infra-page .infra-hero-copy h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 1.15;
    margin-top: clamp(10px, 2vw, 18px);
  }

  .infra-page .infra-hero-copy p {
    font-size: clamp(0.82rem, 1.8vw, 0.9rem);
    line-height: 1.6;
    margin-top: clamp(10px, 2vw, 16px);
  }

  .infra-page .infra-service-tags,
  .infra-page .infra-hero-actions,
  .infra-page .infra-cta-actions,
  .infra-page .infra-service-pills,
  .infra-page .infra-panel-metrics {
    gap: clamp(8px, 1.5vw, 10px);
  }

  .infra-page .infra-panel-metrics {
    margin-top: clamp(16px, 3vw, 28px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .infra-page .infra-panel-metrics article {
    padding: clamp(12px, 2vw, 16px) clamp(10px, 2vw, 14px);
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  }

  .infra-page .infra-float-card {
    width: 100%;
    margin-bottom: 10px;
    padding: clamp(12px, 2vw, 16px) clamp(12px, 2vw, 18px);
  }

  .infra-page .infra-float-card span {
    font-size: clamp(0.65rem, 1.5vw, 0.72rem);
  }

  .infra-page .infra-float-card strong {
    margin-top: 6px;
    font-size: clamp(0.85rem, 1.8vw, 1rem);
  }

  .infra-page .infra-btn {
    min-height: clamp(40px, 9vw, 46px);
    font-size: clamp(0.75rem, 1.8vw, 0.84rem);
    padding: clamp(8px, 1.5vw, 10px) clamp(10px, 2vw, 14px);
  }

  .infra-page .infra-hero-panel {
    padding: clamp(14px, 3vw, 22px);
    margin-top: 10px;
  }

  .infra-page .infra-hero-panel strong,
  .infra-page .infra-services-panel strong {
    font-size: clamp(0.95rem, 3vw, 1.08rem);
    line-height: 1.4;
    margin-top: clamp(12px, 2vw, 18px);
  }

  .infra-page .infra-service-tags span,
  .infra-page .infra-service-pills span {
    min-height: clamp(32px, 7vw, 36px);
    font-size: clamp(0.65rem, 1.5vw, 0.72rem);
    padding: clamp(5px, 1.2vw, 7px) clamp(8px, 1.5vw, 12px);
  }

  .infra-page .infra-hero-strip span {
    width: calc(50% - 4px);
    min-height: 32px;
  }

  .infra-page .infra-hero-visual {
    min-height: clamp(200px, 30vw, 240px);
    margin-top: 10px;
  }
}

@media (max-width: 399px) {
  .infra-page .infra-shell {
    padding: 8px 0 48px;
  }

  .infra-page .infra-hero,
  .infra-page .infra-sectors,
  .infra-page .infra-services,
  .infra-page .infra-benefits,
  .infra-page .infra-journey,
  .infra-page .infra-cta {
    border-radius: 14px;
    padding: clamp(12px, 2.5vw, 14px);
  }

  .infra-page .infra-hero-copy h1 {
    font-size: clamp(1.3rem, 5vw, 1.5rem);
    margin-top: clamp(8px, 1.5vw, 10px);
  }

  .infra-page .infra-panel-metrics {
    grid-template-columns: 1fr;
  }

  .infra-page .infra-panel-metrics article {
    padding: clamp(10px, 1.5vw, 12px) clamp(8px, 1.5vw, 10px);
  }

  .infra-page .infra-service-tags span,
  .infra-page .infra-service-pills span {
    width: 100%;
    justify-content: center;
  }

  .infra-page .infra-hero-strip span {
    width: 100%;
  }

  .infra-page .infra-hero-actions {
    flex-direction: column;
  }

  .infra-page .infra-btn {
    min-height: clamp(38px, 8vw, 42px);
    font-size: 0.75rem;
    padding: clamp(8px, 1.2vw, 9px) clamp(10px, 1.5vw, 12px);
  }

  .infra-page .infra-hero-copy p {
    font-size: 0.8rem;
    line-height: 1.55;
  }

  .infra-page .infra-orbit {
    display: none;
  }

  .infra-page .infra-float-card {
    margin-bottom: 8px;
    padding: clamp(10px, 1.5vw, 12px) clamp(10px, 1.5vw, 12px);
  }

  .infra-page .infra-hero-panel {
    padding: clamp(12px, 2.5vw, 16px);
    margin-top: 8px;
  }

  .infra-page .infra-hero-visual {
    min-height: clamp(180px, 25vw, 200px);
    margin-top: 8px;
  }
}

.bridge-page {
  --bridge-ink: #000000;
  --bridge-soft: #000000;
  --bridge-primary: #612db0;
  --bridge-primary-deep: #43206f;
  --bridge-accent: #d3721c;
  --bridge-border: rgba(97, 45, 176, 0.12);
  color: var(--bridge-ink);
  background:
    radial-gradient(circle at top left, rgba(97, 45, 176, 0.12), transparent 30%),
    linear-gradient(180deg, #f7f3fc 0%, #fffdf9 44%, #f5f2fb 100%);
}

.bridge-page .bridge-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 25px 0 46px;
}

.bridge-page .bridge-kicker,
.bridge-page .bridge-section-label,
.bridge-page .bridge-mini-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgb(97 45 176 / 86%);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bridge-page .bridge-kicker::before,
.bridge-page .bridge-section-label::before,
.bridge-page .bridge-mini-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--bridge-accent);
}

.bridge-page .bridge-hero,
.bridge-page .bridge-projects,
.bridge-page .bridge-sectors,
.bridge-page .bridge-cta {
  margin-top: 24px;
}

.bridge-page .bridge-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(28px, 5vw, 46px);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #29174a 0%, #43206f 46%, #612db0 100%);
  box-shadow: 0 26px 60px rgba(39, 19, 71, 0.18);
  color: #fff;
}

.bridge-page .bridge-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bridge-page .bridge-hero-copy h1,
.bridge-page .bridge-section-copy h2,
.bridge-page .bridge-sectors-copy h2,
.bridge-page .bridge-cta h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  line-height: 1.04;
}

.bridge-page .bridge-section-copy h2,
.bridge-page .bridge-sectors-copy h2,
.bridge-page .bridge-cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.bridge-page .bridge-hero-copy p,
.bridge-page .bridge-section-copy p,
.bridge-page .bridge-sectors-copy p,
.bridge-page .bridge-cta p {
  margin: 16px 0 0;
  font-size: 0.98rem;
  line-height: 1.85;
}

.bridge-page .bridge-hero-copy p,
.bridge-page .bridge-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.bridge-page .bridge-section-copy p,
.bridge-page .bridge-sectors-copy p {
  color: var(--bridge-soft);
}

.bridge-page .bridge-service-tags,
.bridge-page .bridge-hero-actions,
.bridge-page .bridge-cta-actions,
.bridge-page .bridge-sector-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bridge-page .bridge-service-tags {
  margin-top: 24px;
}

.bridge-page .bridge-service-tags span,
.bridge-page .bridge-sector-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.bridge-page .bridge-service-tags span {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.bridge-page .bridge-sector-pills {
  margin-top: 22px;
}

.bridge-page .bridge-sector-pills span {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.bridge-page .bridge-hero-actions,
.bridge-page .bridge-cta-actions {
  margin-top: 28px;
}

.bridge-page .bridge-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.bridge-page .bridge-btn:hover {
  transform: translateY(-1px);
}

.bridge-page .bridge-btn-primary {
  background: linear-gradient(135deg, var(--bridge-accent), #bb6010);
  box-shadow: 0 18px 34px rgba(211, 114, 28, 0.22);
  color: #fff;
}

.bridge-page .bridge-btn-secondary,
.bridge-page .bridge-btn-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.bridge-page .bridge-btn-light {
  background: rgba(255, 255, 255, 0.16);
}

.bridge-page .bridge-hero-visual {
  position: relative;
  display: flex;
  align-items: stretch;
}

.bridge-page .bridge-hero-image-wrap {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(34, 16, 66, 0.18);
}

.bridge-page .bridge-hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.bridge-page .bridge-hero-card {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.12)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.bridge-page .bridge-hero-card-overlay {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: min(260px, calc(100% - 40px));
  min-height: auto;
  padding: 20px;
  border-radius: 22px;
  background: rgba(20, 16, 35, 0.56);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 34px rgba(20, 16, 35, 0.22);
}

.bridge-page .bridge-hero-card-overlay::before,
.bridge-page .bridge-hero-card-overlay::after {
  display: none;
}

.bridge-page .bridge-hero-card::before,
.bridge-page .bridge-hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.bridge-page .bridge-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bridge-page .bridge-hero-card strong {
  position: relative;
  margin-top: 18px;
  max-width: 360px;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.45;
}

.bridge-page .bridge-projects,
.bridge-page .bridge-sectors {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(235, 229, 243, 0.94);
  box-shadow: 0 16px 40px rgba(41, 23, 74, 0.05);
}

.bridge-page .bridge-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.bridge-page .bridge-section-copy {
  max-width: 860px;
}

.bridge-page .bridge-project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.bridge-page .bridge-project-card,
.bridge-page .bridge-sectors-list article {
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6f4fb);
  border: 1px solid var(--bridge-border);
}

.bridge-page .bridge-project-card {
  min-height: 210px;
}

.bridge-page .bridge-project-card-accent {
  background: linear-gradient(145deg, #612db0, #7b44cb);
  border-color: transparent;
}

.bridge-page .bridge-project-card-accent h3,
.bridge-page .bridge-project-card-accent p,
.bridge-page .bridge-project-card-accent .bridge-project-no {
  color: #fff;
}

.bridge-page .bridge-project-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--bridge-primary);
  font-size: 0.84rem;
  font-weight: 800;
}

.bridge-page .bridge-project-card h3,
.bridge-page .bridge-sectors-list h3 {
  margin: 18px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.bridge-page .bridge-project-card p,
.bridge-page .bridge-sectors-list p {
  margin: 0;
  color: var(--bridge-soft);
  font-size: 0.88rem;
  line-height: 1.72;
}

.bridge-page .bridge-sectors {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.bridge-page .bridge-sectors-visual {
  display: flex;
}

.bridge-page .bridge-sectors-panel {
  min-height: 100%;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #101d2d 0%, #122438 100%);
  box-shadow: 0 20px 42px rgba(16, 22, 40, 0.18);
  color: #fff;
}

.bridge-page .bridge-sectors-panel strong {
  display: block;
  margin-top: 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.22rem;
  line-height: 1.6;
}

.bridge-page .bridge-sectors-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.bridge-page .bridge-cta {
  padding: clamp(34px, 5vw, 50px);
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(135deg, #6d2bc3 0%, #542092 100%);
  box-shadow: 0 22px 44px rgba(76, 35, 148, 0.16);
}

.bridge-page .bridge-cta p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.bridge-page .bridge-cta-actions {
  justify-content: center;
}

@media (max-width: 991px) {
  .bridge-page .bridge-hero,
  .bridge-page .bridge-project-grid,
  .bridge-page .bridge-sectors,
  .bridge-page .bridge-sectors-list {
    grid-template-columns: 1fr;
  }

  .bridge-page .bridge-section-head {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .bridge-page .bridge-shell {
    width: min(100% - 24px, 1180px);
    padding: 14px 0 56px;
  }

  .bridge-page .bridge-hero,
  .bridge-page .bridge-projects,
  .bridge-page .bridge-sectors,
  .bridge-page .bridge-cta {
    border-radius: 22px;
  }

  .bridge-page .bridge-project-grid,
  .bridge-page .bridge-sectors-list {
    grid-template-columns: 1fr;
  }

  .bridge-page .bridge-hero-image-wrap,
  .bridge-page .bridge-hero-image {
    min-height: 300px;
  }

  .bridge-page .bridge-hero-card-overlay {
    right: 14px;
    bottom: 14px;
    width: min(240px, calc(100% - 28px));
  }

  .bridge-page .bridge-btn {
    width: 100%;
  }
}
.data-centre-page {
  --data-centre-ink: #000000;
  --data-centre-soft: #000000;
  --data-centre-primary: #612db0;
  --data-centre-accent: #d3721c;
  --data-centre-border: rgba(97, 45, 176, 0.12);
  color: var(--data-centre-ink);
  background:
    radial-gradient(circle at top left, rgba(97, 45, 176, 0.12), transparent 30%),
    linear-gradient(180deg, #f7f3fc 0%, #fffdf9 44%, #f5f2fb 100%);
}

.data-centre-page .data-centre-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 25px 0 46px;
}

.data-centre-page .data-centre-kicker,
.data-centre-page .data-centre-section-label,
.data-centre-page .data-centre-mini-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(97, 45, 176, 0.86);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.data-centre-page .data-centre-kicker::before,
.data-centre-page .data-centre-section-label::before,
.data-centre-page .data-centre-mini-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--data-centre-accent);
}

.data-centre-page .data-centre-hero,
.data-centre-page .data-centre-projects,
.data-centre-page .data-centre-sectors,
.data-centre-page .data-centre-cta {
  margin-top: 24px;
}

.data-centre-page .data-centre-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(28px, 5vw, 46px);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #29174a 0%, #43206f 46%, #612db0 100%);
  box-shadow: 0 26px 60px rgba(39, 19, 71, 0.18);
  color: #fff;
}

.data-centre-page .data-centre-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.data-centre-page .data-centre-hero-copy h1,
.data-centre-page .data-centre-section-copy h2,
.data-centre-page .data-centre-sectors-copy h2,
.data-centre-page .data-centre-cta h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  line-height: 1.04;
}

.data-centre-page .data-centre-section-copy h2,
.data-centre-page .data-centre-sectors-copy h2,
.data-centre-page .data-centre-cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.data-centre-page .data-centre-hero-copy p,
.data-centre-page .data-centre-section-copy p,
.data-centre-page .data-centre-sectors-copy p,
.data-centre-page .data-centre-cta p {
  margin: 16px 0 0;
  font-size: 0.98rem;
  line-height: 1.85;
}

.data-centre-page .data-centre-hero-copy p,
.data-centre-page .data-centre-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.data-centre-page .data-centre-section-copy p,
.data-centre-page .data-centre-sectors-copy p {
  color: var(--data-centre-soft);
}

.data-centre-page .data-centre-service-tags,
.data-centre-page .data-centre-hero-actions,
.data-centre-page .data-centre-cta-actions,
.data-centre-page .data-centre-sector-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.data-centre-page .data-centre-service-tags {
  margin-top: 24px;
}

.data-centre-page .data-centre-service-tags span,
.data-centre-page .data-centre-sector-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.data-centre-page .data-centre-service-tags span {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.data-centre-page .data-centre-sector-pills {
  margin-top: 22px;
}

.data-centre-page .data-centre-sector-pills span {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.data-centre-page .data-centre-hero-actions,
.data-centre-page .data-centre-cta-actions {
  margin-top: 28px;
}

.data-centre-page .data-centre-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.data-centre-page .data-centre-btn:hover {
  transform: translateY(-1px);
}

.data-centre-page .data-centre-btn-primary {
  background: linear-gradient(135deg, var(--data-centre-accent), #bb6010);
  box-shadow: 0 18px 34px rgba(211, 114, 28, 0.22);
  color: #fff;
}

.data-centre-page .data-centre-btn-secondary,
.data-centre-page .data-centre-btn-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.data-centre-page .data-centre-btn-light {
  background: rgba(255, 255, 255, 0.16);
}

.data-centre-page .data-centre-hero-visual {
  position: relative;
  display: flex;
  align-items: stretch;
}

.data-centre-page .data-centre-hero-image-wrap {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(34, 16, 66, 0.18);
}

.data-centre-page .data-centre-hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.data-centre-page .data-centre-hero-card {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.12)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.data-centre-page .data-centre-hero-card-overlay {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: min(260px, calc(100% - 40px));
  min-height: auto;
  padding: 20px;
  border-radius: 22px;
  background: rgba(20, 16, 35, 0.56);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 34px rgba(20, 16, 35, 0.22);
}

.data-centre-page .data-centre-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.data-centre-page .data-centre-hero-card strong {
  margin-top: 18px;
  max-width: 360px;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.45;
}

.data-centre-page .data-centre-projects,
.data-centre-page .data-centre-sectors {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(235, 229, 243, 0.94);
  box-shadow: 0 16px 40px rgba(41, 23, 74, 0.05);
}

.data-centre-page .data-centre-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.data-centre-page .data-centre-section-copy {
  max-width: 860px;
}

.data-centre-page .data-centre-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.data-centre-page .data-centre-project-card,
.data-centre-page .data-centre-sectors-list article {
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6f4fb);
  border: 1px solid var(--data-centre-border);
}

.data-centre-page .data-centre-project-card {
  min-height: 240px;
}

.data-centre-page .data-centre-project-card-accent {
  background: linear-gradient(145deg, #612db0, #7b44cb);
  border-color: transparent;
}

.data-centre-page .data-centre-project-card-accent h3,
.data-centre-page .data-centre-project-card-accent p,
.data-centre-page .data-centre-project-card-accent .data-centre-project-no {
  color: #fff;
}

.data-centre-page .data-centre-project-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--data-centre-primary);
  font-size: 0.84rem;
  font-weight: 800;
}

.data-centre-page .data-centre-project-card h3,
.data-centre-page .data-centre-sectors-list h3 {
  margin: 18px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.data-centre-page .data-centre-project-card p,
.data-centre-page .data-centre-sectors-list p {
  margin: 0;
  color: var(--data-centre-soft);
  font-size: 0.88rem;
  line-height: 1.72;
}

.data-centre-page .data-centre-sectors {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.data-centre-page .data-centre-sectors-visual {
  display: flex;
}

.data-centre-page .data-centre-sectors-panel {
  min-height: 100%;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #101d2d 0%, #122438 100%);
  box-shadow: 0 20px 42px rgba(16, 22, 40, 0.18);
  color: #fff;
}

.data-centre-page .data-centre-sectors-panel strong {
  display: block;
  margin-top: 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.22rem;
  line-height: 1.6;
}

.data-centre-page .data-centre-sectors-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.data-centre-page .data-centre-cta {
  padding: clamp(34px, 5vw, 50px);
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(135deg, #6d2bc3 0%, #542092 100%);
  box-shadow: 0 22px 44px rgba(76, 35, 148, 0.16);
}

.data-centre-page .data-centre-cta p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.data-centre-page .data-centre-cta-actions {
  justify-content: center;
}

@media (max-width: 991px) {
  .data-centre-page .data-centre-hero,
  .data-centre-page .data-centre-project-grid,
  .data-centre-page .data-centre-sectors,
  .data-centre-page .data-centre-sectors-list {
    grid-template-columns: 1fr;
  }

  .data-centre-page .data-centre-section-head {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .data-centre-page .data-centre-shell {
    width: min(100% - 24px, 1180px);
    padding: 14px 0 56px;
  }

  .data-centre-page .data-centre-hero,
  .data-centre-page .data-centre-projects,
  .data-centre-page .data-centre-sectors,
  .data-centre-page .data-centre-cta {
    border-radius: 22px;
  }

  .data-centre-page .data-centre-project-grid,
  .data-centre-page .data-centre-sectors-list {
    grid-template-columns: 1fr;
  }

  .data-centre-page .data-centre-hero-image-wrap,
  .data-centre-page .data-centre-hero-image {
    min-height: 300px;
  }

  .data-centre-page .data-centre-hero-card-overlay {
    right: 14px;
    bottom: 14px;
    width: min(240px, calc(100% - 28px));
  }

  .data-centre-page .data-centre-btn {
    width: 100%;
  }
}
.port-page {
  --port-ink: #000000;
  --port-soft: #000000;
  --port-primary: #612db0;
  --port-accent: #d3721c;
  --port-border: rgba(97, 45, 176, 0.12);
  color: var(--port-ink);
  background:
    radial-gradient(circle at top left, rgba(97, 45, 176, 0.12), transparent 30%),
    linear-gradient(180deg, #f7f3fc 0%, #fffdf9 44%, #f5f2fb 100%);
}

.port-page .port-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 25px 0 46px;
}

.port-page .port-kicker,
.port-page .port-section-label,
.port-page .port-mini-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(97, 45, 176, 0.86);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.port-page .port-kicker::before,
.port-page .port-section-label::before,
.port-page .port-mini-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--port-accent);
}

.port-page .port-hero,
.port-page .port-projects,
.port-page .port-sectors,
.port-page .port-cta {
  margin-top: 24px;
}

.port-page .port-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(28px, 5vw, 46px);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #29174a 0%, #43206f 46%, #612db0 100%);
  box-shadow: 0 26px 60px rgba(39, 19, 71, 0.18);
  color: #fff;
}

.port-page .port-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.port-page .port-hero-copy h1,
.port-page .port-section-copy h2,
.port-page .port-sectors-copy h2,
.port-page .port-cta h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  line-height: 1.04;
}

.port-page .port-section-copy h2,
.port-page .port-sectors-copy h2,
.port-page .port-cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.port-page .port-hero-copy p,
.port-page .port-section-copy p,
.port-page .port-sectors-copy p,
.port-page .port-cta p {
  margin: 16px 0 0;
  font-size: 0.98rem;
  line-height: 1.85;
}

.port-page .port-hero-copy p,
.port-page .port-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.port-page .port-section-copy p,
.port-page .port-sectors-copy p {
  color: var(--port-soft);
}

.port-page .port-service-tags,
.port-page .port-hero-actions,
.port-page .port-cta-actions,
.port-page .port-sector-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.port-page .port-service-tags {
  margin-top: 24px;
}

.port-page .port-service-tags span,
.port-page .port-sector-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.port-page .port-service-tags span {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.port-page .port-sector-pills {
  margin-top: 22px;
}

.port-page .port-sector-pills span {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.port-page .port-hero-actions,
.port-page .port-cta-actions {
  margin-top: 28px;
}

.port-page .port-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.port-page .port-btn:hover {
  transform: translateY(-1px);
}

.port-page .port-btn-primary {
  background: linear-gradient(135deg, var(--port-accent), #bb6010);
  box-shadow: 0 18px 34px rgba(211, 114, 28, 0.22);
  color: #fff;
}

.port-page .port-btn-secondary,
.port-page .port-btn-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.port-page .port-btn-light {
  background: rgba(255, 255, 255, 0.16);
}

.port-page .port-hero-visual {
  position: relative;
  display: flex;
  align-items: stretch;
}

.port-page .port-hero-image-wrap {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(34, 16, 66, 0.18);
}

.port-page .port-hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.port-page .port-hero-card {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.12)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.port-page .port-hero-card-overlay {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: min(260px, calc(100% - 40px));
  min-height: auto;
  padding: 20px;
  border-radius: 22px;
  background: rgba(20, 16, 35, 0.56);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 34px rgba(20, 16, 35, 0.22);
}

.port-page .port-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.port-page .port-hero-card strong {
  margin-top: 18px;
  max-width: 360px;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.45;
}

.port-page .port-projects,
.port-page .port-sectors {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(235, 229, 243, 0.94);
  box-shadow: 0 16px 40px rgba(41, 23, 74, 0.05);
}

.port-page .port-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.port-page .port-section-copy {
  max-width: 860px;
}

.port-page .port-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.port-page .port-project-card,
.port-page .port-sectors-list article {
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6f4fb);
  border: 1px solid var(--port-border);
}

.port-page .port-project-card {
  min-height: 210px;
}

.port-page .port-project-card-accent {
  background: linear-gradient(145deg, #612db0, #7b44cb);
  border-color: transparent;
}

.port-page .port-project-card-accent h3,
.port-page .port-project-card-accent p,
.port-page .port-project-card-accent .port-project-no {
  color: #fff;
}

.port-page .port-project-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--port-primary);
  font-size: 0.84rem;
  font-weight: 800;
}

.port-page .port-project-card h3,
.port-page .port-sectors-list h3 {
  margin: 18px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.port-page .port-project-card p,
.port-page .port-sectors-list p {
  margin: 0;
  color: var(--port-soft);
  font-size: 0.88rem;
  line-height: 1.72;
}

.port-page .port-sectors {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.port-page .port-sectors-visual {
  display: flex;
}

.port-page .port-sectors-panel {
  min-height: 100%;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #101d2d 0%, #122438 100%);
  box-shadow: 0 20px 42px rgba(16, 22, 40, 0.18);
  color: #fff;
}

.port-page .port-sectors-panel strong {
  display: block;
  margin-top: 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.22rem;
  line-height: 1.6;
}

.port-page .port-sectors-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.port-page .port-cta {
  padding: clamp(34px, 5vw, 50px);
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(135deg, #6d2bc3 0%, #542092 100%);
  box-shadow: 0 22px 44px rgba(76, 35, 148, 0.16);
}

.port-page .port-cta p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.port-page .port-cta-actions {
  justify-content: center;
}

@media (max-width: 991px) {
  .port-page .port-hero,
  .port-page .port-project-grid,
  .port-page .port-sectors,
  .port-page .port-sectors-list {
    grid-template-columns: 1fr;
  }

  .port-page .port-section-head {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .port-page .port-shell {
    width: min(100% - 24px, 1180px);
    padding: 14px 0 56px;
  }

  .port-page .port-hero,
  .port-page .port-projects,
  .port-page .port-sectors,
  .port-page .port-cta {
    border-radius: 22px;
  }

  .port-page .port-project-grid,
  .port-page .port-sectors-list {
    grid-template-columns: 1fr;
  }

  .port-page .port-hero-image-wrap,
  .port-page .port-hero-image {
    min-height: 300px;
  }

  .port-page .port-hero-card-overlay {
    right: 14px;
    bottom: 14px;
    width: min(240px, calc(100% - 28px));
  }

  .port-page .port-btn {
    width: 100%;
  }
}
.metro-page {
  --metro-ink: #000000;
  --metro-soft: #000000;
  --metro-primary: #612db0;
  --metro-primary-deep: #43206f;
  --metro-accent: #d3721c;
  --metro-border: rgba(97, 45, 176, 0.12);
  color: var(--metro-ink);
  background:
    radial-gradient(circle at top left, rgba(97, 45, 176, 0.12), transparent 30%),
    linear-gradient(180deg, #f7f3fc 0%, #fffdf9 44%, #f5f2fb 100%);
}

.metro-page .metro-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 25px 0 46px;
}

.metro-page .metro-kicker,
.metro-page .metro-section-label,
.metro-page .metro-mini-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(97, 45, 176, 0.86);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.metro-page .metro-kicker::before,
.metro-page .metro-section-label::before,
.metro-page .metro-mini-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--metro-accent);
}

.metro-page .metro-hero,
.metro-page .metro-projects,
.metro-page .metro-sectors,
.metro-page .metro-cta {
  margin-top: 24px;
}

.metro-page .metro-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(28px, 5vw, 46px);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #29174a 0%, #43206f 46%, #612db0 100%);
  box-shadow: 0 26px 60px rgba(39, 19, 71, 0.18);
  color: #fff;
}

.metro-page .metro-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.metro-page .metro-hero-copy h1,
.metro-page .metro-section-copy h2,
.metro-page .metro-sectors-copy h2,
.metro-page .metro-cta h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  line-height: 1.04;
}

.metro-page .metro-section-copy h2,
.metro-page .metro-sectors-copy h2,
.metro-page .metro-cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.metro-page .metro-hero-copy p,
.metro-page .metro-section-copy p,
.metro-page .metro-sectors-copy p,
.metro-page .metro-cta p {
  margin: 16px 0 0;
  font-size: 0.98rem;
  line-height: 1.85;
}

.metro-page .metro-hero-copy p,
.metro-page .metro-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.metro-page .metro-section-copy p,
.metro-page .metro-sectors-copy p {
  color: var(--metro-soft);
}

.metro-page .metro-service-tags,
.metro-page .metro-hero-actions,
.metro-page .metro-cta-actions,
.metro-page .metro-sector-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.metro-page .metro-service-tags {
  margin-top: 24px;
}

.metro-page .metro-service-tags span,
.metro-page .metro-sector-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.metro-page .metro-service-tags span {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.metro-page .metro-sector-pills {
  margin-top: 22px;
}

.metro-page .metro-sector-pills span {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.metro-page .metro-hero-actions,
.metro-page .metro-cta-actions {
  margin-top: 28px;
}

.metro-page .metro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.metro-page .metro-btn:hover {
  transform: translateY(-1px);
}

.metro-page .metro-btn-primary {
  background: linear-gradient(135deg, var(--metro-accent), #bb6010);
  box-shadow: 0 18px 34px rgba(211, 114, 28, 0.22);
  color: #fff;
}

.metro-page .metro-btn-secondary,
.metro-page .metro-btn-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.metro-page .metro-btn-light {
  background: rgba(255, 255, 255, 0.16);
}

.metro-page .metro-hero-visual {
  position: relative;
  display: flex;
  align-items: stretch;
}

.metro-page .metro-hero-image-wrap {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(34, 16, 66, 0.18);
}

.metro-page .metro-hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.metro-page .metro-hero-card {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.12)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.metro-page .metro-hero-card-overlay {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: min(260px, calc(100% - 40px));
  min-height: auto;
  padding: 20px;
  border-radius: 22px;
  background: rgba(20, 16, 35, 0.56);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 34px rgba(20, 16, 35, 0.22);
}

.metro-page .metro-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metro-page .metro-hero-card strong {
  margin-top: 18px;
  max-width: 360px;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.45;
}

.metro-page .metro-projects,
.metro-page .metro-sectors {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(235, 229, 243, 0.94);
  box-shadow: 0 16px 40px rgba(41, 23, 74, 0.05);
}

.metro-page .metro-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.metro-page .metro-section-copy {
  max-width: 860px;
}

.metro-page .metro-project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metro-page .metro-project-card,
.metro-page .metro-sectors-list article {
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6f4fb);
  border: 1px solid var(--metro-border);
}

.metro-page .metro-project-card {
  min-height: 210px;
}

.metro-page .metro-project-card-accent {
  background: linear-gradient(145deg, #612db0, #7b44cb);
  border-color: transparent;
}

.metro-page .metro-project-card-accent h3,
.metro-page .metro-project-card-accent p,
.metro-page .metro-project-card-accent .metro-project-no {
  color: #fff;
}

.metro-page .metro-project-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--metro-primary);
  font-size: 0.84rem;
  font-weight: 800;
}

.metro-page .metro-project-card h3,
.metro-page .metro-sectors-list h3 {
  margin: 18px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.metro-page .metro-project-card p,
.metro-page .metro-sectors-list p {
  margin: 0;
  color: var(--metro-soft);
  font-size: 0.88rem;
  line-height: 1.72;
}

.metro-page .metro-sectors {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.metro-page .metro-sectors-visual {
  display: flex;
}

.metro-page .metro-sectors-panel {
  min-height: 100%;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #101d2d 0%, #122438 100%);
  box-shadow: 0 20px 42px rgba(16, 22, 40, 0.18);
  color: #fff;
}

.metro-page .metro-sectors-panel strong {
  display: block;
  margin-top: 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.22rem;
  line-height: 1.6;
}

.metro-page .metro-sectors-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.metro-page .metro-cta {
  padding: clamp(34px, 5vw, 50px);
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(135deg, #6d2bc3 0%, #542092 100%);
  box-shadow: 0 22px 44px rgba(76, 35, 148, 0.16);
}

.metro-page .metro-cta p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.metro-page .metro-cta-actions {
  justify-content: center;
}

@media (max-width: 991px) {
  .metro-page .metro-hero,
  .metro-page .metro-project-grid,
  .metro-page .metro-sectors,
  .metro-page .metro-sectors-list {
    grid-template-columns: 1fr;
  }

  .metro-page .metro-section-head {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .metro-page .metro-shell {
    width: min(100% - 24px, 1180px);
    padding: 14px 0 56px;
  }

  .metro-page .metro-hero,
  .metro-page .metro-projects,
  .metro-page .metro-sectors,
  .metro-page .metro-cta {
    border-radius: 22px;
  }

  .metro-page .metro-project-grid,
  .metro-page .metro-sectors-list {
    grid-template-columns: 1fr;
  }

  .metro-page .metro-hero-image-wrap,
  .metro-page .metro-hero-image {
    min-height: 300px;
  }

  .metro-page .metro-hero-card-overlay {
    right: 14px;
    bottom: 14px;
    width: min(240px, calc(100% - 28px));
  }

  .metro-page .metro-btn {
    width: 100%;
  }
}
.railway-page {
  --railway-ink: #000000;
  --railway-soft: #000000;
  --railway-primary: #612db0;
  --railway-primary-deep: #43206f;
  --railway-accent: #d3721c;
  --railway-border: rgba(97, 45, 176, 0.12);
  color: var(--railway-ink);
  background:
    radial-gradient(circle at top left, rgba(97, 45, 176, 0.12), transparent 30%),
    linear-gradient(180deg, #f7f3fc 0%, #fffdf9 44%, #f5f2fb 100%);
}

.railway-page .railway-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 25px 0 46px;
}

.railway-page .railway-kicker,
.railway-page .railway-section-label,
.railway-page .railway-mini-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(97, 45, 176, 0.86);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.railway-page .railway-kicker::before,
.railway-page .railway-section-label::before,
.railway-page .railway-mini-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--railway-accent);
}

.railway-page .railway-hero,
.railway-page .railway-projects,
.railway-page .railway-sectors,
.railway-page .railway-cta {
  margin-top: 24px;
}

.railway-page .railway-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(28px, 5vw, 46px);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #29174a 0%, #43206f 46%, #612db0 100%);
  box-shadow: 0 26px 60px rgba(39, 19, 71, 0.18);
  color: #fff;
}

.railway-page .railway-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.railway-page .railway-hero-copy h1,
.railway-page .railway-section-copy h2,
.railway-page .railway-sectors-copy h2,
.railway-page .railway-cta h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  line-height: 1.04;
}

.railway-page .railway-section-copy h2,
.railway-page .railway-sectors-copy h2,
.railway-page .railway-cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.railway-page .railway-hero-copy p,
.railway-page .railway-section-copy p,
.railway-page .railway-sectors-copy p,
.railway-page .railway-cta p {
  margin: 16px 0 0;
  font-size: 0.98rem;
  line-height: 1.85;
}

.railway-page .railway-hero-copy p,
.railway-page .railway-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.railway-page .railway-section-copy p,
.railway-page .railway-sectors-copy p {
  color: var(--railway-soft);
}

.railway-page .railway-service-tags,
.railway-page .railway-hero-actions,
.railway-page .railway-cta-actions,
.railway-page .railway-sector-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.railway-page .railway-service-tags {
  margin-top: 24px;
}

.railway-page .railway-service-tags span,
.railway-page .railway-sector-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.railway-page .railway-service-tags span {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.railway-page .railway-sector-pills {
  margin-top: 22px;
}

.railway-page .railway-sector-pills span {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.railway-page .railway-hero-actions,
.railway-page .railway-cta-actions {
  margin-top: 28px;
}

.railway-page .railway-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.railway-page .railway-btn:hover {
  transform: translateY(-1px);
}

.railway-page .railway-btn-primary {
  background: linear-gradient(135deg, var(--railway-accent), #bb6010);
  box-shadow: 0 18px 34px rgba(211, 114, 28, 0.22);
  color: #fff;
}

.railway-page .railway-btn-secondary,
.railway-page .railway-btn-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.railway-page .railway-btn-light {
  background: rgba(255, 255, 255, 0.16);
}

.railway-page .railway-hero-visual {
  position: relative;
  display: flex;
  align-items: stretch;
}

.railway-page .railway-hero-image-wrap {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(34, 16, 66, 0.18);
}

.railway-page .railway-hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.railway-page .railway-hero-card {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.12)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.railway-page .railway-hero-card-overlay {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: min(260px, calc(100% - 40px));
  min-height: auto;
  padding: 20px;
  border-radius: 22px;
  background: rgba(20, 16, 35, 0.56);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 34px rgba(20, 16, 35, 0.22);
}

.railway-page .railway-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.railway-page .railway-hero-card strong {
  margin-top: 18px;
  max-width: 360px;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.45;
}

.railway-page .railway-projects,
.railway-page .railway-sectors {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(235, 229, 243, 0.94);
  box-shadow: 0 16px 40px rgba(41, 23, 74, 0.05);
}

.railway-page .railway-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.railway-page .railway-section-copy {
  max-width: 860px;
}

.railway-page .railway-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.railway-page .railway-project-card,
.railway-page .railway-sectors-list article {
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6f4fb);
  border: 1px solid var(--railway-border);
}

.railway-page .railway-project-card {
  min-height: 210px;
}

.railway-page .railway-project-card-accent {
  background: linear-gradient(145deg, #612db0, #7b44cb);
  border-color: transparent;
}

.railway-page .railway-project-card-accent h3,
.railway-page .railway-project-card-accent p,
.railway-page .railway-project-card-accent .railway-project-no {
  color: #fff;
}

.railway-page .railway-project-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--railway-primary);
  font-size: 0.84rem;
  font-weight: 800;
}

.railway-page .railway-project-card h3,
.railway-page .railway-sectors-list h3 {
  margin: 18px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.railway-page .railway-project-card p,
.railway-page .railway-sectors-list p {
  margin: 0;
  color: var(--railway-soft);
  font-size: 0.88rem;
  line-height: 1.72;
}

.railway-page .railway-sectors {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.railway-page .railway-sectors-visual {
  display: flex;
}

.railway-page .railway-sectors-panel {
  min-height: 100%;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #101d2d 0%, #122438 100%);
  box-shadow: 0 20px 42px rgba(16, 22, 40, 0.18);
  color: #fff;
}

.railway-page .railway-sectors-panel strong {
  display: block;
  margin-top: 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.22rem;
  line-height: 1.6;
}

.railway-page .railway-sectors-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.railway-page .railway-cta {
  padding: clamp(34px, 5vw, 50px);
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(135deg, #6d2bc3 0%, #542092 100%);
  box-shadow: 0 22px 44px rgba(76, 35, 148, 0.16);
}

.railway-page .railway-cta p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.railway-page .railway-cta-actions {
  justify-content: center;
}

@media (max-width: 991px) {
  .railway-page .railway-hero,
  .railway-page .railway-project-grid,
  .railway-page .railway-sectors,
  .railway-page .railway-sectors-list {
    grid-template-columns: 1fr;
  }

  .railway-page .railway-section-head {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .railway-page .railway-shell {
    width: min(100% - 24px, 1180px);
    padding: 14px 0 56px;
  }

  .railway-page .railway-hero,
  .railway-page .railway-projects,
  .railway-page .railway-sectors,
  .railway-page .railway-cta {
    border-radius: 22px;
  }

  .railway-page .railway-project-grid,
  .railway-page .railway-sectors-list {
    grid-template-columns: 1fr;
  }

  .railway-page .railway-hero-image-wrap,
  .railway-page .railway-hero-image {
    min-height: 300px;
  }

  .railway-page .railway-hero-card-overlay {
    right: 14px;
    bottom: 14px;
    width: min(240px, calc(100% - 28px));
  }

  .railway-page .railway-btn {
    width: 100%;
  }
}
.temple-page {
  --temple-ink: #000000;
  --temple-soft: #000000;
  --temple-primary: #612db0;
  --temple-accent: #d3721c;
  --temple-border: rgba(97, 45, 176, 0.12);
  color: var(--temple-ink);
  background:
    radial-gradient(circle at top left, rgba(97, 45, 176, 0.12), transparent 30%),
    linear-gradient(180deg, #f7f3fc 0%, #fffdf9 44%, #f5f2fb 100%);
}

.temple-page .temple-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 25px 0 46px;
}

.temple-page .temple-kicker,
.temple-page .temple-section-label,
.temple-page .temple-mini-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(97, 45, 176, 0.86);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.temple-page .temple-kicker::before,
.temple-page .temple-section-label::before,
.temple-page .temple-mini-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--temple-accent);
}

.temple-page .temple-hero,
.temple-page .temple-projects,
.temple-page .temple-sectors,
.temple-page .temple-cta {
  margin-top: 24px;
}

.temple-page .temple-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(28px, 5vw, 46px);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #29174a 0%, #43206f 46%, #612db0 100%);
  box-shadow: 0 26px 60px rgba(39, 19, 71, 0.18);
  color: #fff;
}

.temple-page .temple-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.temple-page .temple-hero-copy h1,
.temple-page .temple-section-copy h2,
.temple-page .temple-sectors-copy h2,
.temple-page .temple-cta h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  line-height: 1.04;
}

.temple-page .temple-section-copy h2,
.temple-page .temple-sectors-copy h2,
.temple-page .temple-cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.temple-page .temple-hero-copy p,
.temple-page .temple-section-copy p,
.temple-page .temple-sectors-copy p,
.temple-page .temple-cta p {
  margin: 16px 0 0;
  font-size: 0.98rem;
  line-height: 1.85;
}

.temple-page .temple-hero-copy p,
.temple-page .temple-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.temple-page .temple-section-copy p,
.temple-page .temple-sectors-copy p {
  color: var(--temple-soft);
}

.temple-page .temple-service-tags,
.temple-page .temple-hero-actions,
.temple-page .temple-cta-actions,
.temple-page .temple-sector-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.temple-page .temple-service-tags {
  margin-top: 24px;
}

.temple-page .temple-service-tags span,
.temple-page .temple-sector-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.temple-page .temple-service-tags span {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.temple-page .temple-sector-pills {
  margin-top: 22px;
}

.temple-page .temple-sector-pills span {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.temple-page .temple-hero-actions,
.temple-page .temple-cta-actions {
  margin-top: 28px;
}

.temple-page .temple-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.temple-page .temple-btn:hover {
  transform: translateY(-1px);
}

.temple-page .temple-btn-primary {
  background: linear-gradient(135deg, var(--temple-accent), #bb6010);
  box-shadow: 0 18px 34px rgba(211, 114, 28, 0.22);
  color: #fff;
}

.temple-page .temple-btn-secondary,
.temple-page .temple-btn-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.temple-page .temple-btn-light {
  background: rgba(255, 255, 255, 0.16);
}

.temple-page .temple-hero-visual {
  position: relative;
  display: flex;
  align-items: stretch;
}

.temple-page .temple-hero-image-wrap {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(34, 16, 66, 0.18);
}

.temple-page .temple-hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.temple-page .temple-hero-card {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.12)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.temple-page .temple-hero-card-overlay {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: min(260px, calc(100% - 40px));
  min-height: auto;
  padding: 20px;
  border-radius: 22px;
  background: rgba(20, 16, 35, 0.56);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 34px rgba(20, 16, 35, 0.22);
}

.temple-page .temple-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.temple-page .temple-hero-card strong {
  margin-top: 18px;
  max-width: 360px;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.45;
}

.temple-page .temple-projects,
.temple-page .temple-sectors {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(235, 229, 243, 0.94);
  box-shadow: 0 16px 40px rgba(41, 23, 74, 0.05);
}

.temple-page .temple-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.temple-page .temple-section-copy {
  max-width: 860px;
}

.temple-page .temple-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.temple-page .temple-project-card,
.temple-page .temple-sectors-list article {
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6f4fb);
  border: 1px solid var(--temple-border);
}

.temple-page .temple-project-card {
  min-height: 210px;
}

.temple-page .temple-project-card-accent {
  background: linear-gradient(145deg, #612db0, #7b44cb);
  border-color: transparent;
}

.temple-page .temple-project-card-accent h3,
.temple-page .temple-project-card-accent p,
.temple-page .temple-project-card-accent .temple-project-no {
  color: #fff;
}

.temple-page .temple-project-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--temple-primary);
  font-size: 0.84rem;
  font-weight: 800;
}

.temple-page .temple-project-card h3,
.temple-page .temple-sectors-list h3 {
  margin: 18px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.temple-page .temple-project-card p,
.temple-page .temple-sectors-list p {
  margin: 0;
  color: var(--temple-soft);
  font-size: 0.88rem;
  line-height: 1.72;
}

.temple-page .temple-sectors {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.temple-page .temple-sectors-visual {
  display: flex;
}

.temple-page .temple-sectors-panel {
  min-height: 100%;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #101d2d 0%, #122438 100%);
  box-shadow: 0 20px 42px rgba(16, 22, 40, 0.18);
  color: #fff;
}

.temple-page .temple-sectors-panel strong {
  display: block;
  margin-top: 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.22rem;
  line-height: 1.6;
}

.temple-page .temple-sectors-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.temple-page .temple-cta {
  padding: clamp(34px, 5vw, 50px);
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(135deg, #6d2bc3 0%, #542092 100%);
  box-shadow: 0 22px 44px rgba(76, 35, 148, 0.16);
}

.temple-page .temple-cta p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.temple-page .temple-cta-actions {
  justify-content: center;
}

@media (max-width: 991px) {
  .temple-page .temple-hero,
  .temple-page .temple-project-grid,
  .temple-page .temple-sectors,
  .temple-page .temple-sectors-list {
    grid-template-columns: 1fr;
  }

  .temple-page .temple-section-head {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .temple-page .temple-shell {
    width: min(100% - 24px, 1180px);
    padding: 14px 0 56px;
  }

  .temple-page .temple-hero,
  .temple-page .temple-projects,
  .temple-page .temple-sectors,
  .temple-page .temple-cta {
    border-radius: 22px;
  }

  .temple-page .temple-project-grid,
  .temple-page .temple-sectors-list {
    grid-template-columns: 1fr;
  }

  .temple-page .temple-hero-image-wrap,
  .temple-page .temple-hero-image {
    min-height: 300px;
  }

  .temple-page .temple-hero-card-overlay {
    right: 14px;
    bottom: 14px;
    width: min(240px, calc(100% - 28px));
  }

.temple-page .temple-btn {
    width: 100%;
  }
}

.government-page {
  --government-ink: #241735;
  --government-soft: #6f6784;
  --government-primary: #612db0;
  --government-accent: #d3721c;
  --government-border: rgba(97, 45, 176, 0.12);
  color: var(--government-ink);
  background:
    radial-gradient(circle at top left, rgba(97, 45, 176, 0.12), transparent 30%),
    linear-gradient(180deg, #f7f3fc 0%, #fffdf9 44%, #f5f2fb 100%);
}

.government-page .government-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 25px 0 46px;
}

.government-page .government-kicker,
.government-page .government-section-label,
.government-page .government-mini-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(97, 45, 176, 0.86);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.government-page .government-kicker::before,
.government-page .government-section-label::before,
.government-page .government-mini-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--government-accent);
}

.government-page .government-hero,
.government-page .government-projects,
.government-page .government-sectors,
.government-page .government-cta {
  margin-top: 24px;
}

.government-page .government-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(28px, 5vw, 46px);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #29174a 0%, #43206f 46%, #612db0 100%);
  box-shadow: 0 26px 60px rgba(39, 19, 71, 0.18);
  color: #fff;
}

.government-page .government-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.government-page .government-hero-copy h1,
.government-page .government-section-copy h2,
.government-page .government-sectors-copy h2,
.government-page .government-cta h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  line-height: 1.04;
}

.government-page .government-section-copy h2,
.government-page .government-sectors-copy h2,
.government-page .government-cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.government-page .government-hero-copy p,
.government-page .government-section-copy p,
.government-page .government-sectors-copy p,
.government-page .government-cta p {
  margin: 16px 0 0;
  font-size: 0.98rem;
  line-height: 1.85;
}

.government-page .government-hero-copy p,
.government-page .government-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.government-page .government-section-copy p,
.government-page .government-sectors-copy p {
  color: var(--government-soft);
}

.government-page .government-service-tags,
.government-page .government-hero-actions,
.government-page .government-cta-actions,
.government-page .government-sector-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.government-page .government-service-tags {
  margin-top: 24px;
}

.government-page .government-service-tags span,
.government-page .government-sector-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.government-page .government-service-tags span {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.government-page .government-sector-pills {
  margin-top: 22px;
}

.government-page .government-sector-pills span {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.government-page .government-hero-actions,
.government-page .government-cta-actions {
  margin-top: 28px;
}

.government-page .government-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.government-page .government-btn:hover {
  transform: translateY(-1px);
}

.government-page .government-btn-primary {
  background: linear-gradient(135deg, var(--government-accent), #bb6010);
  box-shadow: 0 18px 34px rgba(211, 114, 28, 0.22);
  color: #fff;
}

.government-page .government-btn-secondary,
.government-page .government-btn-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.government-page .government-btn-light {
  background: rgba(255, 255, 255, 0.16);
}

.government-page .government-hero-visual {
  position: relative;
  display: flex;
  align-items: stretch;
}

.government-page .government-hero-image-wrap {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(34, 16, 66, 0.18);
}

.government-page .government-hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.government-page .government-hero-card {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.12)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.government-page .government-hero-card-overlay {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: min(260px, calc(100% - 40px));
  min-height: auto;
  padding: 20px;
  border-radius: 22px;
  background: rgba(20, 16, 35, 0.56);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 34px rgba(20, 16, 35, 0.22);
}

.government-page .government-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.government-page .government-hero-card strong {
  margin-top: 18px;
  max-width: 360px;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.45;
}

.government-page .government-projects,
.government-page .government-sectors {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(235, 229, 243, 0.94);
  box-shadow: 0 16px 40px rgba(41, 23, 74, 0.05);
}

.government-page .government-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.government-page .government-section-copy {
  max-width: 860px;
}

.government-page .government-project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.government-page .government-project-card,
.government-page .government-sectors-list article {
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6f4fb);
  border: 1px solid var(--government-border);
}

.government-page .government-project-card {
  min-height: 210px;
}

.government-page .government-project-card-accent {
  background: linear-gradient(145deg, #612db0, #7b44cb);
  border-color: transparent;
}

.government-page .government-project-card-accent h3,
.government-page .government-project-card-accent p,
.government-page .government-project-card-accent .government-project-no {
  color: #fff;
}

.government-page .government-project-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--government-primary);
  font-size: 0.84rem;
  font-weight: 800;
}

.government-page .government-project-card h3,
.government-page .government-sectors-list h3 {
  margin: 18px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.government-page .government-project-card p,
.government-page .government-sectors-list p {
  margin: 0;
  color: var(--government-soft);
  font-size: 0.88rem;
  line-height: 1.72;
}

.government-page .government-sectors {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.government-page .government-sectors-visual {
  display: flex;
}

.government-page .government-sectors-panel {
  min-height: 100%;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #101d2d 0%, #122438 100%);
  box-shadow: 0 20px 42px rgba(16, 22, 40, 0.18);
  color: #fff;
}

.government-page .government-sectors-panel strong {
  display: block;
  margin-top: 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.22rem;
  line-height: 1.6;
}

.government-page .government-sectors-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.government-page .government-cta {
  padding: clamp(34px, 5vw, 50px);
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(135deg, #6d2bc3 0%, #542092 100%);
  box-shadow: 0 22px 44px rgba(76, 35, 148, 0.16);
}

.government-page .government-cta p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.government-page .government-cta-actions {
  justify-content: center;
}

@media (max-width: 991px) {
  .government-page .government-hero,
  .government-page .government-project-grid,
  .government-page .government-sectors,
  .government-page .government-sectors-list {
    grid-template-columns: 1fr;
  }

  .government-page .government-section-head {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .government-page .government-shell {
    width: min(100% - 24px, 1180px);
    padding: 14px 0 56px;
  }

  .government-page .government-hero,
  .government-page .government-projects,
  .government-page .government-sectors,
  .government-page .government-cta {
    border-radius: 22px;
  }

  .government-page .government-project-grid,
  .government-page .government-sectors-list {
    grid-template-columns: 1fr;
  }

  .government-page .government-hero-image-wrap,
  .government-page .government-hero-image {
    min-height: 300px;
  }

  .government-page .government-hero-card-overlay {
    right: 14px;
    bottom: 14px;
    width: min(240px, calc(100% - 28px));
  }

.government-page .government-btn {
    width: 100%;
  }
}

.tunnel-page {
  --tunnel-ink: #000000;
  --tunnel-soft: #000000;
  --tunnel-primary: #612db0;
  --tunnel-accent: #d3721c;
  --tunnel-border: rgba(97, 45, 176, 0.12);
  color: var(--tunnel-ink);
  background:
    radial-gradient(circle at top left, rgba(97, 45, 176, 0.12), transparent 30%),
    linear-gradient(180deg, #f7f3fc 0%, #fffdf9 44%, #f5f2fb 100%);
}

.tunnel-page .tunnel-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 25px 0 46px;
}

.tunnel-page .tunnel-kicker,
.tunnel-page .tunnel-section-label,
.tunnel-page .tunnel-mini-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(97, 45, 176, 0.86);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tunnel-page .tunnel-kicker::before,
.tunnel-page .tunnel-section-label::before,
.tunnel-page .tunnel-mini-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--tunnel-accent);
}

.tunnel-page .tunnel-hero,
.tunnel-page .tunnel-projects,
.tunnel-page .tunnel-sectors,
.tunnel-page .tunnel-cta {
  margin-top: 24px;
}

.tunnel-page .tunnel-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(28px, 5vw, 46px);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #29174a 0%, #43206f 46%, #612db0 100%);
  box-shadow: 0 26px 60px rgba(39, 19, 71, 0.18);
  color: #fff;
}

.tunnel-page .tunnel-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tunnel-page .tunnel-hero-copy h1,
.tunnel-page .tunnel-section-copy h2,
.tunnel-page .tunnel-sectors-copy h2,
.tunnel-page .tunnel-cta h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  line-height: 1.04;
}

.tunnel-page .tunnel-section-copy h2,
.tunnel-page .tunnel-sectors-copy h2,
.tunnel-page .tunnel-cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.tunnel-page .tunnel-hero-copy p,
.tunnel-page .tunnel-section-copy p,
.tunnel-page .tunnel-sectors-copy p,
.tunnel-page .tunnel-cta p {
  margin: 16px 0 0;
  font-size: 0.98rem;
  line-height: 1.85;
}

.tunnel-page .tunnel-hero-copy p,
.tunnel-page .tunnel-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.tunnel-page .tunnel-section-copy p,
.tunnel-page .tunnel-sectors-copy p {
  color: var(--tunnel-soft);
}

.tunnel-page .tunnel-service-tags,
.tunnel-page .tunnel-hero-actions,
.tunnel-page .tunnel-cta-actions,
.tunnel-page .tunnel-sector-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tunnel-page .tunnel-service-tags {
  margin-top: 24px;
}

.tunnel-page .tunnel-service-tags span,
.tunnel-page .tunnel-sector-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.tunnel-page .tunnel-service-tags span {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.tunnel-page .tunnel-sector-pills {
  margin-top: 22px;
}

.tunnel-page .tunnel-sector-pills span {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.tunnel-page .tunnel-hero-actions,
.tunnel-page .tunnel-cta-actions {
  margin-top: 28px;
}

.tunnel-page .tunnel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tunnel-page .tunnel-btn:hover {
  transform: translateY(-1px);
}

.tunnel-page .tunnel-btn-primary {
  background: linear-gradient(135deg, var(--tunnel-accent), #bb6010);
  box-shadow: 0 18px 34px rgba(211, 114, 28, 0.22);
  color: #fff;
}

.tunnel-page .tunnel-btn-secondary,
.tunnel-page .tunnel-btn-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.tunnel-page .tunnel-btn-light {
  background: rgba(255, 255, 255, 0.16);
}

.tunnel-page .tunnel-hero-visual {
  position: relative;
  display: flex;
  align-items: stretch;
}

.tunnel-page .tunnel-hero-image-wrap {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(34, 16, 66, 0.18);
}

.tunnel-page .tunnel-hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.tunnel-page .tunnel-hero-card {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.12)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.tunnel-page .tunnel-hero-card-overlay {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: min(260px, calc(100% - 40px));
  min-height: auto;
  padding: 20px;
  border-radius: 22px;
  background: rgba(20, 16, 35, 0.56);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 34px rgba(20, 16, 35, 0.22);
}

.tunnel-page .tunnel-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tunnel-page .tunnel-hero-card strong {
  margin-top: 18px;
  max-width: 360px;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.45;
}

.tunnel-page .tunnel-projects,
.tunnel-page .tunnel-sectors {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(235, 229, 243, 0.94);
  box-shadow: 0 16px 40px rgba(41, 23, 74, 0.05);
}

.tunnel-page .tunnel-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.tunnel-page .tunnel-section-copy {
  max-width: 860px;
}

.tunnel-page .tunnel-project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.tunnel-page .tunnel-project-card,
.tunnel-page .tunnel-sectors-list article {
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6f4fb);
  border: 1px solid var(--tunnel-border);
}

.tunnel-page .tunnel-project-card {
  min-height: 210px;
}

.tunnel-page .tunnel-project-card-accent {
  background: linear-gradient(145deg, #612db0, #7b44cb);
  border-color: transparent;
}

.tunnel-page .tunnel-project-card-accent h3,
.tunnel-page .tunnel-project-card-accent p,
.tunnel-page .tunnel-project-card-accent .tunnel-project-no {
  color: #fff;
}

.tunnel-page .tunnel-project-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--tunnel-primary);
  font-size: 0.84rem;
  font-weight: 800;
}

.tunnel-page .tunnel-project-card h3,
.tunnel-page .tunnel-sectors-list h3 {
  margin: 18px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.tunnel-page .tunnel-project-card p,
.tunnel-page .tunnel-sectors-list p {
  margin: 0;
  color: var(--tunnel-soft);
  font-size: 0.88rem;
  line-height: 1.72;
}

.tunnel-page .tunnel-sectors {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.tunnel-page .tunnel-sectors-visual {
  display: flex;
}

.tunnel-page .tunnel-sectors-panel {
  min-height: 100%;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #101d2d 0%, #122438 100%);
  box-shadow: 0 20px 42px rgba(16, 22, 40, 0.18);
  color: #fff;
}

.tunnel-page .tunnel-sectors-panel strong {
  display: block;
  margin-top: 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.22rem;
  line-height: 1.6;
}

.tunnel-page .tunnel-sectors-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.tunnel-page .tunnel-cta {
  padding: clamp(34px, 5vw, 50px);
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(135deg, #6d2bc3 0%, #542092 100%);
  box-shadow: 0 22px 44px rgba(76, 35, 148, 0.16);
}

.tunnel-page .tunnel-cta p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tunnel-page .tunnel-cta-actions {
  justify-content: center;
}

@media (max-width: 991px) {
  .tunnel-page .tunnel-hero,
  .tunnel-page .tunnel-project-grid,
  .tunnel-page .tunnel-sectors,
  .tunnel-page .tunnel-sectors-list {
    grid-template-columns: 1fr;
  }

  .tunnel-page .tunnel-section-head {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .tunnel-page .tunnel-shell {
    width: min(100% - 24px, 1180px);
    padding: 14px 0 56px;
  }

  .tunnel-page .tunnel-hero,
  .tunnel-page .tunnel-projects,
  .tunnel-page .tunnel-sectors,
  .tunnel-page .tunnel-cta {
    border-radius: 22px;
  }

  .tunnel-page .tunnel-project-grid,
  .tunnel-page .tunnel-sectors-list {
    grid-template-columns: 1fr;
  }

  .tunnel-page .tunnel-hero-image-wrap,
  .tunnel-page .tunnel-hero-image {
    min-height: 300px;
  }

  .tunnel-page .tunnel-hero-card-overlay {
    right: 14px;
    bottom: 14px;
    width: min(240px, calc(100% - 28px));
  }

.tunnel-page .tunnel-btn {
    width: 100%;
  }
}

.highway-page {
  --highway-ink: #000000;
  --highway-soft: #000000;
  --highway-primary: #612db0;
  --highway-accent: #d3721c;
  --highway-border: rgba(97, 45, 176, 0.12);
  color: var(--highway-ink);
  background:
    radial-gradient(circle at top left, rgba(97, 45, 176, 0.12), transparent 30%),
    linear-gradient(180deg, #f7f3fc 0%, #fffdf9 44%, #f5f2fb 100%);
}

.highway-page .highway-shell {
  max-width: 90vw;
  margin: 0 auto;
  padding: 25px 0 46px;
}

.highway-page .highway-kicker,
.highway-page .highway-section-label,
.highway-page .highway-mini-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(97, 45, 176, 0.86);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.highway-page .highway-kicker::before,
.highway-page .highway-section-label::before,
.highway-page .highway-mini-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--highway-accent);
}

.highway-page .highway-hero,
.highway-page .highway-projects,
.highway-page .highway-sectors,
.highway-page .highway-cta {
  margin-top: 24px;
}

.highway-page .highway-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(28px, 5vw, 46px);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #29174a 0%, #43206f 46%, #612db0 100%);
  box-shadow: 0 26px 60px rgba(39, 19, 71, 0.18);
  color: #fff;
}

.highway-page .highway-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.highway-page .highway-hero-copy h1,
.highway-page .highway-section-copy h2,
.highway-page .highway-sectors-copy h2,
.highway-page .highway-cta h2 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  line-height: 1.04;
}

.highway-page .highway-section-copy h2,
.highway-page .highway-sectors-copy h2,
.highway-page .highway-cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.highway-page .highway-hero-copy p,
.highway-page .highway-section-copy p,
.highway-page .highway-sectors-copy p,
.highway-page .highway-cta p {
  margin: 16px 0 0;
  font-size: 0.98rem;
  line-height: 1.85;
}

.highway-page .highway-hero-copy p,
.highway-page .highway-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.highway-page .highway-section-copy p,
.highway-page .highway-sectors-copy p {
  color: var(--highway-soft);
}

.highway-page .highway-service-tags,
.highway-page .highway-hero-actions,
.highway-page .highway-cta-actions,
.highway-page .highway-sector-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.highway-page .highway-service-tags {
  margin-top: 24px;
}

.highway-page .highway-service-tags span,
.highway-page .highway-sector-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.highway-page .highway-service-tags span {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.highway-page .highway-sector-pills {
  margin-top: 22px;
}

.highway-page .highway-sector-pills span {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.highway-page .highway-hero-actions,
.highway-page .highway-cta-actions {
  margin-top: 28px;
}

.highway-page .highway-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.highway-page .highway-btn:hover {
  transform: translateY(-1px);
}

.highway-page .highway-btn-primary {
  background: linear-gradient(135deg, var(--highway-accent), #bb6010);
  box-shadow: 0 18px 34px rgba(211, 114, 28, 0.22);
  color: #fff;
}

.highway-page .highway-btn-secondary,
.highway-page .highway-btn-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.highway-page .highway-btn-light {
  background: rgba(255, 255, 255, 0.16);
}

.highway-page .highway-hero-visual {
  position: relative;
  display: flex;
  align-items: stretch;
}

.highway-page .highway-hero-image-wrap {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(34, 16, 66, 0.18);
}

.highway-page .highway-hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.highway-page .highway-hero-card {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.12)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.highway-page .highway-hero-card-overlay {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: min(260px, calc(100% - 40px));
  min-height: auto;
  padding: 20px;
  border-radius: 22px;
  background: rgba(20, 16, 35, 0.56);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 34px rgba(20, 16, 35, 0.22);
}

.highway-page .highway-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.highway-page .highway-hero-card strong {
  margin-top: 18px;
  max-width: 360px;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.45;
}

.highway-page .highway-projects,
.highway-page .highway-sectors {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(235, 229, 243, 0.94);
  box-shadow: 0 16px 40px rgba(41, 23, 74, 0.05);
}

.highway-page .highway-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.highway-page .highway-section-copy {
  max-width: 860px;
}

.highway-page .highway-project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.highway-page .highway-project-card,
.highway-page .highway-sectors-list article {
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6f4fb);
  border: 1px solid var(--highway-border);
}

.highway-page .highway-project-card {
  min-height: 210px;
}

.highway-page .highway-project-card-accent {
  background: linear-gradient(145deg, #612db0, #7b44cb);
  border-color: transparent;
}

.highway-page .highway-project-card-accent h3,
.highway-page .highway-project-card-accent p,
.highway-page .highway-project-card-accent .highway-project-no {
  color: #fff;
}

.highway-page .highway-project-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(97, 45, 176, 0.08);
  color: var(--highway-primary);
  font-size: 0.84rem;
  font-weight: 800;
}

.highway-page .highway-project-card h3,
.highway-page .highway-sectors-list h3 {
  margin: 18px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.highway-page .highway-project-card p,
.highway-page .highway-sectors-list p {
  margin: 0;
  color: var(--highway-soft);
  font-size: 0.88rem;
  line-height: 1.72;
}

.highway-page .highway-sectors {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.highway-page .highway-sectors-visual {
  display: flex;
}

.highway-page .highway-sectors-panel {
  min-height: 100%;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #101d2d 0%, #122438 100%);
  box-shadow: 0 20px 42px rgba(16, 22, 40, 0.18);
  color: #fff;
}

.highway-page .highway-sectors-panel strong {
  display: block;
  margin-top: 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.22rem;
  line-height: 1.6;
}

.highway-page .highway-sectors-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.highway-page .highway-cta {
  padding: clamp(34px, 5vw, 50px);
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(135deg, #6d2bc3 0%, #542092 100%);
  box-shadow: 0 22px 44px rgba(76, 35, 148, 0.16);
}

.highway-page .highway-cta p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.highway-page .highway-cta-actions {
  justify-content: center;
}

@media (max-width: 991px) {
  .highway-page .highway-hero,
  .highway-page .highway-project-grid,
  .highway-page .highway-sectors,
  .highway-page .highway-sectors-list {
    grid-template-columns: 1fr;
  }

  .highway-page .highway-section-head {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .highway-page .highway-shell {
    width: min(100% - 24px, 1180px);
    padding: 14px 0 56px;
  }

  .highway-page .highway-hero,
  .highway-page .highway-projects,
  .highway-page .highway-sectors,
  .highway-page .highway-cta {
    border-radius: 22px;
  }

  .highway-page .highway-project-grid,
  .highway-page .highway-sectors-list {
    grid-template-columns: 1fr;
  }

  .highway-page .highway-hero-image-wrap,
  .highway-page .highway-hero-image {
    min-height: 300px;
  }

  .highway-page .highway-hero-card-overlay {
    right: 14px;
    bottom: 14px;
    width: min(240px, calc(100% - 28px));
  }

  .highway-page .highway-btn {
    width: 100%;
  }
}

/* Achievements page responsive cleanup */
.achievements-awards {
  position: relative;
  overflow: visible;
  padding-top: 60px;
  padding-bottom: 60px;
}

.achievements-awards .container-fluid {
  width: min(100% - 32px, 1320px);
  margin: 0 auto;
  padding: 0;
}

.achievements-awards-row {
  --bs-gutter-x: clamp(1rem, 2.2vw, 2.5rem);
  --bs-gutter-y: clamp(1.2rem, 2vw, 2rem);
}

.achievements-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.1;
}

.achievements-desc {
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.85;
}

.award-content {
  width: 100%;
  max-width: 820px;
  margin-left: clamp(1.25rem, 6vw, 150px);
  padding: clamp(1rem, 2vw, 28px) clamp(1rem, 2.6vw, 36px);
}

.award-title {
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  line-height: 1.2;
}

.award-desc {
  font-size: clamp(0.96rem, 1.15vw, 1.02rem);
}

@media (min-width: 1200px) {
  .achievements-hero {
    padding-top: 72px;
  }

  .achievements-awards .container-fluid {
    width: min(100% - 64px, 1400px);
  }
}

@media (max-width: 1199.98px) {
  .achievements-inner {
    gap: 1.75rem;
  }

  .achievements-left {
    flex: 0 0 min(62%, 760px);
  }

  .achievements-right {
    flex: 1 1 auto;
  }

  .award-card {
    width: min(290px, calc(100% - 18px));
  }

  .award-content {
    margin-left: clamp(0.5rem, 3vw, 90px);
  }
}

@media (max-width: 991.98px) {
  .achievements-hero {
    padding-top: 32px;
    padding-bottom: 24px;
    min-height: auto;
  }

  .achievements-inner {
    padding: 0 16px;
    gap: 1rem;
  }

  .achievements-box {
    border-radius: 18px;
    padding: 20px 18px;
  }

  .achievements-awards {
    padding-top: 18px;
    padding-bottom: 28px;
  }

  .achievements-awards .container-fluid {
    width: min(100% - 24px, 920px);
  }

  .timeline-col {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .award-card {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
    max-width: 520px;
    margin: 0 auto 12px;
  }

  .award-card:hover {
    transform: translateY(-6px) scale(1.01);
  }

  .award-content {
    margin-left: 0;
    max-width: none;
    padding: 8px 4px 16px;
  }
}

@media (max-width: 767.98px) {
  .achievements-awards .container-fluid {
    width: min(100% - 20px, 100%);
  }

  .achievements-awards-row {
    --bs-gutter-y: 0.75rem;
  }

  .award-card {
    max-width: 100%;
    border-radius: 16px;
  }

  .award-img {
    border-radius: 14px;
  }

  .award-content {
    text-align: left;
    padding: 4px 2px 18px;
  }

  .award-title {
    margin-bottom: 8px;
  }
}

@media (max-width: 575.98px) {
  .achievements-inner {
    padding: 0 12px;
  }

  .achievements-box {
    padding: 16px 14px;
    border-left-width: 6px;
  }

  .achievements-awards {
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .award-card {
    margin-bottom: 10px;
    box-shadow: 0 14px 28px rgba(32, 16, 56, 0.14);
  }

  .award-card:hover {
    transform: translateY(-4px);
  }

  .award-desc {
    line-height: 1.75;
  }
}

@media (max-width: 399.98px) {
  .achievements-hero,
  .achievements-awards {
    overflow-x: clip;
  }

  .achievements-awards .container-fluid {
    width: calc(100% - 16px);
  }

  .award-content {
    padding-bottom: 14px;
  }
}

/* Final responsive safeguard for award text blocks */
.award-content {
  overflow-wrap: anywhere;
}

.award-title {
  max-width: 100%;
  line-height: 1.25;
}

.award-desc {
  max-width: 100%;
  line-height: 1.8;
}

@media (max-width: 767.98px) {
  .award-title {
    font-size: clamp(1.15rem, 5.2vw, 1.45rem);
  }

  .award-desc {
    font-size: clamp(0.95rem, 3.8vw, 1rem);
    line-height: 1.7;
  }
}

/* Overlap fix: keep award media and text in their own grid columns */
.achievements-awards-row .timeline-col {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.achievements-awards-row .award-card {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  width: min(100%, 290px);
  max-width: 100%;
  margin: 0 auto 12px;
}

.achievements-awards-row .award-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.achievements-awards-row .award-content {
  margin-left: 0;
  padding-left: clamp(0.25rem, 1vw, 0.75rem);
  padding-right: clamp(0.25rem, 1vw, 0.75rem);
}

@media (max-width: 991.98px) {
  .achievements-awards-row .award-card:hover {
    transform: translateY(-5px) scale(1.01);
  }

  .achievements-awards-row .award-content {
    padding-left: 0;
    padding-right: 0;
  }
}


