
/* =========================================================
   MECHANOSYS WEBSITE v2.1
   CLEAN UNIFIED STYLESHEET
   Home + Solutions + Industries + Experience + Shared UI
========================================================= */

:root {
    --blue: #0756b7;
    --blue-dark: #06458f;
    --cyan: #54d5e0;
    --ink: #20252a;
    --text: #64717a;
    --muted: #7b878e;
    --light: #f6f7f8;
    --light-2: #f1f4f6;
    --line: #dfe4e7;
    --char: #202326;
    --white: #ffffff;
    --container: 1240px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: 90%;
    max-width: var(--container);
    margin: 0 auto;
}


/* =========================================================
   SHARED HEADER / NAVIGATION
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #e7eaec;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex: 0 0 auto;
}

.brand img {
    width: auto;
    height: 58px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 11px;
    color: #4b565e;
    text-decoration: none;
    font-size: 12px;
    font-weight: 650;
    white-space: nowrap;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.main-nav a:hover {
    color: var(--blue);
    background: #f5f7f8;
}

.main-nav a.active {
    color: var(--blue);
    background: #f1f4f6;
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.main-nav .nav-login {
    min-height: 38px;
    margin-left: 4px;
    padding: 0 14px;
    border: 1px solid var(--blue);
    color: var(--blue) !important;
    background: var(--white);
}

.main-nav .nav-login:hover {
    background: var(--blue);
    color: var(--white) !important;
}

.main-nav .nav-login.active {
    background: var(--blue);
    color: var(--white) !important;
}

.main-nav .nav-login.active::after {
    display: none;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: #26333b;
}


/* =========================================================
   SHARED TYPOGRAPHY / COMPONENTS
========================================================= */

