:root {
    --navy-1000: #030b16;
    --navy-950: #071426;
    --navy-900: #0a1b30;
    --navy-850: #0d253f;
    --navy-800: #123454;
    --navy-700: #1b456c;

    --green-700: #0d7350;
    --green-600: #10875d;
    --green-500: #1c9b6b;
    --green-400: #35b984;
    --green-300: #69d4aa;
    --green-200: #a1e6cb;

    --blue-500: #2e75b8;

    --white: #ffffff;
    --off-white: #f7f9fb;
    --surface: #eef3f6;
    --surface-strong: #e4ebf0;

    --slate-50: #f8fafc;
    --slate-100: #edf2f7;
    --slate-200: #d9e2ec;
    --slate-300: #c2cfda;
    --slate-400: #91a3b4;
    --slate-500: #6e8193;
    --slate-600: #506273;
    --slate-700: #354656;
    --slate-800: #23313e;
    --slate-900: #15222d;

    --border-light: rgba(9, 31, 52, 0.12);
    --border-dark: rgba(255, 255, 255, 0.13);

    --shadow-sm: 0 12px 30px rgba(5, 22, 38, 0.08);
    --shadow-md: 0 24px 60px rgba(5, 22, 38, 0.13);
    --shadow-lg: 0 35px 90px rgba(0, 0, 0, 0.3);

    --container: 1240px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;

    --transition: 180ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--slate-900);
    background: var(--off-white);
    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--navy-950);
    background: var(--white);
    transform: translateY(-150%);
    transition: transform var(--transition);
}

.skip-link:focus {
    transform: translateY(0);
}


/* Header */

.site-header {
    position: relative;
    z-index: 100;
    color: var(--white);
    background: var(--navy-950);
}

.topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--navy-1000);
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar p {
    margin: 0;
    color: var(--slate-400);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.04em;
}

.topbar-links {
    display: flex;
    gap: 22px;
}

.topbar-links a {
    color: var(--slate-300);
    font-size: 12px;
    font-weight: 700;
    transition:
        color var(--transition);
}

.topbar-links a:hover,
.topbar-links a:focus-visible {
    color: var(--green-300);
}

.navigation-shell {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 20, 38, 0.96);
    backdrop-filter: blur(16px);
}

.navigation-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
}

.brand-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(105, 212, 170, 0.48);
    border-radius: 14px;
    color: var(--green-300);
    background:
        linear-gradient(
            145deg,
            rgba(28, 155, 107, 0.18),
            rgba(28, 155, 107, 0.05)
        );
    font-size: 25px;
    font-weight: 900;
    box-shadow:
        inset 0 0 24px rgba(28, 155, 107, 0.08);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-copy strong {
    color: var(--white);
    font-size: 19px;
    letter-spacing: -0.02em;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--green-300);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.primary-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.primary-navigation a {
    position: relative;
    color: var(--slate-200);
    font-size: 13px;
    font-weight: 750;
    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.primary-navigation a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    height: 2px;
    background: var(--green-400);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible {
    color: var(--white);
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after {
    transform: scaleX(1);
}

.nav-cta {
    padding: 11px 16px;
    border: 1px solid rgba(105, 212, 170, 0.45);
    border-radius: 10px;
    color: var(--green-200) !important;
    background: rgba(28, 155, 107, 0.1);
}

.nav-cta:hover,
.nav-cta:focus-visible {
    border-color: var(--green-300);
    background: rgba(28, 155, 107, 0.19);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-dark);
    border-radius: 11px;
    background: transparent;
}

.menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    display: block;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--white);
}


/* Buttons */

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 800;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--green-600),
            var(--green-500)
        );
    box-shadow: 0 16px 32px rgba(16, 135, 93, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
    box-shadow: 0 19px 38px rgba(16, 135, 93, 0.32);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: rgba(105, 212, 170, 0.5);
    background: rgba(255, 255, 255, 0.09);
}

.button-dark {
    color: var(--white);
    background: var(--navy-900);
}

.button-dark-outline {
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--white);
    background: transparent;
}

.button-outline-dark {
    border-color: rgba(7, 20, 38, 0.18);
    color: var(--navy-950);
    background: transparent;
}

.button-secondary-light {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
}


/* Shared typography */

.section {
    padding: 100px 0;
}

.section-light {
    background: var(--white);
}

.section-muted {
    background: var(--surface);
}

.section-kicker {
    margin: 0 0 15px;
    color: var(--green-300);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-kicker-dark {
    color: var(--green-700);
}

.section h2 {
    margin: 0;
    color: var(--navy-950);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.07;
    letter-spacing: -0.04em;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 52px;
}

.section-heading > p {
    margin: 0;
    color: var(--slate-600);
    font-size: 17px;
}

.section-heading-light h2 {
    color: var(--white);
}

.section-heading-light > p {
    color: var(--slate-300);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--green-700);
    font-weight: 850;
}

.text-link-light {
    color: var(--green-300);
}


/* Hero */

.hero-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(
            circle at 82% 19%,
            rgba(28, 155, 107, 0.18),
            transparent 29%
        ),
        radial-gradient(
            circle at 13% 90%,
            rgba(46, 117, 184, 0.13),
            transparent 31%
        ),
        linear-gradient(
            145deg,
            var(--navy-1000),
            var(--navy-950) 45%,
            var(--navy-850)
        );
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 580px;
    height: 580px;
    top: -300px;
    right: -150px;
    border: 1px solid rgba(105, 212, 170, 0.08);
    border-radius: 50%;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 780px;
    height: 780px;
    right: -370px;
    bottom: -550px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        );
    background-size: 52px 52px;
    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 80%
        );
}

.hero-layout {
    position: relative;
    z-index: 2;
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(390px, 0.72fr);
    align-items: center;
    gap: 58px;
    padding-top: 56px;
    padding-bottom: 56px;
}

.hero-content h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(42px, 4.8vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.hero-summary {
    max-width: 750px;
    margin: 20px 0 0;
    color: var(--slate-200);
    font-size: clamp(17px, 1.7vw, 20px);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 24px;
}

.hero-trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.hero-trust-row div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-trust-row strong {
    color: var(--white);
    font-size: 13px;
}

.hero-trust-row span {
    color: var(--slate-400);
    font-size: 12px;
}

.hero-command-panel {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
}

.command-panel-header {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--slate-300);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.system-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--green-300);
}

.system-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-400);
    box-shadow: 0 0 14px var(--green-400);
}

.command-panel-body {
    padding: 10px;
}

.capability-node {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 13px 15px;
    border: 1px solid transparent;
    border-radius: 14px;
}

.capability-node + .capability-node {
    margin-top: 3px;
}

.capability-node-featured {
    border-color: rgba(105, 212, 170, 0.23);
    background: rgba(28, 155, 107, 0.1);
}

.node-number {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    color: var(--green-300);
    font-size: 11px;
    font-weight: 900;
}

.capability-node strong {
    display: block;
    color: var(--white);
    font-size: 14px;
}

.capability-node p {
    margin: 5px 0 0;
    color: var(--slate-400);
    font-size: 12px;
    line-height: 1.5;
}


/* Trust strip */

.trust-strip {
    border-bottom: 1px solid var(--border-light);
    background: var(--white);
}

.trust-strip-grid {
    min-height: 96px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.trust-strip-grid > div {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 20px;
    border-right: 1px solid var(--border-light);
}

.trust-strip-grid > div:first-child {
    border-left: 1px solid var(--border-light);
}

.trust-index {
    color: var(--green-600);
    font-size: 11px;
    font-weight: 900;
}

.trust-strip strong {
    color: var(--navy-900);
    font-size: 13px;
}


/* Intro */

.split-introduction {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 95px;
}

.introduction-copy p {
    margin: 0 0 20px;
    color: var(--slate-600);
    font-size: 18px;
}


/* Service cards */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-card {
    position: relative;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(28, 155, 107, 0.3);
    box-shadow: var(--shadow-md);
}

.service-card-featured {
    color: var(--white);
    border-color: rgba(105, 212, 170, 0.25);
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(105, 212, 170, 0.12),
            transparent 34%
        ),
        var(--navy-950);
}

.service-number {
    position: absolute;
    top: 26px;
    right: 27px;
    color: var(--slate-400);
    font-size: 11px;
    font-weight: 900;
}

.service-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border: 1px solid rgba(28, 155, 107, 0.25);
    border-radius: 14px;
    color: var(--green-700);
    background: rgba(28, 155, 107, 0.08);
    font-size: 13px;
    font-weight: 900;
}

.service-card-featured .service-icon {
    color: var(--green-300);
    border-color: rgba(105, 212, 170, 0.3);
    background: rgba(105, 212, 170, 0.08);
}

.service-card h3 {
    margin: 0;
    color: var(--navy-950);
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.service-card-featured h3 {
    color: var(--white);
}

.service-card > p {
    margin: 18px 0;
    color: var(--slate-600);
    font-size: 15px;
}

.service-card-featured > p {
    color: var(--slate-300);
}

.service-card ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 18px;
    color: var(--slate-600);
    font-size: 13px;
}

.service-card-featured li {
    color: var(--slate-300);
}

.service-card li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-500);
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    padding-top: 28px;
    color: var(--green-700);
    font-size: 13px;
    font-weight: 850;
}

.service-card-featured a {
    color: var(--green-300);
}


/* GovSystem */

.govsystem-section {
    color: var(--white);
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(28, 155, 107, 0.18),
            transparent 33%
        ),
        var(--navy-950);
}

.govsystem-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
    align-items: center;
    gap: 80px;
}

.govsystem-content h2 {
    color: var(--white);
}

.govsystem-content > p:not(.section-kicker) {
    color: var(--slate-300);
    font-size: 17px;
}

.govsystem-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 31px;
}

.institution-network {
    position: relative;
    min-height: 520px;
}

.institution-core {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 190px;
    height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(105, 212, 170, 0.35);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(28, 155, 107, 0.22),
            rgba(7, 20, 38, 0.92) 68%
        );
    box-shadow:
        0 0 0 24px rgba(105, 212, 170, 0.025),
        0 0 0 50px rgba(105, 212, 170, 0.018),
        0 28px 70px rgba(0, 0, 0, 0.35);
    transform: translate(-50%, -50%);
}

.institution-core span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 11px;
    border: 1px solid rgba(105, 212, 170, 0.35);
    border-radius: 14px;
    color: var(--green-300);
    font-size: 29px;
    font-weight: 900;
}

.institution-core strong {
    color: var(--white);
    font-size: 19px;
}

.institution-core small {
    margin-top: 4px;
    color: var(--slate-400);
    font-size: 10px;
}

.institution-card {
    position: absolute;
    width: 190px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
}

.institution-card::after {
    content: "";
    position: absolute;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            rgba(105, 212, 170, 0.5),
            transparent
        );
}

.institution-card strong {
    display: block;
    color: var(--white);
    font-size: 13px;
}

.institution-card span {
    display: block;
    margin-top: 4px;
    color: var(--slate-400);
    font-size: 10px;
}

.card-police {
    top: 35px;
    left: 25px;
}

.card-police::after {
    width: 130px;
    top: 82px;
    left: 135px;
    transform: rotate(32deg);
}

.card-immigration {
    top: 40px;
    right: 18px;
}

.card-immigration::after {
    width: 130px;
    top: 81px;
    right: 135px;
    transform: rotate(148deg);
}

.card-prisons {
    bottom: 65px;
    left: 5px;
}

.card-prisons::after {
    width: 130px;
    bottom: 76px;
    left: 145px;
    transform: rotate(-30deg);
}

.card-airport {
    right: 0;
    bottom: 65px;
}

.card-airport::after {
    width: 130px;
    right: 145px;
    bottom: 76px;
    transform: rotate(210deg);
}

.card-oversight {
    right: 50%;
    bottom: 0;
    transform: translateX(50%);
}


/* Security principles */

.principle-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
}

.principle-grid article {
    min-height: 240px;
    padding: 28px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.principle-grid span {
    color: var(--green-600);
    font-size: 11px;
    font-weight: 900;
}

.principle-grid h3 {
    margin: 42px 0 10px;
    color: var(--navy-950);
    font-size: 19px;
}

.principle-grid p {
    margin: 0;
    color: var(--slate-600);
    font-size: 14px;
}


/* Hosting model */

.hosting-model-section {
    color: var(--white);
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(46, 117, 184, 0.16),
            transparent 31%
        ),
        var(--navy-900);
}

.hosting-model-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.hosting-model-grid article {
    min-height: 300px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
}

.hosting-label {
    display: inline-flex;
    padding: 7px 10px;
    border: 1px solid rgba(105, 212, 170, 0.25);
    border-radius: 999px;
    color: var(--green-300);
    background: rgba(28, 155, 107, 0.08);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hosting-model-grid h3 {
    margin: 55px 0 12px;
    color: var(--white);
    font-size: 24px;
}

.hosting-model-grid p {
    margin: 0;
    color: var(--slate-300);
    font-size: 15px;
}

.hosting-link-row {
    margin-top: 31px;
}


/* Delivery */

.delivery-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 80px;
}

.delivery-introduction {
    position: sticky;
    top: 40px;
    align-self: start;
}

.delivery-introduction > p:not(.section-kicker) {
    color: var(--slate-600);
    font-size: 17px;
}

.delivery-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: delivery;
}

.delivery-steps li {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid var(--border-light);
}

.delivery-steps li:first-child {
    border-top: 1px solid var(--border-light);
}

.delivery-steps li > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(28, 155, 107, 0.2);
    border-radius: 12px;
    color: var(--green-700);
    background: rgba(28, 155, 107, 0.07);
    font-size: 11px;
    font-weight: 900;
}

.delivery-steps strong {
    color: var(--navy-950);
    font-size: 18px;
}

.delivery-steps p {
    margin: 5px 0 0;
    color: var(--slate-600);
}


/* Global */

.global-section {
    color: var(--white);
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(28, 155, 107, 0.18),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            var(--navy-1000),
            var(--navy-800)
        );
}

.global-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.7fr);
    align-items: center;
    gap: 90px;
}

.global-layout h2 {
    color: var(--white);
}

.global-layout > div:first-child > p:not(.section-kicker) {
    color: var(--slate-300);
    font-size: 17px;
}

.global-capabilities {
    display: grid;
    gap: 12px;
}

.global-capabilities div {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
}

.global-capabilities strong {
    display: block;
    color: var(--green-300);
    font-size: 14px;
}

.global-capabilities span {
    display: block;
    margin-top: 5px;
    color: var(--slate-300);
    font-size: 12px;
}


/* Final CTA */

.final-cta-section {
    background: var(--white);
}

.final-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 60px;
    padding: 55px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(28, 155, 107, 0.1),
            transparent 34%
        ),
        var(--surface);
}

.final-cta h2 {
    max-width: 760px;
}

.final-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 11px;
}


/* Page hero */

.page-hero {
    color: var(--white);
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(28, 155, 107, 0.18),
            transparent 30%
        ),
        var(--navy-950);
}

.page-hero-inner {
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(45px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.page-hero p:last-child {
    max-width: 740px;
    margin: 25px 0 0;
    color: var(--slate-300);
    font-size: 19px;
}

.content-placeholder {
    max-width: 850px;
}

.content-placeholder > p:not(.section-kicker) {
    color: var(--slate-600);
    font-size: 17px;
}


/* Footer */

.site-footer {
    color: var(--slate-300);
    background: var(--navy-1000);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 0.65fr);
    gap: 70px;
    padding-top: 75px;
    padding-bottom: 70px;
}

.brand-footer {
    margin-bottom: 24px;
}

.footer-brand > p {
    max-width: 440px;
    margin: 0;
    color: var(--slate-400);
    font-size: 14px;
}

.footer-origin {
    margin-top: 22px;
    color: var(--green-300);
    font-size: 12px;
    font-weight: 750;
}

.footer-grid h2 {
    margin: 0 0 19px;
    color: var(--white);
    font-size: 13px;
    letter-spacing: 0.04em;
}

.footer-grid ul {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-grid a {
    color: var(--slate-400);
    font-size: 13px;
    transition: color var(--transition);
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
    color: var(--green-300);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: var(--slate-500);
    font-size: 11px;
}


/* Responsive */

@media (max-width: 1120px) {
    .primary-navigation {
        gap: 18px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hero-command-panel {
        max-width: 720px;
    }

    .hero-trust-row {
        max-width: 760px;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .govsystem-layout {
        grid-template-columns: 1fr;
    }

    .institution-network {
        width: min(100%, 680px);
        margin-inline: auto;
    }

    .footer-grid {
        grid-template-columns: 1.25fr repeat(3, 0.7fr);
        gap: 38px;
    }
}

@media (max-width: 940px) {
    .topbar {
        display: none;
    }

    .navigation-inner {
        min-height: 72px;
    }

    .menu-toggle {
        display: block;
    }

    .primary-navigation {
        position: fixed;
        top: 72px;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 200;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px;
        overflow-y: auto;
        background: rgba(3, 11, 22, 0.98);
    }

    .primary-navigation.is-open {
        display: flex;
    }

    .primary-navigation a {
        padding: 17px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 16px;
    }

    .primary-navigation a::after {
        display: none;
    }

    .nav-cta {
        margin-top: 15px;
        text-align: center;
    }

    .trust-strip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-strip-grid > div {
        border-bottom: 1px solid var(--border-light);
    }

    .split-introduction,
    .section-heading,
    .delivery-layout,
    .global-layout,
    .final-cta {
        grid-template-columns: 1fr;
    }

    .delivery-introduction {
        position: static;
    }

    .principle-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hosting-model-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 72px 0;
    }

    .hero-layout {
        min-height: auto;
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .hero-content h1 {
        font-size: clamp(39px, 12vw, 58px);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-trust-row {
        grid-template-columns: 1fr;
    }

    .command-panel-header {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .trust-strip-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip-grid > div {
        border-left: 1px solid var(--border-light);
    }

    .service-grid,
    .principle-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .institution-network {
        min-height: auto;
        display: grid;
        gap: 12px;
    }

    .institution-core,
    .institution-card {
        position: static;
        width: 100%;
        height: auto;
        transform: none;
        border-radius: 16px;
    }

    .institution-core {
        padding: 28px;
    }

    .institution-card::after {
        display: none;
    }

    .final-cta {
        padding: 30px 22px;
    }

    .final-cta-actions {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

/* SEYSECURE COMPANY PAGE START */

.company-page-hero {
    position: relative;
    overflow: hidden;
}

.company-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.055;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.15) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.15) 1px,
            transparent 1px
        );
    background-size: 54px 54px;
}

.company-hero-layout {
    position: relative;
    z-index: 2;
    min-height: 480px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.65fr);
    align-items: center;
    gap: 70px;
    padding-top: 48px;
    padding-bottom: 48px;
}

.company-hero-layout h1 {
    max-width: 840px;
}

.company-hero-summary {
    max-width: 760px;
    margin: 20px 0 0;
    color: var(--slate-300);
    font-size: 18px;
    line-height: 1.6;
}

.company-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 24px;
}

.company-profile-panel {
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
}

.profile-panel-header {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--slate-300);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.profile-status {
    color: var(--green-300);
}

.company-profile-list {
    margin: 0;
    padding: 14px;
}

.company-profile-list div {
    padding: 14px 18px;
    border-radius: 14px;
}

.company-profile-list div:first-child {
    border: 1px solid rgba(105, 212, 170, 0.22);
    background: rgba(28, 155, 107, 0.09);
}

.company-profile-list div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.company-profile-list dt {
    margin-bottom: 6px;
    color: var(--green-300);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.company-profile-list dd {
    margin: 0;
    color: var(--slate-200);
    font-size: 14px;
    line-height: 1.55;
}

.company-introduction-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 95px;
}

.company-introduction-copy p {
    margin: 0 0 20px;
    color: var(--slate-600);
    font-size: 18px;
}

.company-position-section {
    color: var(--white);
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(28, 155, 107, 0.15),
            transparent 29%
        ),
        var(--navy-950);
}

.company-position-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.company-position-grid article {
    position: relative;
    min-height: 390px;
    padding: 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.company-position-grid article:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.position-index {
    display: block;
    margin-bottom: 75px;
    color: var(--green-300);
    font-size: 11px;
    font-weight: 900;
}

.company-position-grid h2 {
    color: var(--white);
    font-size: 32px;
}

.company-position-grid article > p:last-child {
    color: var(--slate-300);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.mission-card,
.vision-card {
    min-height: 420px;
    padding: 42px;
    border: 1px solid var(--border-light);
    border-radius: 22px;
}

.mission-card {
    color: var(--white);
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(105, 212, 170, 0.13),
            transparent 34%
        ),
        var(--navy-950);
}

.vision-card {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.mission-label {
    display: inline-flex;
    padding: 8px 11px;
    border: 1px solid rgba(28, 155, 107, 0.25);
    border-radius: 999px;
    color: var(--green-600);
    background: rgba(28, 155, 107, 0.07);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mission-card .mission-label {
    color: var(--green-300);
    border-color: rgba(105, 212, 170, 0.28);
    background: rgba(105, 212, 170, 0.07);
}

.mission-vision-grid h3 {
    margin: 70px 0 20px;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.mission-card h3 {
    color: var(--white);
}

.vision-card h3 {
    color: var(--navy-950);
}

.mission-vision-grid p {
    margin: 0;
    font-size: 16px;
}

.mission-card p {
    color: var(--slate-300);
}

.vision-card p {
    color: var(--slate-600);
}

.company-values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
}

.company-values-grid article {
    min-height: 270px;
    padding: 28px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.company-values-grid span {
    color: var(--green-600);
    font-size: 11px;
    font-weight: 900;
}

.company-values-grid h3 {
    margin: 60px 0 12px;
    color: var(--navy-950);
    font-size: 21px;
}

.company-values-grid p {
    margin: 0;
    color: var(--slate-600);
    font-size: 14px;
}

.leadership-section {
    color: var(--white);
    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(28, 155, 107, 0.18),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            var(--navy-1000),
            var(--navy-800)
        );
}

.leadership-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
    gap: 90px;
}

.leadership-photo-placeholder {
    min-height: 410px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );
}

.leadership-photo-placeholder span {
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(105, 212, 170, 0.38);
    border-radius: 27px;
    color: var(--green-300);
    background: rgba(28, 155, 107, 0.1);
    font-size: 36px;
    font-weight: 900;
}

.leadership-photo-placeholder small {
    margin-top: 20px;
    color: var(--slate-400);
    font-size: 11px;
}

.leadership-identity {
    margin-top: 30px;
}

.leadership-identity h2 {
    color: var(--white);
    font-size: 42px;
}

.leadership-role {
    margin: 8px 0 0;
    color: var(--green-300);
    font-weight: 750;
}

.leadership-biography h3 {
    margin: 0 0 28px;
    color: var(--white);
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.leadership-biography > p {
    color: var(--slate-300);
    font-size: 17px;
}

.leadership-focus-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
}

.leadership-focus-grid div {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
}

.leadership-focus-grid strong {
    display: block;
    color: var(--green-300);
    font-size: 13px;
}

.leadership-focus-grid span {
    display: block;
    margin-top: 5px;
    color: var(--slate-400);
    font-size: 11px;
}

.company-capability-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 85px;
}

.company-capability-layout > div:first-child > p:not(.section-kicker) {
    color: var(--slate-600);
    font-size: 17px;
}

.company-capability-list {
    border-top: 1px solid var(--border-light);
}

.company-capability-list article {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
}

.company-capability-list article > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(28, 155, 107, 0.2);
    border-radius: 11px;
    color: var(--green-700);
    background: rgba(28, 155, 107, 0.07);
    font-size: 10px;
    font-weight: 900;
}

