/* المسار: public_html/assets/css/style.css */

:root {
    --wh-navy: #061a31;
    --wh-navy-2: #08213d;
    --wh-navy-3: #0d2d50;
    --wh-gold: #d3a43f;
    --wh-gold-2: #efd38a;
    --wh-blue: #1d5cc7;
    --wh-blue-soft: #eef5ff;
    --wh-white: #ffffff;
    --wh-bg: #f7f9fc;
    --wh-bg-2: #fbfcfe;
    --wh-text: #101827;
    --wh-muted: #6b7280;
    --wh-border: #e9edf4;
    --wh-shadow: 0 4px 14px rgba(15, 31, 61, .06);
    --wh-shadow-soft: 0 2px 8px rgba(15, 31, 61, .055);
    --wh-radius-lg: 22px;
    --wh-radius-md: 16px;
    --wh-radius-sm: 12px;
    --wh-container: 1360px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Tajawal", Arial, sans-serif;
    color: var(--wh-text);
    background: var(--wh-white);
    line-height: 1.7;
    direction: rtl;
    text-align: right;
}

body.is-menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    max-width: 100%;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

.wh-container {
    width: min(100% - 92px, var(--wh-container));
    margin-inline: auto;
}

.wh-main {
    overflow: hidden;
}

/* Header */

.wh-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #061a31;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wh-header__inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.wh-logo {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--wh-white);
    flex-shrink: 0;
}

.wh-logo__mark {
    width: 44px;
    height: 36px;
    border-radius: 8px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: none;
}

.wh-logo__mark::before,
.wh-logo__mark::after,
.wh-logo__mark span {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 5px solid var(--wh-gold);
    border-radius: 4px;
    transform: rotate(45deg);
}

.wh-logo__mark::before {
    right: 5px;
    border-left-color: transparent;
    border-bottom-color: transparent;
}

.wh-logo__mark::after {
    left: 5px;
    border-right-color: transparent;
    border-top-color: transparent;
}

.wh-logo__mark span {
    display: none;
}

.wh-logo__text {
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1;
}

.wh-nav {
    margin-inline: auto;
}

.wh-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

.wh-nav__list a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 23px 0 20px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    font-weight: 700;
    border-radius: 0;
    transition: color 0.25s ease;
}

.wh-nav__list a::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 9px;
    width: 0;
    height: 2px;
    background: var(--wh-gold);
    transform: translateX(50%);
    transition: width 0.25s ease;
}

.wh-nav__list a:hover,
.wh-nav__list a.is-active {
    color: var(--wh-gold);
    background: transparent;
}

.wh-nav__list a:hover::after,
.wh-nav__list a.is-active::after {
    width: 34px;
}

.wh-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.wh-btn {
    min-height: 42px;
    padding: 10px 24px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 800;
    font-size: 15px;
    line-height: 1.2;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.wh-btn:hover {
    transform: translateY(-1px);
}

.wh-btn--gold {
    color: var(--wh-navy);
    background: linear-gradient(135deg, var(--wh-gold), var(--wh-gold-2));
    box-shadow: 0 4px 14px rgba(211, 164, 63, 0.24);
}

.wh-btn--gold:hover {
    box-shadow: 0 6px 18px rgba(211, 164, 63, 0.30);
}

.wh-btn--outline {
    color: var(--wh-gold-2);
    border-color: rgba(211, 164, 63, 0.82);
    background: transparent;
}

.wh-btn--outline:hover {
    border-color: var(--wh-gold);
    background: rgba(211, 164, 63, 0.08);
}

.wh-btn--light {
    color: var(--wh-navy);
    background: var(--wh-white);
    border-color: var(--wh-navy);
    box-shadow: none;
}

.wh-btn--large {
    min-height: 48px;
    min-width: 170px;
    padding-inline: 28px;
}

.wh-menu-toggle {
    width: 44px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.06);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.wh-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--wh-white);
    border-radius: 999px;
    transition: 0.25s ease;
}

/* Common */

.wh-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 7px 14px;
    border-radius: 999px;
    color: var(--wh-navy);
    background: #fff6e3;
    border: 1px solid rgba(211, 164, 63, 0.26);
    font-weight: 800;
    font-size: 13px;
}

