/* =========================================================
   OPEN WINCH HOME — ACG DESIGN
   PART 01: HERO + INTRO
   ========================================================= */

body.ow-home {
    --ow-primary: #004c8c;
    --ow-primary-dark: #032d50;
    --ow-secondary: #008dd2;
    --ow-ink: #10283e;
    --ow-text: #415b70;
    --ow-muted: #6c8192;
    --ow-line: #dce6ed;
    --ow-soft: #f3f7fa;
    --ow-white: #ffffff;

    margin: 0;
    color: var(--ow-ink);
    background: var(--ow-white);
    font-family:
        Shabnam,
        Tahoma,
        Arial,
        sans-serif;
}

body.ow-home main {
    width: 100%;
    overflow: hidden;
}

body.ow-home .acg-wrap {
    width: 100%;
    max-width: 1500px;
    margin-inline: auto;
    padding-inline:
        clamp(18px, 4vw, 64px);
    box-sizing: border-box;
}

/* =========================================================
   HERO
   ========================================================= */

body.ow-home .acg-hero {
    position: relative;
    min-height:
        min(
            810px,
            calc(100vh - 110px)
        );
    padding:
        clamp(55px, 6vw, 90px)
        clamp(18px, 4vw, 64px);
    display: grid;
    grid-template-columns:
        minmax(430px, 0.88fr)
        minmax(0, 1.12fr);
    align-items: center;
    gap:
        clamp(30px, 5vw, 82px);
    overflow: hidden;
    direction: rtl;
    background:
        linear-gradient(
            112deg,
            #ffffff 0%,
            #f5f9fb 50%,
            #eaf3f8 100%
        );
    isolation: isolate;
    box-sizing: border-box;
}

body.ow-home .acg-hero::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    top: -350px;
    left: -210px;
    border:
        82px solid
        rgba(0, 76, 140, 0.035);
    border-radius: 50%;
    pointer-events: none;
}

body.ow-home .acg-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.5;
    background-image:
        linear-gradient(
            rgba(0, 76, 140, 0.035)
            1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 76, 140, 0.035)
            1px,
            transparent 1px
        );
    background-size: 64px 64px;
    mask-image:
        linear-gradient(
            to left,
            #000,
            transparent 72%
        );
}

body.ow-home .acg-hero__content {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 680px;
    margin: 0;
    padding: 0;
    grid-column: 1;
    grid-row: 1;
    direction: rtl;
    text-align: right;
    z-index: 3;
}

body.ow-home .acg-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ow-secondary);
    font-family:
        Arial,
        sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.15px;
    line-height: 1.5;
    text-transform: uppercase;
}

body.ow-home .acg-eyebrow::before {
    content: "";
    width: 27px;
    height: 2px;
    flex-shrink: 0;
    background: var(--ow-secondary);
}

body.ow-home .acg-hero h1 {
    margin:
        16px
        0
        20px;
    color: var(--ow-ink);
    font-size:
        clamp(42px, 5.2vw, 78px);
    font-weight: 900;
    line-height: 1.22;
    letter-spacing: -2px;
    text-shadow: none;
}

body.ow-home .acg-hero__lead {
    max-width: 640px;
    margin: 0;
    color: var(--ow-text);
    font-size:
        clamp(17px, 1.55vw, 22px);
    font-weight: 800;
    line-height: 1.95;
    text-shadow: none;
}

body.ow-home .acg-hero__text {
    max-width: 610px;
    margin: 13px 0 0;
    color: var(--ow-muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 2.05;
    text-shadow: none;
}

body.ow-home .acg-hero__actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

body.ow-home .acg-btn {
    min-height: 49px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 13px;
    font-family:
        Shabnam,
        Tahoma,
        sans-serif;
    font-size: 12.5px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

body.ow-home .acg-btn:hover {
    transform: translateY(-2px);
}

body.ow-home .acg-btn--primary {
    color: var(--ow-white);
    background:
        linear-gradient(
            135deg,
            var(--ow-primary),
            var(--ow-secondary)
        );
    border-color: transparent;
    box-shadow:
        0 15px 30px
        rgba(0, 76, 140, 0.22);
}

body.ow-home .acg-btn--primary:hover {
    color: var(--ow-white);
    box-shadow:
        0 19px 36px
        rgba(0, 76, 140, 0.3);
}

body.ow-home .acg-btn--ghost,
body.ow-home .acg-btn--outline {
    color: var(--ow-primary);
    background:
        rgba(255, 255, 255, 0.82);
    border-color: var(--ow-line);
}

body.ow-home .acg-btn--ghost:hover,
body.ow-home .acg-btn--outline:hover {
    color: var(--ow-primary-dark);
    background: var(--ow-white);
    border-color: #b8cfdd;
}

body.ow-home .acg-hero__media {
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
    min-height: 570px;
    grid-column: 2;
    grid-row: 1;
    display: grid;
    place-items: center;
    overflow: visible;
    direction: ltr;
    z-index: 2;
}

body.ow-home .acg-hero__media::before {
    content: "";
    position: absolute;
    width: 82%;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.98),
            rgba(219, 235, 244, 0.62) 58%,
            transparent 72%
        );
}