.company-capability-list h3 {
    margin: 0;
    color: var(--navy-950);
    font-size: 18px;
}

.company-capability-list p {
    margin: 5px 0 0;
    color: var(--slate-600);
}

.international-company-section {
    color: var(--white);
    background:
        radial-gradient(
            circle at 78% 30%,
            rgba(46, 117, 184, 0.18),
            transparent 32%
        ),
        var(--navy-900);
}

.international-company-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.75fr);
    align-items: center;
    gap: 90px;
}

.international-company-layout h2 {
    color: var(--white);
}

.international-company-layout > div:first-child > p:not(.section-kicker) {
    color: var(--slate-300);
    font-size: 17px;
}

.international-company-points {
    display: grid;
    gap: 12px;
}

.international-company-points article {
    padding: 21px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
}

.international-company-points strong {
    display: block;
    color: var(--green-300);
    font-size: 14px;
}

.international-company-points span {
    display: block;
    margin-top: 5px;
    color: var(--slate-300);
    font-size: 12px;
}

@media (max-width: 1060px) {
    .company-hero-layout,
    .leadership-layout,
    .international-company-layout {
        grid-template-columns: 1fr;
    }

    .company-profile-panel {
        max-width: 760px;
    }

    .company-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .company-introduction-layout,
    .company-capability-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .company-position-grid {
        grid-template-columns: 1fr;
    }

    .company-position-grid article {
        min-height: auto;
        border-left: 1px solid rgba(255, 255, 255, 0.12);
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .company-hero-layout {
        min-height: auto;
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .company-hero-actions {
        flex-direction: column;
    }

    .company-hero-actions .button {
        width: 100%;
    }

    .company-values-grid,
    .leadership-focus-grid {
        grid-template-columns: 1fr;
    }

    .company-position-grid article,
    .mission-card,
    .vision-card {
        padding: 28px;
    }

    .mission-vision-grid h3 {
        margin-top: 48px;
    }
}

/* SEYSECURE COMPANY PAGE END */

/* SEYSECURE CORPORATE HEADER START */

.corporate-header {
    position: relative;
    z-index: 100;
    color: var(--navy-950);
    background: var(--white);
    box-shadow: 0 8px 30px rgba(5, 22, 38, 0.08);
}

.corporate-header-top {
    min-height: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.corporate-brand .brand-icon {
    width: 50px;
    height: 50px;
    border-color: rgba(13, 115, 80, 0.28);
    color: var(--green-700);
    background:
        linear-gradient(
            145deg,
            rgba(28, 155, 107, 0.12),
            rgba(28, 155, 107, 0.035)
        );
}

.corporate-brand .brand-copy strong {
    color: var(--navy-950);
    font-size: 21px;
}

.corporate-brand .brand-copy small {
    color: var(--green-700);
}

.corporate-header-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    color: var(--slate-600);
    font-size: 12px;
    font-weight: 700;
}

.corporate-header-meta > span {
    padding-right: 24px;
    border-right: 1px solid var(--border-light);
}

.corporate-header-meta > a:not(.header-contact-button) {
    color: var(--navy-800);
    transition: color var(--transition);
}

.corporate-header-meta > a:not(.header-contact-button):hover {
    color: var(--green-700);
}

.header-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 17px;
    border: 1px solid var(--green-700);
    border-radius: 9px;
    color: var(--white);
    background: var(--green-700);
    font-size: 12px;
    font-weight: 850;
    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.header-contact-button:hover,
.header-contact-button:focus-visible {
    color: var(--white);
    background: var(--green-600);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(13, 115, 80, 0.2);
}

.corporate-navigation-bar {
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--off-white);
}

.corporate-navigation {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
}

.corporate-navigation a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 54px;
    padding: 0 22px;
    border-right: 1px solid var(--border-light);
    color: var(--navy-900);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    transition:
        color var(--transition),
        background var(--transition);
}

.corporate-navigation a:first-child {
    border-left: 1px solid var(--border-light);
}

.corporate-navigation a::after {
    content: "";
    position: absolute;
    right: 20px;
    bottom: 0;
    left: 20px;
    height: 3px;
    background: var(--green-600);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.corporate-navigation a:hover,
.corporate-navigation a:focus-visible {
    color: var(--green-700);
    background: var(--white);
}

.corporate-navigation a:hover::after,
.corporate-navigation a:focus-visible::after {
    transform: scaleX(1);
}

.corporate-header .menu-toggle {
    border-color: var(--border-light);
    background: var(--white);
}

.corporate-header .menu-toggle span:not(.sr-only) {
    background: var(--navy-950);
}

@media (max-width: 1120px) {
    .corporate-navigation a {
        padding-inline: 15px;
        font-size: 11px;
    }

    .corporate-header-meta > span {
        display: none;
    }
}

@media (max-width: 940px) {
    .corporate-header-top {
        min-height: 76px;
    }

    .corporate-header-meta {
        display: none;
    }

    .corporate-header .menu-toggle {
        display: block;
    }

    .corporate-navigation-bar {
        border: 0;
    }

    .corporate-navigation {
        position: fixed;
        top: 76px;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 200;
        display: none;
        min-height: auto;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 18px;
        overflow-y: auto;
        background: rgba(255, 255, 255, 0.99);
    }

    .corporate-navigation.is-open {
        display: flex;
    }

    .corporate-navigation a,
    .corporate-navigation a:first-child {
        min-height: 54px;
        padding: 0 14px;
        border-top: 0;
        border-right: 0;
        border-bottom: 1px solid var(--border-light);
        border-left: 0;
        color: var(--navy-950);
        font-size: 15px;
    }

    .corporate-navigation a::after {
        display: none;
    }
}

@media (max-width: 560px) {
    .corporate-brand .brand-icon {
        width: 44px;
        height: 44px;
    }

    .corporate-brand .brand-copy strong {
        font-size: 18px;
    }

    .corporate-brand .brand-copy small {
        font-size: 9px;
    }
}

/* SEYSECURE CORPORATE HEADER END */



/* Official SeySecure logo */
.brand-logo {
    display: block;
    width: auto;
    height: 72px;
    max-width: 320px;
    object-fit: contain;
}

.brand-logo-footer {
    height: 62px;
    max-width: 260px;
}

.corporate-brand {
    min-width: 260px;
}

@media (max-width: 680px) {
    .brand-logo {
        height: 54px;
        max-width: 250px;
    }

    .brand-logo-footer {
        height: 52px;
        max-width: 230px;
    }

    .corporate-brand {
        min-width: auto;
    }
}

/* SEYSECURE SOLUTIONS PAGE START */

.solutions-page-hero {
    position: relative;
    overflow: hidden;
}

.solutions-hero-layout {
    min-height: 540px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.7fr);
    align-items: center;
    gap: 80px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.solutions-hero-summary {
    max-width: 760px;
    margin: 24px 0 0;
    color: var(--slate-300);
    font-size: 19px;
}

.solutions-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.solutions-overview-panel {
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: var(--shadow-lg);
}

.solutions-overview-header {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--slate-300);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.solutions-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px;
}

.solutions-overview-grid div {
    min-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.solutions-overview-grid strong {
    color: var(--green-300);
    font-size: 24px;
}

.solutions-overview-grid span {
    margin-top: 5px;
    color: var(--slate-400);
    font-size: 11px;
}

.solutions-index-section {
    border-bottom: 1px solid var(--border-light);
    background: var(--white);
}

.solutions-index-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solutions-index-grid a {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    color: var(--navy-900);
    font-size: 13px;
    font-weight: 800;
}

.solutions-index-grid a:nth-child(3n + 1) {
    border-left: 1px solid var(--border-light);
}

.solutions-index-grid span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.solutions-intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 90px;
}

.solutions-intro-layout > div:last-child p {
    margin: 0 0 18px;
    color: var(--slate-600);
    font-size: 18px;
}

.solution-detail-dark {
    color: var(--white);
    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(28, 155, 107, 0.17),
            transparent 30%
        ),
        var(--navy-950);
}

.solution-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 80px;
}

.solution-detail-number {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    margin-bottom: 28px;
    border: 1px solid rgba(28, 155, 107, 0.25);
    border-radius: 12px;
    color: var(--green-700);
    background: rgba(28, 155, 107, 0.08);
    font-size: 11px;
    font-weight: 900;
}

.solution-detail-dark .solution-detail-number {
    color: var(--green-300);
    border-color: rgba(105, 212, 170, 0.25);
    background: rgba(105, 212, 170, 0.07);
}

.solution-detail-heading h2 {
    color: var(--navy-950);
}

.solution-detail-dark .solution-detail-heading h2 {
    color: var(--white);
}

.solution-detail-heading > p:not(.section-kicker) {
    color: var(--slate-600);
    font-size: 17px;
}

.solution-detail-dark .solution-detail-heading > p:not(.section-kicker) {
    color: var(--slate-300);
}

.solution-capability-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.solution-capability-grid article {
    min-height: 205px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
}

.solution-capability-grid h3 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 18px;
}

.solution-capability-grid p {
    margin: 0;
    color: var(--slate-300);
    font-size: 14px;
}

.solution-list-panel {
    border-top: 1px solid var(--border-light);
}

.solution-list-panel article {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
}

.solution-list-panel article > span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(28, 155, 107, 0.2);
    border-radius: 11px;
    color: var(--green-700);
    background: rgba(28, 155, 107, 0.07);
    font-size: 10px;
    font-weight: 900;
}

.solution-list-panel h3 {
    margin: 0;
    color: var(--navy-950);
    font-size: 18px;
}

.solution-list-panel p {
    margin: 5px 0 0;
    color: var(--slate-600);
}

.network-services-grid,
.software-capability-grid,
.advisory-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
}

.network-services-grid article,
.software-capability-grid article,
.advisory-grid article {
    min-height: 240px;
    padding: 28px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.network-services-grid span,
.software-capability-grid span {
    color: var(--green-700);
    font-size: 11px;
    font-weight: 900;
}

.network-services-grid h3,
.software-capability-grid h3,
.advisory-grid h3 {
    margin: 48px 0 12px;
    color: var(--navy-950);
    font-size: 20px;
}

.network-services-grid p,
.software-capability-grid p,
.advisory-grid p {
    margin: 0;
    color: var(--slate-600);
    font-size: 14px;
}

.surveillance-section,
.identity-section,
.support-section {
    color: var(--white);
    background:
        radial-gradient(
            circle at 80% 25%,
            rgba(46, 117, 184, 0.18),
            transparent 32%
        ),
        var(--navy-900);
}

.surveillance-layout,
.identity-layout,
.support-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
    align-items: center;
    gap: 90px;
}

.surveillance-layout h2,
.identity-layout h2,
.support-layout h2 {
    color: var(--white);
}

.surveillance-layout > div:first-child > p:not(.section-kicker),
.identity-layout > div:first-child > p:not(.section-kicker),
.support-layout > div:first-child > p:not(.section-kicker) {
    color: var(--slate-300);
    font-size: 17px;
}

.surveillance-capabilities,
.identity-controls-grid,
.support-list {
    display: grid;
    gap: 12px;
}

.surveillance-capabilities article,
.identity-controls-grid article,
.support-list div {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
}

.surveillance-capabilities strong,
.identity-controls-grid strong,
.support-list strong {
    display: block;
    color: var(--green-300);
    font-size: 14px;
}

.surveillance-capabilities span,
.identity-controls-grid span,
.support-list span {
    display: block;
    margin-top: 5px;
    color: var(--slate-300);
    font-size: 12px;
}

.hosting-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.hosting-services-grid article {
    min-height: 190px;
    padding: 24px;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.hosting-services-grid h3 {
    margin: 0 0 12px;
    color: var(--navy-950);
    font-size: 18px;
}

.hosting-services-grid p {
    margin: 0;
    color: var(--slate-600);
    font-size: 14px;
}

@media (max-width: 1050px) {
    .solutions-hero-layout,
    .solution-detail-layout,
    .surveillance-layout,
    .identity-layout,
    .support-layout {
        grid-template-columns: 1fr;
    }

    .solutions-overview-panel {
        max-width: 760px;
    }
}

@media (max-width: 900px) {
    .solutions-index-grid,
    .network-services-grid,
    .software-capability-grid,
    .advisory-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .solutions-index-grid a:nth-child(3n + 1) {
        border-left: 0;
    }

    .solutions-index-grid a:nth-child(2n + 1) {
        border-left: 1px solid var(--border-light);
    }

    .solutions-intro-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

@media (max-width: 680px) {
    .solutions-hero-layout {
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .solutions-hero-actions {
        flex-direction: column;
    }

    .solutions-hero-actions .button {
        width: 100%;
    }

    .solutions-overview-grid,
    .solutions-index-grid,
    .solution-capability-grid,
    .network-services-grid,
    .software-capability-grid,
    .advisory-grid,
    .hosting-services-grid {
        grid-template-columns: 1fr;
    }

    .solutions-index-grid a,
    .solutions-index-grid a:nth-child(2n + 1) {
        border-left: 1px solid var(--border-light);
    }
}

/* SEYSECURE SOLUTIONS PAGE END */

/* SEYSECURE GOVSYSTEM PAGE START */

.govsystem-page-hero {
    position: relative;
    overflow: hidden;
}

.govsystem-page-grid {
    position: absolute;
    inset: 0;
    opacity: 0.055;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.15) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.15) 1px,
            transparent 1px
        );
    background-size: 54px 54px;
}

.govsystem-page-hero-layout {
    position: relative;
    z-index: 2;
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(370px, 0.68fr);
    align-items: center;
    gap: 76px;
    padding-top: 66px;
    padding-bottom: 66px;
}

.govsystem-page-summary {
    max-width: 780px;
    margin: 24px 0 0;
    color: var(--slate-300);
    font-size: 19px;
    line-height: 1.65;
}

.govsystem-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.govsystem-status-panel {
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
}

.govsystem-status-header {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 21px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--slate-300);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.govsystem-status-body {
    padding: 12px;
}

.govsystem-status-body article {
    display: grid;
    grid-template-columns: 39px minmax(0, 1fr);
    gap: 13px;
    padding: 14px;
    border-radius: 14px;
}

.govsystem-status-body article:first-child {
    border: 1px solid rgba(105, 212, 170, 0.22);
    background: rgba(28, 155, 107, 0.09);
}

.govsystem-status-body article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.govsystem-status-body article > span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    color: var(--green-300);
    font-size: 10px;
    font-weight: 900;
}

.govsystem-status-body strong {
    display: block;
    color: var(--white);
    font-size: 14px;
}

.govsystem-status-body p {
    margin: 4px 0 0;
    color: var(--slate-400);
    font-size: 12px;
    line-height: 1.45;
}

.govsystem-page-index {
    border-bottom: 1px solid var(--border-light);
    background: var(--white);
}

.govsystem-page-index-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.govsystem-page-index-grid a {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 18px;
    border-right: 1px solid var(--border-light);
    color: var(--navy-900);
    font-size: 12px;
    font-weight: 800;
}

.govsystem-page-index-grid a:first-child {
    border-left: 1px solid var(--border-light);
}

.govsystem-page-index-grid span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.govsystem-overview-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 95px;
}

.govsystem-overview-copy p {
    margin: 0 0 19px;
    color: var(--slate-600);
    font-size: 18px;
}

.govsystem-architecture-section {
    color: var(--white);
    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(28, 155, 107, 0.16),
            transparent 31%
        ),
        var(--navy-950);
}

.govsystem-architecture-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
    align-items: center;
    gap: 80px;
}

.govsystem-architecture-copy h2 {
    color: var(--white);
}

.govsystem-architecture-copy > p:not(.section-kicker) {
    color: var(--slate-300);
    font-size: 17px;
}

.govsystem-architecture-points {
    display: grid;
    gap: 10px;
    margin-top: 30px;
}

.govsystem-architecture-points div {
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.045);
}

.govsystem-architecture-points strong {
    display: block;
    color: var(--green-300);
    font-size: 13px;
}

.govsystem-architecture-points span {
    display: block;
    margin-top: 4px;
    color: var(--slate-400);
    font-size: 11px;
}

.govsystem-architecture-visual {
    position: relative;
    min-height: 550px;
}

.architecture-core {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    width: 190px;
    height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(105, 212, 170, 0.38);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(28, 155, 107, 0.23),
            rgba(7, 20, 38, 0.96) 68%
        );
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.36);
    transform: translate(-50%, -50%);
}

.architecture-core > span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 11px;
    border: 1px solid rgba(105, 212, 170, 0.35);
    border-radius: 14px;
    color: var(--green-300);
    font-size: 28px;
    font-weight: 900;
}

.architecture-core strong {
    color: var(--white);
    font-size: 20px;
}

.architecture-core small {
    margin-top: 4px;
    color: var(--slate-400);
    font-size: 10px;
}

.architecture-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(105, 212, 170, 0.08);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.architecture-ring-one {
    width: 310px;
    height: 310px;
}

.architecture-ring-two {
    width: 445px;
    height: 445px;
}

.architecture-agency {
    position: absolute;
    width: 190px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.architecture-agency strong {
    display: block;
    color: var(--white);
    font-size: 13px;
}

.architecture-agency span {
    display: block;
    margin-top: 4px;
    color: var(--slate-400);
    font-size: 10px;
}

.agency-police {
    top: 30px;
    left: 20px;
}

.agency-immigration {
    top: 35px;
    right: 10px;
}

.agency-prisons {
    bottom: 55px;
    left: 0;
}

.agency-airport {
    right: 0;
    bottom: 55px;
}

.agency-oversight {
    right: 50%;
    bottom: 0;
    transform: translateX(50%);
}

.govsystem-institution-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.govsystem-institution-grid article {
    min-height: 410px;
    display: flex;
    flex-direction: column;
    padding: 29px;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.institution-code {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border: 1px solid rgba(28, 155, 107, 0.22);
    border-radius: 14px;
    color: var(--green-700);
    background: rgba(28, 155, 107, 0.07);
    font-size: 11px;
    font-weight: 900;
}

.govsystem-institution-grid h3 {
    margin: 0;
    color: var(--navy-950);
    font-size: 23px;
}

.govsystem-institution-grid > article > p {
    margin: 15px 0 20px;
    color: var(--slate-600);
    font-size: 14px;
}

.govsystem-institution-grid ul {
    display: grid;
    gap: 8px;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.govsystem-institution-grid li {
    position: relative;
    padding-left: 18px;
    color: var(--slate-600);
    font-size: 13px;
}

.govsystem-institution-grid li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-500);
}

.govsystem-capability-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
}

.govsystem-capability-grid article {
    min-height: 255px;
    padding: 26px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.govsystem-capability-grid span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.govsystem-capability-grid h3 {
    margin: 52px 0 11px;
    color: var(--navy-950);
    font-size: 19px;
}

.govsystem-capability-grid p {
    margin: 0;
    color: var(--slate-600);
    font-size: 13px;
}

.govsystem-security-section,
.govsystem-localisation-section,
.govsystem-positioning-section {
    color: var(--white);
    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(46, 117, 184, 0.17),
            transparent 31%
        ),
        var(--navy-900);
}

.govsystem-security-layout,
.govsystem-localisation-layout,
.govsystem-positioning-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
    align-items: center;
    gap: 90px;
}

.govsystem-security-layout h2,
.govsystem-localisation-layout h2,
.govsystem-positioning-layout h2 {
    color: var(--white);
}

.govsystem-security-layout > div:first-child > p:not(.section-kicker),
.govsystem-localisation-layout > div:first-child > p:not(.section-kicker),
.govsystem-positioning-layout > div:first-child > p:not(.section-kicker) {
    color: var(--slate-300);
    font-size: 17px;
}

.govsystem-security-controls,
.govsystem-localisation-grid,
.govsystem-positioning-points {
    display: grid;
    gap: 11px;
}

.govsystem-security-controls article,
.govsystem-localisation-grid article,
.govsystem-positioning-points article {
    padding: 19px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
}

.govsystem-security-controls strong,
.govsystem-localisation-grid strong,
.govsystem-positioning-points strong {
    display: block;
    color: var(--green-300);
    font-size: 14px;
}

.govsystem-security-controls span,
.govsystem-localisation-grid span,
.govsystem-positioning-points span {
    display: block;
    margin-top: 5px;
    color: var(--slate-300);
    font-size: 12px;
}

.govsystem-interoperability-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 80px;
}

.govsystem-interoperability-layout > div:first-child > p:not(.section-kicker) {
    color: var(--slate-600);
    font-size: 17px;
}

.interoperability-flow {
    border-top: 1px solid var(--border-light);
}

.interoperability-flow article {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
}

.interoperability-flow article > span {
    width: 41px;
    height: 41px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(28, 155, 107, 0.2);
    border-radius: 11px;
    color: var(--green-700);
    background: rgba(28, 155, 107, 0.07);
    font-size: 10px;
    font-weight: 900;
}

.interoperability-flow strong {
    color: var(--navy-950);
    font-size: 18px;
}

.interoperability-flow p {
    margin: 5px 0 0;
    color: var(--slate-600);
}

.govsystem-deployment-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
    list-style: none;
}