.wh-section-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 99px;
    background: var(--wh-gold);
    box-shadow: 0 0 0 4px rgba(211, 164, 63, 0.16);
}

.wh-section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 28px;
}

.wh-section-head h2 {
    position: relative;
    display: inline-block;
    margin: 0;
    color: var(--wh-navy);
    font-size: clamp(25px, 2.2vw, 34px);
    line-height: 1.28;
    letter-spacing: -0.5px;
    font-weight: 900;
}

.wh-section-head h2::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: -9px;
    width: 48px;
    height: 2px;
    background: var(--wh-gold);
    transform: translateX(50%);
}

.wh-section-head p {
    margin: 18px 0 0;
    color: var(--wh-muted);
    font-size: 16px;
}

.wh-section-head--compact {
    margin-bottom: 28px;
}

/* Hero */

.wh-hero {
    position: relative;
    padding: 34px 0 32px;
    background:
        radial-gradient(circle at 18% 2%, rgba(211, 164, 63, 0.09), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.wh-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: var(--wh-border);
    pointer-events: none;
}

.wh-hero .wh-section-badge {
    display: none;
}

.wh-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(540px, 0.95fr) minmax(520px, 1.05fr);
    align-items: center;
    gap: 58px;
}

.wh-hero__content {
    color: var(--wh-text);
    text-align: center;
    justify-self: center;
    max-width: 680px;
}

.wh-hero__content h1 {
    margin: 16px 0 14px;
    color: var(--wh-navy);
    font-size: clamp(21px, 2.15vw, 34px);
    line-height: 1.28;
    letter-spacing: -0.8px;
    font-weight: 900;
}

.wh-hero__content h1 span {
    display: block;
    color: var(--wh-navy);
}

.wh-hero__content h1::after {
    content: "";
    display: block;
    width: 58px;
    height: 2px;
    margin: 18px auto 0;
    background: var(--wh-gold);
}

.wh-hero__content p {
    max-width: 650px;
    margin: 0 auto;
    color: #4b5565;
    font-size: 18px;
    line-height: 1.9;
}

.wh-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-top: 26px;
}

.wh-trust-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-top: 24px;
}

.wh-trust-points div {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 165px;
    padding: 8px 22px;
    color: var(--wh-navy);
    background: transparent;
    border: 0;
    border-left: 1px solid var(--wh-border);
    border-radius: 0;
    justify-content: center;
}

.wh-trust-points div:last-child {
    border-left: 0;
}

.wh-trust-points strong {
    font-size: 15px;
    font-weight: 800;
}

.wh-icon {
    width: 28px;
    height: 28px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    color: var(--wh-gold);
}

.wh-icon::before,
.wh-icon::after {
    content: "";
    position: absolute;
    box-sizing: border-box;
}

/* أيقونة حلول مخصصة - Puzzle */
.wh-icon--puzzle::before {
    inset: 5px;
    border: 2.5px solid var(--wh-gold);
    border-radius: 6px;
    background: transparent;
}

.wh-icon--puzzle::after {
    width: 6px;
    height: 6px;
    top: 4px;
    right: 1px;
    border: 2.5px solid var(--wh-gold);
    border-radius: 50%;
    background: var(--wh-white);
    box-shadow:
        -14px 14px 0 -2px var(--wh-white),
        -14px 14px 0 0 var(--wh-gold),
        0 14px 0 -2px var(--wh-white),
        0 14px 0 0 var(--wh-gold);
}

/* أيقونة تنفيذ احترافي - Star outline */
.wh-icon--star::before {
    inset: 2px;
    background: var(--wh-gold);
    clip-path: polygon(
        50% 2%,
        61% 35%,
        96% 35%,
        68% 56%,
        79% 92%,
        50% 71%,
        21% 92%,
        32% 56%,
        4% 35%,
        39% 35%
    );
}

.wh-icon--star::after {
    inset: 6px;
    background: var(--wh-white);
    clip-path: polygon(
        50% 2%,
        61% 35%,
        96% 35%,
        68% 56%,
        79% 92%,
        50% 71%,
        21% 92%,
        32% 56%,
        4% 35%,
        39% 35%
    );
}