.eyebrow,
.hero-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #53616a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.eyebrow::before,
.hero-tag::before {
    content: "";
    width: 36px;
    height: 3px;
    flex: 0 0 auto;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 21px;
    border: 1px solid var(--blue);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.btn.primary {
    background: var(--blue);
    color: var(--white);
}

.btn.secondary {
    border-color: #ccd5da;
    background: var(--white);
    color: #30383e;
}

.section {
    padding: 88px 0;
}

.section.light {
    background: var(--light);
}

.section.dark {
    background: var(--char);
    color: var(--white);
}

.section-head {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-head h2,
.section h2 {
    font-size: clamp(34px, 3.6vw, 48px);
    line-height: 1.12;
    letter-spacing: -1.2px;
}

.section-head p {
    margin-top: 14px;
    color: var(--text);
}

.lead {
    font-size: 19px;
    line-height: 1.65;
}

.muted {
    color: var(--text);
    line-height: 1.8;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.text-link {
    color: var(--blue);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   HOME PAGE
========================================================= */

.hero {
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(
            112deg,
            #ffffff 0%,
            #ffffff 61%,
            #f4f6f7 61%,
            #f4f6f7 100%
        );
}

.hero-inner {
    min-height: 610px;
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    align-items: center;
    gap: 64px;
}

.hero h1,
.page-hero h1 {
    font-size: clamp(44px, 5vw, 66px);
    line-height: 1.04;
    letter-spacing: -2px;
}

.hero .lead {
    margin: 22px 0 10px;
}

.hero .sub {
    max-width: 650px;
    margin-bottom: 28px;
    color: #68727a;
}

.hero-image {
    position: relative;
    padding: 22px 0 22px 22px;
}

.hero-image::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 115px;
    height: 115px;
    border-top: 4px solid var(--blue);
    border-left: 4px solid var(--cyan);
}

.hero-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    box-shadow: 0 26px 60px rgba(25, 41, 52, 0.13);
}

.strip {
    border-bottom: 1px solid var(--line);
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.strip-item {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--line);
    font-size: 12px;
    font-weight: 650;
}

.strip-item:first-child {
    border-left: 1px solid var(--line);
}

.feature-row {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 76px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse .feature-image {
    order: 2;
}

.feature-row.reverse .feature-copy {
    order: 1;
}

.feature-image {
    height: 355px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-copy h3 {
    margin-bottom: 16px;
    font-size: 32px;
    line-height: 1.15;
}

.feature-copy p {
    color: #68727a;
    line-height: 1.8;
}

.feature-copy ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 18px;
    margin: 20px 0;
}

.feature-copy li {
    position: relative;
    padding-left: 14px;
    color: #4c5860;
    font-size: 13px;
}

.feature-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 2px;
    background: var(--cyan);
}

.grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.tile {
    min-height: 210px;
    padding: 26px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.tile .num {
    display: block;
    margin-bottom: 38px;
    color: #4caebb;
    font-size: 10px;
    font-weight: 800;
}

.tile h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.tile p {
    color: #68757d;
    font-size: 13px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.tech {
    min-height: 115px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.tech span {
    color: #4caebb;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.1px;
}

.tech strong {
    font-size: 16px;
}

.support-list {
    border-top: 1px solid var(--line);
}

.support-row {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.support-row > span {
    color: #4caebb;
    font-size: 10px;
    font-weight: 800;
}

.support-row h3 {
    font-size: 18px;
}

.support-row p {
    color: #68757d;
    font-size: 13px;
}

.cards3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.content-card {
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--white);
}

.content-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.content-card-body {
    padding: 21px;
}

.kicker {
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.content-card h3 {
    margin: 8px 0;
    font-size: 19px;
    line-height: 1.3;
}

.content-card p {
    margin-bottom: 14px;
    color: #69757d;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   SHARED INNER PAGE HERO
========================================================= */

.page-hero {
    padding: 78px 0;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(
            110deg,
            #ffffff 0%,
            #ffffff 65%,
            #f5f7f8 65%,
            #f5f7f8 100%
        );
}

.page-hero p {
    max-width: 720px;
    margin-top: 16px;
    color: #65727b;
    font-size: 17px;
    line-height: 1.7;
}

.breadcrumb {
    margin-bottom: 14px;
    color: #7d878d;
    font-size: 9px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}


/* =========================================================
   GENERIC FORMS / FOOTER
========================================================= */

.article {
    max-width: 850px;
    margin: auto;
}

.article h2 {
    margin: 32px 0 10px;
    font-size: 29px;
}

.article h3 {
    margin: 26px 0 8px;
    font-size: 21px;
}

.article p,
.article li {
    color: #4e5b63;
    line-height: 1.85;
}

.article ul {
    margin: 10px 0 20px;
    padding-left: 20px;
}

.contact-band {
    padding: 72px 0;
    background: var(--char);
    color: var(--white);
}

.contact-band p {
    color: #b8c1c6;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.field.full {
    grid-column: 1 / -1;
}

label {
    font-size: 12px;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #cad3d8;
    font: inherit;
}

textarea {
    min-height: 145px;
}

.portal-card {
    max-width: 720px;
    margin: auto;
    padding: 34px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 45px rgba(20, 36, 47, 0.07);
}

.site-footer {
    padding: 44px 0 20px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 34px;
    padding-bottom: 28px;
}

.footer-main p {
    color: #77828a;
    font-size: 12px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-links a {
    color: #59666e;
    text-decoration: none;
    font-size: 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 17px;
    border-top: 1px solid var(--line);
    color: #879198;
    font-size: 11px;
}


/* =========================================================
   SOLUTIONS PAGE
========================================================= */

.solx-hero {
    padding: 62px 0 66px;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(
            112deg,
            #ffffff 0%,
            #ffffff 68%,
            #f5f7f8 68%,
            #f5f7f8 100%
        );
}

.solx-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    align-items: center;
    gap: 64px;
}

.solx-hero-copy {
    max-width: 650px;
}

.solx-hero-copy h1 {
    max-width: 640px;
    margin-bottom: 20px;
    font-size: clamp(42px, 4.5vw, 58px);
    line-height: 1.04;
    letter-spacing: -1.8px;
}

.solx-hero-lead {
    max-width: 610px;
    margin-bottom: 20px;
    color: #65727a;
    font-size: 16px;
    line-height: 1.72;
}

.solx-capability-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 25px;
}

.solx-capability-line span {
    color: #4e5b63;
    font-size: 11px;
    font-weight: 700;
}

.solx-capability-line i {
    width: 4px;
    height: 4px;
    display: block;
    border-radius: 50%;
    background: var(--cyan);
}

.solx-hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.solx-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 11px 17px;
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.solx-text-button {
    padding-bottom: 3px;
    border-bottom: 1px solid #9ca6ac;
    color: #354149;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.solx-hero-visual {
    position: relative;
    width: 100%;
    height: 320px;
}

.solx-main-photo {
    position: absolute;
    right: 0;
    top: 0;
    width: 74%;
    max-width: 370px;
    height: 225px;
    overflow: hidden;
    border: 1px solid #dce2e5;
    background: #eef1f2;
    box-shadow: 0 18px 42px rgba(27, 42, 52, 0.09);
}

.solx-main-photo img,
.solx-small-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solx-small-photo {
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 46%;
    max-width: 220px;
    height: 135px;
    overflow: hidden;
    border: 6px solid #ffffff;
    background: #eef1f2;
    box-shadow: 0 12px 28px rgba(27, 42, 52, 0.08);
}

.solx-hero-card {
    position: absolute;
    right: 0;
    bottom: 18px;
    width: 43%;
    max-width: 205px;
    padding: 12px 14px;
    border-left: 3px solid var(--cyan);
    background: var(--white);
    box-shadow: 0 8px 22px rgba(28, 42, 52, 0.06);
}

.solx-hero-card span {
    display: block;
    margin-bottom: 3px;
    color: #758188;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.1px;
}

.solx-hero-card strong {
    color: #27333a;
    font-size: 11px;
}

.solx-flow {
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.solx-flow-grid {
    min-height: 84px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
}

.solx-flow-grid > div:not(.solx-flow-arrow) {
    display: grid;
    grid-template-columns: 28px 1fr;
    grid-template-rows: auto auto;
    padding: 0 17px;
}

.solx-flow-grid > div:not(.solx-flow-arrow) span {
    grid-row: 1 / 3;
    color: #45a8b6;
    font-size: 9px;
    font-weight: 800;
}

.solx-flow-grid strong {
    font-size: 13px;
    line-height: 1.2;
}

.solx-flow-grid small {
    margin-top: 2px;
    color: #7c878e;
    font-size: 10px;
}

.solx-flow-arrow {
    color: #c4ccd0;
    font-size: 16px;
}

.solx-solutions {
    padding: 82px 0 90px;
    background: #f7f8f9;
}

.solx-heading,
.indx-heading,
.expx-heading {
    display: grid;
    grid-template-columns: 1fr 0.62fr;
    align-items: end;
    gap: 62px;
    margin-bottom: 36px;
}

.solx-heading h2,
.indx-heading h2,
.expx-heading h2 {
    max-width: 590px;
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.solx-heading > p,
.indx-heading > p,
.expx-heading > p {
    color: #6d7981;
    font-size: 14px;
    line-height: 1.75;
}

.solx-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.solx-card {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #dfe4e7;
    background: var(--white);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.solx-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 32px rgba(28, 43, 52, 0.06);
}

.solx-card-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: #edf0f2;
}

.solx-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solx-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 22px 22px;
}

.solx-card-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 11px;
}

.solx-card-top > span {
    color: #43a8b6;
    font-size: 9px;
    font-weight: 800;
}

.solx-card-top > strong {
    color: #859097;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.9px;
}

.solx-card h3 {
    margin-bottom: 9px;
    font-size: 19px;
    line-height: 1.25;
}

.solx-card p {
    color: #69767e;
    font-size: 13px;
    line-height: 1.65;
}

.solx-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: auto;
    padding-top: 17px;
}

.solx-tags span,
.indx-support span,
.expx-tags span {
    padding: 4px 7px;
    background: #f2f5f6;
    color: #65727a;
    font-size: 9px;
    font-weight: 650;
}

.solx-technology {
    padding: 78px 0;
    background: var(--white);
}

.solx-tech-heading {
    margin-bottom: 30px;
}

.solx-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.solx-logo-grid > div {
    min-height: 145px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.solx-logo-grid img {
    width: 100%;
    max-width: 190px;
    height: 66px;
    margin-bottom: 7px;
    object-fit: contain;
}

.solx-logo-grid p {
    color: #7b878e;
    font-size: 10px;
}

.solx-brand-note,
.expx-context-note {
    max-width: 820px;
    margin-top: 14px;
    color: #929ca2;
    font-size: 9px;
    line-height: 1.6;
}

.solx-engagement {
    padding: 80px 0;
    background: #f7f8f9;
}

.solx-engagement-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 78px;
}

.solx-engagement-grid h2 {
    max-width: 450px;
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.solx-engagement-list,
.expx-area-list,
.indx-support-list {
    border-top: 1px solid #d8dfe2;
}

.solx-engagement-list a {
    min-height: 68px;
    display: grid;
    grid-template-columns: 36px 1fr auto;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #d8dfe2;
    text-decoration: none;
    transition:
        padding 0.2s ease,
        background 0.2s ease;
}

.solx-engagement-list a:hover {
    padding-left: 8px;
    background: var(--white);
}

.solx-engagement-list > a > span {
    color: #43a8b6;
    font-size: 9px;
    font-weight: 800;
}

.solx-engagement-list strong {
    display: block;
    font-size: 14px;
}

.solx-engagement-list small {
    display: block;
    margin-top: 2px;
    color: #7c878e;
    font-size: 10px;
}

.solx-engagement-list b {
    color: var(--blue);
    font-size: 16px;
    font-weight: 400;
}


/* =========================================================
   INDUSTRIES PAGE
========================================================= */

.indx-hero {
    padding: 62px 0 68px;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(
            112deg,
            #ffffff 0%,
            #ffffff 68%,
            #f5f7f8 68%,
            #f5f7f8 100%
        );
}

.indx-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.74fr;
    align-items: center;
    gap: 64px;
}

.indx-hero-copy {
    max-width: 650px;
}

.indx-hero-copy h1 {
    max-width: 650px;
    margin-bottom: 20px;
    font-size: clamp(42px, 4.5vw, 58px);
    line-height: 1.04;
    letter-spacing: -1.8px;
}

.indx-hero-lead {
    max-width: 610px;
    margin-bottom: 20px;
    color: #65727a;
    font-size: 16px;
    line-height: 1.72;
}

.indx-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 25px;
}

.indx-hero-meta span {
    color: #4e5b63;
    font-size: 11px;
    font-weight: 700;
}

.indx-hero-meta i {
    width: 4px;
    height: 4px;
    display: block;
    border-radius: 50%;
    background: var(--cyan);
}

.indx-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 11px 17px;
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.indx-hero-visual {
    position: relative;
    width: 100%;
    max-width: 430px;
    margin-left: auto;
}

.indx-hero-image {
    width: 100%;
    height: 265px;
    overflow: hidden;
    border: 1px solid #dce2e5;
    box-shadow: 0 18px 42px rgba(27, 42, 52, 0.09);
}

.indx-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.indx-hero-label {
    position: absolute;
    left: -18px;
    bottom: -18px;
    padding: 12px 15px;
    border-left: 3px solid var(--cyan);
    background: var(--white);
    box-shadow: 0 8px 22px rgba(28, 42, 52, 0.07);
}

.indx-hero-label span {
    display: block;
    margin-bottom: 3px;
    color: #758188;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.1px;
}

.indx-hero-label strong {
    color: #27333a;
    font-size: 11px;
}

.indx-sectors {
    padding: 82px 0 90px;
    background: #f7f8f9;
}

.indx-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.indx-card {
    overflow: hidden;
    border: 1px solid #dfe4e7;
    background: var(--white);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.indx-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 32px rgba(28, 43, 52, 0.06);
}

.indx-card-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: #edf0f2;
}

.indx-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.indx-card-body {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    padding: 20px 22px 22px;
}

.indx-card-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 11px;
}

.indx-card-top > span {
    color: #43a8b6;
    font-size: 9px;
    font-weight: 800;
}

.indx-card-top > strong {
    color: #859097;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.9px;
}

.indx-card h3 {
    margin-bottom: 9px;
    font-size: 19px;
    line-height: 1.25;
}

.indx-card p {
    color: #69767e;
    font-size: 13px;
    line-height: 1.65;
}

.indx-support {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: auto;
    padding-top: 16px;
}

.indx-support-section {
    padding: 82px 0;
    background: var(--white);
}

.indx-support-grid {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 72px;
}

.indx-support-grid h2 {
    max-width: 500px;
    margin-bottom: 16px;
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.indx-support-grid > div:first-child > p {
    max-width: 500px;
    color: #68757d;
    font-size: 14px;
    line-height: 1.8;
}

.indx-support-list > div,
.expx-area-list > div {
    min-height: 68px;
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--line);
}

.indx-support-list span,
.expx-area-list span {
    color: #43a8b6;
    font-size: 9px;
    font-weight: 800;
}

.indx-support-list strong,
.expx-area-list strong {
    display: block;
    font-size: 14px;
}

.indx-support-list small,
.expx-area-list small {
    color: #7c878e;
    font-size: 10px;
}

.indx-engagement {
    padding: 78px 0;
    background: #f7f8f9;
}

.indx-engagement-grid,
.expx-approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.indx-engagement-grid > div,
.expx-approach-grid > div {
    min-height: 138px;
    padding: 23px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.indx-engagement-grid span,
.expx-approach-grid span {
    display: block;
    margin-bottom: 28px;
    color: #43a8b6;
    font-size: 9px;
    font-weight: 800;
}

.indx-engagement-grid strong,
.expx-approach-grid strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.indx-engagement-grid small,
.expx-approach-grid small {
    color: #7c878e;
    font-size: 10px;
    line-height: 1.5;
}


/* =========================================================
   EXPERIENCE PAGE
========================================================= */

.expx-hero {
    padding: 62px 0 68px;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(
            112deg,
            #ffffff 0%,
            #ffffff 69%,
            #f5f7f8 69%,
            #f5f7f8 100%
        );
}

.expx-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.58fr;
    align-items: center;
    gap: 64px;
}

.expx-hero-copy h1 {
    max-width: 680px;
    margin-bottom: 20px;
    font-size: clamp(42px, 4.5vw, 58px);
    line-height: 1.04;
    letter-spacing: -1.8px;
}

.expx-hero-copy > p {
    max-width: 620px;
    color: #65727a;
    font-size: 16px;
    line-height: 1.72;
}

.expx-hero-summary {
    border-top: 1px solid var(--line);
}

.expx-hero-summary > div {
    min-height: 67px;
    display: grid;
    grid-template-columns: 92px 1fr;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid var(--line);
}

.expx-hero-summary span {
    color: #49aab7;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.expx-hero-summary strong {
    font-size: 13px;
}

.expx-selected {
    padding: 82px 0 90px;
    background: #f7f8f9;
}

.expx-company-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.expx-company-card {
    overflow: hidden;
    border: 1px solid #dfe4e7;
    background: var(--white);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.expx-company-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 32px rgba(28, 43, 52, 0.06);
}

.expx-logo-area {
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.expx-logo-area img {
    width: auto;
    max-width: 78%;
    max-height: 64px;
    object-fit: contain;
}

.expx-company-body {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    padding: 21px 22px 22px;
}

.expx-sector {
    margin-bottom: 9px;
    color: #49aab7;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.1px;
}

.expx-company-body h3 {
    margin-bottom: 9px;
    font-size: 19px;
}

.expx-company-body p {
    color: #69767e;
    font-size: 13px;
    line-height: 1.65;
}

.expx-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: auto;
    padding-top: 16px;
}

.expx-areas {
    padding: 82px 0;
    background: var(--white);
}

.expx-areas-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 72px;
}