.govsystem-deployment-steps li {
    min-height: 260px;
    padding: 26px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.govsystem-deployment-steps li > span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.govsystem-deployment-steps strong {
    display: block;
    margin-top: 55px;
    color: var(--navy-950);
    font-size: 18px;
}

.govsystem-deployment-steps p {
    margin: 8px 0 0;
    color: var(--slate-600);
    font-size: 13px;
}

@media (max-width: 1080px) {
    .govsystem-page-hero-layout,
    .govsystem-architecture-layout,
    .govsystem-security-layout,
    .govsystem-localisation-layout,
    .govsystem-positioning-layout {
        grid-template-columns: 1fr;
    }

    .govsystem-status-panel {
        max-width: 760px;
    }

    .govsystem-page-index-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .govsystem-capability-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .govsystem-deployment-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .govsystem-overview-layout,
    .govsystem-interoperability-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .govsystem-institution-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .govsystem-capability-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .govsystem-page-hero-layout {
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .govsystem-page-actions {
        flex-direction: column;
    }

    .govsystem-page-actions .button {
        width: 100%;
    }

    .govsystem-page-index-grid,
    .govsystem-institution-grid,
    .govsystem-capability-grid,
    .govsystem-deployment-steps {
        grid-template-columns: 1fr;
    }

    .govsystem-page-index-grid a {
        border-left: 1px solid var(--border-light);
        border-bottom: 1px solid var(--border-light);
    }

    .govsystem-architecture-visual {
        min-height: auto;
        display: grid;
        gap: 11px;
    }

    .architecture-core,
    .architecture-agency,
    .architecture-ring {
        position: static;
        width: 100%;
        height: auto;
        transform: none;
        border-radius: 15px;
    }

    .architecture-core {
        padding: 28px;
    }

    .architecture-ring {
        display: none;
    }
}

/* SEYSECURE GOVSYSTEM PAGE END */

/* SEYSECURE CYBERSECURITY PAGE START */

.cybersecurity-page-hero {
    position: relative;
    overflow: hidden;
}

.cybersecurity-grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.055;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.14) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.14) 1px,
            transparent 1px
        );
    background-size: 52px 52px;
}

.cybersecurity-hero-layout {
    position: relative;
    z-index: 2;
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(370px, 0.7fr);
    align-items: center;
    gap: 78px;
    padding-top: 66px;
    padding-bottom: 66px;
}

.cybersecurity-hero-summary {
    max-width: 760px;
    margin: 24px 0 0;
    color: var(--slate-300);
    font-size: 19px;
    line-height: 1.65;
}

.cybersecurity-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.cybersecurity-command-panel {
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
}

.cybersecurity-command-header {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--slate-300);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cybersecurity-command-body {
    padding: 11px;
}

.cybersecurity-command-body article {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 13px;
    border-radius: 13px;
}

.cybersecurity-command-body article:first-child {
    border: 1px solid rgba(105, 212, 170, 0.22);
    background: rgba(28, 155, 107, 0.09);
}

.cybersecurity-command-body article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.cybersecurity-command-body article > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 9px;
    color: var(--green-300);
    font-size: 10px;
    font-weight: 900;
}

.cybersecurity-command-body strong {
    color: var(--white);
    font-size: 14px;
}

.cybersecurity-command-body p {
    margin: 4px 0 0;
    color: var(--slate-400);
    font-size: 11px;
}

.cybersecurity-index-section {
    border-bottom: 1px solid var(--border-light);
    background: var(--white);
}

.cybersecurity-index-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.cybersecurity-index-grid a {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 18px;
    border-right: 1px solid var(--border-light);
    color: var(--navy-900);
    font-size: 12px;
    font-weight: 800;
}

.cybersecurity-index-grid a:first-child {
    border-left: 1px solid var(--border-light);
}

.cybersecurity-index-grid span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.cybersecurity-introduction-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 95px;
}

.cybersecurity-introduction-layout > div:last-child p {
    margin: 0 0 18px;
    color: var(--slate-600);
    font-size: 18px;
}

.cybersecurity-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.cybersecurity-service-grid article {
    min-height: 465px;
    display: flex;
    flex-direction: column;
    padding: 29px;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.cybersecurity-service-grid .cybersecurity-service-featured {
    color: var(--white);
    border-color: rgba(105, 212, 170, 0.24);
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(105, 212, 170, 0.13),
            transparent 34%
        ),
        var(--navy-950);
}

.cybersecurity-service-number {
    align-self: flex-end;
    color: var(--slate-400);
    font-size: 10px;
    font-weight: 900;
}

.cybersecurity-service-icon {
    width: 53px;
    height: 53px;
    display: grid;
    place-items: center;
    margin: 10px 0 25px;
    border: 1px solid rgba(28, 155, 107, 0.23);
    border-radius: 14px;
    color: var(--green-700);
    background: rgba(28, 155, 107, 0.07);
    font-size: 12px;
    font-weight: 900;
}

.cybersecurity-service-featured .cybersecurity-service-icon {
    color: var(--green-300);
    border-color: rgba(105, 212, 170, 0.28);
    background: rgba(105, 212, 170, 0.07);
}

.cybersecurity-service-grid h3 {
    margin: 0;
    color: var(--navy-950);
    font-size: 22px;
}

.cybersecurity-service-featured h3 {
    color: var(--white);
}

.cybersecurity-service-grid article > p {
    margin: 16px 0;
    color: var(--slate-600);
    font-size: 14px;
}

.cybersecurity-service-featured > p {
    color: var(--slate-300) !important;
}

.cybersecurity-service-grid ul {
    display: grid;
    gap: 8px;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.cybersecurity-service-grid li {
    position: relative;
    padding-left: 17px;
    color: var(--slate-600);
    font-size: 13px;
}

.cybersecurity-service-featured li {
    color: var(--slate-300);
}

.cybersecurity-service-grid li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-500);
}

.cybersecurity-siem-section,
.cybersecurity-identity-section,
.standards-section {
    color: var(--white);
    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(46, 117, 184, 0.18),
            transparent 31%
        ),
        var(--navy-900);
}

.cybersecurity-siem-layout,
.cybersecurity-identity-layout,
.standards-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr);
    align-items: center;
    gap: 90px;
}

.cybersecurity-siem-layout h2,
.cybersecurity-identity-layout h2,
.standards-layout h2 {
    color: var(--white);
}

.cybersecurity-siem-layout > div:first-child > p:not(.section-kicker),
.cybersecurity-identity-layout > div:first-child > p:not(.section-kicker),
.standards-layout > div:first-child > p:not(.section-kicker) {
    color: var(--slate-300);
    font-size: 17px;
}

.siem-operating-model {
    display: grid;
    gap: 10px;
}

.siem-operating-model article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
}

.siem-operating-model article > span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(105, 212, 170, 0.25);
    border-radius: 10px;
    color: var(--green-300);
    font-size: 10px;
    font-weight: 900;
}

.siem-operating-model strong {
    color: var(--white);
    font-size: 14px;
}

.siem-operating-model p {
    margin: 4px 0 0;
    color: var(--slate-400);
    font-size: 11px;
}

.soc-capability-grid,
.security-governance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
}

.soc-capability-grid article,
.security-governance-grid article {
    min-height: 235px;
    padding: 27px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.soc-capability-grid span,
.security-governance-grid span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.soc-capability-grid h3,
.security-governance-grid h3 {
    margin: 48px 0 10px;
    color: var(--navy-950);
    font-size: 19px;
}

.soc-capability-grid p,
.security-governance-grid p {
    margin: 0;
    color: var(--slate-600);
    font-size: 13px;
}

.cybersecurity-architecture-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 80px;
}

.cybersecurity-architecture-layout > div:first-child > p:not(.section-kicker) {
    color: var(--slate-600);
    font-size: 17px;
}

.security-layer-stack {
    border-top: 1px solid var(--border-light);
}

.security-layer-stack article {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border-light);
}

.security-layer-stack article > span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.security-layer-stack strong {
    color: var(--navy-950);
    font-size: 18px;
}

.security-layer-stack p {
    margin: 5px 0 0;
    color: var(--slate-600);
}

.cybersecurity-identity-grid,
.standards-grid {
    display: grid;
    gap: 11px;
}

.cybersecurity-identity-grid article,
.standards-grid article {
    padding: 19px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
}

.cybersecurity-identity-grid strong,
.standards-grid strong {
    display: block;
    color: var(--green-300);
    font-size: 14px;
}

.cybersecurity-identity-grid span,
.standards-grid span {
    display: block;
    margin-top: 5px;
    color: var(--slate-300);
    font-size: 12px;
}

.incident-readiness-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
    list-style: none;
}

.incident-readiness-steps li {
    min-height: 245px;
    padding: 26px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.incident-readiness-steps li > span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.incident-readiness-steps strong {
    display: block;
    margin-top: 50px;
    color: var(--navy-950);
    font-size: 18px;
}

.incident-readiness-steps p {
    margin: 8px 0 0;
    color: var(--slate-600);
    font-size: 13px;
}

.security-governance-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 80px;
}

.security-governance-layout > div:first-child > p:not(.section-kicker) {
    color: var(--slate-600);
    font-size: 17px;
}

.responsible-security-section {
    background: var(--white);
}

.responsible-security-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 65px;
    padding: 48px;
    border: 1px solid var(--border-light);
    border-radius: 22px;
    background: var(--surface);
}

.responsible-security-layout h2 {
    max-width: 760px;
}

.responsible-security-layout > div:first-child > p:not(.section-kicker) {
    color: var(--slate-600);
    font-size: 16px;
}

.responsible-security-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 1080px) {
    .cybersecurity-hero-layout,
    .cybersecurity-siem-layout,
    .cybersecurity-identity-layout,
    .standards-layout {
        grid-template-columns: 1fr;
    }

    .cybersecurity-command-panel {
        max-width: 760px;
    }

    .cybersecurity-index-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .cybersecurity-introduction-layout,
    .cybersecurity-architecture-layout,
    .security-governance-layout,
    .responsible-security-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cybersecurity-service-grid,
    .soc-capability-grid,
    .security-governance-grid,
    .incident-readiness-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .responsible-security-actions {
        align-items: flex-start;
    }
}

@media (max-width: 680px) {
    .cybersecurity-hero-layout {
        min-height: auto;
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .cybersecurity-hero-actions {
        flex-direction: column;
    }

    .cybersecurity-hero-actions .button {
        width: 100%;
    }

    .cybersecurity-index-grid,
    .cybersecurity-service-grid,
    .soc-capability-grid,
    .security-governance-grid,
    .incident-readiness-steps {
        grid-template-columns: 1fr;
    }

    .cybersecurity-index-grid a {
        border-left: 1px solid var(--border-light);
        border-bottom: 1px solid var(--border-light);
    }

    .responsible-security-layout {
        padding: 28px 22px;
    }
}

/* SEYSECURE CYBERSECURITY PAGE END */

/* SEYSECURE INFRASTRUCTURE PAGE START */

.infrastructure-page-hero {
    position: relative;
    overflow: hidden;
}

.infrastructure-grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
    background-size: 54px 54px;
}

.infrastructure-hero-layout {
    position: relative;
    z-index: 2;
    min-height: 540px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(370px, .7fr);
    align-items: center;
    gap: 76px;
    padding-top: 62px;
    padding-bottom: 62px;
}

.infrastructure-hero-summary {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--slate-300);
    font-size: 19px;
    line-height: 1.6;
}

.infrastructure-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.infrastructure-command-panel {
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 22px;
    background: rgba(255,255,255,.055);
    box-shadow: var(--shadow-lg);
}

.infrastructure-command-header {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    color: var(--slate-300);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.infrastructure-command-body {
    padding: 10px;
}

.infrastructure-command-body article {
    display: grid;
    grid-template-columns: 37px minmax(0,1fr);
    gap: 12px;
    padding: 12px 13px;
    border-radius: 13px;
}

.infrastructure-command-body article + article {
    border-top: 1px solid rgba(255,255,255,.07);
}

.infrastructure-command-body article > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 9px;
    color: var(--green-300);
    font-size: 10px;
    font-weight: 900;
}

.infrastructure-command-body strong {
    color: var(--white);
    font-size: 14px;
}

.infrastructure-command-body p {
    margin: 3px 0 0;
    color: var(--slate-400);
    font-size: 11px;
}

.infrastructure-index-section {
    border-bottom: 1px solid var(--border-light);
    background: var(--white);
}

.infrastructure-index-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0,1fr));
}

.infrastructure-index-grid a {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 17px;
    border-right: 1px solid var(--border-light);
    color: var(--navy-900);
    font-size: 12px;
    font-weight: 800;
}

.infrastructure-index-grid a:first-child {
    border-left: 1px solid var(--border-light);
}

.infrastructure-index-grid span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.infrastructure-intro-layout,
.network-security-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,.9fr);
    gap: 90px;
}

.infrastructure-intro-layout > div:last-child p,
.network-security-layout > div:first-child > p:not(.section-kicker) {
    color: var(--slate-600);
    font-size: 17px;
}

.infrastructure-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
}

.infrastructure-service-grid article {
    min-height: 245px;
    padding: 27px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--white);
}

.infrastructure-service-grid span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.infrastructure-service-grid h3 {
    margin: 50px 0 11px;
    color: var(--navy-950);
    font-size: 20px;
}

.infrastructure-service-grid p {
    margin: 0;
    color: var(--slate-600);
    font-size: 13px;
}

.infrastructure-dark-section,
.surveillance-professional-section,
.infrastructure-support-section {
    color: var(--white);
    background:
        radial-gradient(circle at 82% 20%, rgba(46,117,184,.18), transparent 31%),
        var(--navy-900);
}

.infrastructure-detail-layout,
.surveillance-professional-layout,
.infrastructure-support-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(390px,.82fr);
    align-items: center;
    gap: 85px;
}

.infrastructure-detail-layout h2,
.surveillance-professional-layout h2,
.infrastructure-support-layout h2 {
    color: var(--white);
}

.infrastructure-detail-layout > div:first-child > p:not(.section-kicker),
.surveillance-professional-layout > div:first-child > p:not(.section-kicker),
.infrastructure-support-layout > div:first-child > p:not(.section-kicker) {
    color: var(--slate-300);
    font-size: 17px;
}

.infrastructure-detail-grid,
.infrastructure-support-grid {
    display: grid;
    gap: 11px;
}

.infrastructure-detail-grid article,
.infrastructure-support-grid article {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.05);
}

.infrastructure-detail-grid strong,
.infrastructure-support-grid strong {
    display: block;
    color: var(--green-300);
    font-size: 14px;
}

.infrastructure-detail-grid span,
.infrastructure-support-grid span {
    display: block;
    margin-top: 5px;
    color: var(--slate-300);
    font-size: 12px;
}

.network-control-stack {
    border-top: 1px solid var(--border-light);
}

.network-control-stack article {
    display: grid;
    grid-template-columns: 52px minmax(0,1fr);
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border-light);
}

.network-control-stack article > span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(28,155,107,.2);
    border-radius: 10px;
    color: var(--green-700);
    background: rgba(28,155,107,.07);
    font-size: 10px;
    font-weight: 900;
}

.network-control-stack strong {
    color: var(--navy-950);
    font-size: 17px;
}

.network-control-stack p {
    margin: 4px 0 0;
    color: var(--slate-600);
    font-size: 13px;
}

.surveillance-professional-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 11px;
}

.surveillance-professional-grid article {
    min-height: 150px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.05);
}

.surveillance-professional-grid span {
    color: var(--green-300);
    font-size: 10px;
    font-weight: 900;
}

.surveillance-professional-grid strong {
    display: block;
    margin-top: 22px;
    color: var(--white);
    font-size: 15px;
}

.surveillance-professional-grid p {
    margin: 5px 0 0;
    color: var(--slate-300);
    font-size: 12px;
}

.server-room-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}

.server-room-grid article {
    min-height: 190px;
    padding: 25px;
    border: 1px solid var(--border-light);
    border-radius: 17px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.server-room-grid h3 {
    margin: 0 0 12px;
    color: var(--navy-950);
    font-size: 19px;
}

.server-room-grid p {
    margin: 0;
    color: var(--slate-600);
    font-size: 13px;
}

.infrastructure-delivery-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
    list-style: none;
}

.infrastructure-delivery-steps li {
    min-height: 245px;
    padding: 25px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.infrastructure-delivery-steps li > span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.infrastructure-delivery-steps strong {
    display: block;
    margin-top: 50px;
    color: var(--navy-950);
    font-size: 18px;
}

.infrastructure-delivery-steps p {
    margin: 8px 0 0;
    color: var(--slate-600);
    font-size: 13px;
}

@media (max-width: 1080px) {
    .infrastructure-hero-layout,
    .infrastructure-detail-layout,
    .surveillance-professional-layout,
    .infrastructure-support-layout {
        grid-template-columns: 1fr;
    }

    .infrastructure-command-panel {
        max-width: 760px;
    }

    .infrastructure-index-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }

    .infrastructure-delivery-steps {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 900px) {
    .infrastructure-intro-layout,
    .network-security-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .infrastructure-service-grid,
    .server-room-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 680px) {
    .infrastructure-hero-layout {
        min-height: auto;
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .infrastructure-hero-actions {
        flex-direction: column;
    }

    .infrastructure-hero-actions .button {
        width: 100%;
    }

    .infrastructure-index-grid,
    .infrastructure-service-grid,
    .server-room-grid,
    .infrastructure-delivery-steps,
    .surveillance-professional-grid {
        grid-template-columns: 1fr;
    }

    .infrastructure-index-grid a {
        border-left: 1px solid var(--border-light);
        border-bottom: 1px solid var(--border-light);
    }
}

/* SEYSECURE INFRASTRUCTURE PAGE END */

/* SEYSECURE HOSTING PAGE START */

.hosting-page-hero {
    position: relative;
    overflow: hidden;
}

.hosting-grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
    background-size: 54px 54px;
}

.hosting-hero-layout {
    position: relative;
    z-index: 2;
    min-height: 540px;
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(370px,.7fr);
    align-items: center;
    gap: 76px;
    padding-top: 62px;
    padding-bottom: 62px;
}

.hosting-hero-summary {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--slate-300);
    font-size: 19px;
    line-height: 1.6;
}

.hosting-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hosting-command-panel {
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 22px;
    background: rgba(255,255,255,.055);
    box-shadow: var(--shadow-lg);
}

.hosting-command-header {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    color: var(--slate-300);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hosting-command-body {
    padding: 10px;
}

.hosting-command-body article {
    display: grid;
    grid-template-columns: 37px minmax(0,1fr);
    gap: 12px;
    padding: 12px 13px;
}

.hosting-command-body article + article {
    border-top: 1px solid rgba(255,255,255,.07);
}

.hosting-command-body article > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 9px;
    color: var(--green-300);
    font-size: 10px;
    font-weight: 900;
}

.hosting-command-body strong {
    color: var(--white);
    font-size: 14px;
}

.hosting-command-body p {
    margin: 3px 0 0;
    color: var(--slate-400);
    font-size: 11px;
}

.hosting-index-section {
    border-bottom: 1px solid var(--border-light);
    background: var(--white);
}

.hosting-index-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0,1fr));
}

.hosting-index-grid a {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 17px;
    border-right: 1px solid var(--border-light);
    color: var(--navy-900);
    font-size: 12px;
    font-weight: 800;
}

.hosting-index-grid a:first-child {
    border-left: 1px solid var(--border-light);
}

.hosting-index-grid span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.hosting-intro-layout,
.business-email-layout,
.managed-support-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,.95fr);
    gap: 90px;
}

.hosting-intro-layout > div:last-child p,
.business-email-layout > div:first-child > p:not(.section-kicker),
.managed-support-layout > div:first-child > p:not(.section-kicker) {
    color: var(--slate-600);
    font-size: 17px;
}

.hosting-service-grid,
.managed-support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
}

.hosting-service-grid article,
.managed-support-grid article {
    min-height: 235px;
    padding: 27px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--white);
}

.hosting-service-grid span,
.managed-support-grid span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.hosting-service-grid h3,
.managed-support-grid h3 {
    margin: 48px 0 11px;
    color: var(--navy-950);
    font-size: 19px;
}

.hosting-service-grid p,
.managed-support-grid p {
    margin: 0;
    color: var(--slate-600);
    font-size: 13px;
}

.hosting-deployment-section,
.server-security-section,
.hosting-location-section {
    color: var(--white);
    background:
        radial-gradient(circle at 82% 20%, rgba(46,117,184,.18), transparent 31%),
        var(--navy-900);
}

.hosting-deployment-layout,
.server-security-layout,
.hosting-location-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(390px,.82fr);
    align-items: center;
    gap: 85px;
}

.hosting-deployment-layout h2,
.server-security-layout h2,
.hosting-location-layout h2 {
    color: var(--white);
}

.hosting-deployment-layout > div:first-child > p:not(.section-kicker),
.server-security-layout > div:first-child > p:not(.section-kicker),
.hosting-location-layout > div:first-child > p:not(.section-kicker) {
    color: var(--slate-300);
    font-size: 17px;
}

.hosting-deployment-grid,
.server-security-grid,
.hosting-location-points {
    display: grid;
    gap: 11px;
}

.hosting-deployment-grid article,
.server-security-grid article,
.hosting-location-points article {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.05);
}

.hosting-deployment-grid strong,
.server-security-grid strong,
.hosting-location-points strong {
    display: block;
    color: var(--green-300);
    font-size: 14px;
}

.hosting-deployment-grid span,
.server-security-grid span,
.hosting-location-points span {
    display: block;
    margin-top: 5px;
    color: var(--slate-300);
    font-size: 12px;
}

.business-email-controls {
    border-top: 1px solid var(--border-light);
}

.business-email-controls article {
    display: grid;
    grid-template-columns: 52px minmax(0,1fr);
    gap: 18px;
    padding: 21px 0;
    border-bottom: 1px solid var(--border-light);
}

.business-email-controls article > span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(28,155,107,.2);
    border-radius: 10px;
    color: var(--green-700);
    background: rgba(28,155,107,.07);
    font-size: 10px;
    font-weight: 900;
}

.business-email-controls strong {
    color: var(--navy-950);
    font-size: 17px;
}

.business-email-controls p {
    margin: 4px 0 0;
    color: var(--slate-600);
    font-size: 13px;
}

.continuity-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
    list-style: none;
}