/* أيقونة دعم منظم - Headset */
.wh-icon--support::before {
    width: 18px;
    height: 12px;
    top: 4px;
    left: 5px;
    border: 2.5px solid var(--wh-gold);
    border-bottom: 0;
    border-radius: 14px 14px 0 0;
    background: transparent;
}

.wh-icon--support::after {
    width: 100%;
    height: 100%;
    inset: 0;
    background:
        linear-gradient(var(--wh-gold), var(--wh-gold)) left 4px top 11px / 2.5px 10px no-repeat,
        linear-gradient(var(--wh-gold), var(--wh-gold)) right 4px top 11px / 2.5px 10px no-repeat,
        linear-gradient(var(--wh-gold), var(--wh-gold)) left 3px top 20px / 6px 2.5px no-repeat,
        linear-gradient(var(--wh-gold), var(--wh-gold)) right 3px top 20px / 6px 2.5px no-repeat,
        linear-gradient(var(--wh-gold), var(--wh-gold)) right 8px bottom 4px / 8px 2.5px no-repeat,
        linear-gradient(var(--wh-gold), var(--wh-gold)) right 8px bottom 4px / 2.5px 6px no-repeat;
}

/* Dashboard Mockup */

.wh-hero__visual {
    width: 100%;
    justify-self: start;
}

.wh-dashboard {
    width: 100%;
    min-height: 430px;
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    border-radius: 18px;
    overflow: hidden;
    background: var(--wh-white);
    box-shadow: 0 16px 38px rgba(15, 31, 61, 0.12);
    border: 1px solid rgba(232, 237, 245, 0.9);
}

.wh-dashboard__sidebar {
    width: 130px;
    flex: 0 0 130px;
    align-self: stretch;
    background: linear-gradient(180deg, #061a31, #09213d);
    padding: 24px 13px 18px;
    color: var(--wh-white);
    display: flex;
    flex-direction: column;
}

.wh-dashboard__main {
    flex: 1 1 auto;
    min-width: 0;
    padding: 22px;
    background:
        radial-gradient(circle at 12% 8%, rgba(29, 92, 199, 0.07), transparent 28%),
        #f8fafc;
}

.wh-dashboard__brand {
    width: 48px;
    height: 10px;
    border-radius: 999px;
    margin: 0 auto 24px;
    background: linear-gradient(90deg, var(--wh-gold), rgba(255, 255, 255, 0.22));
}

.wh-dashboard__sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
}

.wh-dashboard__sidebar li {
    padding: 9px 11px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 700;
}

.wh-dashboard__sidebar li.is-active {
    color: var(--wh-gold-2);
    background: rgba(255, 255, 255, 0.08);
}

.wh-dashboard__logout {
    margin-top: auto;
    padding: 10px 8px 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 700;
}

.wh-dashboard__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.wh-dashboard__dots {
    display: flex;
    gap: 7px;
}

.wh-dashboard__dots span,
.wh-dashboard__user span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d9e1ec;
}

.wh-dashboard__user span {
    display: block;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #dce7f7, #ffffff);
    border: 1px solid var(--wh-border);
}

.wh-dashboard__main h2 {
    margin: 0 0 14px;
    color: var(--wh-navy);
    font-size: 18px;
    font-weight: 900;
}

.wh-dashboard__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.wh-dashboard__stats div {
    min-height: 82px;
    background: var(--wh-white);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(15, 31, 61, .055);
    border: 1px solid rgba(232, 237, 245, 0.92);
}

.wh-dashboard__stats small {
    display: block;
    color: var(--wh-muted);
    font-weight: 700;
    font-size: 11px;
}

.wh-dashboard__stats strong {
    display: block;
    color: var(--wh-navy);
    font-size: 19px;
    line-height: 1.2;
    margin: 6px 0 1px;
}

.wh-dashboard__stats span {
    color: #15915d;
    font-size: 11px;
    font-weight: 800;
}

.wh-dashboard__body {
    display: grid;
    grid-template-columns: 1.45fr 0.82fr;
    gap: 12px;
}

