:root {
    --blue: #0968e8;
    --blue2: #0a8bf0;
    --ink: #0a2746;
    --muted: #60758b;
    --line: #dce7f0;
    --soft: #f3f9fd;
    --dark: #062844;
    --white: #fff;
    --radius: 12px;
    --shadow: 0 14px 36px rgba(8, 47, 85, .11)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4 {
    font-family: Manrope, Inter, sans-serif;
    line-height: 1.06;
    margin: 0 0 14px;
    letter-spacing: -.035em
}

h1 {
    font-size: clamp(3.15rem, 4.95vw, 5.55rem);
    font-weight: 800
}

h2 {
    font-size: clamp(2rem, 2.65vw, 3.05rem);
    font-weight: 800
}

h3 {
    font-size: 1.05rem
}

p {
    margin: 0 0 19px;
    color: var(--muted)
}

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

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

.container {
    width: min(1340px, calc(100% - 72px));
    margin: auto
}

.topbar {
       font-size: .73rem;
    border-bottom: 1px solid var(--line);
    background: #062844;
    color: #fff;
}

.topbar-inner {
    height: 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px
}

.topbar a {
    margin-left: 20px
}

.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    z-index: 100;
    border-bottom: 1px solid rgba(220, 232, 242, .9)
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Manrope;
    font-weight: 800;
    line-height: 1
}

.brand::after{   
        content: "";
    position: absolute;
    width: 0;
    height: 0;
    display: inline-block;
    z-index: 99;
    border-right: 20px solid transparent;
    border-top: 28px solid #fff;
    left: 186px;
    bottom: -28px;
    
}
.brand img {
        width: 150px;
    height: 129px;
    object-fit: contain;
    background: #fff;
    padding: 8px 6px 6px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.brand small {
    font-family: Inter;
    font-size: .72rem;
    font-weight: 600
}

.nav {
    display: flex;
    align-items: center;
    gap: 29px;
    font-weight: 600;
    font-size: .94rem
}

.nav a,
.dropdown button {
    transition: .25s
}

.nav a:hover,
.dropdown button:hover {
    color: var(--blue)
}

.dropdown {
    position: relative
}

.dropdown button {
    border: 0;
    background: none;
    font: inherit;
    color: inherit;
    cursor: pointer
}

.dropdown-menu {
    position: absolute;
    top: 140%;
    left: -20px;
    width: 270px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .25s;
        height: 327px;
    overflow: scroll;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none
}

.dropdown-menu a {
    display: block;
    padding: 9px 12px;
    border-radius: 7px
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 7px;
    font-weight: 700;
    font-size: .86rem;
    transition: .28s
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color: #fff;
    box-shadow: 0 10px 22px rgba(13, 99, 217, .2)
}

.btn-outline {
    border: 1.5px solid var(--blue);
    color: var(--blue);
    background: #fff
}

.btn-white {
    background: #fff;
    color: var(--blue)
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, .62);
    color: #fff
}

.hero {
    overflow: hidden;
    background: radial-gradient(circle at 22% 12%, #fff 0, #f4fbff 47%, #edf7fc 100%)
}

.hero-grid {
    height: 565px;
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center
}

.eyebrow {
    display: block;
    text-transform: uppercase;
    color: var(--blue);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .09em;
    margin-bottom: 11px
}

.hero h1 em {
    font-style: normal;
    color: var(--blue)
}

.hero-copy {
    padding: 52px 0 38px
}

.hero-copy>p {
        max-width: 466px;
    font-size: 14px;
    color: #444;
}

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

.benefits {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 28px;
    font-size: .75rem;
    font-weight: 700
}

.benefits span {
    white-space: nowrap
}

.hero-visual {
    align-self: stretch;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end
}

/*.hero-visual:before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    bottom: 0;*/
/*    width: 105px;*/
/*    background: var(--blue);*/
/*    border-radius: 100% 0 0 100% / 50% 0 0 50%;*/
/*    z-index: 0*/
/*}*/

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: ellipse(78% 73% at 74% 50%)
}