.continuity-steps li {
    min-height: 235px;
    padding: 25px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.continuity-steps li > span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.continuity-steps strong {
    display: block;
    margin-top: 48px;
    color: var(--navy-950);
    font-size: 18px;
}

.continuity-steps p {
    margin: 8px 0 0;
    color: var(--slate-600);
    font-size: 13px;
}

@media (max-width: 1080px) {
    .hosting-hero-layout,
    .hosting-deployment-layout,
    .server-security-layout,
    .hosting-location-layout {
        grid-template-columns: 1fr;
    }

    .hosting-command-panel {
        max-width: 760px;
    }

    .hosting-index-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}

@media (max-width: 900px) {
    .hosting-intro-layout,
    .business-email-layout,
    .managed-support-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hosting-service-grid,
    .managed-support-grid,
    .continuity-steps {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 680px) {
    .hosting-hero-layout {
        min-height: auto;
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .hosting-hero-actions {
        flex-direction: column;
    }

    .hosting-hero-actions .button {
        width: 100%;
    }

    .hosting-index-grid,
    .hosting-service-grid,
    .managed-support-grid,
    .continuity-steps {
        grid-template-columns: 1fr;
    }

    .hosting-index-grid a {
        border-left: 1px solid var(--border-light);
        border-bottom: 1px solid var(--border-light);
    }
}

/* SEYSECURE HOSTING PAGE END */

/* SEYSECURE REGIONAL VISION PAGE START */

.regional-page-hero {
    position: relative;
    overflow: hidden;
}

.regional-grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
    background-size: 54px 54px;
}

.regional-hero-layout {
    position: relative;
    z-index: 2;
    min-height: 540px;
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(370px,.7fr);
    align-items: center;
    gap: 76px;
    padding-top: 62px;
    padding-bottom: 62px;
}

.regional-hero-summary {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--slate-300);
    font-size: 19px;
    line-height: 1.6;
}

.regional-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.regional-position-panel {
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 22px;
    background: rgba(255,255,255,.055);
    box-shadow: var(--shadow-lg);
}

.regional-position-header {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    color: var(--slate-300);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.regional-position-body {
    padding: 10px;
}

.regional-position-body article {
    display: grid;
    grid-template-columns: 42px minmax(0,1fr);
    gap: 13px;
    padding: 14px;
}

.regional-position-body article + article {
    border-top: 1px solid rgba(255,255,255,.07);
}

.regional-position-body article > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(105,212,170,.25);
    border-radius: 10px;
    color: var(--green-300);
    background: rgba(105,212,170,.06);
    font-size: 9px;
    font-weight: 900;
}

.regional-position-body strong {
    color: var(--white);
    font-size: 14px;
}

.regional-position-body p {
    margin: 4px 0 0;
    color: var(--slate-400);
    font-size: 11px;
}

.regional-index-section {
    border-bottom: 1px solid var(--border-light);
    background: var(--white);
}

.regional-index-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0,1fr));
}

.regional-index-grid a {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 17px;
    border-right: 1px solid var(--border-light);
    color: var(--navy-900);
    font-size: 12px;
    font-weight: 800;
}

.regional-index-grid a:first-child {
    border-left: 1px solid var(--border-light);
}

.regional-index-grid span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.regional-intro-layout,
.border-vision-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,.92fr);
    gap: 90px;
}

.regional-intro-layout > div:last-child p,
.border-vision-layout > div:first-child > p:not(.section-kicker) {
    color: var(--slate-600);
    font-size: 17px;
}

.regional-market-section,
.localisation-framework-section,
.regional-govsystem-section,
.regional-values-section {
    color: var(--white);
    background:
        radial-gradient(circle at 82% 20%, rgba(46,117,184,.18), transparent 31%),
        var(--navy-900);
}

.regional-market-layout,
.localisation-framework-layout,
.regional-govsystem-layout,
.regional-values-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(390px,.84fr);
    align-items: center;
    gap: 85px;
}

.regional-market-layout h2,
.localisation-framework-layout h2,
.regional-govsystem-layout h2,
.regional-values-layout h2 {
    color: var(--white);
}

.regional-market-layout > div:first-child > p:not(.section-kicker),
.localisation-framework-layout > div:first-child > p:not(.section-kicker),
.regional-govsystem-layout > div:first-child > p:not(.section-kicker) {
    color: var(--slate-300);
    font-size: 17px;
}

.regional-market-grid,
.regional-govsystem-grid,
.regional-values-grid {
    display: grid;
    gap: 11px;
}

.regional-market-grid article,
.regional-govsystem-grid article,
.regional-values-grid article {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.05);
}

.regional-market-grid strong,
.regional-govsystem-grid strong,
.regional-values-grid strong {
    display: block;
    color: var(--green-300);
    font-size: 14px;
}

.regional-market-grid span,
.regional-govsystem-grid span,
.regional-values-grid span {
    display: block;
    margin-top: 5px;
    color: var(--slate-300);
    font-size: 12px;
}

.language-market-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 20px;
}

.language-market-grid article {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    padding: 29px;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.language-code {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 29px;
    border: 1px solid rgba(28,155,107,.22);
    border-radius: 14px;
    color: var(--green-700);
    background: rgba(28,155,107,.07);
    font-size: 13px;
    font-weight: 900;
}

.language-market-grid h3 {
    margin: 0;
    color: var(--navy-950);
    font-size: 23px;
}

.language-market-grid p {
    color: var(--slate-600);
    font-size: 14px;
}

.language-market-grid ul {
    display: grid;
    gap: 8px;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.language-market-grid li {
    position: relative;
    padding-left: 17px;
    color: var(--slate-600);
    font-size: 13px;
}

.language-market-grid li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-500);
}

.localisation-framework-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 11px;
}

.localisation-framework-grid article {
    min-height: 155px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.05);
}

.localisation-framework-grid span {
    color: var(--green-300);
    font-size: 10px;
    font-weight: 900;
}

.localisation-framework-grid strong {
    display: block;
    margin-top: 21px;
    color: var(--white);
    font-size: 15px;
}

.localisation-framework-grid p {
    margin: 5px 0 0;
    color: var(--slate-300);
    font-size: 12px;
}

.border-vision-flow {
    border-top: 1px solid var(--border-light);
}

.border-vision-flow article {
    display: grid;
    grid-template-columns: 52px minmax(0,1fr);
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border-light);
}

.border-vision-flow article > span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(28,155,107,.2);
    border-radius: 10px;
    color: var(--green-700);
    background: rgba(28,155,107,.07);
    font-size: 10px;
    font-weight: 900;
}

.border-vision-flow strong {
    color: var(--navy-950);
    font-size: 17px;
}

.border-vision-flow p {
    margin: 4px 0 0;
    color: var(--slate-600);
    font-size: 13px;
}

.international-partner-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
}

.international-partner-grid article {
    min-height: 235px;
    padding: 27px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--white);
}

.international-partner-grid span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.international-partner-grid h3 {
    margin: 48px 0 11px;
    color: var(--navy-950);
    font-size: 19px;
}

.international-partner-grid p {
    margin: 0;
    color: var(--slate-600);
    font-size: 13px;
}

.regional-growth-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
    list-style: none;
}

.regional-growth-steps li {
    min-height: 235px;
    padding: 25px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.regional-growth-steps li > span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.regional-growth-steps strong {
    display: block;
    margin-top: 48px;
    color: var(--navy-950);
    font-size: 18px;
}

.regional-growth-steps p {
    margin: 8px 0 0;
    color: var(--slate-600);
    font-size: 13px;
}

@media (max-width: 1080px) {
    .regional-hero-layout,
    .regional-market-layout,
    .localisation-framework-layout,
    .regional-govsystem-layout,
    .regional-values-layout {
        grid-template-columns: 1fr;
    }

    .regional-position-panel {
        max-width: 760px;
    }

    .regional-index-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}

@media (max-width: 900px) {
    .regional-intro-layout,
    .border-vision-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .language-market-grid,
    .international-partner-grid,
    .regional-growth-steps {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 680px) {
    .regional-hero-layout {
        min-height: auto;
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .regional-hero-actions {
        flex-direction: column;
    }

    .regional-hero-actions .button {
        width: 100%;
    }

    .regional-index-grid,
    .language-market-grid,
    .international-partner-grid,
    .regional-growth-steps,
    .localisation-framework-grid {
        grid-template-columns: 1fr;
    }

    .regional-index-grid a {
        border-left: 1px solid var(--border-light);
        border-bottom: 1px solid var(--border-light);
    }
}

/* SEYSECURE REGIONAL VISION PAGE END */

/* SEYSECURE PARTNERSHIPS PAGE START */

.partnerships-page-hero {
    position: relative;
    overflow: hidden;
}

.partnerships-grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
    background-size: 54px 54px;
}

.partnerships-hero-layout {
    position: relative;
    z-index: 2;
    min-height: 540px;
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(370px,.7fr);
    align-items: center;
    gap: 76px;
    padding-top: 62px;
    padding-bottom: 62px;
}

.partnerships-hero-summary {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--slate-300);
    font-size: 19px;
    line-height: 1.6;
}

.partnerships-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.partnerships-command-panel {
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 22px;
    background: rgba(255,255,255,.055);
    box-shadow: var(--shadow-lg);
}

.partnerships-command-header {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    color: var(--slate-300);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.partnerships-command-body {
    padding: 10px;
}

.partnerships-command-body article {
    display: grid;
    grid-template-columns: 37px minmax(0,1fr);
    gap: 12px;
    padding: 12px 13px;
}

.partnerships-command-body article + article {
    border-top: 1px solid rgba(255,255,255,.07);
}

.partnerships-command-body article > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 9px;
    color: var(--green-300);
    font-size: 10px;
    font-weight: 900;
}

.partnerships-command-body strong {
    color: var(--white);
    font-size: 14px;
}

.partnerships-command-body p {
    margin: 3px 0 0;
    color: var(--slate-400);
    font-size: 11px;
}

.partnerships-index-section {
    border-bottom: 1px solid var(--border-light);
    background: var(--white);
}

.partnerships-index-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0,1fr));
}

.partnerships-index-grid a {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 17px;
    border-right: 1px solid var(--border-light);
    color: var(--navy-900);
    font-size: 12px;
    font-weight: 800;
}

.partnerships-index-grid a:first-child {
    border-left: 1px solid var(--border-light);
}

.partnerships-index-grid span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.partnerships-intro-layout,
.partnership-delivery-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,.92fr);
    gap: 90px;
}

.partnerships-intro-layout > div:last-child p,
.partnership-delivery-layout > div:first-child > p:not(.section-kicker) {
    color: var(--slate-600);
    font-size: 17px;
}

.partner-type-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 20px;
}

.partner-type-grid article {
    min-height: 410px;
    display: flex;
    flex-direction: column;
    padding: 29px;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.partner-type-grid article > span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.partner-type-grid h3 {
    margin: 44px 0 14px;
    color: var(--navy-950);
    font-size: 21px;
}

.partner-type-grid > article > p {
    color: var(--slate-600);
    font-size: 14px;
}

.partner-type-grid ul {
    display: grid;
    gap: 8px;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.partner-type-grid li {
    position: relative;
    padding-left: 17px;
    color: var(--slate-600);
    font-size: 13px;
}

.partner-type-grid li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-500);
}

.partnership-programme-section,
.technology-partner-section,
.intellectual-property-section,
.partnership-readiness-section {
    color: var(--white);
    background:
        radial-gradient(circle at 82% 20%, rgba(46,117,184,.18), transparent 31%),
        var(--navy-900);
}

.partnership-programme-layout,
.technology-partner-layout,
.intellectual-property-layout,
.partnership-readiness-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(390px,.84fr);
    align-items: center;
    gap: 85px;
}

.partnership-programme-layout h2,
.technology-partner-layout h2,
.intellectual-property-layout h2,
.partnership-readiness-layout h2 {
    color: var(--white);
}

.partnership-programme-layout > div:first-child > p:not(.section-kicker),
.technology-partner-layout > div:first-child > p:not(.section-kicker),
.intellectual-property-layout > div:first-child > p:not(.section-kicker) {
    color: var(--slate-300);
    font-size: 17px;
}

.partnership-programme-grid,
.technology-partner-grid,
.intellectual-property-grid,
.partnership-readiness-grid {
    display: grid;
    gap: 11px;
}

.partnership-programme-grid article,
.technology-partner-grid article,
.intellectual-property-grid article,
.partnership-readiness-grid article {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.05);
}

.partnership-programme-grid strong,
.technology-partner-grid strong,
.intellectual-property-grid strong,
.partnership-readiness-grid strong {
    display: block;
    color: var(--green-300);
    font-size: 14px;
}

.partnership-programme-grid span,
.technology-partner-grid span,
.intellectual-property-grid span,
.partnership-readiness-grid span {
    display: block;
    margin-top: 5px;
    color: var(--slate-300);
    font-size: 12px;
}

.partnership-delivery-flow {
    border-top: 1px solid var(--border-light);
}

.partnership-delivery-flow article {
    display: grid;
    grid-template-columns: 52px minmax(0,1fr);
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border-light);
}

.partnership-delivery-flow article > span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(28,155,107,.2);
    border-radius: 10px;
    color: var(--green-700);
    background: rgba(28,155,107,.07);
    font-size: 10px;
    font-weight: 900;
}

.partnership-delivery-flow strong {
    color: var(--navy-950);
    font-size: 17px;
}

.partnership-delivery-flow p {
    margin: 4px 0 0;
    color: var(--slate-600);
    font-size: 13px;
}

.partnership-principle-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
}

.partnership-principle-grid article {
    min-height: 235px;
    padding: 27px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--white);
}

.partnership-principle-grid span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.partnership-principle-grid h3 {
    margin: 48px 0 11px;
    color: var(--navy-950);
    font-size: 19px;
}

.partnership-principle-grid p {
    margin: 0;
    color: var(--slate-600);
    font-size: 13px;
}

.partnership-engagement-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
    list-style: none;
}

.partnership-engagement-steps li {
    min-height: 235px;
    padding: 25px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.partnership-engagement-steps li > span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.partnership-engagement-steps strong {
    display: block;
    margin-top: 48px;
    color: var(--navy-950);
    font-size: 18px;
}

.partnership-engagement-steps p {
    margin: 8px 0 0;
    color: var(--slate-600);
    font-size: 13px;
}

@media (max-width: 1080px) {
    .partnerships-hero-layout,
    .partnership-programme-layout,
    .technology-partner-layout,
    .intellectual-property-layout,
    .partnership-readiness-layout {
        grid-template-columns: 1fr;
    }

    .partnerships-command-panel {
        max-width: 760px;
    }

    .partnerships-index-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}

@media (max-width: 900px) {
    .partnerships-intro-layout,
    .partnership-delivery-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .partner-type-grid,
    .partnership-principle-grid,
    .partnership-engagement-steps {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 680px) {
    .partnerships-hero-layout {
        min-height: auto;
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .partnerships-hero-actions {
        flex-direction: column;
    }

    .partnerships-hero-actions .button {
        width: 100%;
    }

    .partnerships-index-grid,
    .partner-type-grid,
    .partnership-principle-grid,
    .partnership-engagement-steps {
        grid-template-columns: 1fr;
    }

    .partnerships-index-grid a {
        border-left: 1px solid var(--border-light);
        border-bottom: 1px solid var(--border-light);
    }
}

/* SEYSECURE PARTNERSHIPS PAGE END */

/* SEYSECURE CONTACT PAGE START */

.contact-page-hero {
    position: relative;
    overflow: hidden;
}

.contact-grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
    background-size: 54px 54px;
}

.contact-hero-layout {
    position: relative;
    z-index: 2;
    min-height: 510px;
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(370px,.7fr);
    align-items: center;
    gap: 76px;
    padding-top: 58px;
    padding-bottom: 58px;
}

.contact-hero-summary {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--slate-300);
    font-size: 19px;
    line-height: 1.6;
}

.contact-hero-panel {
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 22px;
    background: rgba(255,255,255,.055);
    box-shadow: var(--shadow-lg);
}

.contact-hero-panel-header {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    color: var(--slate-300);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-hero-panel-body {
    padding: 10px;
}

.contact-hero-panel-body article {
    display: grid;
    grid-template-columns: 37px minmax(0,1fr);
    gap: 12px;
    padding: 12px 13px;
}

.contact-hero-panel-body article + article {
    border-top: 1px solid rgba(255,255,255,.07);
}

.contact-hero-panel-body article > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 9px;
    color: var(--green-300);
    font-size: 10px;
    font-weight: 900;
}

.contact-hero-panel-body strong {
    color: var(--white);
    font-size: 14px;
}

.contact-hero-panel-body p {
    margin: 3px 0 0;
    color: var(--slate-400);
    font-size: 11px;
}

.contact-index-section {
    border-bottom: 1px solid var(--border-light);
    background: var(--white);
}

.contact-index-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
}

.contact-index-grid a {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 17px;
    border-right: 1px solid var(--border-light);
    color: var(--navy-900);
    font-size: 12px;
    font-weight: 800;
}

.contact-index-grid a:first-child {
    border-left: 1px solid var(--border-light);
}

.contact-index-grid span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.contact-main-layout {
    display: grid;
    grid-template-columns: minmax(0,1.3fr) minmax(340px,.7fr);
    align-items: start;
    gap: 42px;
}

.contact-form-panel,
.contact-details-panel {
    border: 1px solid var(--border-light);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.contact-form-panel {
    padding: 42px;
}

.contact-form-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.contact-form-heading p:not(.section-kicker) {
    color: var(--slate-600);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 20px;
}

.contact-field {
    display: grid;
    gap: 8px;
}

.contact-field-full {
    grid-column: 1 / -1;
}

.contact-field label {
    color: var(--navy-900);
    font-size: 13px;
    font-weight: 800;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: var(--surface);
    color: var(--navy-950);
    font: inherit;
    outline: none;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.contact-field input,
.contact-field select {
    min-height: 52px;
    padding: 0 15px;
}

.contact-field textarea {
    min-height: 185px;
    padding: 15px;
    resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: var(--green-500);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(28,155,107,.1);
}

.contact-consent {
    display: grid;
    grid-template-columns: 20px minmax(0,1fr);
    gap: 12px;
    margin-top: 24px;
    color: var(--slate-600);
    font-size: 13px;
    line-height: 1.6;
}

.contact-consent input {
    width: 17px;
    height: 17px;
    margin-top: 3px;
    accent-color: var(--green-700);
}

.contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 28px;
    padding-top: 25px;
    border-top: 1px solid var(--border-light);
}

.contact-form-footer p {
    max-width: 500px;
    margin: 0;
    color: var(--slate-500);
    font-size: 12px;
}

.contact-details-panel {
    position: sticky;
    top: 28px;
    padding: 32px;
}

.contact-details-panel h2 {
    font-size: 30px;
}

.contact-detail-list {
    margin-top: 28px;
    border-top: 1px solid var(--border-light);
}

.contact-detail-list article {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-detail-list span {
    display: block;
    margin-bottom: 6px;
    color: var(--slate-500);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.contact-detail-list strong,
.contact-detail-list a {
    color: var(--navy-950);
    font-size: 14px;
}

.contact-response-notice {
    margin-top: 26px;
    padding: 20px;
    border: 1px solid rgba(28,155,107,.2);
    border-radius: 14px;
    background: rgba(28,155,107,.06);
}

.contact-response-notice strong {
    color: var(--green-800);
    font-size: 14px;
}

.contact-response-notice p {
    margin: 7px 0 0;
    color: var(--slate-600);
    font-size: 12px;
}

.contact-process-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
    list-style: none;
}

.contact-process-steps li {
    min-height: 245px;
    padding: 26px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--white);
}

.contact-process-steps li > span,
.contact-guidance-grid article > span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.contact-process-steps strong {
    display: block;
    margin-top: 48px;
    color: var(--navy-950);
    font-size: 18px;
}

.contact-process-steps p {
    margin: 8px 0 0;
    color: var(--slate-600);
    font-size: 13px;
}

.contact-security-section {
    color: var(--white);
    background:
        radial-gradient(circle at 82% 20%, rgba(46,117,184,.18), transparent 31%),
        var(--navy-900);
}

.contact-security-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(390px,.84fr);
    align-items: center;
    gap: 85px;
}

.contact-security-layout h2 {
    color: var(--white);
}

.contact-security-layout > div:first-child > p:not(.section-kicker) {
    color: var(--slate-300);
    font-size: 17px;
}

.contact-security-grid {
    display: grid;
    gap: 11px;
}

.contact-security-grid article {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.05);
}

.contact-security-grid strong {
    display: block;
    color: var(--green-300);
    font-size: 14px;
}

.contact-security-grid span {
    display: block;
    margin-top: 5px;
    color: var(--slate-300);
    font-size: 12px;
}

.contact-enquiry-guidance {
    background: var(--white);
}

.contact-guidance-layout {
    display: grid;
    grid-template-columns: minmax(0,.72fr) minmax(0,1.28fr);
    gap: 80px;
}

.contact-guidance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
}