body.ow-home .acg-hero__media picture {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

body.ow-home .acg-hero__media img {
    position: relative;
    inset: auto;
    width: min(100%, 900px);
    height: auto;
    max-height: 585px;
    object-fit: contain;
    object-position: center;
    filter:
        drop-shadow(
            0 34px 34px
            rgba(15, 39, 61, 0.24)
        );
    transform: translateY(-4px);
    animation:
        ow-home-float
        7s
        ease-in-out
        infinite;
}

body.ow-home .acg-hero__overlay {
    position: absolute;
    inset: 8% 6%;
    z-index: 0;
    border:
        1px solid
        rgba(0, 76, 140, 0.12);
    border-radius:
        40px
        12px
        40px
        12px;
    background: transparent;
    pointer-events: none;
}

body.ow-home .acg-render-shadow {
    position: absolute;
    right: 16%;
    bottom: 8%;
    left: 16%;
    height: 42px;
    border-radius: 50%;
    background:
        rgba(15, 39, 61, 0.18);
    filter: blur(22px);
    transform: scaleX(0.86);
    z-index: 1;
}

/* =========================================================
   INTRO
   ========================================================= */

body.ow-home .acg-intro {
    padding:
        clamp(80px, 9vw, 130px)
        0;
    background: var(--ow-white);
}

body.ow-home .acg-intro__head {
    max-width: 820px;
    margin-bottom: 40px;
}

body.ow-home .acg-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 11px;
    color: var(--ow-secondary);
    font-family:
        Arial,
        sans-serif;
    font-size: 10.5px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.ow-home .acg-section-kicker::before {
    content: "";
    width: 25px;
    height: 2px;
    background: var(--ow-secondary);
}

body.ow-home .acg-intro__head h2 {
    margin: 0;
    color: var(--ow-ink);
    font-size:
        clamp(30px, 3.3vw, 49px);
    font-weight: 900;
    line-height: 1.45;
    letter-spacing: -1px;
}

body.ow-home .acg-intro__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(360px, 0.95fr);
    align-items: center;
    gap:
        clamp(45px, 7vw, 110px);
}

body.ow-home .acg-intro__image {
    position: relative;
    min-height: 540px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--ow-line);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at center,
            #ffffff 0%,
            #edf4f8 72%
        );
}

body.ow-home .acg-intro__image::before {
    content: "01";
    position: absolute;
    top: 22px;
    right: 26px;
    color:
        rgba(0, 76, 140, 0.17);
    font-family: Arial, sans-serif;
    font-size: 52px;
    font-weight: 900;
}