.float-card {
    position: absolute;
    background: #fff;
    border-radius: 9px;
    padding: 9px 13px;
    box-shadow: var(--shadow);
    font-size: .69rem;
    font-weight: 700
}

.float-card.top {
    top: 14%;
    right: 7%
}

.float-card.mid {
    top: 29%;
    right: 1%
}

.section {
    padding: 66px 0
}

.split {
    display: grid;
    grid-template-columns: 1fr 1.28fr;
    gap: 64px;
    align-items: center
}

.image-stack img {
    border-radius: 12px;
    box-shadow: var(--shadow);
    height: 362px;
    width: 100%;
    object-fit: cover
}

.about h2 {
    max-width: 740px
}

.about p {
    max-width: 720px
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
    margin: 25px 0
}

.stats div {
    padding: 15px 13px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #f9fcff
}

.stats b {
    display: block;
    font-family: Manrope;
    font-size: 1.38rem;
    color: var(--blue)
}

.stats span {
    font-size: .68rem;
    color: var(--muted)
}

.products {
    background: var(--soft)
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 30px
}

.products.section {
    padding: 56px 0 45px
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px
}

.product-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 0 8px 23px rgba(10, 59, 96, .07);
    transition: .32s
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow)
}

.product-card img {
    width: 100%;
    height: 170px;
    object-fit: contain;
    background: #fff;
    padding: 10px;
    transition: .32s
}

.product-card:hover img {
    transform: scale(1.045)
}

.product-card div {
    padding: 13px 14px 14px
}

.product-card h3 {
    font-size: .95rem;
    min-height: 40px;
    margin-bottom: 11px
}

.product-card a,
.text-link {
    font-size: .73rem;
    color: var(--blue);
    font-weight: 800
}

.center {
    text-align: center;
    margin-top: 21px
}

.dark {
    background: linear-gradient(125deg, #05243d, #082f4e);
    color: #fff
}

.why.section {
    padding: 38px 0 42px
}

.light h2,
.dark h3 {
    color: #fff
}

.dark p {
    color: #bfd0df
}

.why .section-head {
    margin-bottom: 27px
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}


.add-box{
        border: 1px solid #fff;
    padding: 10px 10px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.feature img {
       display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    border: 1px solid #4a7696;
    border-radius: 50%;
    font-style: normal;
    margin-bottom: 13px;
    margin-left: 165px;
}

.feature h3 {
    font-size: 16px;
    margin-bottom: 7px;
    text-align: center;
    letter-spacing: 0.5px;
}

.feature p {
    font-size: .76rem;
    line-height: 1.45;
    margin: 0;
    text-align:center;
}

.dual.section {
    padding: 56px 0 38px
}

.dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 26px
}

.industry-grid span {
    padding: 12px 7px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    font-weight: 700;
    font-size: .72rem;
    text-align: center
}

.process {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    counter-reset: steps
}

.process li {
    position: relative;
    padding: 54px 7px 0;
    text-align: center;
    border: 0;
    font-size: .72rem;
    font-weight: 700;
    min-height: 84px
}

.process li:before {
    counter-increment: steps;
    content: counter(steps);
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--blue);
    display: grid;
    place-items: center;
    color: var(--blue);
    font-weight: 800;
    font-size: .72rem;
    z-index: 2
}

.process li:not(:last-child):after {
    content: "";
    position: absolute;
    left: 64%;
    right: -38%;
    top: 20px;
    border-top: 2px dotted #83baf2
}

.faq-cta.section {
    padding: 28px 0 48px
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 20px
}

.faq-box,
.cta-card {
    border-radius: 13px
}

.faq-box {
    padding: 24px;
    border: 1px solid var(--line)
}

.faq-box h2 {
    font-size: 2.2rem;
    max-width: 480px
}

.accordion button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border: 0;
    border-top: 1px solid var(--line);
    background: transparent;
    text-align: left;
    font: 600 .83rem Inter;
    cursor: pointer
}

.accordion .panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
}

.accordion .panel p {
    padding: 0 0 13px;
    font-size: .8rem
}

.cta-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a5ec8, #0b82f0);
    color: #fff;
    padding: 34px;
    display: grid;
    grid-template-columns: 1fr 42%;
    align-items: center;
    min-height: 330px
}