.contact-guidance-grid article {
    min-height: 190px;
    padding: 23px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.contact-guidance-grid strong {
    display: block;
    margin-top: 33px;
    color: var(--navy-950);
    font-size: 17px;
}

.contact-guidance-grid p {
    margin: 7px 0 0;
    color: var(--slate-600);
    font-size: 13px;
}

@media (max-width: 1080px) {
    .contact-hero-layout,
    .contact-security-layout {
        grid-template-columns: 1fr;
    }

    .contact-hero-panel {
        max-width: 760px;
    }

    .contact-main-layout {
        grid-template-columns: 1fr;
    }

    .contact-details-panel {
        position: static;
    }
}

@media (max-width: 900px) {
    .contact-process-steps {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .contact-guidance-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

@media (max-width: 680px) {
    .contact-hero-layout {
        min-height: auto;
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .contact-index-grid,
    .contact-form-grid,
    .contact-process-steps,
    .contact-guidance-grid {
        grid-template-columns: 1fr;
    }

    .contact-index-grid a {
        border-left: 1px solid var(--border-light);
        border-bottom: 1px solid var(--border-light);
    }

    .contact-field-full {
        grid-column: auto;
    }

    .contact-form-panel {
        padding: 27px 20px;
    }

    .contact-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-form-footer .button {
        width: 100%;
    }
}

/* SEYSECURE CONTACT PAGE END */

/* SEYSECURE CONTACT BACKEND FEEDBACK START */

.contact-message-stack {
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
}

.contact-message {
    padding: 16px 18px;
    border-radius: 13px;
    font-size: 14px;
    line-height: 1.55;
}

.contact-message p {
    margin: 0;
}

.contact-message-success {
    border: 1px solid rgba(28, 155, 107, 0.28);
    color: #0b6244;
    background: rgba(28, 155, 107, 0.09);
}

.contact-message-error {
    margin-bottom: 22px;
    border: 1px solid rgba(181, 53, 53, 0.28);
    color: #8b2020;
    background: rgba(181, 53, 53, 0.08);
}

.contact-field .errorlist,
.contact-enquiry-form > .errorlist {
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 0;
    color: #a32525;
    font-size: 12px;
    list-style: none;
}

.contact-field:has(.errorlist) input,
.contact-field:has(.errorlist) select,
.contact-field:has(.errorlist) textarea {
    border-color: rgba(181, 53, 53, 0.65);
    background: rgba(181, 53, 53, 0.025);
}

.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* SEYSECURE CONTACT BACKEND FEEDBACK END */

/* SEYSECURE PAGE JUMP CONTROL START */

#enquiry,
#contact-details,
#process,
#security {
    scroll-margin-top: 120px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* SEYSECURE PAGE JUMP CONTROL END */

/* SEYSECURE GLOBAL NAVIGATION CONTROL START */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body,
.site-header,
.corporate-header,
main,
.site-footer {
    transition:
        opacity 140ms ease,
        visibility 140ms ease;
}

html.site-page-leaving body {
    opacity: 0.82;
    pointer-events: none;
}

section[id],
div[id],
aside[id] {
    scroll-margin-top: 120px;
}

@media (max-width: 900px) {
    html {
        scroll-padding-top: 96px;
    }

    section[id],
    div[id],
    aside[id] {
        scroll-margin-top: 96px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    body,
    .site-header,
    .corporate-header,
    main,
    .site-footer {
        transition: none;
    }

    html.site-page-leaving body {
        opacity: 1;
    }
}

/* SEYSECURE GLOBAL NAVIGATION CONTROL END */

/* SEYSECURE PRIVACY PAGE START */

.privacy-page-hero {
    position: relative;
    overflow: hidden;
}

.privacy-grid-overlay {
    position: absolute;
    inset: 0;
    opacity: .05;
    background-image:
        linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
    background-size: 54px 54px;
}

.privacy-hero-layout {
    position: relative;
    z-index: 2;
    min-height: 510px;
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(370px,.7fr);
    align-items: center;
    gap: 76px;
    padding-top: 58px;
    padding-bottom: 58px;
}

.privacy-hero-summary {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--slate-300);
    font-size: 19px;
    line-height: 1.6;
}

.privacy-summary-panel {
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 22px;
    background: rgba(255,255,255,.055);
    box-shadow: var(--shadow-lg);
}

.privacy-summary-header {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    color: var(--slate-300);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.privacy-summary-body {
    padding: 10px;
}

.privacy-summary-body article {
    display: grid;
    grid-template-columns: 37px minmax(0,1fr);
    gap: 12px;
    padding: 12px 13px;
}

.privacy-summary-body article + article {
    border-top: 1px solid rgba(255,255,255,.07);
}

.privacy-summary-body article > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 9px;
    color: var(--green-300);
    font-size: 10px;
    font-weight: 900;
}

.privacy-summary-body strong {
    color: var(--white);
    font-size: 14px;
}

.privacy-summary-body p {
    margin: 3px 0 0;
    color: var(--slate-400);
    font-size: 11px;
}

.privacy-index-section {
    border-bottom: 1px solid var(--border-light);
    background: var(--white);
}

.privacy-index-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0,1fr));
}

.privacy-index-grid a {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 17px;
    border-right: 1px solid var(--border-light);
    color: var(--navy-900);
    font-size: 12px;
    font-weight: 800;
}

.privacy-index-grid a:first-child {
    border-left: 1px solid var(--border-light);
}

.privacy-index-grid span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.privacy-intro-layout,
.privacy-lawful-layout,
.privacy-sharing-layout,
.retention-layout,
.cookie-layout,
.privacy-updates-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,.92fr);
    gap: 90px;
}

.privacy-intro-layout > div:last-child p,
.privacy-lawful-layout > div:first-child > p:not(.section-kicker),
.privacy-sharing-layout > div:first-child > p:not(.section-kicker),
.retention-layout > div:first-child > p:not(.section-kicker),
.cookie-layout > div:last-child p,
.privacy-updates-layout > div:last-child p {
    color: var(--slate-600);
    font-size: 17px;
}

.privacy-information-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
}

.privacy-information-grid article {
    min-height: 225px;
    padding: 27px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--white);
}

.privacy-information-grid span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.privacy-information-grid h3 {
    margin: 46px 0 10px;
    color: var(--navy-950);
    font-size: 19px;
}

.privacy-information-grid p {
    margin: 0;
    color: var(--slate-600);
    font-size: 13px;
}

.privacy-dark-section,
.privacy-security-section,
.privacy-rights-section {
    color: var(--white);
    background:
        radial-gradient(circle at 82% 20%, rgba(46,117,184,.18), transparent 31%),
        var(--navy-900);
}

.privacy-purpose-layout,
.privacy-security-layout,
.privacy-rights-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(390px,.84fr);
    align-items: center;
    gap: 85px;
}

.privacy-purpose-layout h2,
.privacy-security-layout h2,
.privacy-rights-layout h2 {
    color: var(--white);
}

.privacy-purpose-layout > div:first-child > p:not(.section-kicker),
.privacy-security-layout > div:first-child > p:not(.section-kicker),
.privacy-rights-layout > div:first-child > p:not(.section-kicker) {
    color: var(--slate-300);
    font-size: 17px;
}

.privacy-purpose-grid,
.privacy-security-grid {
    display: grid;
    gap: 11px;
}

.privacy-purpose-grid article,
.privacy-security-grid article {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.05);
}

.privacy-purpose-grid strong,
.privacy-security-grid strong {
    display: block;
    color: var(--green-300);
    font-size: 14px;
}

.privacy-purpose-grid span,
.privacy-security-grid span {
    display: block;
    margin-top: 5px;
    color: var(--slate-300);
    font-size: 12px;
}

.privacy-lawful-list,
.retention-flow {
    border-top: 1px solid var(--border-light);
}

.privacy-lawful-list article,
.retention-flow article {
    display: grid;
    grid-template-columns: 52px minmax(0,1fr);
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border-light);
}

.privacy-lawful-list article > span,
.retention-flow article > span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(28,155,107,.2);
    border-radius: 10px;
    color: var(--green-700);
    background: rgba(28,155,107,.07);
    font-size: 10px;
    font-weight: 900;
}

.privacy-lawful-list strong,
.retention-flow strong {
    color: var(--navy-950);
    font-size: 17px;
}

.privacy-lawful-list p,
.retention-flow p {
    margin: 4px 0 0;
    color: var(--slate-600);
    font-size: 13px;
}

.privacy-sharing-grid {
    display: grid;
    gap: 11px;
}

.privacy-sharing-grid article {
    padding: 18px;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    background: var(--white);
}

.privacy-sharing-grid strong {
    display: block;
    color: var(--navy-950);
    font-size: 14px;
}

.privacy-sharing-grid span {
    display: block;
    margin-top: 5px;
    color: var(--slate-600);
    font-size: 12px;
}

.privacy-rights-panel {
    padding: 28px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 18px;
    background: rgba(255,255,255,.055);
}

.privacy-rights-panel strong {
    display: block;
    color: var(--green-300);
    font-size: 15px;
}

.privacy-rights-panel a {
    display: inline-block;
    margin-top: 12px;
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
}

.privacy-rights-panel p {
    margin: 16px 0 0;
    color: var(--slate-300);
    font-size: 13px;
}

@media (max-width: 1080px) {
    .privacy-hero-layout,
    .privacy-purpose-layout,
    .privacy-security-layout,
    .privacy-rights-layout {
        grid-template-columns: 1fr;
    }

    .privacy-summary-panel {
        max-width: 760px;
    }

    .privacy-index-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}

@media (max-width: 900px) {
    .privacy-intro-layout,
    .privacy-lawful-layout,
    .privacy-sharing-layout,
    .retention-layout,
    .cookie-layout,
    .privacy-updates-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .privacy-information-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 680px) {
    .privacy-hero-layout {
        min-height: auto;
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .privacy-index-grid,
    .privacy-information-grid {
        grid-template-columns: 1fr;
    }

    .privacy-index-grid a {
        border-left: 1px solid var(--border-light);
        border-bottom: 1px solid var(--border-light);
    }

    .privacy-rights-panel a {
        font-size: 17px;
        overflow-wrap: anywhere;
    }
}

/* SEYSECURE PRIVACY PAGE END */

/* SEYSECURE DISCLOSURE PAGE START */

.disclosure-page-hero {
    position: relative;
    overflow: hidden;
}

.disclosure-grid-overlay {
    position: absolute;
    inset: 0;
    opacity: .05;
    background-image:
        linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
    background-size: 54px 54px;
}

.disclosure-hero-layout {
    position: relative;
    z-index: 2;
    min-height: 510px;
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(370px,.7fr);
    align-items: center;
    gap: 76px;
    padding-top: 58px;
    padding-bottom: 58px;
}

.disclosure-hero-summary {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--slate-300);
    font-size: 19px;
    line-height: 1.6;
}

.disclosure-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.disclosure-summary-panel {
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 22px;
    background: rgba(255,255,255,.055);
    box-shadow: var(--shadow-lg);
}

.disclosure-summary-header {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    color: var(--slate-300);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.disclosure-summary-body {
    padding: 10px;
}

.disclosure-summary-body article {
    display: grid;
    grid-template-columns: 37px minmax(0,1fr);
    gap: 12px;
    padding: 12px 13px;
}

.disclosure-summary-body article + article {
    border-top: 1px solid rgba(255,255,255,.07);
}

.disclosure-summary-body article > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 9px;
    color: var(--green-300);
    font-size: 10px;
    font-weight: 900;
}

.disclosure-summary-body strong {
    color: var(--white);
    font-size: 14px;
}

.disclosure-summary-body p {
    margin: 3px 0 0;
    color: var(--slate-400);
    font-size: 11px;
}

.disclosure-index-section {
    border-bottom: 1px solid var(--border-light);
    background: var(--white);
}

.disclosure-index-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0,1fr));
}

.disclosure-index-grid a {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 17px;
    border-right: 1px solid var(--border-light);
    color: var(--navy-900);
    font-size: 12px;
    font-weight: 800;
}

.disclosure-index-grid a:first-child {
    border-left: 1px solid var(--border-light);
}

.disclosure-index-grid span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.disclosure-intro-layout,
.disclosure-reporting-layout,
.disclosure-recognition-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,.92fr);
    gap: 90px;
}

.disclosure-intro-layout > div:last-child p,
.disclosure-reporting-layout > div:first-child > p:not(.section-kicker),
.disclosure-recognition-layout > div:first-child > p:not(.section-kicker) {
    color: var(--slate-600);
    font-size: 17px;
}

.disclosure-reporting-panel,
.disclosure-recognition-panel {
    padding: 28px;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.disclosure-reporting-panel strong,
.disclosure-recognition-panel strong {
    display: block;
    color: var(--green-800);
    font-size: 15px;
}

.disclosure-reporting-panel a {
    display: inline-block;
    margin-top: 12px;
    color: var(--navy-950);
    font-size: 22px;
    font-weight: 800;
}

.disclosure-reporting-panel p,
.disclosure-recognition-panel p {
    color: var(--slate-600);
    font-size: 13px;
}

.disclosure-reporting-panel code {
    display: block;
    margin-top: 12px;
    padding: 14px;
    border-radius: 10px;
    color: var(--navy-900);
    background: var(--surface);
    white-space: normal;
}

.disclosure-information-grid,
.disclosure-prohibited-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
}

.disclosure-information-grid article,
.disclosure-prohibited-grid article {
    min-height: 225px;
    padding: 27px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--white);
}

.disclosure-information-grid span,
.disclosure-prohibited-grid span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.disclosure-information-grid h3,
.disclosure-prohibited-grid h3 {
    margin: 46px 0 10px;
    color: var(--navy-950);
    font-size: 19px;
}

.disclosure-information-grid p,
.disclosure-prohibited-grid p {
    margin: 0;
    color: var(--slate-600);
    font-size: 13px;
}

.disclosure-permitted-section,
.disclosure-severity-section,
.disclosure-safe-harbour-section {
    color: var(--white);
    background:
        radial-gradient(circle at 82% 20%, rgba(46,117,184,.18), transparent 31%),
        var(--navy-900);
}

.disclosure-permitted-layout,
.disclosure-severity-layout,
.disclosure-safe-harbour-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(390px,.84fr);
    align-items: center;
    gap: 85px;
}

.disclosure-permitted-layout h2,
.disclosure-severity-layout h2,
.disclosure-safe-harbour-layout h2 {
    color: var(--white);
}

.disclosure-permitted-layout > div:first-child > p:not(.section-kicker),
.disclosure-severity-layout > div:first-child > p:not(.section-kicker),
.disclosure-safe-harbour-layout > div:first-child > p:not(.section-kicker) {
    color: var(--slate-300);
    font-size: 17px;
}

.disclosure-permitted-grid,
.disclosure-severity-grid,
.disclosure-safe-harbour-grid {
    display: grid;
    gap: 11px;
}

.disclosure-permitted-grid article,
.disclosure-severity-grid article,
.disclosure-safe-harbour-grid article {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.05);
}

.disclosure-permitted-grid strong,
.disclosure-severity-grid strong,
.disclosure-safe-harbour-grid strong {
    display: block;
    color: var(--green-300);
    font-size: 14px;
}

.disclosure-permitted-grid span,
.disclosure-severity-grid span,
.disclosure-safe-harbour-grid span {
    display: block;
    margin-top: 5px;
    color: var(--slate-300);
    font-size: 12px;
}

.disclosure-response-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
    list-style: none;
}

.disclosure-response-steps li {
    min-height: 235px;
    padding: 25px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.disclosure-response-steps li > span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
}

.disclosure-response-steps strong {
    display: block;
    margin-top: 48px;
    color: var(--navy-950);
    font-size: 18px;
}

.disclosure-response-steps p {
    margin: 8px 0 0;
    color: var(--slate-600);
    font-size: 13px;
}

@media (max-width: 1080px) {
    .disclosure-hero-layout,
    .disclosure-permitted-layout,
    .disclosure-severity-layout,
    .disclosure-safe-harbour-layout {
        grid-template-columns: 1fr;
    }

    .disclosure-summary-panel {
        max-width: 760px;
    }

    .disclosure-index-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}

@media (max-width: 900px) {
    .disclosure-intro-layout,
    .disclosure-reporting-layout,
    .disclosure-recognition-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .disclosure-information-grid,
    .disclosure-prohibited-grid,
    .disclosure-response-steps {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 680px) {
    .disclosure-hero-layout {
        min-height: auto;
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .disclosure-hero-actions {
        flex-direction: column;
    }

    .disclosure-hero-actions .button {
        width: 100%;
    }

    .disclosure-index-grid,
    .disclosure-information-grid,
    .disclosure-prohibited-grid,
    .disclosure-response-steps {
        grid-template-columns: 1fr;
    }

    .disclosure-index-grid a {
        border-left: 1px solid var(--border-light);
        border-bottom: 1px solid var(--border-light);
    }

    .disclosure-reporting-panel a {
        font-size: 17px;
        overflow-wrap: anywhere;
    }
}

/* SEYSECURE DISCLOSURE PAGE END */

/* SEYSECURE LANGUAGE SWITCHER START */

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 4px 9px;
    border: 1px solid var(--border-light);
    border-radius: 9px;
    background: var(--white);
    box-shadow: 0 4px 14px rgba(7, 20, 38, 0.05);
}

.language-switcher button {
    appearance: none;
    min-width: 27px;
    padding: 3px 4px;
    border: 0;
    border-radius: 5px;
    color: var(--slate-500);
    background: transparent;
    font: inherit;
    font-size: 10px;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition:
        color 140ms ease,
        background 140ms ease;
}

.language-switcher button:hover,
.language-switcher button:focus-visible {
    color: var(--green-800);
    background: rgba(28, 155, 107, 0.08);
    outline: none;
}

.language-switcher button.is-active {
    color: var(--white);
    background: var(--green-700);
}

.language-switcher > span {
    color: var(--slate-300);
    font-size: 9px;
}

@media (max-width: 1050px) {
    .corporate-header-meta {
        flex-wrap: wrap;
    }
}

@media (max-width: 760px) {
    .language-switcher {
        order: 3;
    }
}

/* SEYSECURE LANGUAGE SWITCHER END */

/* SEYSECURE NAVIGATION BUTTON UPGRADE START */

/*
 * Larger, cleaner primary navigation controls.
 * Multiple selectors are included so the rule remains compatible
 * with the current SeySecure header structure.
 */

:is(
    .site-navigation,
    .primary-navigation,
    .main-navigation,
    .site-nav,
    .main-nav
) ul {
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
}

:is(
    .site-navigation,
    .primary-navigation,
    .main-navigation,
    .site-nav,
    .main-nav
) li {
    display: flex;
    align-items: center;
}

:is(
    .site-navigation,
    .primary-navigation,
    .main-navigation,
    .site-nav,
    .main-nav
) a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 7px;

    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    white-space: nowrap;
    text-decoration: none;

    color: #122238;
    background: transparent;

    transition:
        color 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
}

:is(
    .site-navigation,
    .primary-navigation,
    .main-navigation,
    .site-nav,
    .main-nav
) a:hover {
    color: #0b3b32;
    background: #ffffff;
    border-color: #cbd8d5;
    box-shadow: 0 5px 14px rgba(10, 34, 48, 0.08);
    transform: translateY(-1px);
}

:is(
    .site-navigation,
    .primary-navigation,
    .main-navigation,
    .site-nav,
    .main-nav
) a:focus-visible {
    outline: 3px solid rgba(22, 116, 94, 0.24);
    outline-offset: 2px;
    color: #0b3b32;
    background: #ffffff;
    border-color: #398875;
}

:is(
    .site-navigation,
    .primary-navigation,
    .main-navigation,
    .site-nav,
    .main-nav
) a.active,
:is(
    .site-navigation,
    .primary-navigation,
    .main-navigation,
    .site-nav,
    .main-nav
) a[aria-current="page"] {
    color: #ffffff;
    background: #123f38;
    border-color: #123f38;
    box-shadow: 0 5px 13px rgba(10, 52, 45, 0.17);
}

/* Keep longer navigation labels balanced. */
:is(
    .site-navigation,
    .primary-navigation,
    .main-navigation,
    .site-nav,
    .main-nav
) a[href*="regional"],
:is(
    .site-navigation,
    .primary-navigation,
    .main-navigation,
    .site-nav,
    .main-nav
) a[href*="international"] {
    padding-inline: 27px;
}

/* Preserve a compact layout on medium-width screens. */
@media (max-width: 1320px) {
    :is(
        .site-navigation,
        .primary-navigation,
        .main-navigation,
        .site-nav,
        .main-nav
    ) ul {
        gap: 4px;
        padding-inline: 8px;
    }

    :is(
        .site-navigation,
        .primary-navigation,
        .main-navigation,
        .site-nav,
        .main-nav
    ) a {
        min-height: 46px;
        padding-inline: 17px;
        font-size: 14.5px;
    }

    :is(
        .site-navigation,
        .primary-navigation,
        .main-navigation,
        .site-nav,
        .main-nav
    ) a[href*="regional"],
    :is(
        .site-navigation,
        .primary-navigation,
        .main-navigation,
        .site-nav,
        .main-nav
    ) a[href*="international"] {
        padding-inline: 20px;
    }
}

/* Mobile navigation remains full-width and touch friendly. */
@media (max-width: 900px) {
    :is(
        .site-navigation,
        .primary-navigation,
        .main-navigation,
        .site-nav,
        .main-nav
    ) ul {
        align-items: stretch;
        gap: 6px;
        padding: 10px;
    }

    :is(
        .site-navigation,
        .primary-navigation,
        .main-navigation,
        .site-nav,
        .main-nav
    ) li {
        width: 100%;
    }

    :is(
        .site-navigation,
        .primary-navigation,
        .main-navigation,
        .site-nav,
        .main-nav
    ) a {
        width: 100%;
        min-height: 47px;
        justify-content: flex-start;
        padding: 0 16px;
        border-color: #d8e0e5;
        background: #ffffff;
        font-size: 15px;
    }
}

/* SEYSECURE NAVIGATION BUTTON UPGRADE END */

/* FINAL HEADER NAV READABILITY FIX START */

/*
 * Strong final override for the main desktop navigation.
 * The broader selectors ensure compatibility with the current header markup.
 */
header nav a,
.site-header nav a,
.main-header nav a,
.header-navigation a,
.primary-navigation a,
.main-navigation a,
.site-navigation a,
.navbar a,
.main-nav a,
.site-nav a {
    min-height: 54px !important;
    padding: 0 21px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    font-family: inherit !important;
    font-size: 18px !important;
    font-weight: 750 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.015em !important;
    white-space: nowrap !important;

    color: #102238 !important;
    text-decoration: none !important;

    border: 1px solid transparent !important;
    border-radius: 6px !important;
    background-color: transparent !important;

    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease !important;
}

header nav a:hover,
.site-header nav a:hover,
.main-header nav a:hover,
.header-navigation a:hover,
.primary-navigation a:hover,
.main-navigation a:hover,
.site-navigation a:hover,
.navbar a:hover,
.main-nav a:hover,
.site-nav a:hover {
    color: #0b463b !important;
    background-color: #ffffff !important;
    border-color: #c5d3d8 !important;
    box-shadow: 0 5px 14px rgba(15, 34, 51, 0.10) !important;
    transform: translateY(-1px) !important;
}

header nav a:focus-visible,
.site-header nav a:focus-visible,
.main-header nav a:focus-visible,
.header-navigation a:focus-visible,
.primary-navigation a:focus-visible,
.main-navigation a:focus-visible,
.site-navigation a:focus-visible,
.navbar a:focus-visible,
.main-nav a:focus-visible,
.site-nav a:focus-visible {
    outline: 3px solid rgba(24, 113, 91, 0.28) !important;
    outline-offset: 2px !important;
    color: #0b463b !important;
    background-color: #ffffff !important;
    border-color: #367e6c !important;
}

header nav a[aria-current="page"],
.site-header nav a[aria-current="page"],
.main-header nav a[aria-current="page"],
.header-navigation a[aria-current="page"],
.primary-navigation a[aria-current="page"],
.main-navigation a[aria-current="page"],
.site-navigation a[aria-current="page"],
.navbar a[aria-current="page"],
.main-nav a[aria-current="page"],
.site-nav a[aria-current="page"],
header nav a.active,
.site-header nav a.active,
.main-header nav a.active,
.header-navigation a.active,
.primary-navigation a.active,
.main-navigation a.active,
.site-navigation a.active,
.navbar a.active,
.main-nav a.active,
.site-nav a.active {
    color: #ffffff !important;
    background-color: #123f38 !important;
    border-color: #123f38 !important;
    box-shadow: 0 4px 12px rgba(18, 63, 56, 0.18) !important;
}

/* Keep the complete menu fitting cleanly on medium-width screens. */
@media (max-width: 1500px) {
    header nav a,
    .site-header nav a,
    .main-header nav a,
    .header-navigation a,
    .primary-navigation a,
    .main-navigation a,
    .site-navigation a,
    .navbar a,
    .main-nav a,
    .site-nav a {
        min-height: 52px !important;
        padding-inline: 15px !important;
        font-size: 16.5px !important;
    }
}