.expx-areas-grid h2 {
    max-width: 480px;
    margin-bottom: 16px;
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.expx-areas-grid > div:first-child > p {
    max-width: 500px;
    color: #68757d;
    font-size: 14px;
    line-height: 1.8;
}

.expx-approach {
    padding: 78px 0;
    background: #f7f8f9;
}


/* =========================================================
   SHARED DARK CTA — SOLUTIONS / INDUSTRIES / EXPERIENCE
========================================================= */

.solx-cta,
.indx-cta,
.expx-cta {
    padding: 62px 0;
    background: var(--char);
    color: var(--white);
}

.solx-cta-grid,
.indx-cta-grid,
.expx-cta-grid {
    display: grid;
    grid-template-columns: 1fr 0.42fr;
    align-items: end;
    gap: 64px;
}

.solx-cta-grid > div:first-child > span,
.indx-cta-grid > div:first-child > span,
.expx-cta-grid > div:first-child > span {
    display: block;
    margin-bottom: 10px;
    color: var(--cyan);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.solx-cta h2,
.indx-cta h2,
.expx-cta h2 {
    max-width: 630px;
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: -0.9px;
}

.solx-cta p,
.indx-cta p,
.expx-cta p {
    margin-bottom: 14px;
    color: #bac3c8;
    font-size: 13px;
    line-height: 1.6;
}

.solx-cta a,
.indx-cta a,
.expx-cta a {
    display: inline-flex;
    align-items: center;
    gap: 17px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1024px) {

    .header-inner {
        gap: 16px;
    }

    .brand img {
        height: 52px;
    }

    .main-nav {
        gap: 2px;
    }

    .main-nav a {
        padding: 0 8px;
        font-size: 11px;
    }

    .hero-inner,
    .solx-hero-grid,
    .indx-hero-grid,
    .expx-hero-grid {
        gap: 38px;
    }

    .grid4,
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards3,
    .solx-grid,
    .indx-grid,
    .expx-company-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-row {
        gap: 38px;
    }

    .solx-engagement-grid,
    .indx-support-grid,
    .expx-areas-grid {
        gap: 40px;
    }

    .indx-engagement-grid,
    .expx-approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 780px) {

    .container {
        width: 88%;
    }

    .site-header {
        position: sticky;
    }

    .header-inner {
        min-height: 72px;
    }

    .brand img {
        height: 48px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 6% 16px;
        border-top: 1px solid #edf0f1;
        background: var(--white);
        box-shadow: 0 15px 35px rgba(20, 35, 45, 0.08);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        min-height: 44px;
        padding: 0 10px;
        border-bottom: 1px solid #edf0f1;
        font-size: 14px;
    }

    .main-nav a.active::after {
        left: 10px;
        right: auto;
        width: 34px;
    }

    .main-nav .nav-login {
        margin: 8px 0 0;
        border: 1px solid var(--blue);
    }

    .hero {
        background: var(--white);
    }

    .hero-inner,
    .solx-hero-grid,
    .indx-hero-grid,
    .expx-hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-inner {
        padding: 50px 0 58px;
    }

    .hero h1,
    .solx-hero-copy h1,
    .indx-hero-copy h1,
    .expx-hero-copy h1 {
        font-size: 38px;
    }

    .hero-image {
        padding: 16px 0 16px 16px;
    }

    .hero-image img {
        height: 300px;
    }

    .actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .strip-grid {
        grid-template-columns: 1fr;
    }

    .strip-item {
        min-height: 54px;
        justify-content: flex-start;
        padding: 0 17px;
        border-left: 1px solid var(--line);
    }

    .section {
        padding: 68px 0;
    }

    .two-col,
    .feature-row,
    .feature-row.reverse,
    .solx-heading,
    .indx-heading,
    .expx-heading,
    .solx-engagement-grid,
    .indx-support-grid,
    .expx-areas-grid,
    .solx-cta-grid,
    .indx-cta-grid,
    .expx-cta-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-row.reverse .feature-image {
        order: 1;
    }

    .feature-row.reverse .feature-copy {
        order: 2;
    }

    .feature-image {
        height: 270px;
    }

    .feature-copy h3 {
        font-size: 28px;
    }

    .feature-copy ul {
        grid-template-columns: 1fr;
    }

    .grid4,
    .tech-grid,
    .cards3,
    .solx-grid,
    .indx-grid,
    .expx-company-grid,
    .solx-logo-grid,
    .indx-engagement-grid,
    .expx-approach-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .field.full {
        grid-column: auto;
    }

    .footer-main,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .solx-hero,
    .indx-hero,
    .expx-hero {
        padding: 50px 0 58px;
        background: var(--white);
    }

    .solx-hero-visual {
        max-width: 480px;
        height: 290px;
    }

    .solx-main-photo {
        max-width: 335px;
        height: 205px;
    }

    .solx-small-photo {
        max-width: 195px;
        height: 120px;
    }

    .solx-flow-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 8px 0;
    }

    .solx-flow-arrow {
        display: none;
    }

    .solx-flow-grid > div:not(.solx-flow-arrow) {
        min-height: 64px;
        border-bottom: 1px solid var(--line);
    }

    .indx-hero-visual {
        max-width: 480px;
        margin-left: 0;
    }

    .indx-hero-image {
        height: 250px;
    }

    .expx-hero-summary {
        max-width: 520px;
    }

    .solx-card,
    .indx-card-body,
    .expx-company-body {
        min-height: auto;
    }

    .solx-card {
        min-height: 365px;
    }
}


/* =========================================================
   RESPONSIVE — SMALL PHONE
========================================================= */

@media (max-width: 480px) {

    .brand img {
        height: 44px;
    }

    .hero h1,
    .page-hero h1,
    .solx-hero-copy h1,
    .indx-hero-copy h1,
    .expx-hero-copy h1 {
        font-size: 33px;
    }

    .hero-image img {
        height: 245px;
    }

    .solx-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .solx-button,
    .solx-text-button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .solx-hero-visual {
        height: 255px;
    }

    .solx-main-photo {
        width: 84%;
        height: 180px;
    }

    .solx-small-photo {
        width: 49%;
        height: 103px;
    }

    .solx-hero-card {
        display: none;
    }

    .solx-flow-grid {
        grid-template-columns: 1fr;
    }

    .solx-card-image,
    .indx-card-image {
        height: 125px;
    }

    .indx-hero-image {
        height: 215px;
    }

    .indx-hero-label {
        left: 10px;
        bottom: -16px;
    }

    .expx-logo-area {
        height: 115px;
    }

    .solx-heading h2,
    .indx-heading h2,
    .expx-heading h2,
    .solx-engagement-grid h2,
    .indx-support-grid h2,
    .expx-areas-grid h2,
    .solx-cta h2,
    .indx-cta h2,
    .expx-cta h2 {
        font-size: 30px;
    }
}



/* =========================================================
   COMPANY PAGE
========================================================= */


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

.comx-hero {
    padding: 64px 0 68px;

    background:
        linear-gradient(
            112deg,
            #ffffff 0%,
            #ffffff 69%,
            #f5f7f8 69%,
            #f5f7f8 100%
        );

    border-bottom:
        1px solid var(--line);
}


.comx-hero-grid {
    display: grid;

    grid-template-columns:
        1fr 0.58fr;

    gap: 68px;

    align-items: center;
}


.comx-hero-copy {
    max-width: 700px;
}


.comx-hero-copy h1 {
    max-width: 700px;

    font-size:
        clamp(44px, 4.7vw, 60px);

    line-height: 1.04;

    letter-spacing: -1.9px;

    margin-bottom: 21px;
}


.comx-hero-lead {
    max-width: 650px;

    color: #596770;

    font-size: 17px;

    line-height: 1.75;

    margin-bottom: 11px;
}


.comx-hero-sub {
    max-width: 650px;

    color: #748088;

    font-size: 14px;

    line-height: 1.75;

    margin-bottom: 23px;
}


.comx-hero-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;
}