.cta-card h2 {
    font-size: 2.45rem;
    max-width: 490px
}

.cta-card p {
    color: #dceeff;
    max-width: 430px
}

.cta-card img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 43%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: screen;
    opacity: .97
}

.cta-card>div {
    position: relative;
    z-index: 1
}

.light-text {
    color: #dceeff
}

footer {
    background: #051e32;
    color: #fff;
    padding: 42px 0 14px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 46px
}

.footer-grid p {
    color: #a9bed0;
    font-size: .78rem
}

.footer-grid h4 {
        font-size: 18px;
    letter-spacing: 0.3px;
    text-decoration: underline;
    text-underline-offset: 7px;
    margin-bottom: 20px;
    text-decoration-style: dotted;
    font-weight:100;
}

.footer-grid a {
       display: block;
    color: #b9cada;
    font-size: 14px;
    margin: 8px 0;
}

.footer-brand {
    margin-bottom: 14px
}

.copyright {
    border-top: 1px solid #183b55;
    margin-top: 26px;
    padding-top: 14px;
    color: #8ca7ba;
    font-size: .72rem;
        display: grid;
    grid-template-columns: 3.5fr 1fr;
}
.footer-a{color:#fff;}
.footer-a:hover{color:#8ca7ba;}
.whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    background: #25d366;
    color: #fff;
    padding: 11px 15px;
    border-radius: 999px;
    font-weight: 800;
    font-size: .78rem;
    box-shadow: var(--shadow);
    z-index: 50
}

.menu-toggle {
    display: none
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: .65s ease
}

.reveal.show {
    opacity: 1;
    transform: none
}

.delay-1 {
    transition-delay: .1s
}

.delay-2 {
    transition-delay: .2s
}

@media(max-width:1050px) {
    .container {
        width: min(100% - 40px, 1340px)
    }

    .topbar {
        display: none
    }

    .nav {
        position: fixed;
        inset: 74px 0 auto 0;
        background: #fff;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 30px;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow)
    }

    .nav.open {
        display: flex
    }

    .dropdown,
    .dropdown-menu {
        width: 100%
    }

    .dropdown-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 10px
    }

    .dropdown.open .dropdown-menu {
        display: block
    }

    .menu-toggle {
        display: flex;
        width: 42px;
        height: 42px;
        border: 0;
        background: transparent;
        flex-direction: column;
        justify-content: center;
        gap: 5px
    }

    .menu-toggle span {
        width: 24px;
        height: 2px;
        background: var(--ink)
    }

    .hero-grid {
        height: auto;
        grid-template-columns: 1fr
    }

    .hero-copy {
        padding: 60px 0 30px
    }

    .hero-visual {
        height: 480px
    }

    .split,
    .dual-grid,
    .grid-2 {
        grid-template-columns: 1fr
    }

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

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

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

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

    .process li:not(:last-child):after {
        display: none
    }

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

@media(max-width:650px) {
    .container {
        width: min(100% - 28px, 1340px)
    }

    .section {
        padding: 54px 0
    }

    .hero-copy {
        padding-top: 44px
    }

    .hero h1 {
        font-size: clamp(2.65rem, 14vw, 4.4rem)
    }

    .hero-visual {
        height: 330px
    }

    .hero-visual:before {
        width: 55px
    }

    .float-card {
        display: none
    }

    .benefits {
        gap: 10px 18px
    }

    .split {
        gap: 30px
    }

    .image-stack img {
        height: auto
    }

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

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

    .product-card img {
        height: 145px
    }

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

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

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

    .cta-card {
        grid-template-columns: 1fr;
        padding: 30px;
        min-height: 420px
    }

    .cta-card h2 {
        font-size: 2rem
    }

    .cta-card img {
        opacity: .3;
        width: 72%
    }

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

    .nav-cta {
        width: 100%
    }
}





/*product page css*/



#wce-product-page-2026,
#wce-product-page-2026 * {
    box-sizing: border-box
}