/* Touch-friendly mobile menu. */
@media (max-width: 900px) {
    header nav a,
    .site-header nav a,
    .main-header nav a,
    .header-navigation a,
    .primary-navigation a,
    .main-navigation a,
    .site-navigation a,
    .navbar a,
    .main-nav a,
    .site-nav a {
        width: 100% !important;
        min-height: 50px !important;
        padding-inline: 17px !important;
        justify-content: flex-start !important;
        font-size: 17px !important;
        background-color: #ffffff !important;
        border-color: #d5dee3 !important;
    }
}

/* FINAL HEADER NAV READABILITY FIX END */

/* LEADERSHIP PROFESSIONAL PORTRAIT START */

.leadership-photo-frame {
    position: relative;
    width: 100%;
    max-width: 465px;
    aspect-ratio: 4 / 5;

    overflow: hidden;
    border: 1px solid rgba(174, 211, 218, 0.22);
    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(20, 78, 72, 0.2),
            rgba(12, 37, 61, 0.72)
        );

    box-shadow:
        0 24px 60px rgba(1, 12, 24, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.leadership-photo-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    border-radius: inherit;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.leadership-photo {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: 50% 18%;

    filter:
        saturate(0.96)
        contrast(1.02);

    transform: scale(1.01);
}

.leadership-profile {
    align-items: flex-start;
}

.leadership-identity {
    width: 100%;
    max-width: 520px;
}

@media (max-width: 1100px) {
    .leadership-photo-frame {
        max-width: 420px;
        border-radius: 24px;
    }
}

@media (max-width: 900px) {
    .leadership-photo-frame {
        max-width: 520px;
        margin-inline: auto;
        border-radius: 22px;
    }

    .leadership-identity {
        max-width: 520px;
        margin-inline: auto;
        text-align: left;
    }
}

@media (max-width: 560px) {
    .leadership-photo-frame {
        border-radius: 18px;
    }
}

/* LEADERSHIP PROFESSIONAL PORTRAIT END */

/* FINAL LEADERSHIP PORTRAIT AND NAME REFINEMENT START */

/*
 * Compact executive portrait.
 */
.leadership-photo-frame {
    width: 100% !important;
    max-width: 360px !important;
    aspect-ratio: 4 / 5 !important;
    margin: 0 !important;

    overflow: hidden !important;
    border-radius: 22px !important;

    box-shadow:
        0 18px 44px rgba(0, 12, 28, 0.22) !important;
}

.leadership-photo {
    width: 100% !important;
    height: 100% !important;

    display: block !important;
    object-fit: cover !important;
    object-position: 50% 18% !important;

    transform: none !important;
}

/*
 * Professional identity spacing.
 */
.leadership-profile {
    align-items: flex-start !important;
}

.leadership-identity {
    width: 100% !important;
    max-width: 420px !important;
    margin-top: 28px !important;
}

/*
 * Professional name presentation.
 */
.leadership-name,
.leadership-identity h1,
.leadership-identity h2,
.leadership-identity h3,
.leadership-profile h1,
.leadership-profile h2,
.leadership-profile h3 {
    max-width: 420px !important;
    margin: 0 0 8px !important;

    font-size: clamp(1.8rem, 2.2vw, 2.45rem) !important;
    font-weight: 750 !important;
    line-height: 1.08 !important;
    letter-spacing: -0.035em !important;

    color: #ffffff !important;
    white-space: normal !important;
    text-wrap: balance !important;
}

/*
 * Founder title.
 */
.leadership-role,
.leadership-identity h1 + p,
.leadership-identity h2 + p,
.leadership-identity h3 + p {
    margin: 0 !important;

    font-size: 1.05rem !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;

    color: #62e3b4 !important;
}

@media (max-width: 1200px) {
    .leadership-photo-frame {
        max-width: 330px !important;
    }

    .leadership-name,
    .leadership-identity h1,
    .leadership-identity h2,
    .leadership-identity h3,
    .leadership-profile h1,
    .leadership-profile h2,
    .leadership-profile h3 {
        font-size: clamp(1.75rem, 2.8vw, 2.2rem) !important;
    }
}

@media (max-width: 900px) {
    .leadership-photo-frame {
        max-width: 340px !important;
        margin-inline: auto !important;
    }

    .leadership-identity {
        max-width: 420px !important;
        margin: 24px auto 0 !important;
        text-align: center !important;
    }

    .leadership-name,
    .leadership-identity h1,
    .leadership-identity h2,
    .leadership-identity h3,
    .leadership-profile h1,
    .leadership-profile h2,
    .leadership-profile h3 {
        max-width: 100% !important;
        font-size: clamp(1.75rem, 7vw, 2.2rem) !important;
        text-align: center !important;
    }
}

@media (max-width: 520px) {
    .leadership-photo-frame {
        max-width: 290px !important;
        border-radius: 18px !important;
    }

    .leadership-name,
    .leadership-identity h1,
    .leadership-identity h2,
    .leadership-identity h3,
    .leadership-profile h1,
    .leadership-profile h2,
    .leadership-profile h3 {
        font-size: 1.8rem !important;
    }
}

/* FINAL LEADERSHIP PORTRAIT AND NAME REFINEMENT END */

/* COMPACT PROFESSIONAL LEADERSHIP STYLE START */

/*
 * Compact executive portrait.
 */
.leadership-photo-frame {
    width: 100% !important;
    max-width: 285px !important;
    aspect-ratio: 4 / 5 !important;

    margin: 0 !important;
    overflow: hidden !important;

    border: 1px solid rgba(176, 209, 216, 0.2) !important;
    border-radius: 18px !important;

    box-shadow:
        0 14px 34px rgba(0, 12, 28, 0.22) !important;
}

.leadership-photo {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: 50% 16% !important;

    transform: none !important;
}

/*
 * Keep the left column compact and balanced.
 */
.leadership-profile {
    align-items: flex-start !important;
}

.leadership-identity {
    width: 100% !important;
    max-width: 390px !important;
    margin-top: 24px !important;
}

/*
 * Refined handwritten name style.
 * Uses system fonts only, with professional fallbacks.
 */
.leadership-name,
.leadership-identity h1,
.leadership-identity h2,
.leadership-identity h3 {
    max-width: 390px !important;
    margin: 0 0 10px !important;

    font-family:
        "Segoe Script",
        "Bradley Hand",
        "Brush Script MT",
        "Lucida Handwriting",
        cursive !important;

    font-size: clamp(2rem, 2.7vw, 2.75rem) !important;
    font-weight: 600 !important;
    font-style: normal !important;
    line-height: 1.05 !important;
    letter-spacing: 0.005em !important;

    color: #ffffff !important;
    white-space: normal !important;
    text-wrap: balance !important;

    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.18) !important;
}

/*
 * Professional role styling.
 */
.leadership-role,
.leadership-identity h1 + p,
.leadership-identity h2 + p,
.leadership-identity h3 + p {
    margin: 0 !important;

    font-size: 1rem !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    letter-spacing: 0.01em !important;

    color: #62e3b4 !important;
}

/*
 * Leadership label spacing.
 */
.leadership-identity .section-kicker,
.leadership-profile .section-kicker {
    margin-bottom: 18px !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.18em !important;
}

/*
 * Medium screens.
 */
@media (max-width: 1200px) {
    .leadership-photo-frame {
        max-width: 265px !important;
    }

    .leadership-name,
    .leadership-identity h1,
    .leadership-identity h2,
    .leadership-identity h3 {
        font-size: clamp(1.9rem, 3vw, 2.4rem) !important;
    }
}

/*
 * Tablet and mobile.
 */
@media (max-width: 900px) {
    .leadership-photo-frame {
        max-width: 280px !important;
        margin-inline: auto !important;
    }

    .leadership-identity {
        max-width: 390px !important;
        margin: 22px auto 0 !important;
        text-align: center !important;
    }

    .leadership-name,
    .leadership-identity h1,
    .leadership-identity h2,
    .leadership-identity h3 {
        max-width: 100% !important;
        text-align: center !important;
        font-size: clamp(2rem, 8vw, 2.55rem) !important;
    }

    .leadership-role,
    .leadership-identity h1 + p,
    .leadership-identity h2 + p,
    .leadership-identity h3 + p {
        text-align: center !important;
    }
}

@media (max-width: 520px) {
    .leadership-photo-frame {
        max-width: 235px !important;
        border-radius: 15px !important;
    }

    .leadership-name,
    .leadership-identity h1,
    .leadership-identity h2,
    .leadership-identity h3 {
        font-size: 2rem !important;
    }
}

/* COMPACT PROFESSIONAL LEADERSHIP STYLE END */

/* EXECUTIVE SIGNATURE TYPOGRAPHY START */

/*
 * Remove the previous oversized casual handwriting treatment.
 */
.leadership-name,
.leadership-identity h1,
.leadership-identity h2,
.leadership-identity h3 {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;

    max-width: 390px !important;
    margin: 0 0 11px !important;

    font-family: inherit !important;
    font-size: initial !important;
    font-style: normal !important;
    font-weight: initial !important;
    line-height: initial !important;
    letter-spacing: initial !important;

    color: #ffffff !important;
    text-shadow: none !important;
}

/*
 * Elegant executive signature:
 * a controlled calligraphic style rather than casual handwriting.
 */
.leadership-signature-name {
    display: block;

    font-family:
        "Monotype Corsiva",
        "Edwardian Script ITC",
        "Palace Script MT",
        "Kunstler Script",
        "Apple Chancery",
        "URW Chancery L",
        "Lucida Calligraphy",
        Georgia,
        serif !important;

    font-size: clamp(2.35rem, 3vw, 3.15rem) !important;
    font-weight: 500 !important;
    font-style: italic !important;
    line-height: 0.98 !important;
    letter-spacing: 0.015em !important;

    color: #ffffff !important;

    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.2) !important;
}

/*
 * Qualifications remain clean and authoritative.
 */
.leadership-credentials {
    display: inline-flex;
    align-items: center;

    margin-top: 11px;
    padding: 5px 11px;

    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif !important;

    font-size: 0.88rem !important;
    font-weight: 750 !important;
    font-style: normal !important;
    line-height: 1 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase;

    color: #9ee8d1 !important;

    border: 1px solid rgba(98, 227, 180, 0.32);
    border-radius: 999px;
    background: rgba(98, 227, 180, 0.08);
}

/*
 * Keep the role clear and visually subordinate.
 */
.leadership-role,
.leadership-identity h1 + p,
.leadership-identity h2 + p,
.leadership-identity h3 + p {
    margin-top: 4px !important;

    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif !important;

    font-size: 1rem !important;
    font-weight: 700 !important;
    font-style: normal !important;
    letter-spacing: 0 !important;

    color: #62e3b4 !important;
}

@media (max-width: 1200px) {
    .leadership-signature-name {
        font-size: clamp(2.15rem, 3.4vw, 2.8rem) !important;
    }
}

@media (max-width: 900px) {
    .leadership-name,
    .leadership-identity h1,
    .leadership-identity h2,
    .leadership-identity h3 {
        align-items: center !important;
        text-align: center !important;
    }

    .leadership-signature-name {
        font-size: clamp(2.25rem, 9vw, 2.9rem) !important;
        text-align: center !important;
    }
}

@media (max-width: 520px) {
    .leadership-signature-name {
        font-size: 2.2rem !important;
    }

    .leadership-credentials {
        font-size: 0.78rem !important;
    }
}

/* EXECUTIVE SIGNATURE TYPOGRAPHY END */

/* MSC CREDENTIAL CAPITALISATION FIX START */

.leadership-credentials {
    text-transform: none !important;
    letter-spacing: 0.08em !important;
}

/* MSC CREDENTIAL CAPITALISATION FIX END */

/* ABOUT US PROFESSIONAL WELCOME START */

.about-welcome-section {
    position: relative;
    padding: 72px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(33, 151, 121, 0.09),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5f8f8 100%
        );

    border-bottom: 1px solid #dbe4e7;
}

.about-welcome-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #113d38,
            #35a987,
            #113d38
        );
}

.about-welcome-layout {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: clamp(48px, 7vw, 110px);
    align-items: start;
}

.about-welcome-heading {
    max-width: 560px;
}

.about-welcome-heading h2 {
    max-width: 560px;
    margin: 14px 0 0;

    font-size: clamp(2.05rem, 3.1vw, 3.3rem);
    font-weight: 760;
    line-height: 1.08;
    letter-spacing: -0.038em;

    color: #10263b;
    text-wrap: balance;
}

.about-welcome-copy {
    max-width: 720px;
}

.about-welcome-copy p {
    margin: 0 0 20px;

    font-size: 1.075rem;
    line-height: 1.8;

    color: #45596a;
}

.about-welcome-copy .about-welcome-introduction {
    font-size: 1.18rem;
    font-weight: 550;
    line-height: 1.75;

    color: #1c3649;
}

.about-welcome-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 32px;
}

.about-welcome-actions .button {
    min-height: 48px;
}

@media (max-width: 1000px) {
    .about-welcome-section {
        padding: 60px 0;
    }

    .about-welcome-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-welcome-heading,
    .about-welcome-heading h2,
    .about-welcome-copy {
        max-width: 780px;
    }
}

@media (max-width: 640px) {
    .about-welcome-section {
        padding: 48px 0;
    }

    .about-welcome-heading h2 {
        font-size: clamp(1.85rem, 9vw, 2.45rem);
    }

    .about-welcome-copy p,
    .about-welcome-copy .about-welcome-introduction {
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-welcome-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-welcome-actions .button {
        width: 100%;
        justify-content: center;
    }
}

/* ABOUT US PROFESSIONAL WELCOME END */

/* WEBSITE PAGE CMS INTRODUCTION START */

.cms-page-introduction {
    position: relative;
    padding: 68px 0;

    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(40, 163, 128, 0.08),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #ffffff,
            #f4f8f7
        );

    border-bottom: 1px solid #dbe5e6;
}

.cms-page-introduction-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: clamp(42px, 7vw, 100px);
    align-items: start;
}

.cms-page-introduction-heading h2 {
    max-width: 620px;
    margin: 14px 0 0;

    font-size: clamp(2rem, 3vw, 3.15rem);
    font-weight: 760;
    line-height: 1.09;
    letter-spacing: -0.035em;

    color: #10283b;
    text-wrap: balance;
}

.cms-page-introduction-content {
    max-width: 760px;
}

.cms-page-introduction-content p {
    margin: 0 0 19px;

    font-size: 1.08rem;
    line-height: 1.8;

    color: #415768;
}

.cms-page-introduction-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .cms-page-introduction {
        padding: 56px 0;
    }

    .cms-page-introduction-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 600px) {
    .cms-page-introduction {
        padding: 46px 0;
    }

    .cms-page-introduction-content p {
        font-size: 1rem;
        line-height: 1.72;
    }
}

/* WEBSITE PAGE CMS INTRODUCTION END */

/* PUBLIC NEWS AND MEDIA CENTRE START */

.publishing-page-hero,
.article-header,
.gallery-detail-hero {
    position: relative;
    padding: 88px 0;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 86% 18%,
            rgba(48, 196, 151, 0.18),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #061b2d 0%,
            #0b3441 55%,
            #0d554b 100%
        );
}

.publishing-hero-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(280px, 0.75fr);

    gap: 70px;
    align-items: center;
}

.publishing-page-hero h1,
.article-header h1,
.gallery-detail-hero h1 {
    max-width: 880px;
    margin: 14px 0 20px;

    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.045em;

    color: #ffffff;
}

.publishing-hero-summary,
.article-lead,
.gallery-detail-hero p {
    max-width: 780px;

    font-size: 1.15rem;
    line-height: 1.75;

    color: rgba(255, 255, 255, 0.82);
}

.publishing-hero-actions {
    margin-top: 30px;
}

.publishing-hero-panel {
    padding: 32px;

    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
}

.publishing-hero-panel span {
    display: block;
    margin-bottom: 18px;

    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    color: #63e2b7;
}

.publishing-hero-panel strong {
    display: block;

    font-size: 1.55rem;
    line-height: 1.25;
}

.publishing-filter-section {
    padding: 30px 0;

    background: #f3f7f6;
    border-bottom: 1px solid #dce6e5;
}

.publishing-filter-form {
    display: grid;
    grid-template-columns:
        minmax(220px, 1.5fr)
        minmax(170px, 0.8fr)
        minmax(170px, 0.8fr)
        auto;

    gap: 16px;
    align-items: end;
}

.publishing-filter-form label {
    display: block;
    margin-bottom: 7px;

    font-size: 0.8rem;
    font-weight: 800;

    color: #24394a;
}

.publishing-filter-form input,
.publishing-filter-form select {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;

    border: 1px solid #cbd8db;
    border-radius: 9px;

    background: #ffffff;
    color: #173144;
}

.news-card-grid,
.gallery-card-grid,
.homepage-news-grid,
.related-news-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}

.news-public-card,
.public-gallery-card,
.homepage-news-card,
.related-news-card {
    overflow: hidden;

    border: 1px solid #dce5e6;
    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 12px 30px rgba(8, 32, 48, 0.07);
}

.news-card-image-link,
.public-gallery-card > a,
.homepage-news-card > a {
    display: block;
}

.news-public-card img,
.public-gallery-card img,
.homepage-news-card img,
.related-news-card img {
    display: block;

    width: 100%;
    height: 230px;

    object-fit: cover;
}

.news-card-content,
.gallery-card-content,
.homepage-news-card > div,
.related-news-card > div {
    padding: 24px;
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    gap: 18px;

    margin-bottom: 14px;

    font-size: 0.78rem;
    font-weight: 800;

    color: #2b806c;
}

.news-public-card h2,
.public-gallery-card h2 {
    margin: 0 0 14px;

    font-size: 1.42rem;
    line-height: 1.25;
}

.news-public-card h2 a,
.public-gallery-card h2 a,
.homepage-news-card h3 a,
.related-news-card h3 a {
    color: #102a3d;
    text-decoration: none;
}

.news-public-card p,
.public-gallery-card p,
.homepage-news-card p,
.related-news-card p {
    color: #526575;
    line-height: 1.65;
}

.news-read-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;

    margin-top: 8px;

    font-weight: 800;
    color: #137b65;
    text-decoration: none;
}

.publishing-empty-state {
    grid-column: 1 / -1;

    padding: 60px 30px;
    text-align: center;

    border: 1px dashed #b8caca;
    border-radius: 16px;

    background: #f7faf9;
}

.publishing-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;

    margin-top: 44px;
}

.publishing-pagination a {
    font-weight: 800;
    color: #146f5d;
}

.article-back-link {
    display: inline-flex;
    margin-bottom: 26px;

    color: #77e9c3;
    font-weight: 800;
    text-decoration: none;
}

.article-meta {
    display: flex;
    gap: 22px;

    font-size: 0.86rem;
    font-weight: 800;

    color: #71dfbc;
}

.article-content-layout {
    max-width: 980px;
    padding-top: 58px;
    padding-bottom: 72px;
}

.article-featured-image {
    margin: 0 0 48px;
}

.article-featured-image img {
    display: block;

    width: 100%;
    max-height: 610px;

    object-fit: cover;
    border-radius: 18px;
}

.article-featured-image figcaption {
    margin-top: 10px;

    color: #667886;
    font-size: 0.85rem;
}

.article-body {
    max-width: 800px;
    margin-inline: auto;
}

.article-body p {
    margin: 0 0 25px;

    font-size: 1.09rem;
    line-height: 1.85;

    color: #2f4555;
}

.related-news-section {
    border-top: 1px solid #dce5e6;
}

.gallery-detail-hero time {
    display: block;
    margin-bottom: 14px;

    color: #70dfbc;
    font-weight: 800;
}

.gallery-photo-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}

.gallery-photo-card {
    overflow: hidden;
    margin: 0;

    border: 1px solid #dce5e6;
    border-radius: 14px;

    background: #ffffff;
}

.gallery-photo-card img {
    display: block;

    width: 100%;
    height: 280px;

    object-fit: cover;
}

.gallery-photo-card figcaption {
    padding: 16px 18px;

    color: #435969;
}

.gallery-photo-card figcaption p {
    margin: 0 0 6px;
}

.homepage-news-section {
    background:
        linear-gradient(
            180deg,
            #f6f9f8,
            #ffffff
        );

    border-top: 1px solid #e0e8e8;
}

.homepage-news-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 36px;

    margin-bottom: 34px;
}

.homepage-news-heading h2 {
    margin: 10px 0;

    font-size: clamp(2rem, 3vw, 3.1rem);
    color: #102b3e;
}

.homepage-news-heading p {
    max-width: 670px;
    color: #526676;
}

.homepage-news-category {
    display: block;
    margin-bottom: 10px;

    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #187a65;
}

