@charset "UTF-8"; :root {
    --ink: #10233f;
    --muted: #5d6b7c;
    --line: #dbe6ee;
    --soft: #f4f9fb;
    --blue: #176fa6;
    --blue-dark: #0b4f82;
    --teal: #13967f;
    --orange: #e67d28;
    --orange-soft: #fff1e5;
    --white: #fff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 112px;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: Arial, Tahoma, "Segoe UI", "Noto Sans", Helvetica, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    /* min-height: 100vh; */
    /* overflow-x: hidden; */
    width: 100%;
}

.topbar {
    position: fixed;
    top: 16px;
    left: 50%;
    z-index: 20;
    display: flex;
    width: min(1120px, calc(100% - 32px));
    transform: translateX(-50%);
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid rgba(255,255,255,.56);
    border-radius: 8px;
    background: rgba(255,255,255,.92);
    padding: 10px 12px;
    box-shadow: 0 18px 60px rgba(16,35,63,.16);
    backdrop-filter: blur(18px);
}
.wrap-pagein .topbar{position: relative;top: 0;}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
}

.brand-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg,var(--blue),var(--teal));
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
}

.brand strong,.brand small {
    display: block;
    line-height: 1.05;
}

.brand strong {
    font-size: 16px;
    letter-spacing: .05em;
}

.brand small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #415267;
    font-size: 14px;
    font-weight: 650;
}

.nav-links a:hover {
    color: var(--blue-dark);
}

.nav-cta,.primary-button,.secondary-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 750;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.nav-cta,.primary-button {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 16px 32px rgba(230,125,40,.28);
}

.nav-cta:hover,.primary-button:hover,.secondary-button:hover {
    transform: translateY(-1px);
}

.secondary-button {
    border: 1px solid rgba(255,255,255,.58);
    background: rgba(255,255,255,.16);
    color: var(--white);
}

.secondary-button.light {
    border-color: rgba(255,255,255,.72);
    background: rgba(255,255,255,.12);
}

.compact {
    min-height: 40px;
    padding-inline:16px; }

.hero {
    position: relative;
    display: grid;
    min-height: 780px;
    place-items: center;
    padding: 120px 0px 70px;
    color: var(--white);
    overflow: hidden;
}

.hero-media,.hero-overlay {
    position: absolute;
    inset: 0;
}

/*.hero-media {
    background: linear-gradient(110deg,rgba(9,38,65,.9) 0%,rgba(9,38,65,.64) 42%,rgba(9,38,65,.16) 100%));
    background-position: center;
    background-size: cover;
}
*/
.hero-overlay {
    background: radial-gradient(circle at 22% 20%,rgba(19,150,127,.28),transparent 30%), linear-gradient(180deg,rgba(7,27,48,.18),rgba(7,27,48,.74));
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(1120px,100%);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-family:'Tahoma',sans-serif;
}

.hero .eyebrow,.final-cta .eyebrow {
    color: #93f1df;
}

.final-cta a {
    color: #fff !important;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(42px,6vw,80px);
    font-weight: 850;
    line-height: .98;
}

.hero-copy {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.88);
    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.trust-strip {
    display: grid;
    width: min(820px,100%);
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    margin-top: 42px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 8px;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(18px);
}

.trust-strip div {
    padding: 18px;
    background: rgba(255,255,255,.12);
}

.trust-strip strong,.trust-strip span {
    display: block;
}

.trust-strip strong {
    font-size: 19px;
}

.trust-strip span {
    margin-top: 4px;
    color: rgba(255,255,255,.78);
    font-size: 13px;
}

.section {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 86px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(280px,.9fr);
    gap: 48px;
    align-items: start;
    border-bottom: 1px solid var(--line);
}

.intro-grid h2,.section-heading h2,.diagnostic-content h2,.warning-card h2,.process-section h2,.final-cta h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(30px,4vw,48px);
    font-weight: 820;
    line-height: 1.08;
}

.intro-grid p:not(.eyebrow),.section-heading p,.diagnostic-content p,.owner-note p,.article-card p,.location-card p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0,.95fr) minmax(280px,.7fr);
    gap: 36px;
    align-items: end;
    margin-bottom: 34px;
}

.section-heading.narrow {
    display: block;
    max-width: 810px;
}

.section-heading p {
    margin: 0;
}

.service-section {
    padding-top: 78px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

.service-card,.article-card,.location-card,.process-item,.owner-note {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 44px rgba(16,35,63,.06);
}

.service-card {
    display: flex;
    min-height: 280px;
    flex-direction: column;
    padding: 24px;
}

.service-card h3,.process-item h3,.article-card h3,.location-card h3,.owner-note h3 {
    margin: 0;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-card p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.68;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 22px;
}

.tag-row span {
    border-radius: 8px;
    background: var(--soft);
    color: var(--blue-dark);
    font-size: 12px;
    font-weight: 750;
    padding: 7px 10px;
}
.tag-row span a{
    color: var(--blue-dark);
}
.tag-row span:hover {
    background: var(--orange);
}
.tag-row span:hover a{
    color: #fff
}

.diagnostic-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    background: var(--soft);
}