#wce-product-page-2026 {
    --wce-primary: #ff6b00;
    --wce-primary-dark: #df5d00;
    --wce-dark: #1f2937;
    --wce-text: #56606d;
    --wce-light: #f6f8fa;
    --wce-border: #e5e7eb;
    --wce-white: #fff;
    margin: 0;
    background: #fff;
    color: var(--wce-text);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.65
}

#wce-product-page-2026 a {
    text-decoration: none;
    color: inherit
}

#wce-product-page-2026 img {
    display: block;
    max-width: 100%
}

#wce-product-page-2026 .wce-container {
    width: min(1250px, calc(100% - 40px));
    margin: auto
}

#wce-product-page-2026 .wce-hero {
    min-height: 290px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(110deg, rgba(16, 23, 32, .95), rgba(16, 23, 32, .72)), url('../assets/industrial-laundry-washing-machine.svg') center/cover
}

#wce-product-page-2026 .wce-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 35%, rgba(255, 107, 0, .25), transparent 25%)
}

#wce-product-page-2026 .wce-hero-inner {
    position: relative;
    z-index: 1;
    padding: 48px 0;
    color: #fff
}

#wce-product-page-2026 .wce-hero h1 {
        font-size: clamp(34px, 5vw, 49px);
    line-height: 1.08;
    margin: 0 0 12px;
    max-width: 850px;
    letter-spacing: 0.3px;
}

#wce-product-page-2026 .wce-hero p {
    max-width: 720px;
    margin: 0 0 16px;
    color: #d7dce2
}

#wce-product-page-2026 .wce-breadcrumb {
    font-size: 13px;
    color: #d9dde2
}

.wce-breadcrumb span {
    color: var(--wce-primary)
}

#wce-product-page-2026 .wce-main {
    padding: 60px 0
}

#wce-product-page-2026 .wce-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 36px;
    align-items: start
}

#wce-product-page-2026 .wce-sidebar {
    position: sticky;
    top: 20px;
    display: grid;
    gap: 20px
}

#wce-product-page-2026 .wce-card {
    border: 1px solid var(--wce-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(31, 41, 55, .07);
    overflow: hidden
}

#wce-product-page-2026 .wce-side-title {
    padding: 18px 19px;
    margin: 0;
    background: var(--wce-dark);
    color: #fff;
    font-size: 18px
}

#wce-product-page-2026 .wce-product-nav {
    padding: 8px
}

#wce-product-page-2026 .wce-product-link {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    color: #404854
}

#wce-product-page-2026 .wce-product-link:hover,
#wce-product-page-2026 .wce-product-link.active {
    background: #fff1e7;
    color: var(--wce-primary)
}

#wce-product-page-2026 .wce-contact {
    padding: 24px;
    background: linear-gradient(145deg, #ff6b00, #e95300);
    color: #fff
}

#wce-product-page-2026 .wce-contact h3 {
    margin: 0 0 8px;
    font-size: 23px
}

.wce-contact p {
    font-size: 13px;
    color: #fff2e8
}

#wce-product-page-2026 .wce-contact a {
    display: block;
    font-weight: 800;
    margin: 5px 0
}

#wce-product-page-2026 .wce-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 10px;
    padding: 13px 18px;
    font-weight: 800;
    cursor: pointer;
    transition: .25s
}

#wce-product-page-2026 .wce-btn-primary {
    background: var(--wce-primary);
    color: #fff
}

.wce-btn-primary:hover {
    background: var(--wce-primary-dark);
    transform: translateY(-2px)
}

#wce-product-page-2026 .wce-btn-dark {
    background: var(--wce-dark);
    color: #fff
}

#wce-product-page-2026 .wce-product-hero {
    /*display: grid;*/
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
    padding: 22px
}

#wce-product-page-2026 .wce-product-image {
    border-radius: 12px;
    background: var(--wce-light);
    overflow: hidden
}

#wce-product-page-2026 .wce-product-image img {
    width: 100%;
    height: 100%;
    min-height: 310px;
    object-fit: cover
}

#wce-product-page-2026 .wce-product-info {
    padding: 12px 4px
}