.comx-hero-tags span {
    padding: 6px 9px;

    background: #f2f5f6;

    color: #5f6d75;

    font-size: 9px;

    font-weight: 700;
}



/* HERO RIGHT */

.comx-hero-panel {
    border-top:
        1px solid var(--line);
}


.comx-hero-panel > div {
    min-height: 84px;

    display: grid;

    grid-template-columns:
        32px 1fr;

    grid-template-rows:
        auto auto;

    align-content: center;

    column-gap: 12px;

    border-bottom:
        1px solid var(--line);
}


.comx-hero-panel span {
    grid-row:
        1 / 3;

    color: #45a8b6;

    font-size: 9px;

    font-weight: 800;

    padding-top: 2px;
}


.comx-hero-panel strong {
    font-size: 14px;
}


.comx-hero-panel small {
    color: #7a868d;

    font-size: 10px;

    line-height: 1.45;

    margin-top: 3px;
}



/* =========================================================
   WHO WE ARE
========================================================= */

.comx-about {
    padding: 88px 0;

    background: #ffffff;
}


.comx-about-grid {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 90px;
}


.comx-about-grid h2 {
    max-width: 560px;

    font-size: 40px;

    line-height: 1.1;

    letter-spacing: -1.1px;
}


.comx-about-copy {
    max-width: 600px;
}


