/*
Theme Name: WeServe Global Tech
Theme URI: https://www.weserveltd.com/
Author: WeServe Global Tech
Description: Custom WordPress theme developed for WeServe Global Tech Ltd.
Version: 1.1.0
Text Domain: weserve
*/

:root {
    --ws-azure: #73a8ce;
    --ws-lavender: #ad49ec;
    --ws-dark-blue: #16143e;
    --ws-white: #fefefe;
    --ws-blue: #777fe3;

    --ws-text: #17182b;
    --ws-text-soft: #666b7d;
    --ws-bg-soft: #f5f7fb;
    --ws-bg-blue: #eef4fa;
    --ws-border: #e7e9f2;

    --ws-container: 1240px;

    --ws-radius-sm: 12px;
    --ws-radius-md: 20px;
    --ws-radius-lg: 32px;

    --ws-shadow-sm: 0 10px 30px rgba(22, 20, 62, 0.08);
    --ws-shadow-md: 0 20px 70px rgba(22, 20, 62, 0.14);

    --ws-transition: all 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: var(--ws-white);
    color: var(--ws-text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--ws-transition);
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--ws-dark-blue);
    line-height: 1.1;
    font-weight: 700;
}

p {
    margin-top: 0;
}

ul,
ol {
    padding-left: 1.2rem;
}


/* =========================================================
   GLOBAL LAYOUT
========================================================= */

.ws-container {
    width: min(100% - 40px, var(--ws-container));
    margin-inline: auto;
}

.ws-container-narrow {
    width: min(100% - 40px, 900px);
    margin-inline: auto;
}

.ws-section {
    padding: 105px 0;
}

.ws-section-small {
    padding: 70px 0;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

.ws-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--ws-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ws-eyebrow--light {
    color: rgba(255, 255, 255, 0.68);
}

.ws-heading-xl {
    max-width: 850px;
    margin-bottom: 24px;
    font-size: clamp(48px, 7vw, 92px);
    letter-spacing: -0.05em;
}

.ws-heading-lg {
    max-width: 780px;
    margin-bottom: 24px;
    font-size: clamp(40px, 5vw, 66px);
    letter-spacing: -0.045em;
}

.ws-heading-md {
    margin-bottom: 18px;
    font-size: clamp(30px, 4vw, 46px);
    letter-spacing: -0.03em;
}

.ws-lead {
    max-width: 760px;
    color: var(--ws-text-soft);
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.7;
}

.ws-text-gradient {
    background: linear-gradient(
        120deg,
        var(--ws-azure),
        var(--ws-blue),
        var(--ws-lavender)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* =========================================================
   BUTTONS
========================================================= */

.ws-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 27px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    transition: var(--ws-transition);
}

.ws-btn-primary {
    background: var(--ws-dark-blue);
    color: var(--ws-white);
}

.ws-btn-primary:hover {
    transform: translateY(-2px);
    background: var(--ws-blue);
    box-shadow: var(--ws-shadow-sm);
}

.ws-btn-light {
    background: var(--ws-white);
    color: var(--ws-dark-blue);
}

.ws-btn-light:hover {
    transform: translateY(-2px);
    background: var(--ws-azure);
}

.ws-btn-outline {
    border-color: rgba(22, 20, 62, 0.16);
    background: transparent;
    color: var(--ws-dark-blue);
}

.ws-btn-outline:hover {
    transform: translateY(-2px);
    border-color: var(--ws-blue);
    color: var(--ws-blue);
}

.ws-arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    color: var(--ws-dark-blue);
    font-weight: 700;
}

.ws-arrow-link span {
    transition: transform 0.3s ease;
}

.ws-arrow-link:hover {
    color: var(--ws-blue);
}

.ws-arrow-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    width: 100%;
    border-bottom: 1px solid rgba(22, 20, 62, 0.07);
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    gap: 26px;
}

.site-branding {
    flex-shrink: 0;
}

.site-branding .custom-logo-link {
    display: block;
    line-height: 0;
}

.site-branding img {
    width: auto;
    max-height: 58px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 23px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav a {
    color: var(--ws-dark-blue);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav .current-menu-item > a {
    color: var(--ws-blue);
}

.ws-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ws-header-cta {
    display: inline-flex;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.ws-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--ws-border);
    border-radius: 50%;
    background: var(--ws-white);
    color: var(--ws-dark-blue);
}

.ws-menu-toggle span,
.ws-menu-toggle span::before,
.ws-menu-toggle span::after {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
}

.ws-menu-toggle span {
    position: relative;
}

.ws-menu-toggle span::before,
.ws-menu-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
}

.ws-menu-toggle span::before {
    top: -6px;
}