.wce-product-info h2 {
    font-size: 34px;
    line-height: 1.18;
    color: var(--wce-dark);
    margin: 0 0 12px
}

#wce-product-page-2026 .wce-badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 30px;
    background: #ecfdf3;
    color: #167345;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 14px
}

#wce-product-page-2026 .wce-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0
}

#wce-product-page-2026 .wce-highlight {
    padding: 11px;
    border-radius: 10px;
    background: var(--wce-light);
    font-size: 13px
}

.wce-highlight strong {
    display: block;
    color: var(--wce-dark)
}

#wce-product-page-2026 .wce-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

#wce-product-page-2026 .wce-section {
    margin-top: 38px
}

.wce-heading {
    font-size: 30px;
    color: var(--wce-dark);
    margin: 0 0 18px
}

.wce-heading:after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: var(--wce-primary);
    margin-top: 9px;
    border-radius: 4px
}

#wce-product-page-2026 .wce-overview {
    padding: 28px
}

#wce-product-page-2026 .wce-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 22px
}

.wce-stat {
    padding: 18px;
    border-radius: 12px;
    background: var(--wce-light)
}

.wce-stat b {
    display: block;
    color: var(--wce-dark);
    font-size: 17px
}

.wce-stat span {
    font-size: 12px
}

#wce-product-page-2026 .wce-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px
}

.wce-feature {
    padding: 21px;
    border: 1px solid var(--wce-border);
    border-radius: 12px;
    background: #fff;
    transition: .25s
}

.wce-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(31, 41, 55, .09)
}

.wce-feature i {
    font-style: normal;
    color: var(--wce-primary);
    font-size: 21px
}

.wce-feature h3 {
    font-size: 16px;
    color: var(--wce-dark);
    margin: 8px 0 3px
}

.wce-feature p {
    font-size: 13px;
    margin: 0
}

#wce-product-page-2026 .wce-table-wrap {
    overflow: auto;
    border: 1px solid var(--wce-border);
    border-radius: 12px
}

.wce-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 570px
}

.wce-table th,
.wce-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--wce-border)
}

.wce-table th {
    background: var(--wce-dark);
    color: #fff
}

.wce-table tr:nth-child(even) td {
    background: #f8fafc
}

#wce-product-page-2026 .wce-app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px
}

.wce-app {
    padding: 17px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--wce-border);
    border-radius: 11px;
    font-weight: 700;
    color: var(--wce-dark)
}

#wce-product-page-2026 .wce-process {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px
}

.wce-step {
    position: relative;
    text-align: center;
    padding: 18px 10px;
    background: var(--wce-light);
    border-radius: 12px
}

.wce-step b {
    display: block;
    color: var(--wce-primary)
}

.wce-step span {
    font-weight: 700;
    color: var(--wce-dark);
    font-size: 13px
}

#wce-product-page-2026 .wce-faq {
    display: grid;
    gap: 10px
}

.wce-faq-item {
    border: 1px solid var(--wce-border);
    border-radius: 10px;
    overflow: hidden
}

.wce-faq-btn {
    width: 100%;
    padding: 15px;
    border: 0;
    background: #fff;
    text-align: left;
    font-weight: 800;
    color: var(--wce-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between
}

.wce-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: .3s
}

.wce-faq-answer div {
    padding: 0 15px 15px;
    font-size: 13px
}

#wce-product-page-2026 .wce-cta {
    padding: 38px;
    border-radius: 16px;
    background: linear-gradient(120deg, #1f2937, #344154);
    color: #fff;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center
}

.wce-cta h2 {
    margin: 0 0 5px
}

.wce-cta p {
    margin: 0;
    color: #cdd3da
}

#wce-product-page-2026 .wce-form {
    padding: 28px
}

.wce-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.wce-field {
    display: grid;
    gap: 6px
}

.wce-field.full {
    grid-column: 1/-1
}

.wce-field label {
    font-size: 13px;
    font-weight: 700;
    color: var(--wce-dark)
}

.wce-field input,
.wce-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--wce-border);
    border-radius: 9px;
    outline: none
}

.wce-field input:focus,
.wce-field textarea:focus {
    border-color: var(--wce-primary)
}