.comx-about-copy p {
    color: #68757d;

    font-size: 14px;

    line-height: 1.85;

    margin-bottom: 16px;
}


.comx-about-copy .comx-lead {
    color: #263139;

    font-size: 19px;

    line-height: 1.6;
}



/* =========================================================
   HOW WE WORK
========================================================= */

.comx-principles {
    padding: 84px 0 92px;

    background: #f7f8f9;
}


.comx-heading {
    display: grid;

    grid-template-columns:
        1fr 0.62fr;

    gap: 65px;

    align-items: end;

    margin-bottom: 38px;
}


.comx-heading h2 {
    max-width: 590px;

    font-size: 39px;

    line-height: 1.1;

    letter-spacing: -1px;
}


.comx-heading > p {
    color: #6d7981;

    font-size: 14px;

    line-height: 1.75;
}


.comx-principle-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top:
        1px solid var(--line);

    border-left:
        1px solid var(--line);
}


.comx-principle-grid article {
    min-height: 250px;

    padding: 25px;

    background: #ffffff;

    border-right:
        1px solid var(--line);

    border-bottom:
        1px solid var(--line);
}


.comx-principle-grid article > span {
    display: block;

    color: #43a8b6;

    font-size: 9px;

    font-weight: 800;

    margin-bottom: 44px;
}