body.ow-home .acg-intro__image picture {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

body.ow-home .acg-intro__image img {
    width: 92%;
    height: 470px;
    padding: 25px;
    object-fit: contain;
    box-sizing: border-box;
    filter:
        drop-shadow(
            0 27px 28px
            rgba(15, 39, 61, 0.18)
        );
}

body.ow-home .acg-intro__text {
    max-width: 650px;
}

body.ow-home .acg-intro__text::before {
    content: "ACG Engineering Approach";
    display: block;
    margin-bottom: 13px;
    color: var(--ow-secondary);
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.ow-home .acg-intro__text p {
    margin: 0 0 15px;
    color: var(--ow-muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 2.15;
}

body.ow-home .acg-intro__text p:first-of-type {
    color: var(--ow-text);
    font-size: 16px;
    font-weight: 750;
}

body.ow-home .acg-intro__text strong {
    color: var(--ow-primary);
    font-weight: 900;
}

/* =========================================================
   RESPONSIVE — PART 01
   ========================================================= */

@media (max-width: 1050px) {
    body.ow-home .acg-hero {
        grid-template-columns:
            minmax(380px, 0.95fr)
            minmax(0, 1.05fr);
    }

    body.ow-home .acg-hero__media {
        min-height: 500px;
    }

    body.ow-home .acg-hero__media img {
        max-height: 500px;
    }
}

@media (max-width: 820px) {
    body.ow-home .acg-hero {
        min-height: auto;
        padding:
            48px
            18px
            65px;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 16px;
    }

    body.ow-home .acg-hero__content {
        max-width: 760px;
        grid-column: 1;
        grid-row: 1;
        margin-inline: auto;
        text-align: center;
    }

    body.ow-home .acg-hero__lead,
    body.ow-home .acg-hero__text {
        margin-inline: auto;
    }

    body.ow-home .acg-hero__actions {
        justify-content: center;
    }

    body.ow-home .acg-hero__media {
        min-height: 430px;
        grid-column: 1;
        grid-row: 2;
    }

    body.ow-home .acg-hero__media img {
        max-height: 430px;
    }

    body.ow-home .acg-intro__grid {
        grid-template-columns: 1fr;
    }

    body.ow-home .acg-intro__text {
        order: -1;
        max-width: 760px;
    }
}

@media (max-width: 560px) {
    body.ow-home .acg-wrap {
        padding-inline: 15px;
    }

    body.ow-home .acg-hero {
        padding:
            39px
            15px
            54px;
    }

    body.ow-home .acg-hero h1 {
        font-size:
            clamp(35px, 10vw, 48px);
        letter-spacing: -1px;
    }

    body.ow-home .acg-hero__lead {
        font-size: 16px;
    }

    body.ow-home .acg-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    body.ow-home .acg-btn {
        width: 100%;
        box-sizing: border-box;
    }

    body.ow-home .acg-hero__media {
        min-height: 320px;
    }

    body.ow-home .acg-hero__media img {
        max-height: 320px;
        animation: none;
    }

    body.ow-home .acg-intro {
        padding-block: 65px;
    }

    body.ow-home .acg-intro__image {
        min-height: 385px;
        border-radius: 22px;
    }

    body.ow-home .acg-intro__image img {
        height: 340px;
        padding: 18px;
    }
}

@keyframes ow-home-float {
    0%,
    100% {
        transform: translateY(-4px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.ow-home .acg-hero__media img {
        animation: none;
    }
}


/* =========================================================
   PART 02: FEATURES + SPECS
   ========================================================= */

/* Shared section heading */

body.ow-home .acg-section-head {
    max-width: 1500px;
    margin:
        0 auto
        clamp(30px, 4vw, 48px);
}

body.ow-home .acg-section-head h2 {
    margin: 0;
    color: var(--ow-ink);
    font-size:
        clamp(29px, 3.2vw, 47px);
    font-weight: 900;
    line-height: 1.45;
    letter-spacing: -1px;
}

body.ow-home .acg-section-head > p {
    max-width: 620px;
    margin: 11px 0 0;
    color: var(--ow-muted);
    font-size: 13.5px;
    font-weight: 600;
    line-height: 2;
}

/* =========================================================
   FEATURES
   ========================================================= */

body.ow-home .acg-features {
    padding:
        clamp(75px, 8vw, 115px)
        0;
    background: var(--ow-soft);
}

body.ow-home .acg-feature-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 17px;
}

body.ow-home .acg-feature-card {
    position: relative;
    min-height: 275px;
    padding: 27px;
    overflow: hidden;
    border: 1px solid var(--ow-line);
    border-radius: 22px;
    background: var(--ow-white);
    box-sizing: border-box;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

body.ow-home .acg-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 27px;
    left: 27px;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--ow-secondary),
            transparent
        );
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

body.ow-home .acg-feature-card:hover {
    transform: translateY(-6px);
    border-color:
        rgba(0, 141, 210, 0.36);
    box-shadow:
        0 24px 54px
        rgba(15, 39, 61, 0.09);
}

body.ow-home .acg-feature-card:hover::before {
    transform: scaleX(1);
}

body.ow-home .acg-feature-card__icon {
    width: 53px;
    height: 53px;
    margin-bottom: 25px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: #eaf4fa;
    color: var(--ow-primary);
    font-family:
        Arial,
        sans-serif;
    font-size: 19px;
    font-weight: 900;
}

body.ow-home .acg-feature-card h3 {
    margin: 0 0 12px;
    color: var(--ow-ink);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.7;
}

body.ow-home .acg-feature-card p {
    margin: 0;
    color: var(--ow-muted);
    font-size: 12.5px;
    font-weight: 600;
    line-height: 2;
}

/* =========================================================
   TECHNICAL SPECS
   ========================================================= */

body.ow-home .acg-specs {
    padding:
        clamp(80px, 9vw, 125px)
        0;
    background: var(--ow-white);
}

body.ow-home .acg-spec-table {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--ow-line);
    border-right: 1px solid var(--ow-line);
}

body.ow-home .acg-spec-item {
    position: relative;
    min-height: 130px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    border-bottom: 1px solid var(--ow-line);
    border-left: 1px solid var(--ow-line);
    background: var(--ow-white);
    box-sizing: border-box;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

body.ow-home .acg-spec-item::before {
    content: "";
    position: absolute;
    top: 22px;
    right: 0;
    width: 3px;
    height: 36px;
    background: var(--ow-secondary);
    opacity: 0;
    transition: opacity 0.2s ease;
}

body.ow-home .acg-spec-item:hover {
    background: var(--ow-soft);
}

body.ow-home .acg-spec-item:hover::before {
    opacity: 1;
}

body.ow-home .acg-spec-item span {
    color: var(--ow-muted);
    font-size: 11px;
    font-weight: 800;
}

body.ow-home .acg-spec-item strong {
    color: var(--ow-ink);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.7;
}

/* =========================================================
   RESPONSIVE — PART 02
   ========================================================= */

@media (max-width: 1100px) {
    body.ow-home .acg-feature-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    body.ow-home .acg-spec-table {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    body.ow-home .acg-features,
    body.ow-home .acg-specs {
        padding-block: 65px;
    }

    body.ow-home .acg-feature-grid {
        grid-template-columns: 1fr;
    }

    body.ow-home .acg-feature-card {
        min-height: auto;
    }

    body.ow-home .acg-spec-table {
        grid-template-columns: 1fr;
    }

    body.ow-home .acg-spec-item {
        min-height: 105px;
    }
}


/* =========================================================
   PART 03: PRODUCTS
   ========================================================= */

body.ow-home .acg-products {
    padding:
        clamp(80px, 9vw, 130px)
        0;
    background:
        linear-gradient(
            145deg,
            #032b4a,
            #061d30
        );
}

body.ow-home .acg-products
.acg-section-head h2 {
    color: var(--ow-white);
}

body.ow-home .acg-products
.acg-section-head > p {
    color: rgba(255, 255, 255, 0.62);
}

body.ow-home .acg-products
.acg-section-kicker {
    color: #74cff6;
}

body.ow-home .acg-products
.acg-section-kicker::before {
    background: #74cff6;
}

body.ow-home .acg-products-grid {
    display: grid;
    grid-template-columns:
        repeat(6, minmax(0, 1fr));
    gap: 18px;
}

body.ow-home .acg-product-card {
    position: relative;
    grid-column: span 2;
    min-height: 490px;
    display: grid;
    grid-template-rows: 1fr auto;
    overflow: hidden;
    border:
        1px solid
        rgba(255, 255, 255, 0.11);
    border-radius: 25px;
    background:
        linear-gradient(
            150deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow: none;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

body.ow-home .acg-product-card:nth-child(4),
body.ow-home .acg-product-card:nth-child(5) {
    grid-column: span 3;
}

body.ow-home .acg-product-card:hover {
    transform: translateY(-7px);
    border-color:
        rgba(0, 141, 210, 0.55);
    background:
        linear-gradient(
            150deg,
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0.04)
        );
}

body.ow-home .acg-product-card__media {
    position: relative;
    min-height: 315px;
    padding: 30px 25px 10px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.14),
            transparent 67%
        );
}

body.ow-home .acg-product-card__media::before {
    content: "ACG OPEN WINCH";
    position: absolute;
    top: 20px;
    left: 22px;
    color:
        rgba(255, 255, 255, 0.3);
    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.1px;
}

body.ow-home .acg-product-card__media picture {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

body.ow-home .acg-product-card__media img {
    width: 100%;
    height: 290px;
    padding: 0;
    object-fit: contain;
    filter:
        drop-shadow(
            0 25px 24px
            rgba(0, 0, 0, 0.36)
        );
    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

body.ow-home .acg-product-card:hover
.acg-product-card__media img {
    transform:
        translateY(-8px)
        scale(1.025);
    filter:
        drop-shadow(
            0 31px 28px
            rgba(0, 0, 0, 0.43)
        );
}

body.ow-home .acg-product-card__overlay {
    position: relative;
    inset: auto;
    min-height: 170px;
    padding: 23px 25px 25px;
    display: block;
    background:
        linear-gradient(
            180deg,
            rgba(3, 43, 74, 0),
            rgba(3, 27, 47, 0.96) 20%
        );
    color: var(--ow-white);
    opacity: 1;
    transform: none;
}

body.ow-home .acg-product-card__overlay h3 {
    margin: 0 0 9px;
    color: var(--ow-white);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.6;
}

body.ow-home .acg-product-card__overlay p {
    margin: 0 0 16px;
    color:
        rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.95;
}

body.ow-home .acg-product-card__overlay a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #79d2f8;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

body.ow-home .acg-product-card__overlay a::after {
    content: "←";
    font-family: Arial, sans-serif;
    transition: transform 0.2s ease;
}

body.ow-home .acg-product-card__overlay a:hover::after {
    transform: translateX(-4px);
}

@media (max-width: 1050px) {
    body.ow-home .acg-product-card {
        grid-column: span 3;
    }

    body.ow-home .acg-product-card:nth-child(4),
    body.ow-home .acg-product-card:nth-child(5) {
        grid-column: span 3;
    }
}

@media (max-width: 650px) {
    body.ow-home .acg-products {
        padding-block: 65px;
    }

    body.ow-home .acg-products-grid {
        grid-template-columns: 1fr;
    }

    body.ow-home .acg-product-card,
    body.ow-home .acg-product-card:nth-child(4),
    body.ow-home .acg-product-card:nth-child(5) {
        grid-column: auto;
        min-height: 440px;
    }

    body.ow-home .acg-product-card__media {
        min-height: 275px;
    }

    body.ow-home .acg-product-card__media img {
        height: 255px;
    }
}


/* =========================================================
   PART 04: MAP + BRANDS + CLIENTS
   ========================================================= */

/* Engineering map */

body.ow-home .acg-image-map {
    padding:
        clamp(80px, 9vw, 125px)
        0;
    background:
        linear-gradient(
            180deg,
            #f4f8fa,
            #ffffff
        );
}

body.ow-home .acg-map-box {
    position: relative;
    min-height: 610px;
    padding: 35px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--ow-line);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at center,
            #ffffff 0%,
            #eaf2f7 75%
        );
    box-shadow:
        0 28px 65px
        rgba(15, 39, 61, 0.08);
    box-sizing: border-box;
}

body.ow-home .acg-map-box::before {
    content: "INTERACTIVE ENGINEERING VIEW";
    position: absolute;
    top: 25px;
    left: 27px;
    color:
        rgba(0, 76, 140, 0.34);
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.3px;
}

body.ow-home .acg-map-box > img {
    width: 100%;
    height: 540px;
    padding: 30px;
    object-fit: contain;
    box-sizing: border-box;
    filter:
        drop-shadow(
            0 30px 30px
            rgba(15, 39, 61, 0.19)
        );
}

body.ow-home .acg-map-point {
    position: absolute;
    width: 18px;
    height: 18px;
    padding: 0;
    border:
        3px solid
        var(--ow-white);
    border-radius: 50%;
    background: var(--ow-secondary);
    box-shadow:
        0 0 0 7px
        rgba(0, 141, 210, 0.16);
    cursor: pointer;
    z-index: 4;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

body.ow-home .acg-map-point:hover,
body.ow-home .acg-map-point:focus-visible {
    transform: scale(1.18);
    box-shadow:
        0 0 0 10px
        rgba(0, 141, 210, 0.2);
}

body.ow-home .acg-map-point span {
    position: absolute;
    right: 50%;
    bottom: calc(100% + 13px);
    min-width: max-content;
    padding: 9px 12px;
    border-radius: 9px;
    background: var(--ow-primary-dark);
    color: var(--ow-white);
    font-size: 10.5px;
    font-weight: 850;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transform:
        translateX(50%)
        translateY(5px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

body.ow-home .acg-map-point:hover span,
body.ow-home .acg-map-point:focus-visible span {
    opacity: 1;
    transform:
        translateX(50%)
        translateY(0);
}

/* Brands */

body.ow-home .acg-brands {
    padding:
        clamp(70px, 8vw, 105px)
        0;
    background: var(--ow-white);
}

body.ow-home .acg-brand-marquee {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid var(--ow-line);
    border-bottom: 1px solid var(--ow-line);
}

body.ow-home .acg-brand-track {
    width: max-content;
    display: flex;
    align-items: stretch;
    animation:
        ow-home-brand-motion
        36s
        linear
        infinite;
}

body.ow-home .acg-brand-logo {
    width: 175px;
    min-height: 125px;
    padding: 20px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    flex-shrink: 0;
    border-left: 1px solid var(--ow-line);
    background: var(--ow-white);
    box-sizing: border-box;
}

body.ow-home .acg-brand-logo img {
    width: 100%;
    max-width: 105px;
    height: 42px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.62;
    transition:
        filter 0.2s ease,
        opacity 0.2s ease,
        transform 0.2s ease;
}

body.ow-home .acg-brand-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.04);
}

body.ow-home .acg-brand-logo em {
    color: var(--ow-muted);
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-style: normal;
    font-weight: 800;
}

/* Clients */

body.ow-home .acg-clients {
    padding:
        clamp(75px, 8vw, 110px)
        0;
    overflow: hidden;
    background: var(--ow-soft);
}

body.ow-home .acg-clients-marquee {
    width: 100%;
    overflow: hidden;
}

body.ow-home .acg-clients-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 14px;
    animation:
        ow-home-client-motion
        44s
        linear
        infinite;
}

body.ow-home .acg-client-logo {
    width: 170px;
    height: 100px;
    padding: 17px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border: 1px solid var(--ow-line);
    border-radius: 16px;
    background: var(--ow-white);
    box-sizing: border-box;
}

body.ow-home .acg-client-logo img {
    width: 100%;
    height: 62px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.66;
    transition:
        filter 0.2s ease,
        opacity 0.2s ease;
}

body.ow-home .acg-client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Motion */

@keyframes ow-home-brand-motion {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(50%);
    }
}

@keyframes ow-home-client-motion {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(50%);
    }
}

/* Responsive */

@media (max-width: 820px) {
    body.ow-home .acg-map-box {
        min-height: 480px;
        padding: 20px;
    }

    body.ow-home .acg-map-box > img {
        height: 420px;
        padding: 15px;
    }
}

@media (max-width: 560px) {
    body.ow-home .acg-image-map,
    body.ow-home .acg-brands,
    body.ow-home .acg-clients {
        padding-block: 65px;
    }

    body.ow-home .acg-map-box {
        min-height: 360px;
        padding: 12px;
        border-radius: 22px;
    }

    body.ow-home .acg-map-box > img {
        height: 330px;
        padding: 10px;
    }

    body.ow-home .acg-map-box::before {
        top: 14px;
        left: 15px;
        font-size: 7px;
    }

    body.ow-home .acg-map-point {
        width: 14px;
        height: 14px;
        border-width: 2px;
        box-shadow:
            0 0 0 5px
            rgba(0, 141, 210, 0.17);
    }

    body.ow-home .acg-brand-logo {
        width: 145px;
        min-height: 105px;
    }

    body.ow-home .acg-client-logo {
        width: 145px;
        height: 88px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.ow-home .acg-brand-track,
    body.ow-home .acg-clients-track {
        animation: none;
    }
}


/* =========================================================
   PART 05: SERVICES + PROJECTS
   ========================================================= */

/* Services */

body.ow-home .acg-services {
    padding:
        clamp(80px, 9vw, 125px)
        0;
    background: var(--ow-white);
}

body.ow-home .acg-services-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 17px;
}

body.ow-home .acg-service-card {
    position: relative;
    min-height: 245px;
    padding: 27px;
    overflow: hidden;
    border: 1px solid var(--ow-line);
    border-radius: 22px;
    background: var(--ow-white);
    box-sizing: border-box;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

body.ow-home .acg-service-card::after {
    content: "";
    position: absolute;
    right: 27px;
    bottom: 0;
    left: 27px;
    height: 3px;
    background: var(--ow-secondary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

body.ow-home .acg-service-card:hover {
    transform: translateY(-6px);
    border-color:
        rgba(0, 141, 210, 0.38);
    box-shadow:
        0 24px 52px
        rgba(15, 39, 61, 0.09);
}

body.ow-home .acg-service-card:hover::after {
    transform: scaleX(1);
}

body.ow-home .acg-service-card__icon {
    width: 51px;
    height: 51px;
    margin-bottom: 22px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: #eaf4fa;
    color: var(--ow-primary);
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 900;
}

body.ow-home .acg-service-card h3 {
    margin: 0 0 11px;
    color: var(--ow-ink);
    font-size: 16px;
    font-weight: 900;
}

body.ow-home .acg-service-card p {
    margin: 0;
    color: var(--ow-muted);
    font-size: 12.5px;
    font-weight: 600;
    line-height: 2;
}

/* Projects */

body.ow-home .acg-projects {
    padding:
        clamp(80px, 9vw, 125px)
        0;
    background:
        linear-gradient(
            145deg,
            #032b4a,
            #061d30
        );
}

body.ow-home .acg-projects
.acg-section-head h2 {
    color: var(--ow-white);
}

body.ow-home .acg-projects
.acg-section-head > p {
    color:
        rgba(255, 255, 255, 0.62);
}

body.ow-home .acg-projects
.acg-section-kicker {
    color: #74cff6;
}

body.ow-home .acg-project-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 18px;
}

body.ow-home .acg-project-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border:
        1px solid
        rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: #08263e;
}

body.ow-home .acg-project-card img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

body.ow-home .acg-project-card:hover img {
    transform: scale(1.045);
    filter: brightness(0.85);
}

body.ow-home .acg-project-card > div {
    position: absolute;
    inset: auto 0 0;
    min-height: 120px;
    padding: 28px 24px 22px;
    display: flex;
    align-items: flex-end;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(3, 27, 47, 0.96)
        );
    box-sizing: border-box;
}

body.ow-home .acg-project-card h3 {
    margin: 0;
    color: var(--ow-white);
    font-size: 17px;
    font-weight: 900;
}

@media (max-width: 960px) {
    body.ow-home .acg-services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    body.ow-home .acg-project-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    body.ow-home .acg-project-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    body.ow-home .acg-services,
    body.ow-home .acg-projects {
        padding-block: 65px;
    }

    body.ow-home .acg-services-grid,
    body.ow-home .acg-project-grid {
        grid-template-columns: 1fr;
    }

    body.ow-home .acg-project-card:last-child {
        grid-column: auto;
    }

    body.ow-home .acg-service-card {
        min-height: auto;
    }

    body.ow-home .acg-project-card,
    body.ow-home .acg-project-card img {
        min-height: 330px;
        height: 330px;
    }
}


/* =========================================================
   PART 06: FAQ + CONTACT
   ========================================================= */

/* FAQ */

body.ow-home .acg-faq {
    padding:
        clamp(80px, 9vw, 125px)
        0;
    background: var(--ow-soft);
}

body.ow-home .acg-faq-list {
    max-width: 980px;
    margin-inline: auto;
    display: grid;
    gap: 11px;
}

body.ow-home .acg-faq-item {
    overflow: hidden;
    border: 1px solid var(--ow-line);
    border-radius: 17px;
    background: var(--ow-white);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

body.ow-home .acg-faq-item:has(
    .acg-faq-question[aria-expanded="true"]
) {
    border-color:
        rgba(0, 141, 210, 0.38);
    box-shadow:
        0 16px 38px
        rgba(15, 39, 61, 0.07);
}

body.ow-home .acg-faq-question {
    width: 100%;
    min-height: 74px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 0;
    background: transparent;
    color: var(--ow-ink);
    font-family:
        Shabnam,
        Tahoma,
        sans-serif;
    font-size: 13.5px;
    font-weight: 900;
    text-align: right;
    cursor: pointer;
}

body.ow-home .acg-faq-question i {
    position: relative;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 9px;
    background: #eaf4fa;
}

body.ow-home .acg-faq-question i::before,
body.ow-home .acg-faq-question i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 2px;
    border-radius: 2px;
    background: var(--ow-primary);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

body.ow-home .acg-faq-question i::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}

body.ow-home .acg-faq-question[
    aria-expanded="true"
] i::after {
    transform:
        translate(-50%, -50%)
        rotate(0deg);
}

body.ow-home .acg-faq-answer {
    padding: 0 22px 21px;
}

body.ow-home .acg-faq-answer[hidden] {
    display: none;
}

body.ow-home .acg-faq-answer p {
    margin: 0;
    padding-top: 18px;
    border-top: 1px solid var(--ow-line);
    color: var(--ow-muted);
    font-size: 12.5px;
    font-weight: 600;
    line-height: 2.1;
}

/* Contact */

body.ow-home .acg-contact {
    padding:
        clamp(80px, 9vw, 125px)
        0;
    background: var(--ow-white);
}

body.ow-home .acg-contact-card {
    position: relative;
    min-height: 590px;
    display: grid;
    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(420px, 1.05fr);
    overflow: hidden;
    border-radius: 31px;
    background:
        linear-gradient(
            135deg,
            var(--ow-primary-dark),
            var(--ow-primary)
        );
}

body.ow-home .acg-contact-card::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -240px;
    bottom: -300px;
    border:
        76px solid
        rgba(255, 255, 255, 0.055);
    border-radius: 50%;
}