#wce-product-page-2026 .wce-mobile-quote {
    display: none
}

@media(max-width:991px) {
    #wce-product-page-2026 .wce-layout {
        grid-template-columns: 1fr
    }

    .wce-sidebar {
        position: static
    }

    .wce-product-nav {
        display: grid;
        grid-template-columns: 1fr 1fr
    }

    .wce-product-hero {
        grid-template-columns: 1fr
    }

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

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

@media(max-width:650px) {
    #wce-product-page-2026 .wce-container {
        width: calc(100% - 26px)
    }

    .wce-main {
        padding: 36px 0
    }

    .wce-product-nav {
        grid-template-columns: 1fr
    }

    .wce-highlights,
    .wce-stats,
    .wce-grid,
    .wce-app-grid,
    .wce-form-grid {
        grid-template-columns: 1fr
    }

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

    .wce-product-info h2 {
        font-size: 27px
    }

    .wce-cta {
        display: block
    }

    .wce-cta .wce-actions {
        margin-top: 18px
    }

    .wce-mobile-quote {
        display: block;
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 9999
    }

    .wce-mobile-quote .wce-btn {
        width: 100%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .25)
    }
}





/* White Clean Engineering Works About Page
   All selectors are scoped under .wce-about-page to avoid conflicts. */

.wce-about-page {
    --wce-primary: #0957a5;
    --wce-primary-dark: #063f79;
    --wce-accent: #16a0c8;
    --wce-ink: #122033;
    --wce-muted: #627083;
    --wce-soft: #f3f7fb;
    --wce-line: #dce6ef;
    --wce-white: #ffffff;
    --wce-radius: 20px;
    color: var(--wce-ink);
    font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
    background: var(--wce-white);
    overflow: hidden;
}

.wce-about-page *,
.wce-about-page *::before,
.wce-about-page *::after { box-sizing: border-box; }

.wce-about-page img { max-width: 100%; display: block; }
.wce-about-page a { color: inherit; text-decoration: none; }
.wce-about-page h1,
.wce-about-page h2,
.wce-about-page h3,
.wce-about-page p { margin-top: 0; }

.wce-about-container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.wce-section { padding: 96px 0; }

.wce-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--wce-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.wce-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--wce-accent);
}