.comx-principle-grid h3 {
    font-size: 18px;

    line-height: 1.3;

    margin-bottom: 10px;
}


.comx-principle-grid p {
    color: #69767e;

    font-size: 12px;

    line-height: 1.7;
}



/* =========================================================
   WHO WE SUPPORT
========================================================= */

.comx-clients {
    padding: 88px 0;

    background: #ffffff;
}


.comx-clients-grid {
    display: grid;

    grid-template-columns:
        0.75fr 1.25fr;

    gap: 85px;
}


.comx-clients-grid h2 {
    max-width: 480px;

    font-size: 39px;

    line-height: 1.1;

    letter-spacing: -1px;

    margin-bottom: 16px;
}


.comx-clients-grid > div:first-child > p {
    max-width: 500px;

    color: #68757d;

    font-size: 14px;

    line-height: 1.8;
}


.comx-client-list {
    border-top:
        1px solid var(--line);
}


.comx-client-list > div {
    min-height: 72px;

    display: grid;

    grid-template-columns:
        40px 1fr;

    align-items: center;

    gap: 12px;

    border-bottom:
        1px solid var(--line);
}


.comx-client-list span {
    color: #43a8b6;

    font-size: 9px;

    font-weight: 800;
}


.comx-client-list strong {
    display: block;

    font-size: 14px;
}