body.ow-home .acg-contact-info {
    position: relative;
    z-index: 2;
    padding:
        clamp(38px, 5vw, 70px);
}

body.ow-home .acg-contact-info
.acg-section-kicker {
    color: #7bd4fa;
}

body.ow-home .acg-contact-info
.acg-section-kicker::before {
    background: #7bd4fa;
}

body.ow-home .acg-contact-info h2 {
    margin: 0 0 16px;
    color: var(--ow-white);
    font-size:
        clamp(29px, 3vw, 45px);
    font-weight: 900;
    line-height: 1.5;
}

body.ow-home .acg-contact-info p {
    margin: 0;
    color:
        rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    line-height: 2.05;
}

body.ow-home .acg-contact-info img {
    width: 100%;
    height: 270px;
    margin-top: 26px;
    object-fit: contain;
    filter:
        drop-shadow(
            0 24px 25px
            rgba(0, 0, 0, 0.3)
        );
}

body.ow-home .acg-contact-form {
    position: relative;
    z-index: 2;
    margin: 24px;
    padding:
        clamp(28px, 4vw, 45px);
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    align-content: center;
    gap: 15px;
    border-radius: 24px;
    background: var(--ow-white);
    box-shadow:
        0 28px 60px
        rgba(0, 0, 0, 0.16);
}

