:root {
    --navy: #0b1730;
    --blue: #16345f;
    --orange: #f59a23;
    --orange2: #ffb44d;
    --ink: #14233d;
    --muted: #64748b;
    --line: #e5eaf1;
    --paper: #fff;
    --soft: #f5f7fa;
    --max: 1180px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.65
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

.wrap {
    width: min(var(--max), calc(100% - 40px));
    margin: auto
}

.topline {
    background: var(--navy);
    color: #d8e3f0;
    font-size: 13px
}

.topinner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px
}

.site-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 30px
}

.brand {
    width: 190px;
    flex: none
}

.brand img {
    width: 190px;
    height: auto
}

.nav nav {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-left: auto
}

.nav nav a {
    font-size: 14px;
    font-weight: 700;
    color: #42516a;
    padding: 28px 0;
    border-bottom: 2px solid transparent
}

.nav nav a:hover,
.nav nav a.active {
    color: var(--navy);
    border-color: var(--orange)
}

.nav-cta {
    background: var(--orange);
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px
}

.menu {
    display: none;
    border: 0;
    background: none;
    font-size: 28px;
    color: var(--navy)
}

.hero {
    background: var(--navy);
    color: #fff;
    padding: 74px 0 68px
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center
}

.eyebrow {
    display: inline-block;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.1px;
    text-transform: uppercase;
    margin-bottom: 15px
}

.hero h1 {
    font-size: clamp(46px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -3px;
    margin: 0 0 24px;
    color: #fff;
    max-width: 720px
}

.hero h1 span {
    color: var(--orange2)
}

.hero p {
    color: #dbe6f3;
    max-width: 700px;
    font-size: 18px;
    margin: 0 0 28px
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 13px 20px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer
}

.btn.primary {
    background: var(--orange);
    color: #101b2f
}

.btn.secondary {
    background: #fff;
    color: var(--navy);
    border-color: #d8e1ec
}

.hero .btn.secondary {
    background: transparent;
    color: #fff;
    border-color: #53647f
}

.hero-visual {
    position: relative
}

.hero-visual>img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .12)
}

.hero-tag {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: #fff;
    color: var(--navy);
    padding: 15px 18px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .18)
}

.hero-tag strong,
.hero-tag small {
    display: block
}

.hero-tag small {
    color: var(--muted);
    margin-top: 3px
}

.hero-points {
    display: flex;
    gap: 26px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    padding-top: 20px;
    margin-top: 34px;
    color: #e7eef8;
    font-size: 13px;
    font-weight: 700;
    flex-wrap: wrap
}

.section {
    padding: 88px 0
}

.intro {
    background: #fff
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.section h2,
.intro h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 18px;
    color: var(--navy)
}

.intro p,
.section-lead p {
    font-size: 17px;
    color: var(--muted);
    margin: 0 0 18px
}

.text-link {
    font-weight: 800;
    color: var(--navy);
    border-bottom: 2px solid var(--orange);
    padding-bottom: 3px
}

.services-section {
    background: var(--soft)
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    margin-bottom: 34px
}

.section-head h2 {
    max-width: 760px
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: .2s transform, .2s box-shadow
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(11, 23, 48, .08)
}

.service-media {
    height: 190px;
    position: relative;
    background: #eef3f8;
    overflow: hidden
}

.service-media>img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.service-icon {
    position: absolute;
    left: 15px;
    bottom: 15px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff;
    padding: 7px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12)
}

.service-body {
    padding: 20px
}

.service-no {
    font-size: 11px;
    font-weight: 900;
    color: var(--orange)
}

.service-body h3 {
    font-size: 20px;
    line-height: 1.2;
    margin: 8px 0 9px;
    color: var(--navy)
}

.service-body p {
    font-size: 14px;
    color: var(--muted);
    min-height: 66px
}

.service-body a {
    font-size: 13px;
    font-weight: 800
}

.dark-band {
    background: var(--navy);
    color: #fff
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 44px 0;
    gap: 20px
}

.stats div {
    border-left: 1px solid rgba(255, 255, 255, .16);
    padding-left: 22px
}

.stats strong {
    font-size: 35px;
    color: var(--orange2);
    display: block
}

.stats span {
    font-size: 13px;
    color: #cad6e4
}

.project-preview {
    background: #fff
}

.project-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.project-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: #fff
}

.project-card>img {
    height: 210px;
    width: 100%;
    object-fit: cover
}

.project-card>div {
    padding: 17px
}

.project-card span {
    font-size: 10px;
    font-weight: 900;
    color: var(--orange);
    letter-spacing: 1.4px
}

.project-card h3 {
    font-size: 17px;
    line-height: 1.35;
    margin: 7px 0 0
}

.project-card p {
    font-size: 13px;
    color: var(--muted);
    margin: 8px 0 0
}

.clients-strip {
    background: var(--soft)
}

.client-mini {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px
}

.client-mini img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px
}

.cta {
    background: #eef3f8;
    padding: 70px 0
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px
}

.cta h2 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 38px
}

.cta p {
    margin: 0;
    color: var(--muted)
}

.inner-hero {
    background: var(--navy);
    color: #fff;
    padding: 72px 0
}

.inner-hero h1 {
    font-size: clamp(42px, 6vw, 66px);
    line-height: 1.05;
    letter-spacing: -2.5px;
    margin: 0 0 14px;
    color: #fff
}

.inner-hero p {
    font-size: 18px;
    color: #d6e1ee;
    margin: 0;
    max-width: 760px
}

.service-details {
    display: grid;
    gap: 28px
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: #fff
}

.service-detail:nth-child(even) {
    direction: rtl
}

.service-detail:nth-child(even)>* {
    direction: ltr
}

.service-detail-media {
    min-height: 360px;
    background: #eef3f8
}

.service-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.service-detail-copy {
    padding: 45px
}

.service-detail-copy h2 {
    margin-top: 0
}

.service-detail-copy p {
    color: var(--muted)
}

.service-detail-copy ul,
.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 26px;
    display: grid;
    gap: 8px
}

.service-detail-copy li {
    font-weight: 700;
    font-size: 14px
}

.feature-image {
    position: relative
}

.feature-image>img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 18px
}

.image-caption {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: #fff;
    border-radius: 10px;
    padding: 14px 17px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .12)
}

.image-caption strong,
.image-caption span {
    display: block
}

.image-caption span {
    color: var(--muted);
    font-size: 13px
}

.profile-layout {
    align-items: center
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 70px
}

.value-grid>div {
    border-top: 3px solid var(--orange);
    padding-top: 18px
}

.value-grid strong {
    color: var(--orange);
    font-size: 13px
}

.value-grid h3 {
    margin: 7px 0
}

.value-grid p {
    color: var(--muted);
    margin: 0
}

.process {
    margin-top: 80px
}

.process-head {
    margin-bottom: 28px
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.process-grid>div {
    background: var(--soft);
    border-radius: 12px;
    padding: 24px
}

.process-grid span {
    color: var(--orange);
    font-weight: 900
}

.process-grid h3 {
    margin: 12px 0 5px
}

.process-grid p {
    color: var(--muted);
    font-size: 14px
}

.project-intro {
    max-width: 800px;
    margin-bottom: 30px
}

.table-wrap {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: auto
}

table {
    border-collapse: collapse;
    width: 100%;
    min-width: 850px
}

th,
td {
    padding: 15px 16px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top
}

th {
    background: var(--navy);
    color: #fff;
    font-size: 13px
}

td {
    font-size: 14px;
    color: #42516a
}

td:first-child {
    font-weight: 900;
    color: var(--orange)
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 35px
}

.client-card {
    height: 160px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px
}

.client-card img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.gallery-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff
}

.gallery-open {
    border: 0;
    padding: 0;
    background: none;
    width: 100%;
    cursor: pointer;
    text-align: left
}

.gallery-open img {
    width: 100%;
    height: 220px;
    object-fit: cover
}

.gallery-open span {
    display: block;
    padding: 13px 14px;
    font-weight: 800;
    font-size: 14px;
    color: var(--navy)
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 12, 25, .92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 100
}

.lightbox.open {
    display: flex
}

.lightbox img {
    max-height: 88vh;
    max-width: 90vw;
    border-radius: 10px
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    border: 0;
    background: none;
    color: #fff;
    font-size: 42px;
    cursor: pointer
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start
}

.contact-list {
    display: grid;
    gap: 22px;
    margin-top: 30px
}

.contact-list>div {
    border-left: 3px solid var(--orange);
    padding-left: 17px
}

.contact-list strong {
    display: block;
    color: var(--navy)
}

.contact-list p {
    margin: 5px 0;
    color: var(--muted)
}

.form-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 30px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(11, 23, 48, .06)
}

.form-card h2 {
    font-size: 28px
}

.form-card form {
    display: grid;
    gap: 15px
}

.form-card label {
    font-size: 13px;
    font-weight: 800;
    color: var(--navy)
}

.form-card input,
.form-card textarea {
    width: 100%;
    margin-top: 7px;
    padding: 12px 13px;
    border: 1px solid #d9e1eb;
    border-radius: 8px;
    font: inherit;
    outline: none
}

.form-card input:focus,
.form-card textarea:focus {
    border-color: var(--orange)
}

.form-status {
    font-size: 13px;
    margin: 0
}

.footer {
    background: #081226;
    color: #d2dce8;
    padding-top: 55px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 45px;
    padding-bottom: 45px
}

.footer-logo {
    width: 185px;
    margin-bottom: 15px
}

.footer p {
    color: #9fb0c5;
    font-size: 14px
}

.footer h4 {
    color: #fff;
    margin: 0 0 15px
}

.footer a {
    display: block;
    color: #aebdd0;
    font-size: 14px;
    margin: 7px 0
}

.footer a:hover {
    color: var(--orange2)
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 18px 0;
    font-size: 12px;
    color: #8292a7
}

@media(max-width:1000px) {
    .nav nav {
        gap: 15px
    }

    .nav nav a {
        font-size: 12px
    }

    .nav-cta {
        display: none
    }

    .hero-grid,
    .two-col,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .project-cards {
        grid-template-columns: repeat(2, 1fr)
    }

    .client-mini {
        grid-template-columns: repeat(3, 1fr)
    }

    .client-grid,
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .service-detail {
        grid-template-columns: 1fr
    }

    .service-detail:nth-child(even) {
        direction: ltr
    }
}

@media(max-width:760px) {
    .topinner {
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
        padding: 7px 0
    }

    .topinner span:nth-child(3) {
        display: none
    }

    .nav {
        min-height: 68px;
        justify-content: space-between
    }

    .brand {
        width: 165px
    }

    .brand img {
        width: 165px
    }

    .menu {
        display: block
    }

    .nav nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 12px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0
    }

    .nav.open nav {
        display: flex
    }

    .nav nav a {
        padding: 11px 0;
        width: 100%;
        border: 0
    }

    .hero {
        padding: 55px 0
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: -2px
    }

    .hero-visual>img {
        height: 330px
    }

    .section {
        padding: 65px 0
    }

    .section-head,
    .cta-inner {
        align-items: flex-start;
        flex-direction: column
    }

    .service-grid,
    .project-cards,
    .client-grid,
    .gallery-grid {
        grid-template-columns: 1fr 1fr
    }

    .client-mini {
        grid-template-columns: repeat(2, 1fr)
    }

    .stats {
        grid-template-columns: 1fr 1fr
    }

    .value-grid {
        grid-template-columns: 1fr
    }

    .inner-hero {
        padding: 55px 0
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .process-grid {
        grid-template-columns: 1fr 1fr
    }

    .service-detail-copy {
        padding: 30px
    }
}

@media(max-width:520px) {
    .wrap {
        width: min(var(--max), calc(100% - 28px))
    }

    .hero h1 {
        font-size: 41px
    }

    .service-grid,
    .project-cards,
    .client-grid,
    .gallery-grid,
    .process-grid {
        grid-template-columns: 1fr
    }

    .client-mini {
        grid-template-columns: 1fr 1fr
    }

    .stats {
        grid-template-columns: 1fr
    }

    .hero-points {
        gap: 10px;
        flex-direction: column
    }

    .hero-visual>img {
        height: 280px
    }

    .feature-image>img {
        height: 300px
    }

    .service-detail-media {
        min-height: 250px
    }

    .service-detail-copy {
        padding: 24px
    }
}