.comx-client-list small {
    color: #7c878e;

    font-size: 10px;
}



/* =========================================================
   CAPABILITIES
========================================================= */

.comx-capabilities {
    padding: 82px 0;

    background: #f7f8f9;
}


.comx-capability-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top:
        1px solid var(--line);

    border-left:
        1px solid var(--line);
}


.comx-capability-grid > div {
    min-height: 155px;

    padding: 24px;

    background: #ffffff;

    border-right:
        1px solid var(--line);

    border-bottom:
        1px solid var(--line);
}


.comx-capability-grid span {
    display: block;

    color: #43a8b6;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.8px;

    margin-bottom: 31px;
}


.comx-capability-grid strong {
    display: block;

    font-size: 15px;

    margin-bottom: 5px;
}


.comx-capability-grid small {
    color: #7c878e;

    font-size: 10px;

    line-height: 1.5;
}



/* =========================================================
   LOCATION
========================================================= */

.comx-presence {
    padding: 84px 0;

    background: #ffffff;
}


.comx-presence-grid {
    display: grid;

    grid-template-columns:
        1fr 0.7fr;

    gap: 80px;

    align-items: end;
}


.comx-presence-grid h2 {
    max-width: 620px;

    font-size: 39px;

    line-height: 1.1;

    letter-spacing: -1px;
}


.comx-presence-lead {
    color: #68757d;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 17px;
}



/* =========================================================
   CTA
========================================================= */

.comx-cta {
    padding: 62px 0;

    background: var(--char);

    color: #ffffff;
}


.comx-cta-grid {
    display: grid;

    grid-template-columns:
        1fr 0.42fr;

    gap: 65px;

    align-items: end;
}