.wh-dashboard__chart,
.wh-dashboard__tasks {
    background: var(--wh-white);
    border-radius: 13px;
    padding: 14px;
    box-shadow: 0 2px 8px rgba(15, 31, 61, .055);
    border: 1px solid rgba(232, 237, 245, 0.92);
}

.wh-chart-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.wh-chart-head strong {
    color: var(--wh-navy);
    font-size: 13px;
}

.wh-chart-head span {
    color: var(--wh-muted);
    font-size: 11px;
    font-weight: 700;
}

.wh-dashboard__chart svg {
    display: block;
    width: 100%;
    height: auto;
}

.wh-dashboard__chart circle {
    fill: var(--wh-white);
    stroke: var(--wh-blue);
    stroke-width: 4;
}

.wh-dashboard__tasks strong {
    display: block;
    color: var(--wh-navy);
    font-size: 13px;
    margin-bottom: 12px;
}

.wh-dashboard__tasks ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.wh-dashboard__tasks li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--wh-muted);
    font-size: 11px;
    font-weight: 700;
}

.wh-dashboard__tasks li span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.wh-dashboard__tasks li span.is-green {
    background: #16a064;
}

.wh-dashboard__tasks li span.is-blue {
    background: var(--wh-blue);
}

.wh-dashboard__tasks li span.is-gold {
    background: var(--wh-gold);
}

/* Services */

.wh-services {
    padding: 28px 0 10px;
    background: var(--wh-white);
}

.wh-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.wh-service-card,
.wh-solution-card,
.wh-work-card {
    background: var(--wh-white);
    border: 1px solid var(--wh-border);
    border-radius: 12px;
    box-shadow: var(--wh-shadow-soft);
}

.wh-service-card,
.wh-solution-card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 86px;
    padding: 16px 18px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.wh-service-card:hover,
.wh-solution-card:hover,
.wh-work-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--wh-shadow);
    border-color: rgba(211, 164, 63, 0.28);
}

.wh-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #f3f5f8;
    display: inline-flex;
    position: relative;
    flex-shrink: 0;
}

.wh-card-icon::before,
.wh-card-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
}

.wh-card-icon--code::before {
    width: 22px;
    height: 16px;
    border-right: 3px solid var(--wh-navy);
    border-bottom: 3px solid var(--wh-navy);
    transform: rotate(-45deg);
}

.wh-card-icon--code::after {
    width: 22px;
    height: 16px;
    border-left: 3px solid var(--wh-navy);
    border-top: 3px solid var(--wh-navy);
    transform: rotate(-45deg);
}

.wh-card-icon--cart::before {
    width: 24px;
    height: 17px;
    border: 3px solid var(--wh-navy);
    border-top: 0;
    border-radius: 0 0 7px 7px;
}

.wh-card-icon--cart::after {
    width: 22px;
    height: 8px;
    border-top: 3px solid var(--wh-navy);
    border-right: 3px solid var(--wh-navy);
    transform: translateY(-9px) skewX(-18deg);
}

.wh-card-icon--dashboard::before,
.wh-card-icon--reports::before {
    width: 28px;
    height: 22px;
    border: 3px solid var(--wh-navy);
    border-radius: 6px;
}

.wh-card-icon--dashboard::after {
    width: 16px;
    height: 3px;
    background: var(--wh-navy);
    box-shadow: 0 7px 0 var(--wh-navy);
}

.wh-card-icon--website::before,
.wh-card-icon--globe::before {
    width: 26px;
    height: 26px;
    border: 3px solid var(--wh-navy);
    border-radius: 50%;
}

.wh-card-icon--website::after,
.wh-card-icon--globe::after {
    width: 30px;
    height: 3px;
    background: var(--wh-navy);
}

.wh-card-icon--systems::before {
    width: 26px;
    height: 22px;
    border: 3px solid var(--wh-navy);
    border-radius: 8px;
}

.wh-card-icon--systems::after {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--wh-gold);
    box-shadow: 13px 0 0 var(--wh-gold), -13px 0 0 var(--wh-gold);
}