.wce-about-hero {
    position: relative;
    padding: 42px 0 96px;
    background:
        radial-gradient(circle at 85% 15%, rgba(22,160,200,.13), transparent 24%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.wce-about-hero::before {
    content: "";
    position: absolute;
    right: -140px;
    top: 40px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(9,87,165,.12);
    border-radius: 50%;
}

.wce-breadcrumb { display: flex; gap: 10px; align-items: center; margin-bottom: 48px; color: var(--wce-muted); font-size: 14px; }
.wce-breadcrumb a:hover { color: var(--wce-primary); }

.wce-about-hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 70px; align-items: center; }
.wce-about-hero-content h1 { max-width: 690px; margin-bottom: 24px; font-size: clamp(42px, 5vw, 68px); line-height: 1.05; letter-spacing: -2.6px; }
.wce-about-hero-content p { max-width: 650px; margin-bottom: 34px; color: var(--wce-muted); font-size: 18px; line-height: 1.8; }
.wce-about-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.wce-btn { display: inline-flex; min-height: 52px; padding: 0 25px; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 10px; font-weight: 750; transition: .25s ease; }
.wce-btn-primary { color: #fff !important; background: var(--wce-primary); box-shadow: 0 12px 28px rgba(9,87,165,.22); }
.wce-btn-primary:hover { background: var(--wce-primary-dark); transform: translateY(-2px); }
.wce-btn-outline { border-color: var(--wce-line); background: #fff; }
.wce-btn-outline:hover { border-color: var(--wce-primary); color: var(--wce-primary); }

.wce-about-hero-visual { position: relative; }
.wce-image-frame { padding: 14px; border: 1px solid rgba(9,87,165,.14); border-radius: 28px; background: rgba(255,255,255,.78); box-shadow: 0 26px 70px rgba(24,63,100,.14); backdrop-filter: blur(10px); }
.wce-image-frame img { width: 100%; border-radius: 20px; }
.wce-experience-card { position: absolute; left: -32px; bottom: 34px; max-width: 205px; padding: 20px 22px; border-radius: 16px; color: #fff; background: var(--wce-primary); box-shadow: 0 16px 35px rgba(9,87,165,.3); }
.wce-experience-card strong { display: block; margin-bottom: 5px; font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; opacity: .75; }
.wce-experience-card span { font-size: 18px; font-weight: 800; line-height: 1.25; }

.wce-split-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.wce-section-heading h2,
.wce-centered-heading h2,
.wce-capabilities-content h2,
.wce-cta-box h2 { margin-bottom: 20px; font-size: clamp(32px, 4vw, 48px); line-height: 1.12; letter-spacing: -1.5px; }
.wce-intro-copy p { color: var(--wce-muted); font-size: 15px; line-height: 1.85; }

.wce-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 60px; }
.wce-stat-card { min-height: 230px; padding: 28px; border: 1px solid var(--wce-line); border-radius: var(--wce-radius); background: #fff; transition: .25s ease; }
.wce-stat-card:hover { transform: translateY(-6px); border-color: rgba(9,87,165,.35); box-shadow: 0 20px 45px rgba(25,58,90,.09); }
.wce-stat-icon { display: inline-grid; width: 45px; height: 45px; margin-bottom: 28px; place-items: center; border-radius: 12px; color: var(--wce-primary); background: #e9f4ff; font-size: 13px; font-weight: 850; }
.wce-stat-card h3 { margin-bottom: 12px; font-size: 20px; }
.wce-stat-card p { margin-bottom: 0; color: var(--wce-muted); line-height: 1.65; }

.wce-capabilities { background: var(--wce-soft); }
.wce-capabilities-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 72px; align-items: center; }
.wce-capabilities-media img { width: 100%; border-radius: 28px; box-shadow: 0 26px 60px rgba(24,63,100,.15); }
.wce-capabilities-content > p { color: var(--wce-muted); font-size: 17px; line-height: 1.75; }
.wce-check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px 22px; margin: 30px 0; }
.wce-check-item { display: flex; gap: 10px; align-items: flex-start; color: #314157; font-weight: 650; line-height: 1.5; }
.wce-check-item span { flex: 0 0 23px; display: grid; width: 23px; height: 23px; place-items: center; border-radius: 50%; color: #fff; background: var(--wce-accent); font-size: 12px; }
.wce-text-link { display: inline-flex; gap: 10px; align-items: center; color: var(--wce-primary) !important; font-weight: 800; }
.wce-text-link:hover span { transform: translateX(5px); }
.wce-text-link span { transition: .2s ease; }

.wce-centered-heading { max-width: 740px; margin: 0 auto 50px; text-align: center; }
.wce-centered-heading .wce-eyebrow::before { display: none; }
.wce-centered-heading p { color: var(--wce-muted); font-size: 17px; line-height: 1.7; }
.wce-value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.wce-value-card { padding: 34px 28px; border-radius: var(--wce-radius); background: #fff; box-shadow: 0 16px 45px rgba(28,58,87,.08); }
.wce-value-symbol { display: grid; width: 52px; height: 52px; margin-bottom: 24px; place-items: center; border-radius: 15px; color: #fff; background: linear-gradient(145deg, var(--wce-primary), var(--wce-accent)); font-weight: 900; }
.wce-value-card h3 { margin-bottom: 12px; font-size: 21px; }
.wce-value-card p { margin: 0; color: var(--wce-muted); line-height: 1.65; }

.wce-industries { background: #0b2947; color: #fff; }
.wce-industries .wce-eyebrow { color: #72cde7; }
.wce-heading-row { display: grid; grid-template-columns: 1fr .65fr; gap: 50px; align-items: end; margin-bottom: 42px; }
.wce-heading-row h2 { margin-bottom: 0; }
.wce-heading-row > p { margin: 0; color: rgba(255,255,255,.68); line-height: 1.7; }
.wce-industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.14); border-left: 1px solid rgba(255,255,255,.14); }
.wce-industry-grid article { min-height: 160px; padding: 30px; border-right: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); transition: .25s ease; }
.wce-industry-grid article:hover { background: rgba(255,255,255,.06); }
.wce-industry-grid span { display: block; margin-bottom: 28px; color: #72cde7; font-size: 12px; font-weight: 850; }
.wce-industry-grid h3 { margin: 0; font-size: 21px; }

.wce-process-line { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.wce-process-line::before { content: ""; position: absolute; top: 24px; left: 7%; right: 7%; height: 1px; background: var(--wce-line); z-index: 0; }
.wce-process-step { position: relative; z-index: 1; padding-top: 2px; }
.wce-process-step > span { display: grid; width: 48px; height: 48px; margin-bottom: 28px; place-items: center; border: 5px solid #fff; border-radius: 50%; color: #fff; background: var(--wce-primary); box-shadow: 0 0 0 1px var(--wce-line); font-size: 12px; font-weight: 850; }
.wce-process-step h3 { margin-bottom: 12px; font-size: 20px; }
.wce-process-step p { margin: 0; color: var(--wce-muted); line-height: 1.65; }

.wce-about-cta { padding: 20px 0 90px; }
.wce-cta-box { display: flex; gap: 40px; align-items: center; justify-content: space-between; padding: 50px 54px; border-radius: 28px; color: #fff; background: linear-gradient(120deg, #063f79, #0b78b5); box-shadow: 0 25px 60px rgba(9,87,165,.2); }
.wce-cta-box .wce-eyebrow { color: #9ee2f4; }
.wce-cta-box h2 { max-width: 720px; margin-bottom: 12px; }
.wce-cta-box p { margin: 0; color: rgba(255,255,255,.78); font-size: 17px; }
.wce-btn-light { flex: 0 0 auto; color: var(--wce-primary) !important; background: #fff; }
.wce-btn-light:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(0,0,0,.15); }

.wce-reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.wce-reveal.wce-visible { opacity: 1; transform: none; }

@media (max-width: 1024px) {
    .wce-about-hero-grid,
    .wce-capabilities-grid { gap: 42px; }
    .wce-stat-grid,
    .wce-value-grid { grid-template-columns: repeat(2, 1fr); }
    .wce-process-line { grid-template-columns: repeat(2, 1fr); }
    .wce-process-line::before { display: none; }
}

@media (max-width: 820px) {
    .wce-section { padding: 72px 0; }
    .wce-about-hero-grid,
    .wce-split-grid,
    .wce-capabilities-grid,
    .wce-heading-row { grid-template-columns: 1fr; }
    .wce-about-hero-content h1 { letter-spacing: -1.8px; }
    .wce-about-hero-visual { max-width: 650px; }
    .wce-experience-card { left: 20px; }
    .wce-split-grid { gap: 26px; }
    .wce-industry-grid { grid-template-columns: repeat(2, 1fr); }
    .wce-heading-row { gap: 16px; }
    .wce-cta-box { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 580px) {
    .wce-about-container { width: min(100% - 28px, 1180px); }
    .wce-about-hero { padding: 26px 0 68px; }
    .wce-breadcrumb { margin-bottom: 32px; }
    .wce-about-hero-content h1 { font-size: 40px; letter-spacing: -1.5px; }
    .wce-about-hero-content p { font-size: 16px; }
    .wce-about-actions .wce-btn { width: 100%; }
    .wce-experience-card { position: relative; left: auto; bottom: auto; max-width: none; margin: -18px 16px 0; }
    .wce-stat-grid,
    .wce-value-grid,
    .wce-check-grid,
    .wce-industry-grid,
    .wce-process-line { grid-template-columns: 1fr; }
    .wce-stat-card { min-height: auto; }
    .wce-industry-grid { border-left: 0; }
    .wce-industry-grid article { min-height: 130px; border-left: 1px solid rgba(255,255,255,.14); }
    .wce-cta-box { padding: 38px 26px; }
    .wce-btn-light { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .wce-about-page *, .wce-about-page *::before, .wce-about-page *::after { scroll-behavior: auto !important; transition: none !important; }
}