.comx-cta-grid > div:first-child > span {
    display: block;

    color: var(--cyan);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.3px;

    margin-bottom: 10px;
}


.comx-cta h2 {
    max-width: 620px;

    font-size: 37px;

    line-height: 1.1;

    letter-spacing: -0.9px;
}


.comx-cta p {
    color: #bac3c8;

    font-size: 13px;

    line-height: 1.6;

    margin-bottom: 14px;
}


.comx-cta a {
    display: inline-flex;

    align-items: center;

    gap: 17px;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    border-bottom:
        1px solid rgba(255,255,255,0.45);

    padding-bottom: 4px;
}



/* =========================================================
   COMPANY TABLET
========================================================= */

@media (max-width: 1024px) {

    .comx-hero-grid {
        gap: 40px;
    }


    .comx-about-grid,
    .comx-clients-grid,
    .comx-presence-grid {
        gap: 45px;
    }


    .comx-principle-grid,
    .comx-capability-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}



/* =========================================================
   COMPANY MOBILE
========================================================= */

@media (max-width: 780px) {

    .comx-hero {
        padding: 50px 0 58px;

        background: #ffffff;
    }


    .comx-hero-grid,
    .comx-about-grid,
    .comx-heading,
    .comx-clients-grid,
    .comx-presence-grid,
    .comx-cta-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .comx-hero-copy h1 {
        font-size: 38px;
    }


    .comx-principle-grid,
    .comx-capability-grid {
        grid-template-columns: 1fr;
    }

}



/* =========================================================
   COMPANY SMALL PHONE
========================================================= */

@media (max-width: 480px) {

    .comx-hero-copy h1 {
        font-size: 33px;
    }


    .comx-about-grid h2,
    .comx-heading h2,
    .comx-clients-grid h2,
    .comx-presence-grid h2,
    .comx-cta h2 {
        font-size: 30px;
    }


    .comx-principle-grid article {
        min-height: auto;
    }

}

/* =========================================================
   INSIGHTS / ARTICLE
========================================================= */

.content-card-image-link {
    display: block;
    overflow: hidden;
}

.content-card-image-link img {
    width: 100%;
    height: 205px;
    object-fit: cover;

    transition:
        transform 0.35s ease;
}

.content-card-image-link:hover img {
    transform: scale(1.025);
}


/* ARTICLE HERO */

.article-hero {
    padding: 64px 0 68px;

    background:
        linear-gradient(
            112deg,
            #ffffff 0%,
            #ffffff 67%,
            #f5f7f8 67%,
            #f5f7f8 100%
        );

    border-bottom:
        1px solid var(--line);
}


.article-hero-grid {
    display: grid;

    grid-template-columns:
        1fr 0.72fr;

    gap: 65px;

    align-items: center;
}


.article-hero-copy h1 {
    max-width: 720px;

    font-size:
        clamp(40px, 4.5vw, 56px);

    line-height: 1.06;

    letter-spacing: -1.7px;

    margin-bottom: 18px;
}


.article-hero-copy p {
    max-width: 650px;

    color: #65727a;

    font-size: 16px;

    line-height: 1.75;
}


.article-hero-image {
    height: 300px;

    overflow: hidden;

    border:
        1px solid var(--line);

    background: #edf0f2;
}


.article-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.article-section {
    padding: 78px 0 90px;

    background: #ffffff;
}


.article-back {
    margin-top: 40px;

    padding-top: 25px;

    border-top:
        1px solid var(--line);
}


/* TABLET */

@media (max-width: 1024px) {

    .article-hero-grid {
        gap: 40px;
    }

}


/* MOBILE */

@media (max-width: 780px) {

    .article-hero {
        padding: 50px 0 58px;

        background: #ffffff;
    }


    .article-hero-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .article-hero-copy h1 {
        font-size: 37px;
    }


    .article-hero-image {
        height: 250px;
    }

}


/* SMALL PHONE */

@media (max-width: 480px) {

    .content-card-image-link img {
        height: 170px;
    }


    .article-hero-copy h1 {
        font-size: 32px;
    }


    .article-hero-image {
        height: 210px;
    }

}



/* =========================================================
   CONTACT FORM STATUS
========================================================= */

.contact-status {
    margin-bottom: 24px;
    padding: 17px 19px;
    font-size: 13px;
    line-height: 1.6;
}

.contact-status strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.contact-status p {
    margin: 0;
}

.contact-status-success {
    border: 1px solid #b8dfca;
    border-left: 4px solid #32935d;
    background: #f2faf5;
    color: #245f3d;
}

.contact-status-error {
    border: 1px solid #e2c0c0;
    border-left: 4px solid #b94b4b;
    background: #fff7f7;
    color: #803535;
}

.contact-status-error a {
    color: inherit;
    font-weight: 700;
}

#submitProjectButton:disabled {
    pointer-events: none;
}