.diagnostic-image {
    min-height: 420px;
    background: linear-gradient(90deg,rgba(9,38,65,.1),rgba(9,38,65,.02)));
    background-position: center;
    background-size: cover;
}

.diagnostic-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px,6vw,86px);
}

.text-link {
    display: inline-flex;
    width: fit-content;
    margin-top: 18px;
    color: var(--blue-dark);
    font-weight: 800;
    border-bottom: 2px solid var(--orange);
    padding-bottom: 5px;
}

.warning-section {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(280px,.58fr);
    gap: 18px;
}

.warning-card {
    border-radius: 8px;
    background: linear-gradient(135deg,#082b4a,#105b83);
    color: var(--white);
    padding: clamp(28px,5vw,48px);
}

.warning-card h2 {
    color: var(--white);
}

.warning-card ul {
    display: grid;
    gap: 13px;
    margin: 26px 0 28px;
    padding: 0;
    list-style: none;
}

.warning-card li {
    position: relative;
    padding-left: 28px;
    color: rgba(255,255,255,.86);
    line-height: 1.55;
}

.warning-card li:before {
    position: absolute;
    left: 0;
    top: .52em;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--orange);
    content: "";
}

.owner-note {
    align-self: stretch;
    background: var(--orange-soft);
    padding: 30px;
}

.owner-note h3 {
    color: #9a4a0d;
}

.process-section {
    padding-top: 70px;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 12px;
    margin-top: 32px;
}

.process-item {
    padding: 16px;
}

.process-item span {
    display: inline-flex;
    margin-bottom: 20px;
    color: var(--teal);
    font-weight: 850;
    font-size: 2.5rem;
}

.process-item img {
    margin-top: -65px;
}

.process-item p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.knowledge-section {
    border-top: 1px solid var(--line);
}

.article-grid,.location-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}

.article-card {
    position: relative;
}

.content-article-card {
    padding: 24px;
}