body.ow-home .acg-contact-form label {
    display: grid;
    gap: 8px;
    color: var(--ow-text);
    font-size: 11.5px;
    font-weight: 850;
}

body.ow-home .acg-contact-form
.full {
    grid-column: 1 / -1;
}

body.ow-home .acg-contact-form input,
body.ow-home .acg-contact-form textarea {
    width: 100%;
    border: 1px solid var(--ow-line);
    border-radius: 12px;
    outline: 0;
    background: #fafcfd;
    color: var(--ow-ink);
    font-family:
        Shabnam,
        Tahoma,
        sans-serif;
    font-size: 13px;
    box-sizing: border-box;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

body.ow-home .acg-contact-form input {
    height: 48px;
    padding: 0 14px;
}

body.ow-home .acg-contact-form textarea {
    min-height: 125px;
    padding: 13px 14px;
    resize: vertical;
}

body.ow-home .acg-contact-form input:focus,
body.ow-home .acg-contact-form textarea:focus {
    border-color: var(--ow-secondary);
    background: var(--ow-white);
    box-shadow:
        0 0 0 4px
        rgba(0, 141, 210, 0.1);
}

/* Responsive */

@media (max-width: 920px) {
    body.ow-home .acg-contact-card {
        grid-template-columns: 1fr;
    }

    body.ow-home .acg-contact-info img {
        height: 240px;
    }
}

@media (max-width: 600px) {
    body.ow-home .acg-faq,
    body.ow-home .acg-contact {
        padding-block: 65px;
    }

    body.ow-home .acg-faq-question {
        min-height: 68px;
        padding-inline: 17px;
        font-size: 12.5px;
    }

    body.ow-home .acg-faq-answer {
        padding:
            0
            17px
            18px;
    }

    body.ow-home .acg-contact-card {
        border-radius: 23px;
    }

    body.ow-home .acg-contact-info {
        padding: 31px 22px;
    }

    body.ow-home .acg-contact-info img {
        height: 210px;
    }

    body.ow-home .acg-contact-form {
        margin: 13px;
        padding: 22px 17px;
        grid-template-columns: 1fr;
        border-radius: 18px;
    }

    body.ow-home .acg-contact-form
    .full {
        grid-column: auto;
    }
}


/* =========================================================
   PART 07A: NEW BRANDS CLIENTS SERVICES
   ========================================================= */

/* Shared heading */

body.ow-home .ow-section-heading {
    margin-bottom:
        clamp(34px, 5vw, 58px);
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, 430px);
    align-items: end;
    gap: 35px;
}