.wh-card-icon--reports::after {
    width: 22px;
    height: 14px;
    border-left: 3px solid var(--wh-blue);
    border-bottom: 3px solid var(--wh-blue);
    transform: translateY(-1px) rotate(-35deg);
}

.wh-service-card h3,
.wh-solution-card h3 {
    margin: 0 0 3px;
    color: var(--wh-navy);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
}

.wh-service-card p,
.wh-solution-card p {
    margin: 0;
    color: var(--wh-muted);
    font-size: 14px;
    line-height: 1.55;
}

/* Solutions */

.wh-solutions {
    padding: 18px 0 12px;
    background: var(--wh-white);
}

.wh-solutions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* Stats */

.wh-stats {
    padding: 8px 0 18px;
    background: var(--wh-white);
}

.wh-stats__inner {
    min-height: 76px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--wh-white);
    border: 1px solid var(--wh-border);
    border-radius: 10px;
    box-shadow: var(--wh-shadow-soft);
    overflow: hidden;
}

.wh-stats__inner div {
    min-height: 76px;
    padding: 12px 20px;
    background: transparent;
    border: 0;
    border-left: 1px solid var(--wh-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 14px;
    text-align: right;
}

.wh-stats__inner div:last-child {
    border-left: 0;
}

.wh-stats__inner strong {
    display: block;
    color: var(--wh-navy);
    font-size: 22px;
    line-height: 1.1;
    font-weight: 900;
}

.wh-stats__inner p {
    margin: 3px 0 0;
    color: var(--wh-muted);
    font-weight: 700;
    font-size: 14px;
}

.wh-stat-icon {
    width: 34px;
    height: 34px;
    display: block;
    position: relative;
    flex-shrink: 0;
    color: var(--wh-gold);
}

.wh-stat-icon::before,
.wh-stat-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
}

.wh-stat-icon--heart::before {
    width: 18px;
    height: 18px;
    background: var(--wh-gold);
    border-radius: 6px 6px 3px 6px;
    transform: translateY(4px) rotate(45deg);
}

.wh-stat-icon--heart::after {
    width: 18px;
    height: 18px;
    background: var(--wh-gold);
    border-radius: 50%;
    transform: translate(-5px, -4px);
    box-shadow: 10px 0 0 var(--wh-gold);
}

.wh-stat-icon--user::before,
.wh-stat-icon--users::before {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--wh-gold);
    transform: translateY(-7px);
}

.wh-stat-icon--user::after,
.wh-stat-icon--users::after {
    width: 25px;
    height: 13px;
    border-radius: 15px 15px 5px 5px;
    background: var(--wh-gold);
    transform: translateY(8px);
}

.wh-stat-icon--users {
    box-shadow: -12px 1px 0 -5px rgba(211, 164, 63, 0.75), 12px 1px 0 -5px rgba(211, 164, 63, 0.75);
    border-radius: 50%;
}

.wh-stat-icon--code::before {
    width: 24px;
    height: 18px;
    border-right: 3px solid var(--wh-gold);
    border-bottom: 3px solid var(--wh-gold);
    transform: rotate(-45deg);
}

/* Works */

.wh-works {
    padding: 10px 0 42px;
    background: var(--wh-white);
}