/* =========================================================
   INTECH ENGINEERS - SERVICES DROPDOWN
========================================================= */

.nav-dropdown {
    position: relative;
}

/* Invisible bridge so dropdown doesn't disappear while
   moving the mouse from Services to the submenu */
.nav-dropdown::after {
    content: "";
    position: absolute;
    left: -25px;
    right: -25px;
    top: 100%;
    height: 20px;
    background: transparent;
    z-index: 999;
}

.nav-dropdown-head {
    display: flex;
    align-items: center;
    gap: 3px;
}

.nav-dropdown-head > a {
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-toggle {
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    line-height: 1;
    cursor: pointer;
    padding: 5px 3px;
    transition: transform .2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle {
    transform: rotate(180deg);
}


/* =========================
   DROPDOWN BOX
========================= */

.nav-dropdown-menu {
    position: absolute;

    /* No large gap between Services and menu */
    top: calc(100% + 5px);

    left: 50%;

    transform: translate(-50%, -8px);

    width: 300px;

    padding: 10px;

    background: #fff;

    border: 1px solid var(--line);

    border-radius: 14px;

    box-shadow: 0 18px 45px rgba(11, 23, 48, .18);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;

    z-index: 1000;
}


/* =========================
   SMALL ARROW ON TOP
========================= */

.nav-dropdown-menu::before {
    content: "";

    position: absolute;

    top: -7px;
    left: 50%;

    width: 12px;
    height: 12px;

    background: #fff;

    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);

    transform: translateX(-50%) rotate(45deg);
}


/* =========================
   SHOW DROPDOWN
========================= */

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform: translate(-50%, 0);
}


/* =========================
   DROPDOWN LINKS
========================= */

.nav-dropdown-menu a {
    display: block;

    padding: 13px 12px;

    color: var(--ink);

    border-radius: 9px;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.3;

    transition:
        background .2s ease,
        color .2s ease,
        padding-left .2s ease;
}

.nav-dropdown-menu a:hover {
    background: var(--soft);

    color: var(--orange);

    padding-left: 16px;
}


/* =========================
   MOBILE DROPDOWN
========================= */

@media (max-width: 760px) {

    .nav-dropdown {
        width: 100%;
    }

    /* Desktop hover bridge disabled on mobile */
    .nav-dropdown::after {
        display: none;
    }

    .nav-dropdown-head {
        width: 100%;
        justify-content: space-between;
    }

    .nav-dropdown-toggle {
        padding: 10px 14px;
        font-size: 18px;
    }

    .nav-dropdown-menu {
        position: static;

        width: 100%;

        transform: none;

        margin: 0;

        padding: 5px 0 5px 14px;

        background: transparent;

        border: 0;

        border-radius: 0;

        box-shadow: none;

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        max-height: 0;

        overflow: hidden;

        transition:
            max-height .25s ease,
            opacity .2s ease,
            visibility .2s ease;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {

        transform: none;

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        max-height: 600px;
    }

    .nav-dropdown-menu a {
        padding: 9px 12px;

        color: inherit;
    }
}


/* =========================================================
   INTECH ENGINEERS - HOMEPAGE HERO SLIDER
========================================================= */

.hero-slider {
    position: relative;
    height: 470px;
    overflow: hidden;
    border-radius: 24px;
    background: #0b1730;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
    isolation: isolate;
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.035);
    transition: opacity .7s ease, transform 6s ease, visibility .7s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(11,23,48,.08) 20%, rgba(11,23,48,.68) 100%),
        linear-gradient(90deg, rgba(11,23,48,.35), transparent 65%);
    pointer-events: none;
}

.hero-slider-caption {
    position: absolute;
    left: 28px;
    bottom: 74px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.hero-slider-caption span {
    color: var(--orange2);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
}

.hero-slider-caption strong {
    font-size: 25px;
    line-height: 1.1;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 50%;
    background: rgba(11,23,48,.45);
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    transition: background .2s ease, transform .2s ease;
}

.hero-arrow:hover {
    background: var(--orange);
    transform: translateY(-50%) scale(1.06);
}

.hero-prev {
    left: 18px;
}

.hero-next {
    right: 18px;
}

.hero-dots {
    position: absolute;
    left: 28px;
    bottom: 25px;
    z-index: 5;
    display: flex;
    gap: 7px;
}

.hero-dots button {
    width: 28px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: rgba(255,255,255,.48);
    cursor: pointer;
    transition: width .25s ease, background .25s ease;
}

.hero-dots button.is-active {
    width: 48px;
    background: var(--orange2);
}

.hero-slider .hero-tag {
    z-index: 5;
}


/* =========================================================
   FOOTER SOCIAL LINKS
========================================================= */

.footer-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.footer-social > span {
    color: rgba(255,255,255,.7);
    font-size: 13px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 9px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.social-links a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: translateY(-2px);
}


/* =========================================================
   CONTACT PAGE GOOGLE MAP
========================================================= */

.contact-grid .office-map {
    grid-column: 1 / -1;
    margin-top: 8px;
}

.office-map {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(11,23,48,.08);
}

.office-map-head {
    padding: 24px 26px 20px;
}

.office-map-head h2 {
    margin: 5px 0 8px;
}

.office-map-head p {
    margin: 0;
    color: var(--muted);
}

.office-map iframe {
    display: block;
    width: 100%;
    height: 390px;
    border: 0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 760px) {
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-head {
        width: 100%;
        justify-content: space-between;
    }

    .nav-dropdown-toggle {
        padding: 10px 14px;
        font-size: 18px;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        transform: none;
        margin: 0;
        padding: 5px 0 5px 14px;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height .25s ease, opacity .2s ease, visibility .2s ease;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        max-height: 520px;
    }

    .nav-dropdown-menu a {
        padding: 9px 12px;
        color: inherit;
    }

    .hero-slider {
        height: 330px;
        border-radius: 18px;
    }

    .hero-slider-caption {
        left: 20px;
        bottom: 65px;
    }

    .hero-slider-caption strong {
        font-size: 20px;
    }

    .hero-dots {
        left: 20px;
        bottom: 20px;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .hero-prev {
        left: 12px;
    }

    .hero-next {
        right: 12px;
    }

    .footer-social {
        align-items: flex-start;
        flex-direction: column;
    }

    .office-map iframe {
        height: 300px;
    }
}



/* =========================================================
   FINAL PREMIUM FOOTER
========================================================= */

.footer {
    background:
        radial-gradient(circle at 10% 10%, rgba(245,154,35,.08), transparent 28%),
        #071329;
    color: #dce5f2;
    padding-top: 0;
}

.footer-grid {
    grid-template-columns: 1.55fr 1fr 1fr 1.25fr;
    gap: 55px;
    padding: 62px 0 50px;
}

.footer-company {
    max-width: 380px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    text-decoration: none;
}

.footer-logo {
    display: block;
    width: 190px;
    max-height: 70px;
    height: auto;
    object-fit: contain;
}

.footer-company p,
.footer-contact p {
    color: #9fb0c5;
    line-height: 1.75;
}

.footer h4 {
    color: #fff;
    margin: 4px 0 20px;
    font-size: 16px;
    font-weight: 800;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: #aebdd0;
    text-decoration: none;
    margin: 0 0 12px;
    transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
    color: var(--orange2);
    transform: translateX(4px);
}

.footer-contact a {
    color: #c9d5e5;
    text-decoration: none;
    display: block;
    margin: 0 0 11px;
    transition: color .2s ease;
}

.footer-contact a:hover {
    color: var(--orange2);
}

.footer-profile-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin-top: 22px !important;
    padding: 11px 16px;
    border: 1px solid rgba(245,154,35,.5);
    border-radius: 9px;
    color: #fff !important;
    background: rgba(245,154,35,.09);
    text-decoration: none;
    font-size: 13px !important;
    font-weight: 800;
    transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.footer-profile-btn span {
    font-size: 18px;
    line-height: 1;
}

.footer-profile-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 27px;
    padding-top: 21px;
    border-top: 1px solid rgba(255,255,255,.11);
}

.footer-social > span {
    color: #dce5f2;
    font-size: 13px;
    font-weight: 700;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 9px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.social-links a:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-3px);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 0;
}

.copyright-inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #8292a7;
    font-size: 12px;
}

/* =========================================================
   COMPANY PROFILE DOWNLOAD CARD
========================================================= */