body.ow-home .ow-section-heading > div {
    position: relative;
    padding-right: 22px;
}

body.ow-home .ow-section-heading > div::before {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    width: 4px;
    height: calc(100% - 10px);
    border-radius: 10px;
    background:
        linear-gradient(
            180deg,
            var(--ow-secondary),
            var(--ow-primary)
        );
}

body.ow-home .ow-section-heading span {
    display: block;
    margin-bottom: 9px;
    color: var(--ow-secondary);
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.35px;
    text-transform: uppercase;
}

body.ow-home .ow-section-heading h2 {
    margin: 0;
    color: var(--ow-ink);
    font-size:
        clamp(29px, 3.4vw, 48px);
    font-weight: 900;
    line-height: 1.42;
    letter-spacing: -1px;
}

body.ow-home .ow-section-heading > p {
    margin: 0;
    color: var(--ow-muted);
    font-size: 13px;
    font-weight: 600;
    line-height: 2.05;
}

/* Brands */

body.ow-home .ow-brand-section {
    padding:
        clamp(80px, 9vw, 125px)
        0;
    background: #ffffff;
}

body.ow-home .ow-brand-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--ow-line);
    border-right: 1px solid var(--ow-line);
}

body.ow-home .ow-brand-card {
    min-height: 190px;
    padding: 26px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 20px;
    border-bottom: 1px solid var(--ow-line);
    border-left: 1px solid var(--ow-line);
    background: #ffffff;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

body.ow-home .ow-brand-card:hover {
    position: relative;
    z-index: 2;
    background: var(--ow-soft);
    transform: translateY(-4px);
}

body.ow-home .ow-brand-card__logo {
    width: 100%;
    height: 68px;
    display: grid;
    place-items: center;
}

body.ow-home .ow-brand-card img {
    width: 100%;
    max-width: 125px;
    height: 58px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.58;
    transition:
        filter 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

body.ow-home .ow-brand-card:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.045);
}