@media (max-width: 1000px) {
    .publishing-hero-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .publishing-filter-form {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .news-card-grid,
    .gallery-card-grid,
    .homepage-news-grid,
    .related-news-grid,
    .gallery-photo-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .publishing-page-hero,
    .article-header,
    .gallery-detail-hero {
        padding: 64px 0;
    }

    .publishing-filter-form,
    .news-card-grid,
    .gallery-card-grid,
    .homepage-news-grid,
    .related-news-grid,
    .gallery-photo-grid {
        grid-template-columns: 1fr;
    }

    .homepage-news-heading {
        display: block;
    }

    .homepage-news-heading .button {
        margin-top: 22px;
    }

    .news-public-card img,
    .public-gallery-card img,
    .homepage-news-card img {
        height: 220px;
    }

    .gallery-photo-card img {
        height: 250px;
    }
}

/* PUBLIC NEWS AND MEDIA CENTRE END */

/* COMPACT NEWS HERO START */

.publishing-page-hero {
    padding: 22px 0 18px !important;
    min-height: 0 !important;
}

.publishing-hero-layout {
    grid-template-columns:
        minmax(0, 1fr)
        minmax(220px, 320px) !important;

    gap: 28px !important;
    align-items: center !important;
}

.publishing-page-hero .section-kicker {
    margin-bottom: 8px !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.16em !important;
}

.publishing-page-hero h1 {
    max-width: 760px !important;
    margin: 6px 0 10px !important;

    font-size: clamp(2rem, 3.2vw, 3.4rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.04em !important;
}

.publishing-hero-summary {
    max-width: 760px !important;
    margin: 0 !important;

    font-size: 0.98rem !important;
    line-height: 1.55 !important;
}

.publishing-hero-actions {
    margin-top: 16px !important;
}

.publishing-hero-actions .button {
    min-height: 40px !important;
    padding: 9px 16px !important;
    font-size: 0.88rem !important;
}

.publishing-hero-panel {
    padding: 18px 20px !important;
    border-radius: 14px !important;
}

.publishing-hero-panel span {
    margin-bottom: 9px !important;
    font-size: 0.68rem !important;
}

.publishing-hero-panel strong {
    font-size: 1.05rem !important;
    line-height: 1.28 !important;
}

.publishing-hero-panel p {
    margin: 10px 0 0 !important;
    font-size: 0.86rem !important;
    line-height: 1.45 !important;
}

.publishing-filter-section {
    padding: 14px 0 !important;
}

.publishing-filter-form {
    gap: 10px !important;
}

.publishing-filter-form input,
.publishing-filter-form select {
    min-height: 40px !important;
}

.publishing-filter-form .button {
    min-height: 40px !important;
    padding: 9px 15px !important;
}

.publishing-filter-section + .section,
.publishing-filter-section + .section.section-light {
    padding-top: 22px !important;
}

.news-card-grid {
    margin-top: 0 !important;
}

@media (max-width: 1000px) {
    .publishing-page-hero {
        padding: 20px 0 16px !important;
    }

    .publishing-hero-layout {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .publishing-hero-panel {
        max-width: 520px !important;
    }
}

@media (max-width: 680px) {
    .publishing-page-hero {
        padding: 18px 0 14px !important;
    }

    .publishing-page-hero h1 {
        font-size: 2rem !important;
    }

    .publishing-hero-summary {
        font-size: 0.92rem !important;
    }

    .publishing-hero-panel {
        display: none !important;
    }

    .publishing-filter-section {
        padding: 12px 0 !important;
    }

    .publishing-filter-section + .section,
    .publishing-filter-section + .section.section-light {
        padding-top: 18px !important;
    }
}

/* COMPACT NEWS HERO END */

/* ULTRA COMPACT NEWS HERO START */

.publishing-page-hero {
    padding: 10px 0 9px !important;
    min-height: 0 !important;
}

.publishing-hero-layout {
    display: block !important;
}

.publishing-page-hero .section-kicker {
    margin: 0 0 4px !important;

    font-size: 0.62rem !important;
    line-height: 1.2 !important;
    letter-spacing: 0.14em !important;
}

.publishing-page-hero h1 {
    max-width: 920px !important;
    margin: 0 0 5px !important;

    font-size: clamp(1.45rem, 2.2vw, 2.25rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.035em !important;
}

.publishing-hero-summary {
    max-width: 980px !important;
    margin: 0 !important;

    font-size: 0.82rem !important;
    line-height: 1.4 !important;
}

.publishing-hero-actions {
    margin-top: 8px !important;
}

.publishing-hero-actions .button {
    min-height: 32px !important;
    padding: 6px 11px !important;

    font-size: 0.76rem !important;
    border-radius: 8px !important;
}

.publishing-hero-panel {
    display: none !important;
}

.publishing-filter-section {
    padding: 8px 0 !important;
}

.publishing-filter-form {
    gap: 8px !important;
}

.publishing-filter-form label {
    margin-bottom: 3px !important;
    font-size: 0.68rem !important;
}

.publishing-filter-form input,
.publishing-filter-form select {
    min-height: 34px !important;
    padding: 0 10px !important;

    font-size: 0.82rem !important;
}

.publishing-filter-form .button {
    min-height: 34px !important;
    padding: 6px 12px !important;

    font-size: 0.78rem !important;
}

.publishing-filter-section + .section,
.publishing-filter-section + .section.section-light {
    padding-top: 12px !important;
}

.news-card-grid {
    margin-top: 0 !important;
}

@media (max-width: 900px) {
    .publishing-page-hero {
        padding: 9px 0 8px !important;
    }

    .publishing-page-hero h1 {
        font-size: 1.65rem !important;
    }

    .publishing-filter-form {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 600px) {
    .publishing-page-hero {
        padding: 8px 0 7px !important;
    }

    .publishing-page-hero h1 {
        font-size: 1.45rem !important;
    }

    .publishing-hero-summary {
        font-size: 0.76rem !important;
    }

    .publishing-filter-form {
        grid-template-columns: 1fr !important;
    }
}

/* ULTRA COMPACT NEWS HERO END */

/* NEWS GRID WIDTH FIX START */

.news-card-grid {
    display: grid !important;
    grid-template-columns:
        repeat(3, minmax(0, 1fr)) !important;

    gap: 26px !important;
    align-items: stretch !important;

    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

.news-public-card {
    display: flex !important;
    flex-direction: column !important;

    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 100% !important;

    margin: 0 !important;
}

.news-card-image-link {
    width: 100% !important;
}

.news-public-card img {
    width: 100% !important;
    height: 225px !important;

    object-fit: cover !important;
}

.news-card-content {
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;

    width: 100% !important;
}

.news-card-content .news-read-link {
    margin-top: auto !important;
    padding-top: 16px !important;
}

/*
 * Ensure the news results container uses the available page width.
 */
.publishing-filter-section + .section .container,
.publishing-filter-section + .section.section-light .container {
    width: min(100% - 40px, 1560px) !important;
    max-width: 1560px !important;
}

@media (max-width: 1100px) {
    .news-card-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 680px) {
    .news-card-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .news-public-card img {
        height: 215px !important;
    }

    .publishing-filter-section + .section .container,
    .publishing-filter-section + .section.section-light .container {
        width: min(100% - 28px, 1560px) !important;
    }
}

/* NEWS GRID WIDTH FIX END */

/* =========================================================
   Compact homepage capability framework
   ========================================================= */

.hero-command-panel {
    align-self: center;
    border-radius: 18px;
}

.command-panel-header {
    min-height: 40px;
    padding: 0 14px;
    gap: 10px;
    font-size: 9px;
}

.command-panel-body {
    padding: 6px;
}

.capability-node {
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    padding: 7px 10px;
    border-radius: 10px;
}

.capability-node + .capability-node {
    margin-top: 1px;
}

.node-number {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    font-size: 9px;
}

.capability-node strong {
    font-size: 12px;
    line-height: 1.2;
}

.capability-node p {
    margin: 2px 0 0;
    font-size: 10px;
    line-height: 1.25;
}


/* Compact homepage hero section */
.hero-layout {
    min-height: 360px !important;
    gap: 40px !important;
    padding-top: 32px !important;
    padding-bottom: 32px !important;
}

.hero-content h1 {
    font-size: clamp(38px, 4.2vw, 56px) !important;
}

.hero-summary {
    margin-top: 14px !important;
    font-size: clamp(16px, 1.45vw, 18px) !important;
    line-height: 1.45 !important;
}

.hero-actions {
    margin-top: 18px !important;
}

.hero-trust-row {
    margin-top: 20px !important;
}

.hero-command-panel {
    align-self: center !important;
    height: auto !important;
}


/* =========================================================
   HALF-HEIGHT HERO DESIGN — ALL INTERNAL PAGES
   Homepage and About Us are intentionally excluded.
   ========================================================= */

/* Reduce the outer blue hero area */
.page-hero:not(.company-page-hero) {
    min-height: 0 !important;
    padding-top: 28px !important;
    padding-bottom: 28px !important;
}

/* Reduce every internal-page hero layout */
.page-hero:not(.company-page-hero) .container,
.solutions-hero-layout,
.govsystem-page-hero-layout,
.cybersecurity-hero-layout,
.infrastructure-hero-layout,
.hosting-hero-layout,
.regional-hero-layout,
.partnerships-hero-layout,
.contact-hero-layout,
.privacy-hero-layout,
.disclosure-hero-layout,
.publishing-hero-layout {
    min-height: 0 !important;
}

/* Compact two-column hero layouts */
.solutions-hero-layout,
.govsystem-page-hero-layout,
.cybersecurity-hero-layout,
.infrastructure-hero-layout,
.hosting-hero-layout,
.regional-hero-layout,
.partnerships-hero-layout,
.contact-hero-layout,
.privacy-hero-layout,
.disclosure-hero-layout,
.publishing-hero-layout {
    gap: 32px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    align-items: center !important;
}

/* Reduce internal-page hero headings */
.page-hero:not(.company-page-hero) h1 {
    margin-top: 8px !important;
    margin-bottom: 0 !important;
    font-size: clamp(34px, 3.8vw, 52px) !important;
    line-height: 1.02 !important;
}

/* Reduce hero summaries */
.page-hero:not(.company-page-hero) p:last-child,
.solutions-hero-summary,
.cybersecurity-hero-summary,
.infrastructure-hero-summary,
.hosting-hero-summary,
.regional-hero-summary,
.partnerships-hero-summary,
.contact-hero-summary,
.privacy-hero-summary,
.disclosure-hero-summary,
.publishing-hero-summary {
    margin-top: 12px !important;
    font-size: clamp(15px, 1.25vw, 18px) !important;
    line-height: 1.45 !important;
}

/* Reduce hero action spacing and button height */
.solutions-hero-actions,
.cybersecurity-hero-actions,
.infrastructure-hero-actions,
.hosting-hero-actions,
.regional-hero-actions,
.partnerships-hero-actions,
.disclosure-hero-actions,
.publishing-hero-actions {
    margin-top: 16px !important;
    gap: 10px !important;
}

.page-hero:not(.company-page-hero) .button {
    min-height: 46px !important;
    padding: 11px 18px !important;
}

/* Compact right-side hero panels */
.contact-hero-panel,
.publishing-hero-panel {
    align-self: center !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 18px !important;
}

/* Prevent decorative grids from forcing hero height */
.page-hero:not(.company-page-hero) > div[class*="grid"] {
    min-height: 0 !important;
}

/* Tablet and mobile */
@media (max-width: 1120px) {
    .page-hero:not(.company-page-hero) {
        padding-top: 24px !important;
        padding-bottom: 24px !important;
    }

    .solutions-hero-layout,
    .govsystem-page-hero-layout,
    .cybersecurity-hero-layout,
    .infrastructure-hero-layout,
    .hosting-hero-layout,
    .regional-hero-layout,
    .partnerships-hero-layout,
    .contact-hero-layout,
    .privacy-hero-layout,
    .disclosure-hero-layout,
    .publishing-hero-layout {
        gap: 22px !important;
    }
}

@media (max-width: 680px) {
    .page-hero:not(.company-page-hero) {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .page-hero:not(.company-page-hero) h1 {
        font-size: clamp(30px, 10vw, 42px) !important;
    }
}

/* HALF-HEIGHT INTERNAL PAGE HEROES END */


/* =========================================================
   TRUE HALF-HEIGHT INTERNAL HEROES
   Match the compact International Vision hero
   ========================================================= */

.solutions-page-hero,
.govsystem-page-hero,
.cybersecurity-page-hero,
.infrastructure-page-hero,
.hosting-page-hero,
.partnerships-page-hero,
.contact-page-hero {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 28px !important;
    padding-bottom: 28px !important;
}

.solutions-hero-layout,
.govsystem-page-hero-layout,
.cybersecurity-hero-layout,
.infrastructure-hero-layout,
.hosting-hero-layout,
.partnerships-hero-layout,
.contact-hero-layout {
    min-height: 300px !important;
    height: auto !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    gap: 32px !important;
    align-items: center !important;
}

/* Prevent the columns and panels from stretching the hero */
.solutions-hero-layout > *,
.govsystem-page-hero-layout > *,
.cybersecurity-hero-layout > *,
.infrastructure-hero-layout > *,
.hosting-hero-layout > *,
.partnerships-hero-layout > *,
.contact-hero-layout > * {
    min-height: 0 !important;
    height: auto !important;
}

/* Compact hero headings */
.solutions-page-hero h1,
.govsystem-page-hero h1,
.cybersecurity-page-hero h1,
.infrastructure-page-hero h1,
.hosting-page-hero h1,
.partnerships-page-hero h1,
.contact-page-hero h1 {
    margin: 8px 0 0 !important;
    font-size: clamp(36px, 4vw, 54px) !important;
    line-height: 1.03 !important;
}

/* Compact summaries */
.solutions-hero-summary,
.govsystem-page-hero .hero-summary,
.cybersecurity-hero-summary,
.infrastructure-hero-summary,
.hosting-hero-summary,
.partnerships-hero-summary,
.contact-hero-summary {
    margin-top: 12px !important;
    font-size: clamp(15px, 1.3vw, 18px) !important;
    line-height: 1.45 !important;
}

/* Compact buttons */
.solutions-hero-actions,
.cybersecurity-hero-actions,
.infrastructure-hero-actions,
.hosting-hero-actions,
.partnerships-hero-actions {
    margin-top: 16px !important;
    gap: 10px !important;
}

/* Compact any right-side hero cards */
.solutions-page-hero aside,
.govsystem-page-hero aside,
.cybersecurity-page-hero aside,
.infrastructure-page-hero aside,
.hosting-page-hero aside,
.partnerships-page-hero aside,
.contact-hero-panel {
    min-height: 0 !important;
    height: auto !important;
    align-self: center !important;
}

/* TRUE HALF-HEIGHT INTERNAL HEROES END */


/* =========================================================
   TRUE HALF-HEIGHT INTERNAL HEROES
   Match the compact International Vision hero
   ========================================================= */

.solutions-page-hero,
.govsystem-page-hero,
.cybersecurity-page-hero,
.infrastructure-page-hero,
.hosting-page-hero,
.partnerships-page-hero,
.contact-page-hero {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 28px !important;
    padding-bottom: 28px !important;
}

.solutions-hero-layout,
.govsystem-page-hero-layout,
.cybersecurity-hero-layout,
.infrastructure-hero-layout,
.hosting-hero-layout,
.partnerships-hero-layout,
.contact-hero-layout {
    min-height: 300px !important;
    height: auto !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    gap: 32px !important;
    align-items: center !important;
}

/* Prevent the columns and panels from stretching the hero */
.solutions-hero-layout > *,
.govsystem-page-hero-layout > *,
.cybersecurity-hero-layout > *,
.infrastructure-hero-layout > *,
.hosting-hero-layout > *,
.partnerships-hero-layout > *,
.contact-hero-layout > * {
    min-height: 0 !important;
    height: auto !important;
}

/* Compact hero headings */
.solutions-page-hero h1,
.govsystem-page-hero h1,
.cybersecurity-page-hero h1,
.infrastructure-page-hero h1,
.hosting-page-hero h1,
.partnerships-page-hero h1,
.contact-page-hero h1 {
    margin: 8px 0 0 !important;
    font-size: clamp(36px, 4vw, 54px) !important;
    line-height: 1.03 !important;
}

/* Compact summaries */
.solutions-hero-summary,
.govsystem-page-hero .hero-summary,
.cybersecurity-hero-summary,
.infrastructure-hero-summary,
.hosting-hero-summary,
.partnerships-hero-summary,
.contact-hero-summary {
    margin-top: 12px !important;
    font-size: clamp(15px, 1.3vw, 18px) !important;
    line-height: 1.45 !important;
}

/* Compact buttons */
.solutions-hero-actions,
.cybersecurity-hero-actions,
.infrastructure-hero-actions,
.hosting-hero-actions,
.partnerships-hero-actions {
    margin-top: 16px !important;
    gap: 10px !important;
}

/* Compact any right-side hero cards */
.solutions-page-hero aside,
.govsystem-page-hero aside,
.cybersecurity-page-hero aside,
.infrastructure-page-hero aside,
.hosting-page-hero aside,
.partnerships-page-hero aside,
.contact-hero-panel {
    min-height: 0 !important;
    height: auto !important;
    align-self: center !important;
}

/* TRUE HALF-HEIGHT INTERNAL HEROES END */


/* =========================================================
   MATCH ALL INTERNAL HEROES TO INTERNATIONAL VISION HEIGHT
   ========================================================= */

.solutions-page-hero,
.govsystem-page-hero,
.cybersecurity-page-hero,
.infrastructure-page-hero,
.hosting-page-hero,
.partnerships-page-hero,
.contact-page-hero {
    min-height: 0 !important;
    height: auto !important;
    padding: 20px 0 !important;
}

.solutions-hero-layout,
.govsystem-page-hero-layout,
.cybersecurity-hero-layout,
.infrastructure-hero-layout,
.hosting-hero-layout,
.partnerships-hero-layout,
.contact-hero-layout {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    gap: 28px !important;
    align-items: center !important;
}

/* Compact left-side content */
.solutions-page-hero h1,
.govsystem-page-hero h1,
.cybersecurity-page-hero h1,
.infrastructure-page-hero h1,
.hosting-page-hero h1,
.partnerships-page-hero h1,
.contact-page-hero h1 {
    margin: 6px 0 0 !important;
    font-size: clamp(32px, 3.4vw, 48px) !important;
    line-height: 1.02 !important;
}

.solutions-hero-summary,
.govsystem-page-summary,
.cybersecurity-hero-summary,
.infrastructure-hero-summary,
.hosting-hero-summary,
.partnerships-hero-summary,
.contact-hero-summary {
    margin-top: 10px !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
}

/* Compact hero buttons */
.solutions-hero-actions,
.govsystem-page-hero .hero-actions,
.cybersecurity-hero-actions,
.infrastructure-hero-actions,
.hosting-hero-actions,
.partnerships-hero-actions {
    margin-top: 14px !important;
    gap: 9px !important;
}

.solutions-page-hero .button,
.govsystem-page-hero .button,
.cybersecurity-page-hero .button,
.infrastructure-page-hero .button,
.hosting-page-hero .button,
.partnerships-page-hero .button,
.contact-page-hero .button {
    min-height: 42px !important;
    padding: 9px 16px !important;
}

/* Compact all right-side hero panels and visual blocks */
.solutions-hero-layout > :last-child,
.govsystem-page-hero-layout > :last-child,
.cybersecurity-hero-layout > :last-child,
.infrastructure-hero-layout > :last-child,
.hosting-hero-layout > :last-child,
.partnerships-hero-layout > :last-child,
.contact-hero-layout > :last-child {
    min-height: 0 !important;
    height: auto !important;
    align-self: center !important;
}

/* Contact panel specifically */
.contact-hero-panel {
    padding: 0 !important;
    border-radius: 16px !important;
}

.contact-hero-panel-header {
    min-height: 38px !important;
    padding: 0 14px !important;
}

.contact-hero-panel-body {
    padding: 5px 10px !important;
}

.contact-hero-panel-body article {
    grid-template-columns: 28px minmax(0, 1fr) !important;
    gap: 8px !important;
    padding: 7px 8px !important;
}

.contact-hero-panel-body article > span {
    width: 27px !important;
    height: 27px !important;
}

.contact-hero-panel-body strong {
    font-size: 12px !important;
}

.contact-hero-panel-body p {
    margin-top: 1px !important;
    font-size: 10px !important;
    line-height: 1.3 !important;
}

/* Mobile */
@media (max-width: 1120px) {
    .solutions-page-hero,
    .govsystem-page-hero,
    .cybersecurity-page-hero,
    .infrastructure-page-hero,
    .hosting-page-hero,
    .partnerships-page-hero,
    .contact-page-hero {
        padding: 18px 0 !important;
    }
}

/* MATCH INTERNATIONAL VISION HERO HEIGHT END */


/* =========================================================
   FINAL COMPACT INTERNAL HERO HEIGHT
   Original height: approximately 510px–560px
   New height: 280px
   Homepage, About, International Vision and News excluded
   ========================================================= */

.solutions-page-hero,
.govsystem-page-hero,
.cybersecurity-page-hero,
.infrastructure-page-hero,
.hosting-page-hero,
.partnerships-page-hero,
.contact-page-hero,
.privacy-page-hero,
.disclosure-page-hero {
    height: 280px !important;
    min-height: 280px !important;
    max-height: 280px !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.solutions-hero-layout,
.govsystem-page-hero-layout,
.cybersecurity-hero-layout,
.infrastructure-hero-layout,
.hosting-hero-layout,
.partnerships-hero-layout,
.contact-hero-layout,
.privacy-hero-layout,
.disclosure-hero-layout {
    height: 280px !important;
    min-height: 280px !important;
    max-height: 280px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    gap: 30px !important;
    align-items: center !important;
}

/* Keep every hero column inside the reduced blue area */
.solutions-hero-layout > *,
.govsystem-page-hero-layout > *,
.cybersecurity-hero-layout > *,
.infrastructure-hero-layout > *,
.hosting-hero-layout > *,
.partnerships-hero-layout > *,
.contact-hero-layout > *,
.privacy-hero-layout > *,
.disclosure-hero-layout > * {
    min-height: 0 !important;
    max-height: 240px !important;
    height: auto !important;
}

/* Compact headings */
.solutions-page-hero h1,
.govsystem-page-hero h1,
.cybersecurity-page-hero h1,
.infrastructure-page-hero h1,
.hosting-page-hero h1,
.partnerships-page-hero h1,
.contact-page-hero h1,
.privacy-page-hero h1,
.disclosure-page-hero h1 {
    margin: 6px 0 0 !important;
    font-size: clamp(31px, 3.25vw, 47px) !important;
    line-height: 1.02 !important;
}

/* Compact summaries */
.solutions-hero-summary,
.govsystem-page-summary,
.cybersecurity-hero-summary,
.infrastructure-hero-summary,
.hosting-hero-summary,
.partnerships-hero-summary,
.contact-hero-summary,
.privacy-hero-summary,
.disclosure-hero-summary {
    margin: 10px 0 0 !important;
    font-size: 15px !important;
    line-height: 1.38 !important;
}

/* Compact kicker */
.solutions-page-hero .section-kicker,
.govsystem-page-hero .section-kicker,
.cybersecurity-page-hero .section-kicker,
.infrastructure-page-hero .section-kicker,
.hosting-page-hero .section-kicker,
.partnerships-page-hero .section-kicker,
.contact-page-hero .section-kicker,
.privacy-page-hero .section-kicker,
.disclosure-page-hero .section-kicker {
    margin-bottom: 7px !important;
    font-size: 11px !important;
}

/* Compact action area */
.solutions-hero-actions,
.govsystem-page-hero .hero-actions,
.cybersecurity-hero-actions,
.infrastructure-hero-actions,
.hosting-hero-actions,
.partnerships-hero-actions,
.disclosure-hero-actions {
    margin-top: 12px !important;
    gap: 8px !important;
}

.solutions-page-hero .button,
.govsystem-page-hero .button,
.cybersecurity-page-hero .button,
.infrastructure-page-hero .button,
.hosting-page-hero .button,
.partnerships-page-hero .button,
.contact-page-hero .button,
.privacy-page-hero .button,
.disclosure-page-hero .button {
    min-height: 38px !important;
    padding: 8px 14px !important;
    font-size: 13px !important;
}

/* Scale right-side hero presentation blocks */
.solutions-hero-layout > :last-child,
.govsystem-page-hero-layout > :last-child,
.cybersecurity-hero-layout > :last-child,
.infrastructure-hero-layout > :last-child,
.hosting-hero-layout > :last-child,
.partnerships-hero-layout > :last-child {
    transform: scale(0.78) !important;
    transform-origin: center right !important;
}

/* Contact hero panel */
.contact-hero-panel {
    max-height: 230px !important;
    overflow: hidden !important;
    border-radius: 16px !important;
}

.contact-hero-panel-header {
    min-height: 38px !important;
    padding: 0 14px !important;
}

.contact-hero-panel-body {
    padding: 4px 9px !important;
}

.contact-hero-panel-body article {
    grid-template-columns: 27px minmax(0, 1fr) !important;
    gap: 8px !important;
    padding: 6px 8px !important;
}

.contact-hero-panel-body article > span {
    width: 26px !important;
    height: 26px !important;
}

.contact-hero-panel-body strong {
    font-size: 12px !important;
}

.contact-hero-panel-body p {
    margin-top: 1px !important;
    font-size: 9px !important;
    line-height: 1.25 !important;
}

/* Tablet and mobile must remain content-safe */
@media (max-width: 900px) {
    .solutions-page-hero,
    .govsystem-page-hero,
    .cybersecurity-page-hero,
    .infrastructure-page-hero,
    .hosting-page-hero,
    .partnerships-page-hero,
    .contact-page-hero,
    .privacy-page-hero,
    .disclosure-page-hero {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
    }

    .solutions-hero-layout,
    .govsystem-page-hero-layout,
    .cybersecurity-hero-layout,
    .infrastructure-hero-layout,
    .hosting-hero-layout,
    .partnerships-hero-layout,
    .contact-hero-layout,
    .privacy-hero-layout,
    .disclosure-hero-layout {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        padding-top: 24px !important;
        padding-bottom: 24px !important;
    }

    .solutions-hero-layout > :last-child,
    .govsystem-page-hero-layout > :last-child,
    .cybersecurity-hero-layout > :last-child,
    .infrastructure-hero-layout > :last-child,
    .hosting-hero-layout > :last-child,
    .partnerships-hero-layout > :last-child {
        transform: none !important;
    }
}

/* FINAL 280PX INTERNAL HERO HEIGHT END */


/* =========================================================
   EQUAL INTERNAL HERO HEIGHTS
   All internal blue heroes: 280px desktop
   Homepage hero excluded
   ========================================================= */

.page-hero,
.solutions-page-hero,
.company-page-hero,
.govsystem-page-hero,
.cybersecurity-page-hero,
.infrastructure-page-hero,
.hosting-page-hero,
.regional-page-hero,
.partnerships-page-hero,
.contact-page-hero,
.privacy-page-hero,
.disclosure-page-hero,
.publishing-page-hero {
    height: 280px !important;
    min-height: 280px !important;
    max-height: 280px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden !important;
}

/* Make every internal hero layout fill the same 280px area */
.company-hero-layout,
.solutions-hero-layout,
.govsystem-page-hero-layout,
.cybersecurity-hero-layout,
.infrastructure-hero-layout,
.hosting-hero-layout,
.regional-hero-layout,
.partnerships-hero-layout,
.contact-hero-layout,
.privacy-hero-layout,
.disclosure-hero-layout,
.publishing-hero-layout,
.page-hero-inner {
    height: 280px !important;
    min-height: 280px !important;
    max-height: 280px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    align-items: center !important;
    gap: 30px !important;
}

/* Prevent hero columns from forcing different heights */
.company-hero-layout > *,
.solutions-hero-layout > *,
.govsystem-page-hero-layout > *,
.cybersecurity-hero-layout > *,
.infrastructure-hero-layout > *,
.hosting-hero-layout > *,
.regional-hero-layout > *,
.partnerships-hero-layout > *,
.contact-hero-layout > *,
.privacy-hero-layout > *,
.disclosure-hero-layout > *,
.publishing-hero-layout > * {
    min-height: 0 !important;
    max-height: 240px !important;
    height: auto !important;
}

/* Standardise internal hero headings */
.page-hero h1,
.solutions-page-hero h1,
.company-page-hero h1,
.govsystem-page-hero h1,
.cybersecurity-page-hero h1,
.infrastructure-page-hero h1,
.hosting-page-hero h1,
.regional-page-hero h1,
.partnerships-page-hero h1,
.contact-page-hero h1,
.privacy-page-hero h1,
.disclosure-page-hero h1,
.publishing-page-hero h1 {
    margin-top: 6px !important;
    margin-bottom: 0 !important;
    font-size: clamp(32px, 3.4vw, 48px) !important;
    line-height: 1.03 !important;
}

/* Standardise summaries */
.company-hero-summary,
.solutions-hero-summary,
.govsystem-page-summary,
.cybersecurity-hero-summary,
.infrastructure-hero-summary,
.hosting-hero-summary,
.regional-hero-summary,
.partnerships-hero-summary,
.contact-hero-summary,
.privacy-hero-summary,
.disclosure-hero-summary,
.publishing-hero-summary {
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
}

/* Keep right-side presentation blocks within the equal hero height */
.company-hero-layout > :last-child,
.solutions-hero-layout > :last-child,
.govsystem-page-hero-layout > :last-child,
.cybersecurity-hero-layout > :last-child,
.infrastructure-hero-layout > :last-child,
.hosting-hero-layout > :last-child,
.regional-hero-layout > :last-child,
.partnerships-hero-layout > :last-child,
.contact-hero-layout > :last-child,
.publishing-hero-layout > :last-child {
    max-height: 230px !important;
    min-height: 0 !important;
    height: auto !important;
    align-self: center !important;
    overflow: hidden !important;
}

/* Compact contact hero panel */
.contact-hero-panel {
    max-height: 230px !important;
}

.contact-hero-panel-header {
    min-height: 38px !important;
}

.contact-hero-panel-body {
    padding: 5px 10px !important;
}

.contact-hero-panel-body article {
    padding: 6px 9px !important;
}

/* Tablet and mobile remain content-safe */
@media (max-width: 900px) {
    .page-hero,
    .solutions-page-hero,
    .company-page-hero,
    .govsystem-page-hero,
    .cybersecurity-page-hero,
    .infrastructure-page-hero,
    .hosting-page-hero,
    .regional-page-hero,
    .partnerships-page-hero,
    .contact-page-hero,
    .privacy-page-hero,
    .disclosure-page-hero,
    .publishing-page-hero {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
    }

    .company-hero-layout,
    .solutions-hero-layout,
    .govsystem-page-hero-layout,
    .cybersecurity-hero-layout,
    .infrastructure-hero-layout,
    .hosting-hero-layout,
    .regional-hero-layout,
    .partnerships-hero-layout,
    .contact-hero-layout,
    .privacy-hero-layout,
    .disclosure-hero-layout,
    .publishing-hero-layout,
    .page-hero-inner {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        padding-top: 24px !important;
        padding-bottom: 24px !important;
    }

    .company-hero-layout > *,
    .solutions-hero-layout > *,
    .govsystem-page-hero-layout > *,
    .cybersecurity-hero-layout > *,
    .infrastructure-hero-layout > *,
    .hosting-hero-layout > *,
    .regional-hero-layout > *,
    .partnerships-hero-layout > *,
    .contact-hero-layout > *,
    .privacy-hero-layout > *,
    .disclosure-hero-layout > *,
    .publishing-hero-layout > * {
        max-height: none !important;
    }
}

/* EQUAL INTERNAL HERO HEIGHTS END */


/* =========================================================
   INCREASE INTERNAL HERO HEIGHTS SLIGHTLY
   280px -> 320px
   ========================================================= */

.page-hero,
.solutions-page-hero,
.company-page-hero,
.govsystem-page-hero,
.cybersecurity-page-hero,
.infrastructure-page-hero,
.hosting-page-hero,
.regional-page-hero,
.partnerships-page-hero,
.contact-page-hero,
.privacy-page-hero,
.disclosure-page-hero,
.publishing-page-hero {
    height: 320px !important;
    min-height: 320px !important;
    max-height: 320px !important;
}

.company-hero-layout,
.solutions-hero-layout,
.govsystem-page-hero-layout,
.cybersecurity-hero-layout,
.infrastructure-hero-layout,
.hosting-hero-layout,
.regional-hero-layout,
.partnerships-hero-layout,
.contact-hero-layout,
.privacy-hero-layout,
.disclosure-hero-layout,
.publishing-hero-layout,
.page-hero-inner {
    height: 320px !important;
    min-height: 320px !important;
    max-height: 320px !important;
    padding-top: 28px !important;
    padding-bottom: 28px !important;
}

.company-hero-layout > *,
.solutions-hero-layout > *,
.govsystem-page-hero-layout > *,
.cybersecurity-hero-layout > *,
.infrastructure-hero-layout > *,
.hosting-hero-layout > *,
.regional-hero-layout > *,
.partnerships-hero-layout > *,
.contact-hero-layout > *,
.privacy-hero-layout > *,
.disclosure-hero-layout > *,
.publishing-hero-layout > * {
    max-height: 264px !important;
}

.company-hero-layout > :last-child,
.solutions-hero-layout > :last-child,
.govsystem-page-hero-layout > :last-child,
.cybersecurity-hero-layout > :last-child,
.infrastructure-hero-layout > :last-child,
.hosting-hero-layout > :last-child,
.regional-hero-layout > :last-child,
.partnerships-hero-layout > :last-child,
.contact-hero-layout > :last-child,
.publishing-hero-layout > :last-child {
    max-height: 260px !important;
}

/* INCREASE INTERNAL HERO HEIGHTS END */


/* =========================================================
   INCREASE INTERNAL HERO HEIGHTS
   320px -> 350px
   ========================================================= */

.page-hero,
.solutions-page-hero,
.company-page-hero,
.govsystem-page-hero,
.cybersecurity-page-hero,
.infrastructure-page-hero,
.hosting-page-hero,
.regional-page-hero,
.partnerships-page-hero,
.contact-page-hero,
.privacy-page-hero,
.disclosure-page-hero,
.publishing-page-hero {
    height: 350px !important;
    min-height: 350px !important;
    max-height: 350px !important;
}

.company-hero-layout,
.solutions-hero-layout,
.govsystem-page-hero-layout,
.cybersecurity-hero-layout,
.infrastructure-hero-layout,
.hosting-hero-layout,
.regional-hero-layout,
.partnerships-hero-layout,
.contact-hero-layout,
.privacy-hero-layout,
.disclosure-hero-layout,
.publishing-hero-layout,
.page-hero-inner {
    height: 350px !important;
    min-height: 350px !important;
    max-height: 350px !important;
    padding-top: 34px !important;
    padding-bottom: 34px !important;
}

.company-hero-layout > *,
.solutions-hero-layout > *,
.govsystem-page-hero-layout > *,
.cybersecurity-hero-layout > *,
.infrastructure-hero-layout > *,
.hosting-hero-layout > *,
.regional-hero-layout > *,
.partnerships-hero-layout > *,
.contact-hero-layout > *,
.privacy-hero-layout > *,
.disclosure-hero-layout > *,
.publishing-hero-layout > * {
    max-height: 282px !important;
}

.company-hero-layout > :last-child,
.solutions-hero-layout > :last-child,
.govsystem-page-hero-layout > :last-child,
.cybersecurity-hero-layout > :last-child,
.infrastructure-hero-layout > :last-child,
.hosting-hero-layout > :last-child,
.regional-hero-layout > :last-child,
.partnerships-hero-layout > :last-child,
.contact-hero-layout > :last-child,
.publishing-hero-layout > :last-child {
    max-height: 280px !important;
}

/* INCREASE INTERNAL HERO HEIGHTS TO 350PX END */


/* =========================================================
   HERO ACTION CLEARANCE FIX
   Prevent buttons from touching the next white section
   ========================================================= */

.solutions-hero-layout,
.govsystem-page-hero-layout,
.cybersecurity-hero-layout,
.infrastructure-hero-layout,
.hosting-hero-layout,
.regional-hero-layout,
.partnerships-hero-layout,
.contact-hero-layout,
.company-hero-layout,
.privacy-hero-layout,
.disclosure-hero-layout,
.publishing-hero-layout {
    padding-bottom: 52px !important;
}

/* Ensure action rows stay fully inside the blue hero */
.solutions-hero-actions,
.cybersecurity-hero-actions,
.infrastructure-hero-actions,
.hosting-hero-actions,
.regional-hero-actions,
.partnerships-hero-actions,
.disclosure-hero-actions,
.publishing-hero-actions,
.govsystem-page-hero .hero-actions {
    margin-bottom: 0 !important;
    position: relative !important;
    z-index: 3 !important;
}

/* Give the hero a little more total height */
.page-hero,
.solutions-page-hero,
.company-page-hero,
.govsystem-page-hero,
.cybersecurity-page-hero,
.infrastructure-page-hero,
.hosting-page-hero,
.regional-page-hero,
.partnerships-page-hero,
.contact-page-hero,
.privacy-page-hero,
.disclosure-page-hero,
.publishing-page-hero {
    height: 380px !important;
    min-height: 380px !important;
    max-height: 380px !important;
}

.company-hero-layout,
.solutions-hero-layout,
.govsystem-page-hero-layout,
.cybersecurity-hero-layout,
.infrastructure-hero-layout,
.hosting-hero-layout,
.regional-hero-layout,
.partnerships-hero-layout,
.contact-hero-layout,
.privacy-hero-layout,
.disclosure-hero-layout,
.publishing-hero-layout,
.page-hero-inner {
    height: 380px !important;
    min-height: 380px !important;
    max-height: 380px !important;
}

/* HERO ACTION CLEARANCE FIX END */


/* =========================================================
   MATCH HOMEPAGE HERO TO INTERNAL HERO HEIGHT
   ========================================================= */

.hero-section {
    height: 380px !important;
    min-height: 380px !important;
    max-height: 380px !important;
    overflow: hidden !important;
}

.hero-layout {
    height: 380px !important;
    min-height: 380px !important;
    max-height: 380px !important;
    padding-top: 34px !important;
    padding-bottom: 52px !important;
    align-items: center !important;
}

/* Keep homepage content fully inside the blue area */
.hero-layout > * {
    min-height: 0 !important;
    max-height: 294px !important;
    height: auto !important;
}

/* Keep homepage action buttons clear of the next section */
.hero-actions {
    position: relative !important;
    z-index: 3 !important;
    margin-bottom: 0 !important;
}

/* Tablet and mobile remain content-safe */
@media (max-width: 900px) {
    .hero-section,
    .hero-layout {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
    }

    .hero-layout {
        padding-top: 28px !important;
        padding-bottom: 32px !important;
    }

    .hero-layout > * {
        max-height: none !important;
    }
}

/* HOMEPAGE HERO HEIGHT MATCH END */


/* =========================================================
   HOMEPAGE TRUST SECTION
   ========================================================= */

.home-trust-section {
    padding: 76px 0 84px;
    border-bottom: 1px solid var(--border-light);
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7faf9 100%
        );
}

.home-trust-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    align-items: end;
    gap: 70px;
    margin-bottom: 38px;
}

.home-trust-heading h2 {
    max-width: 760px;
    margin: 12px 0 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.06;
    color: var(--navy-950);
}

.home-trust-heading > p {
    max-width: 640px;
    margin: 0;
    color: var(--slate-600);
    font-size: 17px;
    line-height: 1.7;
}

.home-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.home-trust-card {
    min-height: 220px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 20px;
    padding: 28px;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.home-trust-card:hover {
    transform: translateY(-4px);
    border-color: rgba(17, 148, 104, 0.28);
    box-shadow: var(--shadow-md);
}

.home-trust-number {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(17, 148, 104, 0.22);
    border-radius: 13px;
    color: var(--green-700);
    background: rgba(17, 148, 104, 0.06);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.home-trust-card h3 {
    margin: 2px 0 0;
    color: var(--navy-950);
    font-size: 21px;
    line-height: 1.25;
}

.home-trust-card p {
    margin: 12px 0 0;
    color: var(--slate-600);
    font-size: 15px;
    line-height: 1.65;
}

@media (max-width: 980px) {
    .home-trust-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-trust-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .home-trust-section {
        padding: 52px 0 58px;
    }

    .home-trust-card {
        min-height: 0;
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 14px;
        padding: 22px;
        border-radius: 16px;
    }

    .home-trust-number {
        width: 40px;
        height: 40px;
    }

    .home-trust-card h3 {
        font-size: 18px;
    }
}

/* HOMEPAGE TRUST SECTION END */


/* =========================================================
   HOMEPAGE INTEGRATED CAPABILITY CARD REFINEMENT
   ========================================================= */

.service-grid {
    gap: 22px !important;
    align-items: stretch;
}

.service-card {
    position: relative;
    min-height: 500px !important;
    padding: 30px !important;
    overflow: hidden;
    border-radius: 22px !important;
    isolation: isolate;
}

/* Professional top accent */
.service-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(
        90deg,
        var(--green-500),
        rgba(28, 155, 107, 0.08)
    );
    opacity: 0.7;
}

.service-card-featured::after {
    background: linear-gradient(
        90deg,
        var(--green-300),
        rgba(105, 212, 170, 0.12)
    );
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-6px) !important;
}

/* Stronger capability icon */
.service-icon {
    width: 58px !important;
    height: 58px !important;
    margin-bottom: 22px !important;
    border-radius: 16px !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}

/* Improve card heading hierarchy */
.service-card h3 {
    max-width: 300px;
    font-size: 22px !important;
    line-height: 1.22 !important;
}

/* Make descriptions easier to scan */
.service-card > p {
    min-height: 72px;
    margin: 16px 0 20px !important;
    line-height: 1.6;
}

/* Refine deliverable lists */
.service-card ul {
    gap: 10px !important;
    padding-top: 17px !important;
    border-top: 1px solid var(--border-light);
}

.service-card-featured ul {
    border-top-color: rgba(255,255,255,.12);
}

.service-card li {
    padding-left: 19px !important;
    line-height: 1.5;
}

/* Professional card action area */
.service-card a {
    width: 100%;
    justify-content: space-between;
    margin-top: auto !important;
    padding-top: 22px !important;
    border-top: 1px solid var(--border-light);
    transition:
        color 160ms ease,
        gap 160ms ease;
}

.service-card-featured a {
    border-top-color: rgba(255,255,255,.12);
}

.service-card a:hover {
    gap: 14px;
}

/* Subtle number refinement */
.service-number {
    top: 29px !important;
    right: 30px !important;
    padding: 5px 8px;
    border: 1px solid rgba(28,155,107,.14);
    border-radius: 999px;
    background: rgba(28,155,107,.045);
    letter-spacing: .08em;
}

.service-card-featured .service-number {
    color: var(--green-300);
    border-color: rgba(105,212,170,.2);
    background: rgba(105,212,170,.07);
}

/* Tablet */
@media (max-width: 1100px) {
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-card {
        min-height: 470px !important;
    }
}

/* Mobile */
@media (max-width: 680px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 16px !important;
    }

    .service-card {
        min-height: 0 !important;
        padding: 24px !important;
        border-radius: 18px !important;
    }

    .service-card::after {
        left: 24px;
        right: 24px;
    }

    .service-card > p {
        min-height: 0;
    }
}

/* HOMEPAGE CAPABILITY CARD REFINEMENT END */


/* =========================================================
   HOMEPAGE DELIVERY METHODOLOGY
   ========================================================= */

.home-delivery-section {
    position: relative;
    overflow: hidden;
    padding: 84px 0 88px;
    border-bottom: 1px solid var(--border-light);
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(28, 155, 107, 0.08),
            transparent 30%
        ),
        var(--white);
}

.home-delivery-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
    align-items: end;
    gap: 70px;
    margin-bottom: 42px;
}

.home-delivery-heading h2 {
    max-width: 820px;
    margin: 12px 0 0;
    color: var(--navy-950);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.home-delivery-heading > p {
    max-width: 650px;
    margin: 0;
    color: var(--slate-600);
    font-size: 17px;
    line-height: 1.7;
}

.home-delivery-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.home-delivery-track::before {
    content: "";
    position: absolute;
    top: 31px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(28, 155, 107, 0.28),
        rgba(28, 155, 107, 0.28),
        transparent
    );
}

.home-delivery-stage {
    position: relative;
    z-index: 2;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    padding: 22px;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-sm);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.home-delivery-stage:hover {
    transform: translateY(-5px);
    border-color: rgba(28, 155, 107, 0.3);
    box-shadow: var(--shadow-md);
}

.home-delivery-stage-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

.home-delivery-number {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(28, 155, 107, 0.25);
    border-radius: 14px;
    color: var(--green-700);
    background: #ffffff;
    box-shadow: 0 0 0 7px rgba(28, 155, 107, 0.045);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.home-delivery-status {
    padding: 6px 9px;
    border: 1px solid rgba(28, 155, 107, 0.14);
    border-radius: 999px;
    color: var(--green-700);
    background: rgba(28, 155, 107, 0.055);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-delivery-stage h3 {
    margin: 0;
    color: var(--navy-950);
    font-size: 19px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.home-delivery-stage > p {
    margin: 14px 0 18px;
    color: var(--slate-600);
    font-size: 14px;
    line-height: 1.62;
}

.home-delivery-stage ul {
    display: grid;
    gap: 9px;
    margin: auto 0 0;
    padding: 17px 0 0;
    border-top: 1px solid var(--border-light);
    list-style: none;
}

.home-delivery-stage li {
    position: relative;
    padding-left: 17px;
    color: var(--slate-600);
    font-size: 12px;
    line-height: 1.45;
}

.home-delivery-stage li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-500);
}

.home-delivery-assurance {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 24px;
    padding: 22px 24px;
    border: 1px solid rgba(28, 155, 107, 0.18);
    border-radius: 17px;
    background:
        linear-gradient(
            90deg,
            rgba(28, 155, 107, 0.065),
            rgba(28, 155, 107, 0.015)
        );
}

.home-delivery-assurance div {
    display: grid;
    gap: 5px;
}

.home-delivery-assurance div > span {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.home-delivery-assurance strong {
    color: var(--navy-950);
    font-size: 15px;
    line-height: 1.45;
}

@media (max-width: 1280px) {
    .home-delivery-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-delivery-track::before {
        display: none;
    }

    .home-delivery-stage {
        min-height: 390px;
    }
}

@media (max-width: 900px) {
    .home-delivery-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-delivery-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-delivery-assurance {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .home-delivery-section {
        padding: 58px 0 62px;
    }

    .home-delivery-track {
        grid-template-columns: 1fr;
    }

    .home-delivery-stage {
        min-height: 0;
        padding: 22px;
    }
}

/* HOMEPAGE DELIVERY METHODOLOGY END */