.ws-menu-toggle span::after {
    top: 6px;
}


/* =========================================================
   HOMEPAGE HERO
========================================================= */

.ws-home-hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 84px);
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 88% 12%, rgba(173, 73, 236, 0.16), transparent 34%),
        radial-gradient(circle at 72% 82%, rgba(115, 168, 206, 0.23), transparent 36%),
        var(--ws-white);
}

.ws-home-hero__grid {
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    gap: 65px;
    align-items: center;
    padding: 90px 0;
}

.ws-home-hero__content {
    position: relative;
    z-index: 3;
}

.ws-home-hero__title {
    max-width: 720px;
    margin-bottom: 28px;
    color: var(--ws-dark-blue);
    font-size: clamp(56px, 6.1vw, 92px);
    line-height: 0.97;
    letter-spacing: -0.055em;
}

.ws-home-hero__title .ws-text-gradient {
    display: block;
}

.ws-home-hero__lead {
    max-width: 670px;
    margin-bottom: 0;
    color: var(--ws-text-soft);
    font-size: clamp(18px, 1.8vw, 21px);
    line-height: 1.7;
}

.ws-home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.ws-home-hero__proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 48px;
}

.ws-proof-item {
    padding: 18px 18px 17px;
    border: 1px solid rgba(22, 20, 62, 0.09);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
}

.ws-proof-item strong {
    display: block;
    margin-bottom: 3px;
    color: var(--ws-dark-blue);
    font-size: 14px;
}

.ws-proof-item span {
    color: var(--ws-text-soft);
    font-size: 12px;
}

.ws-home-hero__visual {
    position: relative;
}

.ws-toner-showcase {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    padding: 52px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 75% 65%, rgba(173, 73, 236, 0.38), transparent 31%),
        linear-gradient(145deg, #16143e 0%, #21184e 55%, #38205d 100%);
    box-shadow: 0 30px 90px rgba(22, 20, 62, 0.2);
}

.ws-toner-showcase__glow {
    position: absolute;
    width: 330px;
    height: 330px;
    right: -90px;
    bottom: -100px;
    border-radius: 50%;
    background: rgba(115, 168, 206, 0.18);
}

.ws-toner-showcase__content {
    position: relative;
    z-index: 5;
    max-width: 460px;
}

.ws-toner-showcase__eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--ws-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ws-toner-showcase h2 {
    margin-bottom: 22px;
    color: var(--ws-white);
    font-size: clamp(36px, 4vw, 56px);
    letter-spacing: -0.04em;
}

.ws-toner-showcase p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
}