body.ow-home .ow-brand-card strong {
    color: var(--ow-ink);
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.4px;
}

/* Clients */

body.ow-home .ow-client-section {
    position: relative;
    padding:
        clamp(85px, 9vw, 130px)
        0;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            #042d4d,
            #061c2e
        );
}

body.ow-home .ow-client-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        );
    background-size: 54px 54px;
    pointer-events: none;
}

body.ow-home .ow-client-section .acg-wrap {
    position: relative;
    z-index: 2;
}

body.ow-home .ow-client-section
.ow-section-heading h2 {
    color: #ffffff;
}

body.ow-home .ow-client-section
.ow-section-heading > p {
    color: rgba(255, 255, 255, 0.65);
}

body.ow-home .ow-client-section
.ow-section-heading > div::before {
    background: #5ec9f5;
}

body.ow-home .ow-client-section
.ow-section-heading span {
    color: #7bd4fa;
}

body.ow-home .ow-client-grid {
    display: grid;
    grid-template-columns:
        repeat(6, minmax(0, 1fr));
    gap: 12px;
}

body.ow-home .ow-client-card {
    min-height: 112px;
    margin: 0;
    padding: 18px;
    display: grid;
    place-items: center;
    border:
        1px solid
        rgba(255, 255, 255, 0.11);
    border-radius: 15px;
    background:
        rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(8px);
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

body.ow-home .ow-client-card:hover {
    transform: translateY(-4px);
    border-color:
        rgba(94, 201, 245, 0.5);
    background:
        rgba(255, 255, 255, 0.11);
}

body.ow-home .ow-client-card img {
    width: 100%;
    max-width: 115px;
    height: 60px;
    object-fit: contain;
    filter:
        grayscale(1)
        brightness(0)
        invert(1);
    opacity: 0.7;
    transition:
        filter 0.25s ease,
        opacity 0.25s ease;
}

body.ow-home .ow-client-card:hover img {
    filter: none;
    opacity: 1;
}

/* Services */

body.ow-home .ow-service-section {
    padding:
        clamp(85px, 9vw, 130px)
        0;
    background: var(--ow-soft);
}

body.ow-home .ow-service-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 18px;
}