.article-card span {
    display: inline-flex;
    /* margin-bottom: 18px; */
    border-radius: 8px;
    background: #e8f7f4;
    color: var(--teal);
    font-size: 12px;
    font-weight: 800;
    padding: 7px 10px;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.article-card span a {
    color: var(--teal);
    text-decoration: none;
}

.article-card > a {
    display: block;
}

.article-card a {
    /* display:inline-flex; */
    /* margin-top: 10px; */
    color: var(--blue-dark);
    font-weight: 800;
    /* text-transform: uppercase; */
    font-family: Tahoma,sans-serif;
}

.locations-section {
    padding-top: 48px;
}

.location-grid {
    grid-template-columns: repeat(2,1fr);
}

.location-card {
    padding: 28px;
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.location-actions a {
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 800;
    padding: 10px 14px;
}

.final-cta {
    display: flex;
    width: min(1120px, calc(100% - 40px));
    margin: 30px auto 80px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-radius: 8px;
    background: radial-gradient(circle at 10% 20%,rgba(19,150,127,.38),transparent 34%), linear-gradient(135deg,#092a48,#0b4f82);
    color: var(--white);
    padding: clamp(30px,5vw,48px);
}

.final-cta h2 {
    max-width: 720px;
    color: var(--white);
}

.final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
    min-width: 250px;
}

@media (max-width: 980px) {
    .topbar {
        align-items:flex-start;
    }

    .nav-links {
        display: none;
    }

    .hero {
        min-height: 720px;
    }

    .intro-grid,.section-heading,.warning-section,.diagnostic-band,.final-cta {
        grid-template-columns: 1fr;
    }

    .service-grid,.process-list,.article-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .diagnostic-band {
        display: block;
    }

    .final-cta {
        display: grid;
    }

    .final-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 680px) {
    .topbar {
        top:10px;
        width: calc(100% - 20px);
    }

    .brand small {
        display: none;
    }

    .nav-cta {
        min-height: 40px;
        padding-inline:12px; font-size: 12px;
    }

    .hero {
        min-height: 690px;
        padding: 110px 18px 42px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-copy {
        font-size: 16px;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }

    .section {
        width: min(100% - 28px,1120px);
        padding: 58px 0;
    }

    .service-grid,.process-list,.article-grid,.location-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .diagnostic-content {
        padding: 34px 20px;
    }

    .warning-card,.owner-note {
        padding: 24px;
    }

    .final-cta {
        width: calc(100% - 28px);
        margin-bottom: 50px;
    }
}

/* Hero slider */
.wrap-home {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.hero-slider {
    position: relative;
    /* left: 50%; */
    width: 100vw;
    max-width: 100%;
    /* margin-right: -50vw; */
    /* margin-left: -50vw; */
    overflow: hidden;
    background: #092a48;
}

.hero-carousel.owl-carousel {
    display: block;
}

.hero-carousel:not(.owl-loaded) .hero-slide:not(:first-child) {
    display: none;
}

.hero-carousel .owl-stage {
    display: flex;
}

.hero-carousel .owl-item {
    /* flex: 0 0 auto; */
}

.hero-slide {
    width: 100%;
    min-height: 100vh;
    /* min-height: 100svh; */
    max-width: 100%;
}

.hero-slide .hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition: transform 6s ease;
}

.hero-slide .hero-media-fallback {
    background-position: center;
    background-size: cover;
}

.hero-carousel .owl-item.active .hero-media {
    transform: scale(1);
}

.hero-carousel .hero-animate {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
}

.hero-carousel .owl-item.active .hero-animate {
    animation: hero-content-in 0.75s ease forwards;
}

.hero-carousel .owl-item.active .hero-animate:nth-child(1) {
    animation-delay: 0.15s;
}

.hero-carousel .owl-item.active .hero-animate:nth-child(2) {
    animation-delay: 0.3s;
}

.hero-carousel .owl-item.active .hero-animate:nth-child(3) {
    animation-delay: 0.45s;
}

.hero-carousel .owl-item.active .hero-animate:nth-child(4) {
    animation-delay: 0.6s;
}

.hero-carousel .owl-item.active .hero-animate:nth-child(5) {
    animation-delay: 0.75s;
}

.hero-slider .owl-dots {
    position: absolute;
    right: 0;
    bottom: 24px;
    left: 0;
    z-index: 4;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.hero-slider .owl-dots .owl-dot span {
    display: block;
    width: 9px;
    height: 9px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    background: transparent;
    transition: width 0.25s ease, border-radius 0.25s ease, background-color 0.25s ease;
}

.hero-slider .owl-dots .owl-dot.active span {
    width: 28px;
    border-radius: 999px;
    background: #fff;
}

.hero-slider .control-slideshow {
    z-index: 5;
    pointer-events: none;
}

.hero-slider .control-slideshow button {
    pointer-events: auto;
}

@keyframes hero-content-in {
    from {
        opacity: 0;
        transform: translate3d(0, 32px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide .hero-media, .hero-carousel .hero-animate {
        animation: none !important;
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Product showcase added */
.product-section {
    border-top: 1px solid var(--line);
}

.product-topline {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.product-topline .section-heading {
    margin-bottom: 0;
    flex: 1;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.product-link:hover {
    color: var(--teal);
}

.product-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 24px;
}

.product-chip {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: #415267;
    padding: 9px 13px;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
}

.product-chip.active,.product-chip:hover {
    border-color: #b9e0d8;
    background: #e8f7f4;
    color: var(--teal);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 14px 44px rgba(16,35,63,.06);
    transition: transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    border-color: #c4dce9;
    box-shadow: 0 20px 54px rgba(16,35,63,.11);
}

.product-media {
    position: relative;
    display: grid;
    height: 250px;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(145deg,#f8fbfd,#edf5f8);
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    mix-blend-mode: multiply;
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    border-radius: 999px;
    background: rgba(11,79,130,.93);
    color: #fff;
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
}

.product-badge:hover {
    background: var(--orange)
}
.product-badge a{
    color: #fff;
}
.product-body {
    padding: 20px;
}

.product-meta {
    min-height: 20px
}

.product-meta > p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    min-height: 20px
}

.product-body h3 {
    margin: 10px 0 0;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.35;
}

.product-desc {
    min-height: 48px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.product-price {
    color: var(--orange);
    font-size: 20px;
    font-weight: 850;
}

.product-detail {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--soft);
    color: var(--blue-dark);
    padding: 0 12px;
    font-size: 13px;
    font-weight: 800;
}

.product-note {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    margin-top: 22px;
}

.product-note div {
    border-radius: 10px;
    background: var(--soft);
    padding: 16px 18px;
    color: #42546b;
    font-size: 13px;
    line-height: 1.55;
}

.product-note strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
    font-size: 14px;
}

@media (max-width: 980px) {
    .product-grid {
        grid-template-columns:repeat(2,1fr);
    }

    .product-topline {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    .product-grid,.product-note {
        grid-template-columns:1fr;
    }

    .product-media {
        height: 230px;
    }

    .product-link {
        white-space: normal;
    }
}

/* End hero slider */