.profile-download-card {
    margin-top: 55px;
    padding: 34px 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(135deg, #f8fafc, #fff);
    box-shadow: 0 18px 45px rgba(11,23,48,.07);
}

.profile-download-card h2 {
    margin: 5px 0 8px;
}

.profile-download-card p {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
}

.profile-download {
    white-space: nowrap;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-company {
        max-width: none;
    }

    .profile-download-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 45px 0;
    }

    .footer-social {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .copyright-inner {
        min-height: auto;
        padding: 18px 0;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .profile-download-card {
        padding: 27px 23px;
    }
}

/* =========================================================
   FINAL MODERN POLISH - SERVICES / CLIENTS / SCROLL / WHATSAPP
========================================================= */
.services-page-intro{display:grid;grid-template-columns:1.05fr .95fr;gap:70px;align-items:end;margin-bottom:46px}.services-page-intro h2{margin:8px 0 0}.services-page-intro>p{margin:0;color:var(--muted);line-height:1.8}.modern-service-card{border-radius:22px;overflow:hidden;box-shadow:0 16px 40px rgba(11,23,48,.08);transition:transform .25s ease,box-shadow .25s ease;border:1px solid var(--line);scroll-margin-top:100px}.modern-service-card:hover{transform:translateY(-5px);box-shadow:0 24px 55px rgba(11,23,48,.13)}.service-deliver{font-size:14px!important;color:#55657c!important;margin-top:12px!important}.service-deliver strong{color:var(--ink)}
/* Large hero image slider */
.hero-slider{min-height:520px;border-radius:22px;overflow:hidden;box-shadow:0 24px 60px rgba(0,0,0,.22)}.hero-slider .hero-slide img{height:520px}.hero-slider .hero-slider-caption{bottom:82px}.hero-slider .hero-tag{bottom:20px}.hero-slider .hero-arrow{width:48px;height:48px;font-size:30px}.hero-slider .hero-dots{bottom:18px}
/* Client carousel */
.client-intro{max-width:820px;margin:0 auto 35px;text-align:center}.client-intro h2{margin:8px 0 12px}.client-intro p{margin:0;color:var(--muted);line-height:1.7}.client-slider{position:relative;overflow:hidden;border:1px solid var(--line);border-radius:22px;background:#fff;padding:26px 55px 55px;box-shadow:0 16px 40px rgba(11,23,48,.07)}.client-track{display:flex;gap:18px;transition:transform .55s ease;will-change:transform}.client-slide{flex:0 0 calc((100% - 72px)/5)}.client-slide-card{height:150px;border:1px solid #dfe5ed;border-radius:15px;display:flex;align-items:center;justify-content:center;background:#fff;transition:transform .2s ease,box-shadow .2s ease}.client-slide-card:hover{transform:translateY(-3px);box-shadow:0 10px 25px rgba(11,23,48,.08)}.client-slide-card img{max-width:82%;max-height:92px;object-fit:contain}.client-arrow{position:absolute;top:50%;transform:translateY(-50%);width:42px;height:42px;border-radius:50%;border:1px solid var(--line);background:#fff;color:var(--ink);font-size:28px;cursor:pointer;box-shadow:0 8px 22px rgba(11,23,48,.12);z-index:2}.client-prev{left:11px}.client-next{right:11px}.client-dots{position:absolute;left:0;right:0;bottom:17px;display:flex;justify-content:center;gap:7px}.client-dot{width:7px;height:7px;border:0;border-radius:50%;background:#c6ced9;padding:0;cursor:pointer}.client-dot.is-active{width:22px;border-radius:7px;background:var(--orange)}
/* Contact office marker */
.office-map{position:relative}.office-map-marker{position:absolute;left:50%;top:50%;transform:translate(-50%,-100%);z-index:8;display:flex;align-items:center;gap:9px;padding:9px 12px;border:2px solid var(--orange);border-radius:11px;background:#fff;box-shadow:0 12px 28px rgba(11,23,48,.22);pointer-events:none}.office-map-marker strong{display:block;color:var(--ink);font-size:12px}.office-map-marker small{display:block;color:var(--muted);font-size:10px;margin-top:2px}.office-pin{width:24px;height:24px;border-radius:50% 50% 50% 0;background:var(--orange);transform:rotate(-45deg);position:relative;display:block}.office-pin:after{content:"";position:absolute;width:8px;height:8px;border-radius:50%;background:#fff;left:8px;top:8px}
/* Scroll reveal, intentionally quick */
[data-reveal]{opacity:0;transform:translateY(14px);transition:opacity .24s ease,transform .24s ease}.is-visible{opacity:1!important;transform:none!important}@media(prefers-reduced-motion:reduce){[data-reveal]{opacity:1;transform:none;transition:none}}
/* Floating WhatsApp */
.whatsapp-float{position:fixed;right:22px;bottom:22px;z-index:9999;display:flex;align-items:center;gap:9px;padding:9px 14px 9px 9px;border-radius:999px;background:#128c7e;color:#fff;text-decoration:none;box-shadow:0 14px 32px rgba(0,0,0,.2);font-size:13px;font-weight:800;transition:transform .2s ease,box-shadow .2s ease}.whatsapp-float:hover{transform:translateY(-3px);box-shadow:0 18px 38px rgba(0,0,0,.25)}.wa-icon{width:37px;height:37px;border-radius:50%;background:#fff;color:#128c7e;display:grid;place-items:center;font-size:22px;font-weight:900}.footer-contact a,.footer-contact .contact-item{display:flex;align-items:flex-start;gap:10px}.contact-icon{width:25px;height:25px;flex:0 0 25px;border-radius:50%;border:1px solid rgba(255,255,255,.18);display:grid;place-items:center;color:var(--orange2);font-size:12px}.contact-item{margin-bottom:15px}.contact-item span:last-child{color:#9fb0c5}
@media(max-width:900px){.services-page-intro{grid-template-columns:1fr;gap:20px}.client-slide{flex-basis:calc((100% - 18px)/2)}.hero-slider,.hero-slider .hero-slide img{min-height:460px;height:460px}}
@media(max-width:600px){.client-slide{flex-basis:100%}.client-slider{padding:18px 45px 50px}.client-slide-card{height:135px}.hero-slider,.hero-slider .hero-slide img{min-height:370px;height:370px}.whatsapp-float{right:14px;bottom:14px;padding:8px}.wa-text{display:none}}

/* =========================================================
   HOMEPAGE PREMIUM CLIENTS + POPUP REVEALS + COUNTERS
========================================================= */
.clients-full{position:relative;overflow:hidden;background:#071426;color:#fff;padding:92px 0 88px;isolation:isolate}
.clients-full-bg{position:absolute;inset:0;background:radial-gradient(circle at 15% 20%,rgba(34,92,150,.38),transparent 34%),radial-gradient(circle at 85% 70%,rgba(243,129,40,.18),transparent 30%),linear-gradient(135deg,#06111f,#0c2138 55%,#071426);z-index:-2}
.clients-full:before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);background-size:42px 42px;mask-image:linear-gradient(to bottom,transparent,#000 18%,#000 82%,transparent);z-index:-1}
.clients-full-inner{width:100%}
.clients-full-head{max-width:850px;margin:0 auto 42px;text-align:center;padding:0 24px}
.clients-full-head .eyebrow{color:#f28a35}
.clients-full-head h2{font-size:clamp(32px,4vw,52px);line-height:1.08;margin:8px 0 14px;color:#fff;letter-spacing:-1.5px}
.clients-full-head p{max-width:700px;margin:0 auto;color:#c5d1df;font-size:16px;line-height:1.75}
.client-slider-full{width:100%;border:0;border-radius:0;background:rgba(255,255,255,.035);padding:28px 70px 62px;box-shadow:none;border-top:1px solid rgba(255,255,255,.08);border-bottom:1px solid rgba(255,255,255,.08)}
.client-slider-full .client-track{gap:22px}
.client-slider-full .client-slide{flex:0 0 calc((100% - 88px)/5)}
.client-slider-full .client-slide-card{height:170px;border:1px solid rgba(255,255,255,.12);border-radius:16px;background:rgba(255,255,255,.96);box-shadow:0 18px 35px rgba(0,0,0,.18);padding:18px}
.client-slider-full .client-slide-card img{max-width:88%;max-height:105px}
.client-slider-full .client-arrow{background:rgba(255,255,255,.95);color:#071426;border:0;width:48px;height:48px;font-size:32px}
.client-slider-full .client-prev{left:18px}.client-slider-full .client-next{right:18px}
.client-slider-full .client-dots{bottom:20px}.client-slider-full .client-dot{background:#77879a}.client-slider-full .client-dot.is-active{background:#f28a35}
.clients-view-all{text-align:center;margin-top:34px}.clients-view-all .btn{border-color:rgba(255,255,255,.25);color:#fff;background:transparent}
.clients-view-all .btn:hover{background:#f28a35;border-color:#f28a35;color:#fff}
/* popup reveal: text/cards rise into place as the user scrolls */
[data-reveal]{opacity:0;transform:translateY(34px) scale(.985);filter:blur(2px);transition:opacity .65s ease,transform .65s cubic-bezier(.2,.75,.25,1),filter .65s ease}
[data-reveal].is-visible{opacity:1!important;transform:none!important;filter:none!important}
.hero-copy[data-reveal]>*,.section-head[data-reveal]>*,.cta-inner[data-reveal]>*,.clients-full-head[data-reveal]>*,.stats[data-reveal]>*{animation:none}
.hero-copy[data-reveal]>:nth-child(2){transition-delay:.08s}.hero-copy[data-reveal]>:nth-child(3){transition-delay:.14s}.hero-copy[data-reveal]>:nth-child(4){transition-delay:.2s}.hero-copy[data-reveal]>:nth-child(5){transition-delay:.26s}
.stat-card{position:relative;padding:10px 20px}.stat-card:after{content:"";position:absolute;right:0;top:18%;height:64%;width:1px;background:rgba(255,255,255,.14)}.stat-card:last-child:after{display:none}
.counter,.stat-word{display:block}
@media(max-width:900px){.client-slider-full{padding-left:55px;padding-right:55px}.client-slider-full .client-slide{flex-basis:calc((100% - 22px)/2)}.stat-card:nth-child(2):after{display:none}}
@media(max-width:600px){.clients-full{padding:70px 0}.client-slider-full{padding:18px 46px 54px}.client-slider-full .client-slide{flex-basis:100%}.client-slider-full .client-slide-card{height:145px}.client-slider-full .client-arrow{width:40px;height:40px;font-size:26px}.client-slider-full .client-prev{left:8px}.client-slider-full .client-next{right:8px}.stats{gap:12px!important}.stat-card{padding:18px 10px}.stat-card:after{display:none}.stat-word{font-size:24px!important}}
@media(prefers-reduced-motion:reduce){[data-reveal]{opacity:1;transform:none;filter:none;transition:none}}

/* =========================================================
   V3 PREMIUM HERO + CLIENT MARQUEE + SERVICES REDESIGN
========================================================= */
.hero-full-bg{position:relative;min-height:calc(100vh - 78px);padding:0;display:flex;align-items:center;overflow:hidden;background:#071426;isolation:isolate}
.hero-bg-slides,.hero-bg-slide,.hero-bg-slide img{position:absolute;inset:0;width:100%;height:100%}
.hero-bg-slide{margin:0;opacity:0;visibility:hidden;transition:opacity 1.15s ease,visibility 1.15s ease}
.hero-bg-slide.is-active{opacity:1;visibility:visible}
.hero-bg-slide img{object-fit:cover;object-position:center}
.hero-bg-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(4,15,34,.96) 0%,rgba(4,15,34,.86) 38%,rgba(4,15,34,.46) 68%,rgba(4,15,34,.3) 100%),linear-gradient(0deg,rgba(4,15,34,.42),rgba(4,15,34,.08));z-index:1}
.hero-full-content{position:relative;z-index:3;width:100%;padding-top:78px;padding-bottom:82px}
.hero-full-bg .hero-copy{max-width:760px}.hero-full-bg .hero-copy h1{font-size:clamp(48px,7vw,88px);max-width:850px;text-shadow:0 8px 30px rgba(0,0,0,.25)}
.hero-full-bg .hero-copy p{max-width:730px;font-size:19px;line-height:1.7;color:#e5edf7}.hero-full-bg .hero-points{max-width:700px}.hero-full-bg .btn.secondary{background:rgba(4,15,34,.18);backdrop-filter:blur(5px)}
.hero-bg-caption{position:absolute;right:6vw;bottom:52px;z-index:3;text-align:right;color:#fff}.hero-bg-caption span{display:block;color:#ff9b32;font-size:12px;font-weight:900;letter-spacing:2.4px;margin-bottom:6px}.hero-bg-caption strong{font-size:18px;letter-spacing:.5px}
.hero-bg-dots{position:absolute;z-index:4;left:50%;bottom:32px;transform:translateX(-50%);display:flex;gap:8px}.hero-bg-dots button{width:34px;height:3px;padding:0;border:0;background:rgba(255,255,255,.4);cursor:pointer;transition:.3s;border-radius:5px}.hero-bg-dots button.is-active{background:#f28a35;width:56px}
.client-marquee{width:100%;overflow:hidden;border-top:1px solid rgba(255,255,255,.1);border-bottom:1px solid rgba(255,255,255,.1);background:rgba(255,255,255,.035);padding:28px 0}.client-marquee-track{display:flex;width:max-content;animation:clientMarquee 42s linear infinite;will-change:transform}.client-marquee-set{display:flex;gap:22px;padding-right:22px}.client-marquee-card{width:190px;height:142px;flex:0 0 190px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,.14);border-radius:15px;background:rgba(255,255,255,.97);padding:18px;box-shadow:0 14px 32px rgba(0,0,0,.2)}.client-marquee-card img{max-width:100%;max-height:100%;object-fit:contain}.client-marquee:hover .client-marquee-track{animation-play-state:paused}@keyframes clientMarquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.services-modern-page{background:#0b0b0b;color:#f7f2e9}.services-modern-page .section{padding-top:110px;padding-bottom:110px}.services-modern-hero{padding:110px 0 100px;background:#090909;border-bottom:1px solid #252525}.services-modern-hero-grid{display:grid;grid-template-columns:1.02fr .98fr;gap:90px;align-items:end}.services-modern-hero h1{font-size:clamp(54px,7vw,92px);line-height:.94;letter-spacing:-3px;margin:8px 0 0;color:#f5f0e8}.services-modern-hero h1 em,.services-index h2 em{font-family:Georgia,serif;font-weight:400;color:#c79b57}.services-hero-copy p{font-size:19px;line-height:1.8;color:#aaa59c;max-width:700px;margin:0 0 30px}.services-hero-meta{display:flex;gap:25px;flex-wrap:wrap;color:#c79b57;text-transform:uppercase;font-size:11px;letter-spacing:2px;font-weight:800}.services-index{background:#101010}.services-index-head{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:end;margin-bottom:62px}.services-index-head h2{font-size:clamp(40px,5vw,66px);line-height:1.02;letter-spacing:-2px;margin:8px 0 0;color:#f6f0e8}.services-index-head>p{color:#9e9a93;line-height:1.8;font-size:16px;max-width:560px;margin:0 0 4px}.services-index-grid{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid #2b2b2b;border-left:1px solid #2b2b2b}.services-index-card{min-height:245px;padding:34px;border-right:1px solid #2b2b2b;border-bottom:1px solid #2b2b2b;background:#151515;color:#f7f2e9;display:flex;flex-direction:column;transition:transform .3s ease,background .3s ease,box-shadow .3s ease;position:relative}.services-index-card:hover{background:#1c1c1c;transform:translateY(-5px);box-shadow:0 18px 40px rgba(0,0,0,.25);z-index:2}.services-index-card>span{font-size:12px;letter-spacing:3px;color:#6e6a63}.services-index-card h3{font-family:Georgia,serif;font-weight:400;font-size:25px;line-height:1.15;margin:34px 0 8px;color:#f5efe5}.services-index-card small{font-size:11px;text-transform:uppercase;letter-spacing:2px;color:#6f6a62}.services-index-card b{margin-top:auto;color:#9b845e;font-size:11px;letter-spacing:2px;font-weight:700}.services-detail-modern{background:#0d0d0d}.services-detail-label{display:flex;justify-content:space-between;align-items:end;border-bottom:1px solid #2a2a2a;padding-bottom:28px;margin-bottom:20px}.services-detail-label p{margin:0;color:#88847d;max-width:480px;text-align:right;line-height:1.6}.services-modern-list{border-bottom:1px solid #292929}.services-modern-item{display:grid;grid-template-columns:70px .95fr 1.05fr;gap:38px;align-items:stretch;padding:70px 0;border-top:1px solid #292929;scroll-margin-top:100px}.services-modern-item.reverse{grid-template-columns:70px 1.05fr .95fr}.services-modern-item.reverse .services-modern-media{order:3}.services-modern-item.reverse .services-modern-copy{order:2}.services-modern-number{font-size:12px;letter-spacing:3px;color:#6d6961;padding-top:6px}.services-modern-media{min-height:430px;overflow:hidden;background:#171717}.services-modern-media img{width:100%;height:100%;min-height:430px;object-fit:cover;display:block;filter:saturate(.88);transition:transform .7s ease,filter .5s ease}.services-modern-item:hover .services-modern-media img{transform:scale(1.035);filter:saturate(1)}.services-modern-copy{padding:10px 20px 10px 5px;align-self:center}.services-modern-copy h2{font-family:Georgia,serif;font-weight:400;font-size:clamp(36px,4vw,58px);line-height:1.02;letter-spacing:-1px;margin:8px 0 22px;color:#f4efe7}.services-modern-copy p{font-size:16px;line-height:1.8;color:#aaa69f;margin:0 0 24px;max-width:650px}.services-modern-copy h4{text-transform:uppercase;letter-spacing:2px;font-size:10px;color:#c79b57;margin:0 0 12px}.services-modern-copy ul{list-style:none;padding:0;margin:0 0 28px;color:#c0bbb2;display:grid;gap:8px;font-size:13px}.services-modern-copy li:before{content:'•';color:#c79b57;margin-right:10px}.services-modern-copy .text-link{color:#d2ad72}.services-modern-page .eyebrow{color:#c79b57}.services-modern-page .cta{background:#111!important;border-top:1px solid #272727}.services-modern-page .cta h2,.services-modern-page .cta p{color:#f5f0e8}
@media(max-width:1000px){.hero-full-bg{min-height:calc(100vh - 72px)}.hero-full-content{padding-top:70px;padding-bottom:95px}.hero-bg-caption{right:28px}.client-marquee-card{width:170px;flex-basis:170px;height:125px}.client-marquee-track{animation-duration:34s}.services-modern-hero-grid,.services-index-head{grid-template-columns:1fr;gap:35px}.services-index-grid{grid-template-columns:repeat(2,1fr)}.services-modern-item,.services-modern-item.reverse{grid-template-columns:50px 1fr;gap:24px}.services-modern-media,.services-modern-item.reverse .services-modern-media{grid-column:2;grid-row:1;order:initial}.services-modern-copy,.services-modern-item.reverse .services-modern-copy{grid-column:2;grid-row:2;order:initial}.services-modern-number{grid-column:1;grid-row:1/3}}
@media(max-width:600px){.hero-full-bg{min-height:680px}.hero-bg-overlay{background:linear-gradient(90deg,rgba(4,15,34,.94),rgba(4,15,34,.62)),linear-gradient(0deg,rgba(4,15,34,.55),rgba(4,15,34,.1))}.hero-full-content{padding-top:60px;padding-bottom:90px}.hero-full-bg .hero-copy h1{font-size:48px;letter-spacing:-2px}.hero-full-bg .hero-copy p{font-size:16px}.hero-bg-caption{display:none}.hero-bg-dots{bottom:22px}.client-marquee-card{width:145px;flex-basis:145px;height:110px;padding:12px}.client-marquee-set{gap:14px;padding-right:14px}.client-marquee-track{animation-duration:28s}.services-modern-hero{padding:75px 0 70px}.services-modern-hero h1{font-size:54px;letter-spacing:-2px}.services-hero-copy p{font-size:16px}.services-index{padding:70px 0}.services-index-head h2{font-size:42px}.services-index-grid{grid-template-columns:1fr}.services-index-card{min-height:210px}.services-detail-modern{padding:75px 0}.services-detail-label{display:block}.services-detail-label p{text-align:left;margin-top:12px}.services-modern-item,.services-modern-item.reverse{grid-template-columns:34px 1fr;gap:15px;padding:52px 0}.services-modern-media,.services-modern-item.reverse .services-modern-media{grid-column:2;grid-row:1;min-height:280px}.services-modern-media img{min-height:280px}.services-modern-copy,.services-modern-item.reverse .services-modern-copy{grid-column:2;grid-row:2;padding:0}.services-modern-copy h2{font-size:39px}.services-modern-copy p{font-size:15px}}
@media(prefers-reduced-motion:reduce){.client-marquee-track{animation:none}.hero-bg-slide{transition:none}}

/* =========================================================
   SERVICES EXPERIENCE - visual service tabs + full-background panels
========================================================= */
.services-experience{background:#0b0b0b;color:#f7f2e9;overflow:hidden}
.services-intro{padding:115px 0 105px;background:#090909;border-bottom:1px solid #242424}
.services-intro-grid{display:grid;grid-template-columns:1.08fr .92fr;gap:90px;align-items:end}
.services-intro h1{font-size:clamp(54px,7vw,92px);line-height:.93;letter-spacing:-3.5px;margin:10px 0 0;color:#f6f1e8}
.services-intro h1 em{font-family:Georgia,serif;font-weight:400;color:#c79b57}
.services-intro-copy p{font-size:18px;line-height:1.85;color:#aaa59c;max-width:650px;margin:0 0 28px}
.services-intro-meta{display:flex;gap:28px;flex-wrap:wrap;color:#c79b57;font-size:11px;font-weight:800;letter-spacing:2px}
.service-tabs-wrap{position:sticky;top:0;z-index:50;background:rgba(10,10,10,.94);backdrop-filter:blur(14px);border-top:1px solid #252525;border-bottom:1px solid #252525}
.service-tabs{max-width:1450px;margin:0 auto;display:flex;overflow-x:auto;scrollbar-width:none;padding:0 18px}
.service-tabs::-webkit-scrollbar{display:none}
.service-tab{position:relative;flex:0 0 auto;background:none;border:0;color:#8f8b84;padding:28px 24px 25px;font:700 12px/1 Arial,sans-serif;letter-spacing:1.6px;cursor:pointer;white-space:nowrap;transition:color .35s ease}
.service-tab:after{content:"";position:absolute;left:18px;right:18px;bottom:-1px;height:2px;background:#c79b57;transform:scaleX(0);transform-origin:center;transition:transform .35s ease}
.service-tab:hover,.service-tab.is-active{color:#f6f1e8}.service-tab.is-active:after{transform:scaleX(1)}
.service-panels{position:relative;background:#080808}
.service-panel{position:absolute;inset:0;min-height:calc(100vh - 82px);opacity:0;visibility:hidden;transform:translateY(24px) scale(1.015);transition:opacity .75s ease,transform .9s cubic-bezier(.2,.7,.2,1),visibility 0s linear .9s;overflow:hidden}
.service-panel.is-active{position:relative;opacity:1;visibility:visible;transform:none;transition:opacity .75s ease,transform .9s cubic-bezier(.2,.7,.2,1),visibility 0s}
.service-panel-bg,.service-panel-overlay{position:absolute;inset:0}
.service-panel-bg img{width:100%;height:100%;object-fit:cover;display:block;transform:scale(1.08);transition:transform 1.6s cubic-bezier(.2,.7,.2,1)}
.service-panel.is-active .service-panel-bg img{transform:scale(1)}
.service-panel-overlay{background:linear-gradient(90deg,rgba(4,10,18,.94) 0%,rgba(4,10,18,.75) 40%,rgba(4,10,18,.32) 75%,rgba(4,10,18,.2) 100%),linear-gradient(0deg,rgba(3,6,10,.76),rgba(3,6,10,.08) 58%,rgba(3,6,10,.35))}
.service-panel-content{position:relative;z-index:2;min-height:calc(100vh - 82px);display:flex;flex-direction:column;justify-content:center;align-items:flex-start;padding-top:80px;padding-bottom:100px}
.service-panel-kicker{font-size:11px;font-weight:800;letter-spacing:2.5px;color:#d2a45f;margin-bottom:24px;opacity:0;transform:translateY(20px);transition:opacity .55s ease .12s,transform .55s ease .12s}
.service-panel h2{font-size:clamp(55px,7vw,104px);line-height:.91;letter-spacing:-4px;margin:0 0 28px;max-width:850px;color:#fff;opacity:0;transform:translateY(32px);transition:opacity .7s ease .18s,transform .7s cubic-bezier(.2,.75,.25,1) .18s}
.service-panel h2 em{font-family:Georgia,serif;font-weight:400;color:#d3a563}
.service-panel p{font-size:18px;line-height:1.75;color:#d0d1d2;max-width:650px;margin:0 0 34px;opacity:0;transform:translateY(26px);transition:opacity .65s ease .28s,transform .65s ease .28s}
.service-panel-link{display:inline-flex;align-items:center;gap:18px;color:#fff;border-bottom:1px solid rgba(255,255,255,.5);padding-bottom:11px;font-size:11px;text-transform:uppercase;letter-spacing:2px;font-weight:800;opacity:0;transform:translateY(20px);transition:opacity .6s ease .36s,transform .6s ease .36s,border-color .25s ease,color .25s ease}
.service-panel-link span{font-size:17px;color:#d2a45f;transition:transform .25s ease}.service-panel-link:hover{color:#d2a45f;border-color:#d2a45f}.service-panel-link:hover span{transform:translateY(4px)}
.service-panel.is-active .service-panel-kicker,.service-panel.is-active h2,.service-panel.is-active p,.service-panel.is-active .service-panel-link{opacity:1;transform:none}
.service-projects-area{background:#101010;padding:125px 0 115px;border-top:1px solid #252525}
.service-projects-heading{display:grid;grid-template-columns:1fr 1fr;gap:90px;align-items:end;margin-bottom:75px}
.service-projects-heading h2{font-size:clamp(44px,5.2vw,72px);line-height:.98;letter-spacing:-2.5px;margin:10px 0 0;color:#f6f1e8}.service-projects-heading h2 em{font-family:Georgia,serif;font-weight:400;color:#c79b57}
.service-projects-heading p{font-size:16px;line-height:1.85;color:#96928b;max-width:590px;margin:0}
.service-project-block{padding:54px 0 66px;border-top:1px solid #2a2a2a;scroll-margin-top:90px}
.service-project-title{display:flex;align-items:baseline;gap:22px;margin-bottom:28px}.service-project-title span{color:#c79b57;font-size:11px;letter-spacing:3px}.service-project-title h3{font-family:Georgia,serif;font-size:31px;font-weight:400;margin:0;color:#f4efe7}
.service-project-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.service-project-placeholder{min-height:210px;border:1px dashed #454545;background:#151515;display:flex;align-items:center;justify-content:center;flex-direction:column;text-align:center;color:#c79b57;font-size:11px;letter-spacing:2px;font-weight:800;transition:background .3s ease,border-color .3s ease,transform .3s ease}
.service-project-placeholder div{font-size:10px;letter-spacing:1px;color:#66625c;font-weight:500;margin-top:12px}.service-project-placeholder:hover{background:#1b1b1b;border-color:#8b6d43;transform:translateY(-4px)}
@media(max-width:1000px){.services-intro-grid,.service-projects-heading{grid-template-columns:1fr;gap:35px}.service-panel,.service-panel-content{min-height:720px}.service-panel h2{font-size:clamp(50px,9vw,78px)}.service-project-grid{grid-template-columns:1fr 1fr}}
@media(max-width:600px){.services-intro{padding:75px 0}.services-intro h1{font-size:53px;letter-spacing:-2.5px}.services-intro-copy p{font-size:16px}.service-tab{padding:22px 18px 20px;font-size:10px}.service-panel,.service-panel-content{min-height:690px}.service-panel-overlay{background:linear-gradient(90deg,rgba(4,10,18,.95),rgba(4,10,18,.68)),linear-gradient(0deg,rgba(3,6,10,.8),rgba(3,6,10,.1))}.service-panel-content{padding-top:60px;padding-bottom:75px}.service-panel h2{font-size:48px;letter-spacing:-2px}.service-panel p{font-size:15px}.service-projects-area{padding:80px 0}.service-project-grid{grid-template-columns:1fr}.service-project-title h3{font-size:26px}}
@media(prefers-reduced-motion:reduce){.service-panel,.service-panel-bg img,.service-panel-kicker,.service-panel h2,.service-panel p,.service-panel-link{transition:none}.service-panel{transform:none!important}.service-panel-bg img{transform:none!important}}

/* =========================================================
   SERVICES V5 - INTECH LIGHT THEME
   Reference-inspired motion and structure, not a visual copy.
========================================================= */
.service-page-hero{background:linear-gradient(135deg,#f8fbff 0%,#fff 55%,#f5f8fc 100%);border-bottom:1px solid var(--line);padding:92px 0 82px;overflow:hidden}
.service-page-hero-grid{display:grid;grid-template-columns:1.25fr .75fr;gap:70px;align-items:end}
.service-hero-copy h1{font-size:clamp(48px,6.4vw,82px);line-height:.98;letter-spacing:-3.5px;margin:0 0 25px;color:var(--navy)}
.service-hero-copy h1 span{color:var(--orange)}
.service-hero-copy p{font-size:18px;line-height:1.8;color:#64748b;max-width:760px;margin:0}
.service-hero-note{border-left:3px solid var(--orange);padding:8px 0 8px 28px}
.service-hero-note span,.service-hero-note strong{display:block;text-transform:uppercase;letter-spacing:2px}
.service-hero-note span{font-size:11px;font-weight:900;color:var(--orange);margin-bottom:10px}
.service-hero-note strong{font-size:20px;color:var(--navy);letter-spacing:.2px;margin-bottom:12px}
.service-hero-note p{color:#64748b;font-size:14px;line-height:1.75;margin:0;max-width:430px}

.service-navigation{position:sticky;top:112px;z-index:40;background:rgba(255,255,255,.94);backdrop-filter:blur(14px);border-bottom:1px solid var(--line);box-shadow:0 5px 22px rgba(11,23,48,.05)}
.service-nav-track{display:flex;overflow-x:auto;scrollbar-width:none}
.service-nav-track::-webkit-scrollbar{display:none}
.service-nav-tab{appearance:none;border:0;background:transparent;color:#64748b;cursor:pointer;white-space:nowrap;padding:21px 18px 18px;font-size:11px;font-weight:900;letter-spacing:1.35px;position:relative;transition:color .25s ease,background .25s ease}
.service-nav-tab span{font-size:10px;color:#a0aabd;margin-right:8px}
.service-nav-tab:after{content:"";position:absolute;left:18px;right:18px;bottom:-1px;height:3px;background:var(--orange);transform:scaleX(0);transform-origin:center;transition:transform .35s ease}
.service-nav-tab:hover,.service-nav-tab.is-active{color:var(--navy);background:#f8fafc}
.service-nav-tab.is-active:after{transform:scaleX(1)}

.service-page-v5{background:#fff}
.service-detail{padding:108px 0 115px;border-bottom:1px solid var(--line);scroll-margin-top:180px;overflow:hidden}
.service-detail:nth-child(even){background:#f8fafc}
.service-detail-top{display:grid;grid-template-columns:130px 1fr;gap:34px;align-items:end;margin-bottom:48px}
.service-detail-number{font-size:90px;line-height:.8;font-weight:900;letter-spacing:-6px;color:#e8edf4}
.service-detail-heading>span,.service-label{display:inline-block;color:var(--orange);font-size:10px;font-weight:900;letter-spacing:2.4px;text-transform:uppercase}
.service-detail-heading h2{font-size:clamp(38px,5vw,66px);line-height:1;letter-spacing:-2.5px;margin:10px 0 8px;color:var(--navy)}
.service-detail-heading p{font-size:20px;color:#64748b;margin:0;max-width:760px}
.service-detail-grid{display:grid;grid-template-columns:1.08fr .92fr;gap:70px;align-items:start}
.service-detail-media{position:relative;min-height:510px;border-radius:18px;overflow:hidden;background:#e8edf4;box-shadow:0 22px 55px rgba(11,23,48,.12)}
.service-detail-media:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(11,23,48,0) 42%,rgba(11,23,48,.7) 100%)}
.service-detail-media img{width:100%;height:100%;min-height:510px;object-fit:cover;transition:transform 1.1s cubic-bezier(.2,.7,.2,1);transform:scale(1.06)}
.service-detail-media.in-view img{transform:scale(1)}
.service-media-caption{position:absolute;left:28px;right:28px;bottom:27px;z-index:2;color:#fff;display:flex;flex-direction:column;gap:6px}
.service-media-caption span{font-size:10px;letter-spacing:2px;font-weight:900;color:var(--orange2)}
.service-media-caption strong{font-size:23px;line-height:1.15}
.service-detail-copy{padding:12px 0}
.service-description{font-size:19px;line-height:1.85;color:#53627a;margin:16px 0 42px;max-width:650px}
.service-deliverables{border-top:1px solid var(--line);padding-top:25px}
.service-deliverables ul{list-style:none;padding:0;margin:17px 0 0;display:grid;grid-template-columns:1fr 1fr;gap:13px 24px}
.service-deliverables li{font-size:14px;line-height:1.5;color:#33445e;display:flex;gap:10px}
.service-deliverables li span{color:var(--orange);font-weight:900}

.service-project-shelf{margin-top:78px;padding-top:36px;border-top:1px solid #dce3ec}
.service-project-head{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:end;margin-bottom:28px}
.service-project-head h3{font-size:30px;letter-spacing:-1px;color:var(--navy);margin:8px 0 0}
.service-project-head p{color:#738198;font-size:14px;line-height:1.75;margin:0;max-width:570px}
.service-project-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.service-project-card{min-height:245px;border:1px solid #dfe6ef;border-radius:14px;background:#fff;padding:23px;position:relative;overflow:hidden;transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease}
.service-project-card:hover{transform:translateY(-6px);box-shadow:0 18px 38px rgba(11,23,48,.09);border-color:#c8d4e2}
.project-empty{display:flex;flex-direction:column;justify-content:flex-end;background:linear-gradient(135deg,#fff,#f7faff)}
.project-index{position:absolute;top:20px;left:22px;font-size:11px;font-weight:900;letter-spacing:2px;color:#a4afbf}
.project-plus{position:absolute;right:22px;top:15px;font-size:35px;line-height:1;color:var(--orange);font-weight:300}
.service-project-card h4{font-size:18px;color:var(--navy);margin:0 0 8px}
.service-project-card p{font-size:13px;color:#7a8799;line-height:1.65;margin:0}
.service-project-card code{font-size:11px;background:#eef3f8;padding:2px 5px;border-radius:4px;color:#51627a}

.service-bottom-cta{background:var(--navy);color:#fff;padding:75px 0}
.service-bottom-cta-inner{display:flex;align-items:center;justify-content:space-between;gap:40px}
.service-bottom-cta h2{font-size:clamp(32px,4vw,52px);line-height:1.05;letter-spacing:-2px;margin:0 0 12px;color:#fff}
.service-bottom-cta p{color:#cbd6e4;margin:0;max-width:700px}

[data-service-reveal]{opacity:0;transform:translateY(34px);transition:opacity .75s ease,transform .8s cubic-bezier(.2,.75,.25,1)}
[data-service-reveal].in-view{opacity:1;transform:none}
.service-detail-grid [data-service-reveal]:nth-child(2){transition-delay:.12s}
.service-project-shelf[data-service-reveal]{transition-delay:.08s}

@media(max-width:1100px){
  .service-page-hero-grid{grid-template-columns:1fr;gap:35px}
  .service-navigation{top:112px}
  .service-detail-grid{grid-template-columns:1fr;gap:42px}
  .service-detail-media,.service-detail-media img{min-height:440px}
  .service-project-head{grid-template-columns:1fr;gap:16px}
}
@media(max-width:700px){
  .service-page-hero{padding:68px 0 58px}
  .service-hero-copy h1{font-size:48px;letter-spacing:-2.5px}
  .service-hero-copy p{font-size:16px}
  .service-navigation{top:112px}
  .service-nav-tab{padding:18px 14px 16px;font-size:9px}
  .service-nav-tab:after{left:14px;right:14px}
  .service-detail{padding:75px 0 78px;scroll-margin-top:170px}
  .service-detail-top{grid-template-columns:62px 1fr;gap:18px;margin-bottom:32px}
  .service-detail-number{font-size:54px;letter-spacing:-4px}
  .service-detail-heading h2{font-size:38px;letter-spacing:-1.5px}
  .service-detail-heading p{font-size:16px}
  .service-detail-media,.service-detail-media img{min-height:330px}
  .service-description{font-size:16px}
  .service-deliverables ul{grid-template-columns:1fr}
  .service-project-shelf{margin-top:55px}
  .service-project-cards{grid-template-columns:1fr}
  .service-bottom-cta-inner{flex-direction:column;align-items:flex-start}
}
@media(prefers-reduced-motion:reduce){[data-service-reveal]{opacity:1;transform:none;transition:none}.service-detail-media img{transform:none;transition:none}}

/* =========================================================
   FINAL POLISH V6 - centered layout + full-image hero
========================================================= */
.hero-full-bg{min-height:calc(100svh - 78px);}
.hero-full-content{width:min(1280px,calc(100% - 80px));max-width:1280px;margin:0 auto;padding:70px 0 88px;display:flex;align-items:center;min-height:calc(100svh - 78px)}
.hero-full-bg .hero-copy{width:min(700px,100%);max-width:700px;margin-left:0;padding:0}
.hero-full-bg .hero-copy h1{font-size:clamp(52px,6.3vw,86px);line-height:.98;letter-spacing:-3.2px;margin-bottom:25px}
.hero-full-bg .hero-copy p{font-size:18px;max-width:680px}
.hero-bg-slide{background:#0b1730;}
.hero-bg-slide::before{content:"";position:absolute;inset:-30px;background-image:var(--slide-bg);background-size:cover;background-position:center;filter:blur(18px);transform:scale(1.08);opacity:.72;z-index:0}
.hero-bg-slide img{position:relative;z-index:1;object-fit:contain!important;object-position:center!important;width:100%;height:100%;}
.hero-bg-overlay{background:linear-gradient(90deg,rgba(4,15,34,.93) 0%,rgba(4,15,34,.72) 34%,rgba(4,15,34,.36) 66%,rgba(4,15,34,.22) 100%),linear-gradient(0deg,rgba(4,15,34,.5),rgba(4,15,34,.08));}
.hero-bg-caption{right:max(34px,calc((100vw - 1280px)/2 + 20px));bottom:54px}

/* Service page: keep the INTECH design, but centre the content so it does not hug opposite corners. */
.service-detail .wrap{width:min(1120px,calc(100% - 48px));margin:0 auto}
.service-detail-top{max-width:1120px;margin:0 auto 48px;grid-template-columns:105px 1fr;gap:26px;align-items:end}
.service-detail-heading h2{font-size:clamp(40px,4.5vw,62px)}
.service-detail-heading p{max-width:680px}
.service-detail-grid{max-width:1120px;margin:0 auto;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:54px;align-items:center}
.service-detail-media{min-height:470px}
.service-detail-media img{min-height:470px}
.service-detail-copy{padding:10px 0 10px 8px;max-width:520px;justify-self:center}
.service-description{font-size:18px;line-height:1.8}
.service-project-shelf{max-width:1120px;margin:70px auto 0}
.service-project-head{grid-template-columns:1fr .9fr;gap:40px}

/* Clients page footer: use the same modern icon treatment as the rest of the site. */
.clients-full .client-marquee-track{animation-duration:38s}

@media(max-width:900px){
  .hero-full-content{width:min(100% - 48px,720px);min-height:calc(100svh - 72px);padding:65px 0 90px}
  .hero-full-bg .hero-copy{max-width:650px}
  .service-detail .wrap{width:min(100% - 40px,760px)}
  .service-detail-top,.service-detail-grid,.service-project-shelf{max-width:760px}
  .service-detail-grid{grid-template-columns:1fr;gap:38px}
  .service-detail-copy{max-width:none;justify-self:stretch;padding-left:0}
  .service-detail-media,.service-detail-media img{min-height:430px}
}
@media(max-width:600px){
  .hero-full-bg{min-height:700px}
  .hero-full-content{width:calc(100% - 34px);min-height:700px;padding:55px 0 82px}
  .hero-full-bg .hero-copy h1{font-size:48px;letter-spacing:-2.2px}
  .hero-full-bg .hero-copy p{font-size:16px}
  .hero-bg-caption{display:none}
  .service-detail{padding:72px 0 82px}
  .service-detail .wrap{width:calc(100% - 34px)}
  .service-detail-top{grid-template-columns:58px 1fr;gap:16px;margin-bottom:30px}
  .service-detail-number{font-size:52px}
  .service-detail-heading h2{font-size:38px}
  .service-detail-media,.service-detail-media img{min-height:330px}
}


/* =========================================================
   V7 SERVICES - INTECH LAYOUT CORRECTION
   Reference-inspired placement, INTECH visual identity.
========================================================= */
.service-page-v5{background:#fff!important;color:var(--navy)}
.service-page-v5 .service-detail{background:#fff!important}
.service-page-v5 .service-detail:nth-child(even){background:#f7f9fc!important}
.service-page-v5 .service-detail .wrap{width:min(1180px,calc(100% - 64px));margin:0 auto}
.service-page-v5 .service-detail-top{display:grid!important;grid-template-columns:100px minmax(0,1fr)!important;gap:26px!important;align-items:end!important;max-width:none!important;margin:0 0 46px!important}
.service-page-v5 .service-detail-number{font-size:88px!important;line-height:.82!important;color:#e7edf5!important;font-weight:900!important;letter-spacing:-5px!important}
.service-page-v5 .service-detail-heading h2{font-family:inherit!important;font-size:clamp(42px,4.8vw,64px)!important;color:var(--navy)!important;letter-spacing:-2.4px!important;margin:8px 0 8px!important}
.service-page-v5 .service-detail-heading p{font-size:18px!important;color:#68788f!important;line-height:1.65!important}
.service-page-v5 .service-detail-grid{display:grid!important;grid-template-columns:minmax(0,1.08fr) minmax(0,.92fr)!important;gap:70px!important;align-items:center!important;max-width:none!important;margin:0!important}
.service-page-v5 .service-detail-media{min-height:520px!important;border-radius:16px!important;box-shadow:0 20px 48px rgba(11,23,48,.12)!important}
.service-page-v5 .service-detail-copy{max-width:none!important;justify-self:stretch!important;padding:4px 0!important}
.service-page-v5 .service-description{font-size:18px!important;line-height:1.85!important;color:#53627a!important;max-width:620px!important;margin:16px 0 38px!important}
.service-page-v5 .service-deliverables{padding-top:24px!important}
.service-page-v5 .service-deliverables ul{grid-template-columns:1fr 1fr!important;gap:14px 28px!important}
.service-page-v5 .service-deliverables li{font-size:14px!important;color:#33445e!important}
.service-page-v5 .service-project-shelf{margin-top:70px!important;padding-top:34px!important}
.service-page-v5 .service-project-head{grid-template-columns:1fr 1fr!important;gap:50px!important;align-items:end!important}
.service-page-v5 .service-project-cards{grid-template-columns:repeat(3,minmax(0,1fr))!important}
.service-page-v5 [data-service-reveal]{opacity:0;transform:translateY(28px);transition:opacity .65s ease,transform .7s cubic-bezier(.2,.75,.25,1)}
.service-page-v5 [data-service-reveal].in-view{opacity:1;transform:none}
@media(max-width:900px){
 .service-page-v5 .service-detail .wrap{width:min(760px,calc(100% - 40px))}
 .service-page-v5 .service-detail-grid{grid-template-columns:1fr!important;gap:40px!important}
 .service-page-v5 .service-detail-media{min-height:430px!important}
 .service-page-v5 .service-project-head{grid-template-columns:1fr!important;gap:14px!important}
 .service-page-v5 .service-project-cards{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media(max-width:600px){
 .service-page-v5 .service-detail .wrap{width:calc(100% - 30px)}
 .service-page-v5 .service-detail-top{grid-template-columns:55px minmax(0,1fr)!important;gap:14px!important}
 .service-page-v5 .service-detail-number{font-size:52px!important}
 .service-page-v5 .service-detail-heading h2{font-size:38px!important}
 .service-page-v5 .service-detail-media{min-height:330px!important}
 .service-page-v5 .service-deliverables ul{grid-template-columns:1fr!important}
 .service-page-v5 .service-project-cards{grid-template-columns:1fr!important}
}

.service-page-v5 .service-detail{direction:ltr!important;}
.service-page-v5 .service-detail > .wrap{direction:ltr!important;}


/* =========================================================
   FINAL SERVICE PLACEMENT - reference-inspired structure,
   INTECH visual language. No corner-hugging layout.
========================================================= */
.service-detail .wrap{
  width:min(1320px,calc(100% - 96px));
  margin:0 auto;
}
.service-detail-top{
  width:100%;
  max-width:none;
  grid-template-columns:140px minmax(0,1fr);
  gap:34px;
  margin:0 0 48px;
  align-items:end;
}
.service-detail-heading h2{
  font-size:clamp(42px,4.2vw,68px);
  line-height:1.02;
  letter-spacing:-2.6px;
}
.service-detail-heading p{font-size:19px;max-width:760px}

/* Reference-like information composition: explanation on the left,
   deliverables on the right, then the project image below. */
.service-detail-grid{
  width:100%;
  max-width:none;
  margin:0;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:56px 80px;
  align-items:start;
}
.service-detail-copy{
  grid-column:1 / -1;
  grid-row:1;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:70px;
  padding:0;
  max-width:none;
  justify-self:stretch;
}
.service-description{
  font-size:20px;
  line-height:1.9;
  color:#53627a;
  margin:14px 0 0;
  max-width:690px;
}
.service-deliverables{
  border-top:1px solid var(--line);
  padding-top:22px;
  margin-top:0;
}
.service-deliverables ul{
  grid-template-columns:1fr;
  gap:12px;
  margin-top:18px;
}
.service-deliverables li{font-size:15px;line-height:1.55}
.service-detail-media{
  grid-column:1 / -1;
  grid-row:2;
  min-height:560px;
  border-radius:20px;
  margin-top:4px;
}
.service-detail-media img{min-height:560px}
.service-media-caption{left:34px;right:34px;bottom:30px}
.service-project-shelf{
  width:100%;
  max-width:none;
  margin:74px 0 0;
}
.service-project-head{
  grid-template-columns:minmax(0,1fr) minmax(0,.85fr);
  gap:60px;
}
.service-project-cards{grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}

@media(max-width:900px){
  .service-detail .wrap{width:min(100% - 48px,720px)}
  .service-detail-top{grid-template-columns:80px 1fr;gap:22px}
  .service-detail-copy{grid-template-columns:1fr;gap:34px}
  .service-description{max-width:none}
  .service-detail-media{min-height:440px}
  .service-detail-media img{min-height:440px}
  .service-project-head{grid-template-columns:1fr;gap:16px}
}
@media(max-width:600px){
  .service-detail .wrap{width:calc(100% - 32px)}
  .service-detail-top{grid-template-columns:54px 1fr;gap:14px;margin-bottom:34px}
  .service-detail-number{font-size:54px}
  .service-detail-heading h2{font-size:38px}
  .service-detail-heading p{font-size:16px}
  .service-description{font-size:16px;line-height:1.8}
  .service-detail-media,.service-detail-media img{min-height:300px}
  .service-project-cards{grid-template-columns:1fr}
}

/* =========================================================
   V9 SERVICE CONTENT PLACEMENT FIX
   Keep WHAT WE DO + description together on the left,
   and deliverables as the dedicated right column.
========================================================= */
.service-page-v5 .service-detail-copy{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important;
  grid-template-rows:auto 1fr!important;
  column-gap:96px!important;
  row-gap:0!important;
  align-items:start!important;
  width:100%!important;
}
.service-page-v5 .service-detail-copy > .service-label:first-child{
  grid-column:1!important;
  grid-row:1!important;
  margin:0 0 12px!important;
}
.service-page-v5 .service-detail-copy > .service-description{
  grid-column:1!important;
  grid-row:2!important;
  margin:0!important;
  max-width:680px!important;
}
.service-page-v5 .service-detail-copy > .service-deliverables{
  grid-column:2!important;
  grid-row:1 / span 2!important;
  margin:0!important;
  padding:0 0 0 34px!important;
  border-top:0!important;
  border-left:1px solid var(--line)!important;
  min-height:100%!important;
}
.service-page-v5 .service-detail-copy > .service-deliverables .service-label{
  display:block!important;
  margin:0 0 12px!important;
}
.service-page-v5 .service-detail-copy > .service-deliverables ul{
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:13px!important;
  margin:0!important;
}
.service-page-v5 .service-detail-copy > .service-deliverables li{
  font-size:15px!important;
  line-height:1.55!important;
}

@media(max-width:900px){
  .service-page-v5 .service-detail-copy{
    grid-template-columns:1fr!important;
    grid-template-rows:auto!important;
    row-gap:28px!important;
  }
  .service-page-v5 .service-detail-copy > .service-label:first-child,
  .service-page-v5 .service-detail-copy > .service-description,
  .service-page-v5 .service-detail-copy > .service-deliverables{
    grid-column:1!important;
    grid-row:auto!important;
  }
  .service-page-v5 .service-detail-copy > .service-deliverables{
    border-left:0!important;
    border-top:1px solid var(--line)!important;
    padding:22px 0 0!important;
  }
}


/* =========================================================
   V10 SERVICE LAYOUT - centered editorial composition
   No giant service images. Content uses the full central canvas.
========================================================= */
.service-page-v5 .service-detail .wrap{
  width:min(1240px, calc(100% - 72px))!important;
  margin:0 auto!important;
}
.service-page-v5 .service-detail{
  border:0!important;
  border-radius:0!important;
  overflow:visible!important;
  background:#fff!important;
}
.service-page-v5 .service-detail-top{
  display:grid!important;
  grid-template-columns:120px minmax(0,1fr)!important;
  gap:30px!important;
  width:100%!important;
  margin:0 0 64px!important;
  align-items:start!important;
}
.service-page-v5 .service-detail-number{
  font-size:86px!important;
  line-height:.9!important;
  letter-spacing:-4px!important;
  color:#e8eef7!important;
  margin-top:8px!important;
}
.service-page-v5 .service-detail-heading span{
  display:block!important;
  margin:0 0 14px!important;
}
.service-page-v5 .service-detail-heading h2{
  font-size:clamp(48px,5vw,72px)!important;
  line-height:.98!important;
  letter-spacing:-3px!important;
  max-width:850px!important;
  margin:0!important;
}
.service-page-v5 .service-detail-heading p{
  font-size:20px!important;
  line-height:1.5!important;
  margin:16px 0 0!important;
  max-width:760px!important;
}
.service-page-v5 .service-detail-grid{
  display:block!important;
  width:100%!important;
  margin:0!important;
}
.service-page-v5 .service-detail-copy{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important;
  column-gap:86px!important;
  width:100%!important;
  margin:0!important;
  padding:0!important;
  align-items:start!important;
}
.service-page-v5 .service-detail-copy > .service-label:first-child{
  grid-column:1!important;
  grid-row:1!important;
  margin:0 0 18px!important;
}
.service-page-v5 .service-detail-copy > .service-description{
  grid-column:1!important;
  grid-row:2!important;
  margin:0!important;
  max-width:520px!important;
  font-size:19px!important;
  line-height:1.8!important;
}
.service-page-v5 .service-detail-copy > .service-deliverables{
  grid-column:2!important;
  grid-row:1 / span 2!important;
  margin:0!important;
  padding:0 0 0 42px!important;
  border:0!important;
  border-left:1px solid #dfe5ed!important;
  min-height:0!important;
}
.service-page-v5 .service-detail-copy > .service-deliverables .service-label{
  display:block!important;
  margin:0 0 18px!important;
}
.service-page-v5 .service-detail-copy > .service-deliverables ul{
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:14px!important;
  margin:0!important;
}
.service-page-v5 .service-detail-copy > .service-deliverables li{
  font-size:16px!important;
  line-height:1.55!important;
}
.service-page-v5 .service-detail-media{display:none!important}
.service-page-v5 .service-project-shelf{
  width:100%!important;
  margin:78px 0 0!important;
}
.service-page-v5 .service-project-head{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) minmax(0,.8fr)!important;
  gap:70px!important;
}

@media(max-width:900px){
  .service-page-v5 .service-detail .wrap{width:min(760px,calc(100% - 48px))!important}
  .service-page-v5 .service-detail-top{grid-template-columns:80px minmax(0,1fr)!important;gap:22px!important;margin-bottom:48px!important}
  .service-page-v5 .service-detail-copy{grid-template-columns:1fr!important;row-gap:28px!important}
  .service-page-v5 .service-detail-copy > .service-label:first-child,
  .service-page-v5 .service-detail-copy > .service-description,
  .service-page-v5 .service-detail-copy > .service-deliverables{grid-column:1!important;grid-row:auto!important}
  .service-page-v5 .service-detail-copy > .service-deliverables{border-left:0!important;border-top:1px solid #dfe5ed!important;padding:26px 0 0!important}
}
@media(max-width:600px){
  .service-page-v5 .service-detail .wrap{width:calc(100% - 32px)!important}
  .service-page-v5 .service-detail-top{grid-template-columns:54px minmax(0,1fr)!important;gap:14px!important}
  .service-page-v5 .service-detail-number{font-size:54px!important;letter-spacing:-2px!important}
  .service-page-v5 .service-detail-heading h2{font-size:40px!important;letter-spacing:-1.8px!important}
  .service-page-v5 .service-detail-heading p{font-size:16px!important}
  .service-page-v5 .service-description{font-size:17px!important;line-height:1.75!important}
}


/* =========================================================
   V11 FINAL - TRUE CENTERED SERVICE CONTENT
   Keep every service block centred in the viewport.
========================================================= */
.service-page-v5 .service-detail > .wrap{
  width:min(1180px, calc(100vw - 120px))!important;
  max-width:none!important;
  margin-left:auto!important;
  margin-right:auto!important;
  padding-left:0!important;
  padding-right:0!important;
  transform:none!important;
}
.service-page-v5 .service-detail-top{
  width:100%!important;
  max-width:none!important;
  grid-template-columns:110px minmax(0,1fr)!important;
  gap:34px!important;
  margin:0 0 52px!important;
}
.service-page-v5 .service-detail-heading h2{
  font-size:clamp(44px,4.2vw,68px)!important;
  max-width:none!important;
}
.service-page-v5 .service-detail-grid{
  width:100%!important;
  max-width:none!important;
  display:block!important;
}
.service-page-v5 .service-detail-copy{
  width:100%!important;
  max-width:none!important;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important;
  column-gap:90px!important;
}
.service-page-v5 .service-detail-copy > .service-description{
  max-width:600px!important;
  font-size:19px!important;
  line-height:1.8!important;
}
.service-page-v5 .service-detail-copy > .service-deliverables{
  padding-left:46px!important;
}
.service-page-v5 .service-project-shelf{
  width:100%!important;
  max-width:none!important;
  margin:68px 0 0!important;
}
.service-page-v5 .service-project-head{
  width:100%!important;
  grid-template-columns:minmax(0,1fr) minmax(0,.75fr)!important;
  gap:70px!important;
}
.service-page-v5 .service-project-cards{
  width:100%!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:20px!important;
}
@media(max-width:900px){
  .service-page-v5 .service-detail > .wrap{width:calc(100vw - 48px)!important}
  .service-page-v5 .service-detail-copy{grid-template-columns:1fr!important}
  .service-page-v5 .service-detail-copy > .service-deliverables{padding-left:0!important}
  .service-page-v5 .service-project-head{grid-template-columns:1fr!important}
}
@media(max-width:600px){
  .service-page-v5 .service-detail > .wrap{width:calc(100vw - 32px)!important}
}

/* V12 FIX - service section must not inherit the old two-column grid */
.service-page-v5 .service-detail{
  display:block!important;
  width:100%!important;
  grid-template-columns:none!important;
}
.service-page-v5 .service-detail > .wrap{
  display:block!important;
  width:min(1180px,calc(100vw - 120px))!important;
  margin-left:auto!important;
  margin-right:auto!important;
}


/* V13 PROJECT IMAGE CARDS
   To replace a dummy image, simply replace the matching JPG in
   assets/project-dummies/ with your own image, keeping the same filename.
*/
.service-page-v5 .service-project-card.project-filled{
  min-height:0!important;
  padding:0!important;
  overflow:hidden!important;
  background:#fff!important;
  border:1px solid #dfe6ef!important;
  border-radius:14px!important;
  display:block!important;
}
.service-page-v5 .project-image-wrap{
  position:relative!important;
  width:100%!important;
  aspect-ratio:16/10!important;
  overflow:hidden!important;
  background:#eef3f7!important;
}
.service-page-v5 .project-image-wrap img{
  display:block!important;
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  transition:transform .45s ease!important;
}
.service-page-v5 .project-filled:hover .project-image-wrap img{
  transform:scale(1.035)!important;
}
.service-page-v5 .project-image-wrap .project-index{
  position:absolute!important;
  top:14px!important;
  left:14px!important;
  min-width:34px!important;
  height:26px!important;
  padding:0 8px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  border-radius:5px!important;
  background:rgba(255,255,255,.94)!important;
  color:#8190a4!important;
  font-size:10px!important;
  font-weight:800!important;
  letter-spacing:1.5px!important;
}
.service-page-v5 .project-card-body{
  padding:18px 20px 21px!important;
}
.service-page-v5 .project-location{
  display:block!important;
  margin:0 0 7px!important;
  color:var(--orange)!important;
  font-size:10px!important;
  font-weight:800!important;
  letter-spacing:2px!important;
  text-transform:uppercase!important;
}
.service-page-v5 .project-card-body h4{
  margin:0 0 7px!important;
  font-size:18px!important;
  line-height:1.3!important;
  color:var(--navy)!important;
}
.service-page-v5 .project-card-body p{
  margin:0!important;
  font-size:12px!important;
  line-height:1.55!important;
  color:#7a8799!important;
}
@media(max-width:900px){
  .service-page-v5 .service-project-cards{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media(max-width:600px){
  .service-page-v5 .service-project-cards{grid-template-columns:1fr!important}
}


/* =========================================================
   V14 - MODERN CAREERS PAGE
========================================================= */
.careers-page{
  background:#f7f9fc;
}
.careers-intro{
  position:relative;
  overflow:hidden;
  padding:92px 0 78px;
  background:
    radial-gradient(circle at 82% 18%, rgba(242,139,32,.15), transparent 28%),
    linear-gradient(135deg,#06172e 0%,#0a2845 58%,#0d3556 100%);
  color:#fff;
}
.careers-intro:after{
  content:"";
  position:absolute;
  width:520px;height:520px;
  right:-180px;bottom:-260px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:50%;
  box-shadow:0 0 0 70px rgba(255,255,255,.025),0 0 0 140px rgba(255,255,255,.018);
}
.careers-intro-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(360px,.85fr);
  gap:90px;
  align-items:center;
}
.careers-copy .eyebrow{color:#ff9a25}
.careers-copy h1{
  margin:18px 0 22px;
  color:#fff;
  font-size:clamp(48px,6vw,82px);
  line-height:.98;
  letter-spacing:-3px;
}
.careers-copy h1 span{color:#ff9a25}
.careers-copy>p{
  max-width:720px;
  margin:0;
  color:#c5d1df;
  font-size:17px;
  line-height:1.8;
}
.career-pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:32px;
}
.career-pill-row span{
  padding:9px 14px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  color:#e7edf5;
  font-size:11px;
  font-weight:700;
  letter-spacing:.7px;
  text-transform:uppercase;
  background:rgba(255,255,255,.04);
}
.careers-side-card{
  padding:34px;
  border:1px solid rgba(255,255,255,.15);
  border-radius:24px;
  background:rgba(255,255,255,.065);
  backdrop-filter:blur(14px);
  box-shadow:0 25px 70px rgba(0,0,0,.2);
}
.careers-card-number{
  display:block;
  color:rgba(255,255,255,.22);
  font-size:58px;
  font-weight:800;
  line-height:1;
}
.careers-card-label{
  display:block;
  margin-top:12px;
  color:#ff9a25;
  font-size:10px;
  font-weight:800;
  letter-spacing:2.2px;
}
.careers-side-card h3{
  margin:10px 0 12px;
  color:#fff;
  font-size:28px;
  line-height:1.15;
}
.careers-side-card>p{
  margin:0;
  color:#b7c5d5;
  line-height:1.7;
}
.careers-mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  margin-top:28px;
  border-top:1px solid rgba(255,255,255,.13);
  border-left:1px solid rgba(255,255,255,.13);
}
.careers-mini-grid div{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:15px;
  border-right:1px solid rgba(255,255,255,.13);
  border-bottom:1px solid rgba(255,255,255,.13);
}
.careers-mini-grid strong{color:#ff9a25;font-size:10px;letter-spacing:1.5px}
.careers-mini-grid span{color:#e8edf3;font-size:12px;font-weight:600}

.careers-apply{
  padding:92px 0 110px;
}
.careers-apply-grid{
  display:grid;
  grid-template-columns:minmax(300px,.72fr) minmax(560px,1.28fr);
  gap:85px;
  align-items:start;
}
.careers-openings h2{
  margin:12px 0 16px;
  font-size:48px;
  line-height:1.02;
  letter-spacing:-1.8px;
}
.careers-openings>p{
  margin:0;
  max-width:510px;
  color:var(--muted);
  line-height:1.8;
}
.career-role-list{
  margin-top:35px;
  border-top:1px solid var(--line);
}
.career-role-item{
  display:grid;
  grid-template-columns:42px 1fr;
  gap:16px;
  padding:17px 0;
  border-bottom:1px solid var(--line);
}
.career-role-item>span{
  color:#a3b1c1;
  font-size:11px;
  font-weight:800;
  letter-spacing:1.5px;
}
.career-role-item strong{
  display:block;
  color:var(--navy);
  font-size:14px;
}
.career-role-item small{
  display:block;
  margin-top:5px;
  color:#8390a1;
  font-size:11px;
  line-height:1.5;
}
.career-form-shell{
  padding:36px;
  border:1px solid #dfe6ef;
  border-radius:26px;
  background:#fff;
  box-shadow:0 24px 70px rgba(11,23,48,.09);
}
.career-form-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  margin-bottom:28px;
}
.career-form-head h2{
  margin:8px 0 0;
  font-size:32px;
  letter-spacing:-1px;
}
.career-form-badge{
  padding:8px 11px;
  border-radius:999px;
  background:#fff4e5;
  color:#e47d11;
  font-size:9px;
  font-weight:800;
  letter-spacing:1.7px;
}
.career-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.career-form label{
  display:flex;
  flex-direction:column;
  gap:8px;
  color:var(--navy);
  font-size:12px;
  font-weight:800;
}
.career-form label>input,
.career-form label>select,
.career-form label>textarea{
  width:100%;
  box-sizing:border-box;
  border:1px solid #d6dfeb;
  border-radius:11px;
  background:#fbfcfe;
  color:var(--navy);
  padding:14px 15px;
  font:inherit;
  font-weight:500;
  outline:none;
  transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
.career-form label>input,
.career-form label>select{height:52px}
.career-form label>input::placeholder,
.career-form textarea::placeholder{color:#9aa6b5}
.career-form label>input:focus,
.career-form label>select:focus,
.career-form label>textarea:focus{
  border-color:#f28b20;
  background:#fff;
  box-shadow:0 0 0 4px rgba(242,139,32,.10);
}
.career-form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.career-form select{
  appearance:none;
  background-image:linear-gradient(45deg,transparent 50%,#607086 50%),linear-gradient(135deg,#607086 50%,transparent 50%);
  background-position:calc(100% - 18px) 22px,calc(100% - 13px) 22px;
  background-size:5px 5px,5px 5px;
  background-repeat:no-repeat;
  cursor:pointer;
}
.career-file-field{gap:9px!important}
.career-file-drop{
  position:relative;
  display:flex;
  align-items:center;
  gap:14px;
  min-height:72px;
  padding:12px 14px;
  border:1.5px dashed #b9c7d7;
  border-radius:13px;
  background:linear-gradient(135deg,#f8fbff,#fff);
  cursor:pointer;
  transition:border-color .2s ease,background .2s ease,transform .2s ease;
}
.career-file-drop:hover,
.career-file-drop.is-dragover{
  border-color:#f28b20;
  background:#fff9f1;
}
.career-file-drop input{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  cursor:pointer;
}
.career-file-icon{
  flex:0 0 42px;
  width:42px;height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:#fff0dc;
  color:#ed8418;
  font-size:22px;
  font-weight:800;
}
.career-file-copy{
  display:flex;
  flex:1;
  min-width:0;
  flex-direction:column;
  gap:4px;
}
.career-file-copy strong{
  overflow:hidden;
  color:var(--navy);
  font-size:13px;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.career-file-copy small{
  color:#7f8c9d;
  font-size:10px;
  font-weight:500;
}
.career-browse{
  flex:0 0 auto;
  padding:10px 14px;
  border-radius:8px;
  background:var(--navy);
  color:#fff;
  font-size:11px;
  font-weight:800;
  letter-spacing:.2px;
}
.career-message span{color:#9aa6b5;font-weight:500}
.career-submit-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding-top:3px;
}
.career-submit-row p{
  margin:0;
  max-width:360px;
  color:#8a97a7;
  font-size:10px;
  line-height:1.55;
}
.career-submit{
  display:inline-flex;
  align-items:center;
  gap:18px;
  min-width:190px;
  justify-content:center;
}
.career-submit b{font-size:17px}
.career-upload-status{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:18px;
  color:#7e8b9b;
  font-size:10px;
  opacity:.95;
}
.career-progress{
  display:block;
  width:90px;height:4px;
  overflow:hidden;
  border-radius:999px;
  background:#e8edf3;
}
.career-progress i{
  display:block;
  width:0;
  height:100%;
  border-radius:inherit;
  background:#f28b20;
  transition:width .25s ease;
}
.career-upload-status.is-ready .career-progress i{width:100%}
.career-upload-status.is-uploading .career-progress i{
  width:42%;
  animation:careerUploadPulse 1.15s ease-in-out infinite alternate;
}
@keyframes careerUploadPulse{
  from{transform:translateX(-15px)}
  to{transform:translateX(105px)}
}
@media(max-width:1050px){
  .careers-intro-grid{grid-template-columns:1fr;gap:50px}
  .careers-side-card{max-width:620px}
  .careers-apply-grid{grid-template-columns:1fr;gap:55px}
}
@media(max-width:700px){
  .careers-intro{padding:65px 0}
  .careers-copy h1{font-size:50px;letter-spacing:-2px}
  .career-form-shell{padding:24px 20px}
  .career-form-row{grid-template-columns:1fr}
  .career-submit-row{align-items:stretch;flex-direction:column}
  .career-submit{width:100%}
  .career-file-drop{align-items:flex-start}
  .career-browse{margin-left:auto}
  .careers-openings h2{font-size:40px}
}
@media(max-width:480px){
  .career-file-drop{flex-wrap:wrap}
  .career-browse{width:100%;text-align:center}
  .career-file-copy{max-width:calc(100% - 60px)}
}

/* =========================================================
   V15 MOBILE RESPONSIVE FINAL
   Desktop layout intentionally untouched.
========================================================= */
@media (max-width: 700px){
  /* Homepage hero: use the whole mobile viewport */
  .hero-full-bg{
    min-height:calc(100svh - 64px)!important;
    height:calc(100svh - 64px)!important;
    max-height:none!important;
  }
  .hero-full-content{
    width:calc(100% - 32px)!important;
    min-height:calc(100svh - 64px)!important;
    height:100%!important;
    padding:42px 0 62px!important;
    align-items:center!important;
  }
  .hero-bg-slide img{
    object-fit:cover!important;
    object-position:center!important;
    width:100%!important;
    height:100%!important;
  }
  .hero-bg-slide::before{
    opacity:.62!important;
  }
  .hero-full-bg .hero-copy{
    width:100%!important;
    max-width:100%!important;
  }
  .hero-full-bg .hero-copy h1{
    font-size:clamp(39px,11vw,52px)!important;
    line-height:1!important;
    letter-spacing:-2px!important;
    max-width:100%!important;
  }
  .hero-full-bg .hero-copy p{
    font-size:15px!important;
    line-height:1.55!important;
    max-width:100%!important;
  }

  /* Services: force every wrapper back inside the mobile viewport.
     This overrides the desktop 1180px rule without changing desktop. */
  .service-page-v5 .service-detail{
    width:100%!important;
    max-width:100%!important;
    overflow:hidden!important;
  }
  .service-page-v5 .service-detail > .wrap{
    width:calc(100vw - 32px)!important;
    max-width:calc(100vw - 32px)!important;
    min-width:0!important;
    margin-left:auto!important;
    margin-right:auto!important;
    padding-left:0!important;
    padding-right:0!important;
    box-sizing:border-box!important;
  }
  .service-page-v5 .service-detail-top{
    width:100%!important;
    max-width:100%!important;
    grid-template-columns:54px minmax(0,1fr)!important;
    gap:14px!important;
    margin-bottom:34px!important;
    align-items:start!important;
  }
  .service-page-v5 .service-detail-number{
    font-size:52px!important;
    line-height:1!important;
  }
  .service-page-v5 .service-detail-heading{
    min-width:0!important;
    width:100%!important;
  }
  .service-page-v5 .service-detail-heading h2{
    font-size:clamp(34px,10vw,44px)!important;
    line-height:1.02!important;
    letter-spacing:-1.8px!important;
    overflow-wrap:anywhere!important;
    word-break:normal!important;
  }
  .service-page-v5 .service-detail-heading p{
    font-size:15px!important;
    line-height:1.5!important;
    max-width:100%!important;
  }
  .service-page-v5 .service-detail-grid{
    width:100%!important;
    max-width:100%!important;
    display:block!important;
    min-width:0!important;
  }
  .service-page-v5 .service-detail-copy{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:26px!important;
    padding:0!important;
  }
  .service-page-v5 .service-detail-copy > .service-description{
    width:100%!important;
    max-width:100%!important;
    font-size:16px!important;
    line-height:1.72!important;
    overflow-wrap:anywhere!important;
  }
  .service-page-v5 .service-detail-copy > .service-deliverables{
    width:100%!important;
    max-width:100%!important;
    padding:24px 0 0!important;
    border-left:0!important;
    border-top:1px solid #dfe5ed!important;
  }
  .service-page-v5 .service-detail-copy > .service-deliverables ul{
    width:100%!important;
    grid-template-columns:1fr!important;
  }
  .service-page-v5 .service-detail-copy > .service-deliverables li{
    font-size:14px!important;
    line-height:1.5!important;
  }
  .service-page-v5 .service-project-shelf{
    width:100%!important;
    max-width:100%!important;
    margin-top:52px!important;
  }
  .service-page-v5 .service-project-head{
    width:100%!important;
    max-width:100%!important;
    grid-template-columns:1fr!important;
    gap:12px!important;
  }
  .service-page-v5 .service-project-cards{
    width:100%!important;
    max-width:100%!important;
    grid-template-columns:1fr!important;
  }
  .service-page-v5 .service-project-card{
    min-width:0!important;
  }
}

/* =========================================================
   V16 MOBILE FIX - HERO + SERVICES
   Desktop intentionally unchanged.
========================================================= */
@media (max-width:700px){
  .hero-full-bg{
    min-height:calc(100svh - 154px)!important;
    height:calc(100svh - 154px)!important;
    max-height:none!important;
    overflow:hidden!important;
  }
  .hero-full-content{
    width:calc(100% - 28px)!important;
    max-width:none!important;
    height:100%!important;
    min-height:0!important;
    box-sizing:border-box!important;
    margin:0 auto!important;
    padding:38px 0 58px!important;
    display:flex!important;
    align-items:flex-start!important;
    justify-content:center!important;
  }
  .hero-full-bg .hero-copy{width:100%!important;max-width:100%!important;margin:0!important;padding:0!important}
  .hero-full-bg .hero-copy .eyebrow{font-size:10px!important;line-height:1.3!important}
  .hero-full-bg .hero-copy h1{margin:10px 0 18px!important;font-size:clamp(37px,10.5vw,48px)!important;line-height:1.02!important;letter-spacing:-1.8px!important;max-width:100%!important}
  .hero-full-bg .hero-copy p{margin:0 0 22px!important;font-size:15px!important;line-height:1.55!important;max-width:100%!important}
  .hero-full-bg .actions{gap:10px!important;flex-wrap:wrap!important}
  .hero-full-bg .actions .btn{min-height:50px!important;padding:13px 18px!important}
  .hero-full-bg .hero-points{margin-top:22px!important;gap:14px!important;flex-wrap:wrap!important}

  .service-page-v5 .service-detail{display:block!important;width:100%!important;max-width:none!important;min-width:0!important;overflow:hidden!important;direction:ltr!important}
  .service-page-v5 .service-detail > .wrap{display:block!important;width:calc(100% - 28px)!important;max-width:none!important;min-width:0!important;margin:0 auto!important;padding:0!important;box-sizing:border-box!important}
  .service-page-v5 .service-detail-top{display:grid!important;grid-template-columns:54px minmax(0,1fr)!important;width:100%!important;max-width:none!important;margin:0 0 28px!important;padding:0!important;gap:14px!important;align-items:start!important}
  .service-page-v5 .service-detail-number{width:auto!important;font-size:48px!important;line-height:1!important}
  .service-page-v5 .service-detail-heading{min-width:0!important;max-width:none!important;overflow:visible!important}
  .service-page-v5 .service-detail-heading h2{margin:0!important;width:100%!important;max-width:none!important;font-size:clamp(32px,9.5vw,43px)!important;line-height:1.03!important;letter-spacing:-1.5px!important;overflow-wrap:normal!important;word-break:normal!important}
  .service-page-v5 .service-detail-heading p{margin:8px 0 0!important;font-size:15px!important;line-height:1.5!important;max-width:none!important}
  .service-page-v5 .service-detail-grid{display:block!important;width:100%!important;max-width:none!important;margin:0!important;min-width:0!important}
  .service-page-v5 .service-detail-media{display:none!important}
  .service-page-v5 .service-detail-copy{display:grid!important;grid-template-columns:1fr!important;width:100%!important;max-width:none!important;margin:0!important;padding:0!important;gap:25px!important}
  .service-page-v5 .service-detail-copy > .service-description{width:100%!important;max-width:none!important;margin:0!important;font-size:15px!important;line-height:1.7!important}
  .service-page-v5 .service-detail-copy > .service-deliverables{width:100%!important;max-width:none!important;margin:0!important;padding:24px 0 0!important;border-left:0!important;border-top:1px solid #dfe5ed!important}
  .service-page-v5 .service-detail-copy > .service-deliverables ul{width:100%!important;max-width:none!important;grid-template-columns:1fr!important}
  .service-page-v5 .service-project-shelf{width:100%!important;max-width:none!important;margin:48px 0 0!important}
  .service-page-v5 .service-project-head{grid-template-columns:1fr!important;gap:10px!important}
  .service-page-v5 .service-project-cards{grid-template-columns:1fr!important;width:100%!important}
}
@media (max-width:380px){
  .hero-full-bg .hero-copy h1{font-size:36px!important}
  .service-page-v5 .service-detail-top{grid-template-columns:48px minmax(0,1fr)!important;gap:10px!important}
  .service-page-v5 .service-detail-number{font-size:43px!important}
  .service-page-v5 .service-detail-heading h2{font-size:31px!important}
}