body.ow-home .ow-service-card {
    position: relative;
    min-height: 310px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--ow-line);
    border-radius: 22px;
    background: #ffffff;
    box-sizing: border-box;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

body.ow-home .ow-service-card::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background:
        linear-gradient(
            90deg,
            var(--ow-primary),
            var(--ow-secondary)
        );
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

body.ow-home .ow-service-card:hover {
    transform: translateY(-7px);
    border-color:
        rgba(0, 141, 210, 0.32);
    box-shadow:
        0 25px 55px
        rgba(15, 39, 61, 0.1);
}

body.ow-home .ow-service-card:hover::after {
    transform: scaleX(1);
}

body.ow-home .ow-service-card__head {
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body.ow-home .ow-service-card__number {
    color:
        rgba(0, 76, 140, 0.22);
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: 900;
}

body.ow-home .ow-service-card__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #e9f4fa;
    color: var(--ow-primary);
    font-size: 19px;
    transition:
        background 0.25s ease,
        color 0.25s ease;
}

body.ow-home .ow-service-card:hover
.ow-service-card__icon {
    background: var(--ow-primary);
    color: #ffffff;
}

body.ow-home .ow-service-card h3 {
    margin: 0 0 14px;
    color: var(--ow-ink);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.65;
}

body.ow-home .ow-service-card p {
    margin: 0;
    color: var(--ow-muted);
    font-size: 12.5px;
    font-weight: 600;
    line-height: 2.05;
}

/* Responsive */

@media (max-width: 1100px) {
    body.ow-home .ow-client-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    body.ow-home .ow-section-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    body.ow-home .ow-brand-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    body.ow-home .ow-service-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    body.ow-home .ow-brand-section,
    body.ow-home .ow-client-section,
    body.ow-home .ow-service-section {
        padding-block: 65px;
    }

    body.ow-home .ow-brand-card {
        min-height: 150px;
        padding: 18px;
    }

    body.ow-home .ow-client-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    body.ow-home .ow-client-card {
        min-height: 95px;
        padding: 13px;
    }

    body.ow-home .ow-service-grid {
        grid-template-columns: 1fr;
    }

    body.ow-home .ow-service-card {
        min-height: auto;
    }
}