.wh-works__grid {
    max-width: 1080px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.wh-work-card {
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.wh-work-preview {
    height: 138px;
    padding: 10px;
    background: linear-gradient(135deg, #f3f6fb, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wh-work-browser {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: var(--wh-white);
    border: 1px solid #dfe6f0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 31, 61, .055);
}

.wh-work-browser__bar {
    height: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding-inline: 9px;
    border-bottom: 1px solid #edf1f6;
    background: #ffffff;
}

.wh-work-browser__bar span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #d7dee9;
}

.wh-work-preview--company {
    background: linear-gradient(135deg, #eef4ff, #ffffff);
}

.wh-company-preview {
    height: calc(100% - 18px);
    padding: 16px;
    background:
        linear-gradient(90deg, rgba(6, 26, 49, 0.92), rgba(6, 26, 49, 0.58)),
        linear-gradient(135deg, #0a2442, #1d5cc7);
    display: flex;
    align-items: center;
}

.wh-company-preview strong {
    display: block;
    max-width: 145px;
    color: var(--wh-white);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 900;
}

.wh-company-preview em {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-style: normal;
}

.wh-company-preview small {
    display: inline-flex;
    margin-top: 10px;
    padding: 3px 12px;
    border-radius: 999px;
    color: var(--wh-navy);
    background: var(--wh-gold);
    font-weight: 800;
    font-size: 9px;
}

.wh-system-preview {
    height: calc(100% - 18px);
    display: grid;
    grid-template-columns: 48px 1fr;
    background: #f8fafc;
}

.wh-system-preview aside {
    background: var(--wh-navy);
}

.wh-system-preview main {
    padding: 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-content: start;
    gap: 8px;
}

.wh-system-preview main span {
    grid-column: 1 / -1;
    height: 22px;
    border-radius: 5px;
    background: linear-gradient(90deg, #dce8ff, #ffffff);
    border: 1px solid #e8edf5;
}

.wh-system-preview main div {
    height: 42px;
    border-radius: 7px;
    background: #ffffff;
    border: 1px solid #e8edf5;
    box-shadow: 0 1px 5px rgba(15, 31, 61, .05);
}

.wh-training-preview {
    height: calc(100% - 18px);
    padding: 16px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background:
        radial-gradient(circle at 80% 38%, rgba(211, 164, 63, 0.16), transparent 28%),
        linear-gradient(135deg, #ffffff, #eef5ff);
}

.wh-training-preview strong {
    color: var(--wh-navy);
    font-size: 16px;
    line-height: 1.35;
}

.wh-training-preview span {
    color: var(--wh-muted);
    margin-top: 4px;
    font-size: 11px;
}

.wh-training-preview small {
    width: fit-content;
    margin-top: 10px;
    padding: 4px 13px;
    border-radius: 999px;
    background: var(--wh-navy);
    color: var(--wh-white);
    font-weight: 800;
    font-size: 9px;
}

.wh-work-card__content {
    padding: 12px 16px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: var(--wh-white);
}

.wh-work-card__content h3 {
    margin: 0;
    color: var(--wh-navy);
    font-size: 18px;
    font-weight: 900;
}

.wh-work-card__content a {
    color: var(--wh-navy);
    background: #fff6e3;
    border: 1px solid rgba(211, 164, 63, 0.34);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
    white-space: nowrap;
}

/* About */

.wh-about {
    padding: 54px 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(211, 164, 63, 0.12), transparent 30%),
        linear-gradient(135deg, var(--wh-navy), var(--wh-navy-2));
}

.wh-about__box {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
    padding: 42px 34px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.wh-about__box h2 {
    margin: 16px 0 12px;
    color: var(--wh-white);
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.35;
    font-weight: 900;
}

.wh-about__box p {
    max-width: 720px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
}

/* Footer */

.wh-footer {
    background: #06182d;
    color: var(--wh-white);
    padding: 46px 0 22px;
}

.wh-footer__top {
    display: grid;
    grid-template-columns: 1.18fr 0.72fr 0.9fr 0.95fr;
    gap: 28px;
    align-items: start;
}

.wh-logo--footer {
    margin-bottom: 14px;
}

.wh-footer__brand p,
.wh-footer__cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.8;
}

.wh-footer h3 {
    margin: 0 0 14px;
    color: var(--wh-white);
    font-size: 17px;
}

.wh-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wh-footer__links ul {
    display: grid;
    gap: 8px;
}

.wh-footer__links a {
    color: rgba(255, 255, 255, 0.68);
    font-weight: 700;
    transition: color 0.25s ease;
    font-size: 14px;
}

.wh-footer__links a:hover {
    color: var(--wh-gold-2);
}

.wh-footer__info ul {
    display: grid;
    gap: 12px;
}

.wh-footer__info li span {
    display: block;
    color: rgba(255, 255, 255, 0.46);
    font-size: 12px;
    font-weight: 700;
}

.wh-footer__info li strong,
.wh-footer__info li a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
    font-size: 14px;
}

.wh-footer__cta .wh-btn {
    margin-top: 16px;
}

.wh-social {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 16px;
}

.wh-social a {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--wh-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    transition: 0.25s ease;
}

.wh-social a:hover {
    background: var(--wh-gold);
    color: var(--wh-navy);
    transform: translateY(-2px);
}

.wh-footer__bottom {
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.wh-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.54);
    font-size: 13px;
}

/* Responsive */

@media (max-width: 1180px) {
    .wh-container {
        width: min(100% - 44px, var(--wh-container));
    }

    .wh-header__actions {
        display: none;
    }

    .wh-nav__list {
        gap: 22px;
    }

    .wh-hero__inner {
        grid-template-columns: 1fr;
    }

    .wh-hero__content {
        order: 1;
    }

    .wh-hero__visual {
        order: 2;
        max-width: 840px;
        margin-inline: auto;
    }

    .wh-dashboard {
        min-height: 410px;
    }

    .wh-services__grid,
    .wh-stats__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .wh-stats__inner div:nth-child(2) {
        border-left: 0;
    }

    .wh-stats__inner div:nth-child(1),
    .wh-stats__inner div:nth-child(2) {
        border-bottom: 1px solid var(--wh-border);
    }

    .wh-footer__top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .wh-header__inner {
        min-height: 68px;
        justify-content: space-between;
    }

    .wh-menu-toggle {
        display: inline-flex;
    }

    .wh-nav {
        position: fixed;
        inset: 68px 0 auto;
        width: 100%;
        background: rgba(6, 26, 49, 0.98);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 16px 22px 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 0.25s ease;
    }

    body.is-menu-open .wh-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .wh-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        width: min(100%, var(--wh-container));
        margin-inline: auto;
    }

    .wh-nav__list a {
        justify-content: flex-start;
        border-radius: 8px;
        padding: 12px 14px;
    }

    .wh-nav__list a::after {
        display: none;
    }

    body.is-menu-open .wh-menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.is-menu-open .wh-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.is-menu-open .wh-menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .wh-hero {
        padding: 34px 0 28px;
    }

    .wh-hero__content h1 {
        font-size: 28px;
    }

    .wh-dashboard {
        display: block;
    }

    .wh-dashboard__sidebar {
        display: none;
    }

    .wh-dashboard__main {
        width: 100%;
    }

    .wh-dashboard__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .wh-dashboard__body,
    .wh-solutions__grid,
    .wh-works__grid {
        grid-template-columns: 1fr;
    }

    .wh-services__grid {
        grid-template-columns: 1fr;
    }

    .wh-work-preview {
        height: 150px;
    }

    .wh-works__grid {
        max-width: 520px;
    }
}

@media (max-width: 640px) {
    .wh-container {
        width: min(100% - 24px, var(--wh-container));
    }

    .wh-logo__mark {
        width: 38px;
        height: 32px;
    }

    .wh-logo__text {
        font-size: 20px;
    }

    .wh-hero__content h1 {
        font-size: 24px;
    }

    .wh-hero__content p,
    .wh-section-head p,
    .wh-about__box p {
        font-size: 15px;
    }

    .wh-hero__actions .wh-btn,
    .wh-btn--large {
        width: 100%;
    }

    .wh-trust-points {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .wh-trust-points div {
        border-left: 0;
        border: 1px solid var(--wh-border);
        border-radius: 10px;
        background: var(--wh-white);
    }

    .wh-dashboard__main {
        padding: 14px;
    }

    .wh-dashboard__stats,
    .wh-stats__inner {
        grid-template-columns: 1fr;
    }

    .wh-stats__inner div {
        border-left: 0;
        border-bottom: 1px solid var(--wh-border);
        justify-content: flex-end;
    }

    .wh-stats__inner div:last-child {
        border-bottom: 0;
    }

    .wh-services,
    .wh-solutions,
    .wh-works,
    .wh-about {
        padding-block: 34px;
    }

    .wh-service-card,
    .wh-solution-card {
        padding: 16px;
    }

    .wh-work-card__content {
        align-items: flex-start;
        flex-direction: column;
    }

    .wh-about__box {
        padding: 32px 20px;
        border-radius: 16px;
    }

    .wh-footer {
        padding-top: 40px;
    }

    .wh-footer__top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .wh-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}