.ws-toner-showcase__brands {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.ws-toner-showcase__brands span {
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 999px;
    color: var(--ws-white);
    font-size: 11px;
    font-weight: 700;
}

.ws-toner-product {
    position: absolute;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 122px;
    height: 185px;
    padding-bottom: 20px;
    border-radius: 14px;
    background:
        linear-gradient(160deg, #20203d 0%, #0e1022 100%);
    color: rgba(255, 255, 255, 0.76);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.22);
}

.ws-toner-product::before {
    content: "";
    position: absolute;
    top: 25px;
    width: 62px;
    height: 50px;
    border-radius: 8px;
    background: linear-gradient(
        135deg,
        var(--ws-azure),
        var(--ws-blue),
        var(--ws-lavender)
    );
}

.ws-toner-product--one {
    right: 190px;
    bottom: 35px;
    transform: rotate(-8deg);
}

.ws-toner-product--two {
    right: 90px;
    bottom: 45px;
    transform: rotate(7deg);
}

.ws-toner-product--three {
    right: 10px;
    bottom: 20px;
    transform: rotate(14deg);
}


/* =========================================================
   SPLIT HEADING
========================================================= */

.ws-home-intro {
    background: var(--ws-white);
}

.ws-split-heading {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 90px;
    align-items: end;
}

.ws-split-heading__copy {
    padding-bottom: 12px;
}

.ws-split-heading__copy p {
    margin: 0;
    color: var(--ws-text-soft);
    font-size: 19px;
    line-height: 1.8;
}


/* =========================================================
   TRUST SECTION
========================================================= */

.ws-trust-section {
    background: var(--ws-bg-soft);
}

.ws-trust-grid {
    display: grid;
    grid-template-columns: 1fr 0.86fr;
    gap: 80px;
    align-items: center;
}

.ws-trust-copy p {
    max-width: 690px;
    color: var(--ws-text-soft);
    font-size: 17px;
}

.ws-risk-card {
    position: relative;
    overflow: hidden;
    padding: 48px;
    border-radius: 32px;
    background: var(--ws-dark-blue);
    color: var(--ws-white);
    box-shadow: var(--ws-shadow-md);
}

.ws-risk-card::after {
    content: "";
    position: absolute;
    width: 270px;
    height: 270px;
    right: -100px;
    bottom: -110px;
    border-radius: 50%;
    background: var(--ws-lavender);
    opacity: 0.14;
}

.ws-risk-card__label {
    display: inline-block;
    margin-bottom: 26px;
    color: var(--ws-azure);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ws-risk-card__number {
    position: relative;
    z-index: 2;
    max-width: 410px;
    margin-bottom: 35px;
    color: var(--ws-white);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.ws-risk-card__list {
    position: relative;
    z-index: 2;
}

.ws-risk-card__list div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ws-risk-card__list span {
    color: var(--ws-blue);
    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.ws-section-heading {
    margin-bottom: 52px;
}

.ws-section-heading--center {
    max-width: 900px;
    margin-right: auto;
    margin-bottom: 58px;
    margin-left: auto;
    text-align: center;
}

.ws-section-heading--center .ws-heading-lg,
.ws-section-heading--center .ws-lead {
    margin-right: auto;
    margin-left: auto;
}


/* =========================================================
   BENEFITS
========================================================= */

.ws-benefits-section {
    background: var(--ws-white);
}

.ws-benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.ws-benefit-card {
    min-height: 245px;
    padding: 28px;
    border: 1px solid var(--ws-border);
    border-radius: 22px;
    background: var(--ws-white);
    transition: var(--ws-transition);
}

.ws-benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(119, 127, 227, 0.34);
    box-shadow: var(--ws-shadow-sm);
}

.ws-benefit-card__number {
    display: block;
    margin-bottom: 50px;
    color: var(--ws-blue);
    font-size: 12px;
    font-weight: 700;
}

.ws-benefit-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.ws-benefit-card p {
    margin: 0;
    color: var(--ws-text-soft);
    font-size: 14px;
}


/* =========================================================
   INDUSTRIES
========================================================= */

.ws-industries-section {
    background: var(--ws-dark-blue);
}

.ws-industries-section .ws-heading-lg {
    color: var(--ws-white);
}

.ws-industries-section .ws-lead {
    color: rgba(255, 255, 255, 0.68);
}

.ws-industries-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 90px;
    align-items: center;
}

.ws-industry-list {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ws-industry-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    padding: 23px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ws-industry-item span {
    color: var(--ws-blue);
    font-size: 11px;
    font-weight: 700;
}

.ws-industry-item strong {
    color: var(--ws-white);
    font-size: 19px;
}


/* =========================================================
   SOLUTIONS
========================================================= */

.ws-solutions-section {
    background: var(--ws-bg-soft);
}

.ws-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ws-solution-card {
    min-height: 290px;
    padding: 34px;
    border: 1px solid rgba(22, 20, 62, 0.08);
    border-radius: 24px;
    background: var(--ws-white);
    transition: var(--ws-transition);
}

.ws-solution-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ws-shadow-sm);
}

.ws-solution-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 55px;
}

.ws-solution-card__top span {
    color: var(--ws-blue);
    font-size: 11px;
    font-weight: 700;
}

.ws-solution-card h3 {
    max-width: 230px;
    margin: 0;
    text-align: right;
    font-size: 21px;
}

.ws-solution-card p {
    margin: 0;
    color: var(--ws-text-soft);
}

.ws-solutions-action {
    margin-top: 38px;
    text-align: center;
}


/* =========================================================
   EXPERIENCE
========================================================= */

.ws-experience-section {
    background: var(--ws-white);
}

.ws-experience-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: stretch;
}

.ws-experience-panel {
    padding: 55px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 90% 90%, rgba(173, 73, 236, 0.26), transparent 33%),
        var(--ws-dark-blue);
}

.ws-experience-panel h2 {
    max-width: 500px;
    margin-bottom: 24px;
    color: var(--ws-white);
    font-size: clamp(38px, 4vw, 58px);
    letter-spacing: -0.04em;
}

.ws-experience-panel p {
    max-width: 500px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 18px;
}

.ws-experience-copy {
    align-self: center;
}

.ws-experience-copy p {
    max-width: 650px;
    color: var(--ws-text-soft);
    font-size: 17px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.ws-home-cta {
    padding-top: 0;
    background: var(--ws-white);
}

.ws-home-cta__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
    padding: 70px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 90% 20%, rgba(173, 73, 236, 0.3), transparent 30%),
        linear-gradient(140deg, #16143e, #29205a);
}

.ws-home-cta h2 {
    max-width: 720px;
    margin-bottom: 18px;
    color: var(--ws-white);
    font-size: clamp(38px, 4.8vw, 64px);
    letter-spacing: -0.045em;
}

.ws-home-cta p {
    max-width: 650px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}


/* =========================================================
   GENERIC CARDS
========================================================= */

.ws-grid {
    display: grid;
    gap: 24px;
}

.ws-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ws-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ws-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ws-card {
    padding: 32px;
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius-md);
    background: var(--ws-white);
    transition: var(--ws-transition);
}

.ws-card:hover {
    transform: translateY(-5px);
    border-color: rgba(119, 127, 227, 0.3);
    box-shadow: var(--ws-shadow-sm);
}


/* =========================================================
   GENERIC PAGE
========================================================= */

.ws-page-header {
    padding: 130px 0 85px;
    background:
        radial-gradient(circle at 85% 20%, rgba(173, 73, 236, 0.14), transparent 30%),
        var(--ws-bg-soft);
}

.ws-page-content {
    padding: 80px 0 110px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    margin-top: 0;
    background: var(--ws-dark-blue);
    color: rgba(255, 255, 255, 0.75);
}

.site-footer__top {
    padding: 80px 0 60px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
    gap: 50px;
}

.site-footer h3,
.site-footer h4 {
    color: var(--ws-white);
}

.site-footer a:hover {
    color: var(--ws-azure);
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li {
    margin-bottom: 10px;
}

.site-footer__logo {
    margin-bottom: 20px;
}

.site-footer__logo .custom-logo-link {
    display: inline-block;
}

.site-footer__logo img {
    width: auto;
    max-height: 68px;
}

.site-footer__bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 13px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1180px) {

    .site-nav ul {
        gap: 16px;
    }

    .site-nav a {
        font-size: 12px;
    }

    .ws-benefits-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


@media (max-width: 1050px) {

    .ws-menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: 84px;
        left: 20px;
        right: 20px;
        display: none;
        padding: 24px;
        border: 1px solid var(--ws-border);
        border-radius: var(--ws-radius-md);
        background: var(--ws-white);
        box-shadow: var(--ws-shadow-md);
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .site-nav li {
        border-bottom: 1px solid var(--ws-border);
    }

    .site-nav li:last-child {
        border-bottom: 0;
    }

    .site-nav a {
        display: block;
        padding: 14px 4px;
        font-size: 14px;
    }

    .ws-header-cta {
        display: none;
    }

    .ws-home-hero {
        min-height: auto;
    }

    .ws-home-hero__grid,
    .ws-trust-grid,
    .ws-split-heading,
    .ws-industries-grid,
    .ws-experience-grid {
        grid-template-columns: 1fr;
    }

    .ws-home-hero__grid {
        padding: 80px 0;
    }

    .ws-home-hero__visual {
        max-width: 720px;
    }

    .ws-split-heading,
    .ws-trust-grid,
    .ws-industries-grid,
    .ws-experience-grid {
        gap: 50px;
    }

    .ws-solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 760px) {

    .ws-section {
        padding: 78px 0;
    }

    .ws-home-hero__grid {
        padding: 68px 0;
    }

    .ws-home-hero__title {
        font-size: clamp(48px, 13vw, 72px);
    }

    .ws-home-hero__proof {
        grid-template-columns: 1fr;
    }

    .ws-toner-showcase {
        min-height: 520px;
        padding: 34px;
    }

    .ws-benefits-grid,
    .ws-solutions-grid {
        grid-template-columns: 1fr;
    }

    .ws-benefit-card {
        min-height: auto;
    }

    .ws-benefit-card__number {
        margin-bottom: 35px;
    }

    .ws-home-cta__inner {
        grid-template-columns: 1fr;
        padding: 45px 34px;
    }

    .ws-home-cta__action {
        justify-self: start;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__bottom-inner {
        flex-direction: column;
    }
}


@media (max-width: 560px) {

    .ws-container,
    .ws-container-narrow {
        width: min(100% - 28px, var(--ws-container));
    }

    .site-header__inner {
        min-height: 72px;
    }

    .site-branding img {
        max-height: 50px;
    }

    .site-nav {
        top: 72px;
        left: 14px;
        right: 14px;
    }

    .ws-home-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ws-home-hero__actions .ws-btn {
        width: 100%;
    }

    .ws-toner-showcase {
        min-height: 490px;
    }

    .ws-toner-product {
        width: 92px;
        height: 145px;
    }

    .ws-toner-product--one {
        right: 145px;
    }

    .ws-toner-product--two {
        right: 72px;
    }

    .ws-toner-product--three {
        right: 5px;
    }

    .ws-risk-card {
        padding: 35px 28px;
    }

    .ws-experience-panel {
        padding: 38px 30px;
    }
}