/* =========================================================
   BEACON SAFETY DYNAMICS
   Global Website Styles
========================================================= */

/* ---------- Brand variables ---------- */

:root {
    --brand: #8b1e3f;
    --brand-dark: #66142e;
    --brand-light: #f5e9ed;

    --navy: #182533;
    --navy-light: #26394b;

    --text: #27313a;
    --text-light: #5f6b76;

    --white: #ffffff;
    --background: #f6f7f8;
    --border: #dfe4e8;

    --shadow-sm: 0 6px 20px rgba(19, 32, 45, 0.08);
    --shadow-md: 0 18px 45px rgba(19, 32, 45, 0.12);

    --radius: 12px;
    --transition: 0.25s ease;
}


/* =========================================================
   RESET AND GLOBAL
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(90%, 1180px);
    margin: 0 auto;
}

section {
    padding: 96px 0;
}

h1,
h2,
h3 {
    color: var(--navy);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.6rem, 5vw, 4.75rem);
    letter-spacing: -0.045em;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: -0.025em;
}

h3 {
    font-size: 1.25rem;
}

p {
    color: var(--text-light);
}


/* =========================================================
   HEADER AND NAVIGATION
========================================================= */

header,
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(24, 37, 51, 0.09);
    backdrop-filter: blur(12px);
}

.nav {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    width: auto;
    height: 64px;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

nav a {
    position: relative;
    padding: 30px 0 27px;
    color: var(--navy);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: color var(--transition);
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 21px;
    width: 0;
    height: 3px;
    background: var(--brand);
    transition: width var(--transition);
}

nav a:hover,
nav a:focus-visible {
    color: var(--brand);
}

nav a:hover::after,
nav a:focus-visible::after {
    width: 100%;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn,
.button,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 25px;
    border: 2px solid transparent;
    border-radius: 7px;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.btn,
.button {
    color: var(--white);
    background: var(--brand);
    box-shadow: 0 10px 25px rgba(139, 30, 63, 0.22);
}

.btn:hover,
.button:hover {
    color: var(--white);
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(139, 30, 63, 0.3);
}

.btn-outline {
    color: var(--navy);
    background: transparent;
    border-color: var(--navy);
}

.btn-outline:hover {
    color: var(--white);
    background: var(--navy);
    transform: translateY(-2px);
}


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

.hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(139, 30, 63, 0.12),
            transparent 34%
        ),
        linear-gradient(135deg, #fafafa 0%, #f0f3f5 100%);
}

.hero::after {
    content: "";
    position: absolute;
    right: -140px;
    bottom: -190px;
    width: 430px;
    height: 430px;
    border: 70px solid rgba(139, 30, 63, 0.055);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 70px;
}

.hero-text {
    max-width: 680px;
}

.eyebrow {
    margin-bottom: 18px;
    color: var(--brand);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 25px;
}

.hero-text > p:not(.eyebrow) {
    max-width: 660px;
    margin-bottom: 32px;
    font-size: 1.08rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: "";
    position: absolute;
    top: -18px;
    right: -18px;
    width: 62%;
    height: 56%;
    border-radius: var(--radius);
    background: var(--brand);
    opacity: 0.12;
}

.hero-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 420px;
    max-height: 550px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* =========================================================
   TRUST BAR
========================================================= */

.trust-bar {
    position: relative;
    z-index: 5;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 35px rgba(24, 37, 51, 0.06);
}

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

.trust-item {
    display: flex;
    min-height: 126px;
    padding: 24px 18px;
    align-items: center;
    gap: 14px;
    border-right: 1px solid var(--border);
    transition:
        background var(--transition),
        transform var(--transition);
}

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

.trust-item:hover {
    position: relative;
    z-index: 2;
    background: var(--background);
    transform: translateY(-3px);
}

.trust-icon {
    display: flex;
    width: 42px;
    min-width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    background: var(--brand-light);
    border-radius: 50%;
}

.trust-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--navy);
    font-size: 0.86rem;
    line-height: 1.35;
}

.trust-item small {
    display: block;
    color: var(--text-light);
    font-size: 0.71rem;
    line-height: 1.4;
}


/* =========================================================
   SHARED SECTION TITLES
========================================================= */

.section-title {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-title h2 {
    margin-bottom: 16px;
}

.section-title h2::after {
    content: "";
    display: block;
    width: 58px;
    height: 4px;
    margin: 20px auto 0;
    background: var(--brand);
    border-radius: 99px;
}

.section-title p {
    font-size: 1.03rem;
}


/* =========================================================
   ABOUT PREVIEW
========================================================= */

.about-preview,
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: start;
}

.about-grid h3 {
    margin-bottom: 18px;
    font-size: 1.55rem;
}

.about-grid p {
    font-size: 1.02rem;
}

.check-list {
    display: grid;
    gap: 13px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 14px 16px 14px 46px;
    color: var(--navy);
    background: var(--background);
    border-left: 3px solid var(--brand);
    border-radius: 7px;
    font-weight: 600;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 17px;
    top: 12px;
    color: var(--brand);
    font-size: 1.15rem;
    font-weight: 900;
}


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

.industries-preview {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.industries-preview::before {
    content: "";
    position: absolute;
    top: 0;
    right: -170px;
    width: 390px;
    height: 390px;
    border: 65px solid rgba(139, 30, 63, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.industries-header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 52px;
}

.industries-header h2 {
    max-width: 690px;
}

.industries-intro {
    padding-bottom: 5px;
}

.industries-intro p {
    margin-bottom: 20px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--brand);
    font-size: 0.92rem;
    font-weight: 800;
}

.text-link span {
    font-size: 1.2rem;
    transition: transform var(--transition);
}

.text-link:hover span {
    transform: translateX(5px);
}

.industries-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.industry-card {
    min-height: 290px;
    padding: 34px 30px;
    background: var(--white);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.industry-card:hover {
    position: relative;
    z-index: 2;
    background: var(--background);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.industry-icon {
    display: flex;
    width: 54px;
    height: 54px;
    margin-bottom: 25px;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    background: var(--brand-light);
    border-radius: 50%;
}

.industry-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.industry-card h3 {
    margin-bottom: 13px;
}

.industry-card p {
    margin-bottom: 24px;
}

.industry-standard {
    display: inline-block;
    margin-top: auto;
    padding: 6px 10px;
    color: var(--brand-dark);
    background: var(--brand-light);
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-hero-panel {
    display: flex;
    flex-direction: column;
}

.contact-hero-availability {
    display: flex;
    margin-top: 28px;
    padding-top: 22px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-hero-availability span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-hero-availability strong {
    color: var(--white);
    font-size: 0.92rem;
}

.contact-overview {
    background: var(--white);
}

.contact-overview-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
}

.contact-overview-heading h2 {
    max-width: 580px;
}

.contact-overview-content p {
    margin-bottom: 22px;
}

.contact-main {
    background: var(--background);
    scroll-margin-top: 100px;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    align-items: start;
    gap: 52px;
}

.contact-information {
    position: sticky;
    top: 120px;
    overflow: hidden;
    color: var(--white);
    background: var(--navy);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.contact-information-header {
    padding: 38px 34px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.contact-information-header .section-eyebrow {
    color: rgba(255, 255, 255, 0.62);
}

.contact-information-header h2 {
    margin-bottom: 17px;
    color: var(--white);
}

.contact-information-header p {
    color: rgba(255, 255, 255, 0.67);
}

.contact-detail-list {
    padding: 12px 34px;
}

.contact-detail-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 17px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.contact-detail-item:last-child {
    border-bottom: 0;
}

.contact-detail-icon {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(139, 30, 63, 0.8);
    border-radius: 9px;
}

.contact-detail-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-detail-item span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.53);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-detail-item a,
.contact-detail-item strong {
    color: var(--white);
    font-size: 0.91rem;
    line-height: 1.55;
}

.contact-detail-item a {
    overflow-wrap: anywhere;
}

.contact-detail-item a:hover {
    color: rgba(255, 255, 255, 0.78);
}

.contact-project-types {
    margin: 12px 34px 0;
    padding: 27px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.contact-project-types h3 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 1rem;
}

.contact-project-types ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 18px;
    list-style: none;
}

.contact-project-types li {
    position: relative;
    padding-left: 15px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.8rem;
    line-height: 1.5;
}

.contact-project-types li::before {
    content: "";
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 5px;
    height: 5px;
    background: var(--brand);
    border-radius: 50%;
}

.contact-confidentiality {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 13px;
    padding: 23px 34px;
    background: rgba(255, 255, 255, 0.055);
}

.contact-confidentiality div {
    color: rgba(255, 255, 255, 0.74);
}

.contact-confidentiality svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-confidentiality p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.77rem;
    line-height: 1.6;
}

.contact-form-card {
    padding: 43px 40px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.contact-form-heading {
    margin-bottom: 32px;
}

.contact-form-heading h2 {
    margin-bottom: 14px;
}

.contact-form-heading p {
    max-width: 620px;
}

.consultation-form {
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 800;
}

.form-group label span,
.form-consent label span {
    color: var(--brand);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    font: inherit;
    font-size: 0.9rem;
    outline: none;
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.form-group input,
.form-group select {
    min-height: 52px;
    padding: 0 15px;
}

.form-group textarea {
    min-height: 175px;
    padding: 15px;
    resize: vertical;
    line-height: 1.65;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(73, 85, 99, 0.58);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(139, 30, 63, 0.34);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(139, 30, 63, 0.09);
}

.form-group.is-invalid input,
.form-group.is-invalid select,
.form-group.is-invalid textarea {
    background: rgba(139, 30, 63, 0.025);
    border-color: var(--brand);
}

.form-error {
    display: none;
    margin-top: 7px;
    color: var(--brand);
    font-size: 0.74rem;
    font-weight: 700;
}

.form-group.is-invalid .form-error {
    display: block;
}

.form-field-footer {
    display: flex;
    min-height: 22px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.character-count {
    margin-top: 7px;
    margin-left: auto;
    color: var(--text-light);
    font-size: 0.71rem;
    white-space: nowrap;
}

.form-consent {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 11px;
    margin-top: 2px;
    align-items: start;
}

.form-consent input {
    width: 17px;
    height: 17px;
    margin-top: 3px;
    accent-color: var(--brand);
}

.form-consent label {
    color: var(--text-light);
    font-size: 0.78rem;
    line-height: 1.6;
}

.consent-error {
    margin-left: 29px;
}

.consent-error.is-visible {
    display: block;
}

.form-submit-button {
    min-width: 230px;
    margin-top: 27px;
    border: 0;
    cursor: pointer;
}

.submit-button-loading {
    display: none;
}

.form-submit-button.is-loading {
    cursor: wait;
    opacity: 0.75;
}

.form-submit-button.is-loading .submit-button-text {
    display: none;
}

.form-submit-button.is-loading .submit-button-loading {
    display: inline;
}

.form-submit-button:disabled {
    cursor: not-allowed;
}

.form-status {
    display: none;
    margin-top: 24px;
    padding: 20px 22px;
    border-radius: 7px;
}

.form-status.is-visible {
    display: block;
}

.form-status strong {
    display: block;
    margin-bottom: 7px;
    font-size: 0.9rem;
}

.form-status p {
    font-size: 0.82rem;
    line-height: 1.65;
}

.form-status-success {
    color: #1f5133;
    background: #edf8f1;
    border: 1px solid #b9ddc5;
}

.form-status-error {
    color: #74203b;
    background: #fff3f6;
    border: 1px solid #e4bac7;
}

.form-status-error a {
    color: inherit;
    font-weight: 800;
    text-decoration: underline;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-next-steps {
    background: var(--white);
}

.contact-step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
}

.contact-step-card {
    min-height: 280px;
    padding: 30px 27px;
    background: var(--background);
    border: 1px solid var(--border);
    border-top: 4px solid var(--brand);
    border-radius: var(--radius);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.contact-step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.contact-step-card > span {
    display: block;
    margin-bottom: 42px;
    color: rgba(139, 30, 63, 0.33);
    font-size: 2rem;
    font-weight: 800;
}

.contact-step-card h3 {
    margin-bottom: 14px;
}

.contact-direct-email {
    background: var(--navy);
}

.contact-direct-email-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: 80px;
}

.contact-direct-email h2 {
    margin-bottom: 18px;
    color: var(--white);
}

.contact-direct-email .section-eyebrow {
    color: rgba(255, 255, 255, 0.62);
}

.contact-direct-email p {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.67);
}

.contact-direct-email-action {
    padding: 30px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
}

.contact-direct-email-action span {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-direct-email-action a {
    display: block;
    margin-bottom: 14px;
    color: var(--white);
    font-size: clamp(1rem, 2vw, 1.32rem);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.contact-direct-email-action a:hover {
    color: rgba(255, 255, 255, 0.76);
}

.contact-direct-email-action p {
    font-size: 0.78rem;
}






/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-us {
    background: var(--navy);
}

.why-us .section-title h2,
.why-us .feature-card h3 {
    color: var(--white);
}

.why-us .section-title p,
.why-us .feature-card p {
    color: rgba(255, 255, 255, 0.74);
}

.why-us .section-title h2::after {
    background: var(--brand);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature-card {
    min-height: 215px;
    padding: 31px 25px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.feature-card::before {
    content: "";
    display: block;
    width: 38px;
    height: 4px;
    margin-bottom: 24px;
    background: var(--brand);
    border-radius: 99px;
}

.feature-card h3 {
    margin-bottom: 14px;
}

.feature-card:hover {
    transform: translateY(-7px);
    background: rgba(255, 255, 255, 0.095);
    border-color: rgba(255, 255, 255, 0.25);
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    background: var(--background);
}

.services h2 {
    margin-bottom: 42px;
    text-align: center;
}

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

.card {
    position: relative;
    overflow: hidden;
    padding: 34px 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--brand);
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 30, 63, 0.35);
    box-shadow: var(--shadow-md);
}

.section-eyebrow {
    margin-bottom: 10px;
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.service-card {
    display: flex;
    min-height: 355px;
    flex-direction: column;
}

.service-number {
    position: absolute;
    top: 23px;
    right: 25px;
    color: rgba(24, 37, 51, 0.1);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
}

.service-icon {
    display: flex;
    width: 58px;
    height: 58px;
    margin-bottom: 25px;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    background: var(--brand-light);
    border-radius: 10px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    max-width: 85%;
}

.service-card p {
    margin-bottom: 25px;
}

.service-link {
    display: inline-flex;
    margin-top: auto;
    align-items: center;
    gap: 9px;
    color: var(--brand);
    font-size: 0.92rem;
    font-weight: 800;
}

.service-link span {
    font-size: 1.2rem;
    transition: transform var(--transition);
}

.service-link:hover span {
    transform: translateX(5px);
}

.services-action {
    margin-top: 42px;
    text-align: center;
}

/* =========================================================
   TECHNICAL EXPERTISE PAGE
========================================================= */

.expertise-introduction {
    background: var(--white);
}

.expertise-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
}

.expertise-intro-grid h2 {
    max-width: 560px;
}

.expertise-intro-grid p {
    margin-bottom: 22px;
}

.expertise-areas {
    background: var(--background);
    scroll-margin-top: 100px;
}

.expertise-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.expertise-card {
    position: relative;
    min-height: 470px;
    padding: 34px 29px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.expertise-card::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -80px;
    width: 170px;
    height: 170px;
    border: 28px solid rgba(139, 30, 63, 0.035);
    border-radius: 50%;
}

.expertise-card:hover {
    transform: translateY(-7px);
    border-color: rgba(139, 30, 63, 0.25);
    box-shadow: var(--shadow-md);
}

.expertise-number {
    position: absolute;
    top: 25px;
    right: 27px;
    color: rgba(24, 37, 51, 0.1);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.expertise-icon {
    display: flex;
    width: 58px;
    height: 58px;
    margin-bottom: 25px;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    background: var(--brand-light);
    border-radius: 10px;
}

.expertise-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.expertise-card h3 {
    max-width: 82%;
    margin-bottom: 15px;
}

.expertise-card > p {
    margin-bottom: 26px;
}

.expertise-keywords {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.expertise-keywords li {
    padding: 7px 10px;
    color: var(--brand-dark);
    background: var(--brand-light);
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 800;
}

.fds-section {
    background: var(--navy);
}

.fds-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 80px;
}

.fds-content h2 {
    margin-bottom: 22px;
    color: var(--white);
}

.fds-content .section-eyebrow {
    color: rgba(255, 255, 255, 0.62);
}

.fds-content > p {
    margin-bottom: 21px;
    color: rgba(255, 255, 255, 0.69);
}

.fds-content .fds-lead {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.65;
}

.fds-content .btn {
    margin-top: 10px;
}

.fds-analysis-panel {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
}

.analysis-panel-header {
    display: flex;
    padding: 23px 26px;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.analysis-panel-header span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.analysis-panel-header strong {
    color: var(--white);
    font-size: 1.5rem;
}

.analysis-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 17px;
    padding: 22px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.analysis-step:last-child {
    border-bottom: 0;
}

.analysis-step > span {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(139, 30, 63, 0.75);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
}

.analysis-step h3 {
    margin-bottom: 6px;
    color: var(--white);
    font-size: 1rem;
}

.analysis-step p {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.88rem;
    line-height: 1.65;
}

.technical-quality {
    background: var(--white);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.quality-card {
    min-height: 275px;
    padding: 30px 25px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.quality-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.quality-card span {
    display: block;
    margin-bottom: 37px;
    color: rgba(139, 30, 63, 0.3);
    font-size: 2rem;
    font-weight: 800;
}

.quality-card h3 {
    margin-bottom: 14px;
}

.engineering-workflow {
    background: var(--background);
}

.workflow-track {
    display: grid;
    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr auto
        1fr;
    align-items: stretch;
    gap: 12px;
}

.workflow-item {
    min-height: 225px;
    padding: 27px 22px;
    background: var(--white);
    border-top: 4px solid var(--brand);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.workflow-number {
    display: block;
    margin-bottom: 28px;
    color: rgba(139, 30, 63, 0.35);
    font-size: 1.8rem;
    font-weight: 800;
}

.workflow-item h3 {
    margin-bottom: 12px;
}

.workflow-item p {
    font-size: 0.9rem;
}

.workflow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(139, 30, 63, 0.45);
    font-size: 1.5rem;
    font-weight: 800;
}

.standards-section {
    background: var(--white);
}

.standards-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 80px;
}

.standards-heading h2 {
    margin-bottom: 22px;
}

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

.standard-item {
    min-height: 125px;
    display: flex;
    padding: 23px;
    flex-direction: column;
    justify-content: center;
    background: var(--background);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition:
        background var(--transition),
        transform var(--transition);
}

.standard-item:hover {
    position: relative;
    z-index: 1;
    background: var(--white);
    transform: translateY(-3px);
}

.standard-item strong {
    margin-bottom: 7px;
    color: var(--brand);
    font-size: 1.15rem;
}

.standard-item span {
    color: var(--text-light);
    font-size: 0.85rem;
}

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

.industry-introduction {
    background: var(--white);
}

.industry-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
}

.industry-intro-grid h2 {
    max-width: 590px;
}

.industry-intro-grid p {
    margin-bottom: 22px;
}

.industry-sectors {
    background: var(--background);
    scroll-margin-top: 100px;
}

.industry-sector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.industry-sector-card {
    display: flex;
    min-height: 600px;
    padding: 32px 29px;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.industry-sector-card:hover {
    transform: translateY(-7px);
    border-color: rgba(139, 30, 63, 0.26);
    box-shadow: var(--shadow-md);
}

.industry-card-top {
    display: flex;
    margin-bottom: 25px;
    align-items: center;
    justify-content: space-between;
}

.industry-number {
    color: rgba(24, 37, 51, 0.13);
    font-size: 2.2rem;
    font-weight: 800;
}

.industry-sector-icon {
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    background: var(--brand-light);
    border-radius: 10px;
}

.industry-sector-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.industry-sector-card h3 {
    margin-bottom: 15px;
}

.industry-sector-card > p {
    margin-bottom: 24px;
}

.industry-sector-card h4 {
    margin-bottom: 13px;
    color: var(--navy);
    font-size: 0.79rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.industry-sector-card ul {
    display: grid;
    margin-bottom: 28px;
    gap: 10px;
    list-style: none;
}

.industry-sector-card li {
    position: relative;
    padding-left: 18px;
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.5;
}

.industry-sector-card li::before {
    content: "";
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--brand);
    border-radius: 50%;
}

.industry-sector-card > a {
    display: inline-flex;
    margin-top: auto;
    align-items: center;
    gap: 8px;
    color: var(--brand);
    font-size: 0.86rem;
    font-weight: 800;
}

.industry-sector-card > a span {
    transition: transform var(--transition);
}

.industry-sector-card > a:hover span {
    transform: translateX(4px);
}

.industry-support {
    background: var(--navy);
}

.industry-support-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 80px;
}

.industry-support-content h2 {
    margin-bottom: 22px;
    color: var(--white);
}

.industry-support-content .section-eyebrow {
    color: rgba(255, 255, 255, 0.62);
}

.industry-support-content p {
    margin-bottom: 21px;
    color: rgba(255, 255, 255, 0.68);
}

.industry-support-content .btn {
    margin-top: 8px;
}

.project-phase-list {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
}

.project-phase-list article {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 18px;
    padding: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.project-phase-list article:last-child {
    border-bottom: 0;
}

.project-phase-list article > span {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(139, 30, 63, 0.78);
    border-radius: 50%;
    font-size: 0.74rem;
    font-weight: 800;
}

.project-phase-list h3 {
    margin-bottom: 7px;
    color: var(--white);
    font-size: 1.02rem;
}

.project-phase-list p {
    color: rgba(255, 255, 255, 0.63);
    font-size: 0.88rem;
}

.industry-clients {
    background: var(--white);
}

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

.industry-client-item {
    display: flex;
    min-height: 125px;
    padding: 22px;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    background: var(--background);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    font-weight: 800;
    text-align: center;
    transition:
        background var(--transition),
        transform var(--transition);
}

.industry-client-item:hover {
    position: relative;
    z-index: 2;
    background: var(--white);
    transform: translateY(-3px);
}


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

.contact-cta {
    position: relative;
    overflow: hidden;
    padding: 88px 0;
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            rgba(24, 37, 51, 0.98),
            rgba(102, 20, 46, 0.97)
        );
    text-align: center;
}

.contact-cta::before,
.contact-cta::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.contact-cta::before {
    top: -170px;
    left: -130px;
    width: 390px;
    height: 390px;
}

.contact-cta::after {
    right: -100px;
    bottom: -210px;
    width: 470px;
    height: 470px;
}

.contact-cta .container {
    position: relative;
    z-index: 1;
}

.contact-cta .section-eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.contact-cta h2 {
    max-width: 780px;
    margin: 0 auto 18px;
    color: var(--white);
}

.contact-cta p:not(.section-eyebrow) {
    max-width: 720px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.04rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-light-outline {
    display: inline-flex;
    min-height: 52px;
    padding: 13px 25px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.65);
    border-radius: 7px;
    font-size: 0.95rem;
    font-weight: 700;
    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.btn-light-outline:hover {
    color: var(--navy);
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}


/* =========================================================
   INNER PAGE HEADER
========================================================= */

.page-header {
    padding: 85px 0;
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            rgba(24, 37, 51, 0.98),
            rgba(102, 20, 46, 0.96)
        );
}

.page-header h1 {
    margin-bottom: 12px;
    color: var(--white);
    font-size: clamp(2.3rem, 4vw, 4rem);
}

.page-header p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.1rem;
}

/* =========================================================
   ABOUT PAGE
========================================================= */

nav a.active {
    color: var(--brand);
}

nav a.active::after {
    width: 100%;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(139, 30, 63, 0.17),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            #f8f5f6 0%,
            #eef2f4 100%
        );
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -230px;
    width: 480px;
    height: 480px;
    border: 75px solid rgba(139, 30, 63, 0.045);
    border-radius: 50%;
}

.page-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    gap: 80px;
}

.page-hero h1 {
    max-width: 820px;
    margin-bottom: 25px;
    font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.page-hero-intro {
    max-width: 760px;
    font-size: 1.1rem;
    line-height: 1.85;
}

.page-hero-panel {
    padding: 34px;
    background: var(--white);
    border-top: 5px solid var(--brand);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.panel-label {
    margin-bottom: 20px;
    color: var(--brand);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-focus-list {
    display: grid;
    gap: 14px;
    list-style: none;
}

.hero-focus-list li {
    position: relative;
    padding-left: 25px;
    color: var(--navy);
    font-weight: 700;
}

.hero-focus-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 9px;
    height: 9px;
    background: var(--brand);
    border-radius: 50%;
}

.company-overview {
    background: var(--white);
}

.about-detail-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
}

.about-detail-heading {
    position: sticky;
    top: 125px;
    align-self: start;
}

.about-detail-heading h2 {
    max-width: 470px;
}

.about-detail-content p {
    margin-bottom: 22px;
    font-size: 1.02rem;
}

.lead-paragraph {
    color: var(--navy);
    font-size: 1.28rem !important;
    font-weight: 700;
    line-height: 1.65;
}

.mission-values {
    background: var(--background);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.value-card {
    min-height: 275px;
    padding: 32px 27px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.value-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
}

.value-number {
    display: block;
    margin-bottom: 38px;
    color: rgba(139, 30, 63, 0.35);
    font-size: 2rem;
    font-weight: 800;
}

.value-card h3 {
    margin-bottom: 14px;
}

.about-capabilities {
    background: var(--navy);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 80px;
}

.capabilities-content h2 {
    margin-bottom: 22px;
    color: var(--white);
}

.capabilities-content p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.7);
}

.capabilities-content .section-eyebrow {
    color: rgba(255, 255, 255, 0.62);
}

.capabilities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.capability-item {
    padding: 27px 24px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius);
}

.capability-item h3 {
    margin-bottom: 12px;
    color: var(--white);
}

.capability-item p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.93rem;
}

.clients-section {
    background: var(--white);
}

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

.client-item {
    min-height: 115px;
    display: flex;
    padding: 22px;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    background: var(--white);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-weight: 800;
    text-align: center;
    transition:
        color var(--transition),
        background var(--transition);
}

.client-item:hover {
    color: var(--brand);
    background: var(--background);
}

/* =========================================================
   PRIVACY POLICY PAGE
========================================================= */

.privacy-hero-panel {
    display: flex;
    flex-direction: column;
}

.privacy-effective-date {
    display: flex;
    margin-top: 28px;
    padding-top: 22px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.privacy-effective-date span {
    color: rgba(255, 255, 255, 0.57);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.privacy-effective-date strong {
    color: var(--white);
    font-size: 0.9rem;
}

.privacy-introduction {
    background: var(--white);
}

.privacy-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
}

.privacy-intro-grid h2 {
    max-width: 590px;
}

.privacy-intro-grid p {
    margin-bottom: 22px;
}

.privacy-information {
    background: var(--background);
}

.privacy-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.privacy-card {
    min-height: 410px;
    padding: 29px 26px;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 4px solid var(--brand);
    border-radius: var(--radius);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.privacy-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 30, 63, 0.25);
    box-shadow: var(--shadow-md);
}

.privacy-card-number {
    display: block;
    margin-bottom: 34px;
    color: rgba(139, 30, 63, 0.28);
    font-size: 1.8rem;
    font-weight: 800;
}

.privacy-card h3 {
    margin-bottom: 14px;
}

.privacy-card > p {
    margin-bottom: 22px;
    font-size: 0.88rem;
}

.privacy-card ul {
    display: grid;
    gap: 10px;
    list-style: none;
}

.privacy-card li {
    position: relative;
    padding-left: 17px;
    color: var(--text-light);
    font-size: 0.82rem;
    line-height: 1.55;
}

.privacy-card li::before {
    content: "";
    position: absolute;
    top: 0.64em;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--brand);
    border-radius: 50%;
}

.privacy-policy-content {
    background: var(--white);
}

.privacy-policy-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: start;
    gap: 75px;
}

.privacy-policy-navigation {
    position: sticky;
    top: 115px;
    padding: 26px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.policy-navigation-title {
    margin-bottom: 18px;
    color: var(--navy);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.privacy-policy-navigation nav {
    display: grid;
}

.privacy-policy-navigation a {
    padding: 11px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.4;
    transition:
        color var(--transition),
        padding-left var(--transition);
}

.privacy-policy-navigation a:last-child {
    border-bottom: 0;
}

.privacy-policy-navigation a:hover {
    padding-left: 5px;
    color: var(--brand);
}

.privacy-policy-sections {
    min-width: 0;
}

.privacy-policy-section {
    padding: 0 0 55px;
    margin-bottom: 55px;
    scroll-margin-top: 120px;
    border-bottom: 1px solid var(--border);
}

.privacy-policy-section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.policy-section-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--brand);
    border-radius: 50%;
    font-size: 0.73rem;
    font-weight: 800;
}

.privacy-policy-section h2 {
    margin-bottom: 23px;
}

.privacy-policy-section > p {
    margin-bottom: 18px;
}

.privacy-policy-section > ul {
    display: grid;
    margin: 24px 0;
    gap: 13px;
    list-style: none;
}

.privacy-policy-section > ul li {
    position: relative;
    padding-left: 25px;
    color: var(--text-light);
    line-height: 1.7;
}

.privacy-policy-section > ul li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--brand);
    font-weight: 800;
}

.privacy-external-link {
    display: inline-flex;
    margin: 5px 0 25px;
    align-items: center;
    gap: 8px;
    color: var(--brand);
    font-size: 0.86rem;
    font-weight: 800;
}

.privacy-external-link span {
    transition: transform var(--transition);
}

.privacy-external-link:hover span {
    transform: translate(3px, -3px);
}

.privacy-note,
.privacy-warning {
    margin-top: 26px;
    padding: 23px 24px;
    border-radius: 8px;
}

.privacy-note {
    background: var(--background);
    border-left: 4px solid var(--brand);
}

.privacy-warning {
    background: rgba(139, 30, 63, 0.055);
    border: 1px solid rgba(139, 30, 63, 0.2);
}

.privacy-note strong,
.privacy-warning strong {
    display: block;
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 0.9rem;
}

.privacy-note p,
.privacy-warning p {
    margin-bottom: 10px;
    font-size: 0.83rem;
    line-height: 1.65;
}

.privacy-note p:last-child,
.privacy-warning p:last-child {
    margin-bottom: 0;
}

.privacy-note a {
    color: var(--brand);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.privacy-contact-card {
    max-width: 620px;
    margin-top: 25px;
    padding: 27px;
    background: var(--navy);
    border-radius: var(--radius);
}

.privacy-contact-card span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.privacy-contact-card strong {
    display: block;
    margin-bottom: 14px;
    color: var(--white);
    font-size: 1.04rem;
}

.privacy-contact-card a {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--white);
    font-size: clamp(0.95rem, 2vw, 1.16rem);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.privacy-contact-card a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.privacy-contact-card p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.79rem;
}

.privacy-update {
    background: var(--background);
}

.privacy-update-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 90px;
}

.privacy-update-grid h2 {
    margin-bottom: 0;
}

.privacy-update-grid p {
    max-width: 680px;
}



/* =========================================================
   SERVICES PAGE
========================================================= */

.services-introduction {
    background: var(--white);
}

.services-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
}

.services-intro-grid h2 {
    max-width: 520px;
}

.services-intro-grid p {
    margin-bottom: 22px;
}

.service-detail {
    background: var(--white);
    scroll-margin-top: 100px;
}

.service-detail-alt {
    background: var(--background);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
}

.service-detail-heading {
    position: sticky;
    top: 125px;
    align-self: start;
}

.service-detail-number {
    display: block;
    margin-bottom: 22px;
    color: rgba(139, 30, 63, 0.2);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
}

.service-detail-heading h2 {
    max-width: 470px;
}

.service-detail-content {
    padding-top: 8px;
}

.service-detail-content > p {
    margin-bottom: 22px;
}

.service-lead {
    color: var(--navy);
    font-size: 1.23rem;
    font-weight: 700;
    line-height: 1.65;
}

.service-detail-content h3 {
    margin-top: 35px;
    margin-bottom: 18px;
}

.detail-check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 20px;
    margin-bottom: 32px;
    list-style: none;
}

.detail-check-list li {
    position: relative;
    padding: 13px 15px 13px 42px;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 7px;
    font-weight: 600;
}

.service-detail:not(.service-detail-alt)
.detail-check-list li {
    background: var(--background);
}

.detail-check-list li::before {
    content: "✓";
    position: absolute;
    top: 11px;
    left: 15px;
    color: var(--brand);
    font-weight: 900;
}

.standards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.standards-row span {
    display: inline-block;
    padding: 7px 12px;
    color: var(--brand-dark);
    background: var(--brand-light);
    border-radius: 99px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.service-process {
    background: var(--navy);
}

.service-process .section-title h2 {
    color: var(--white);
}

.service-process .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.service-process .section-eyebrow {
    color: rgba(255, 255, 255, 0.6);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.process-card {
    min-height: 260px;
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    transition:
        transform var(--transition),
        background var(--transition);
}

.process-card:hover {
    transform: translateY(-7px);
    background: rgba(255, 255, 255, 0.09);
}

.process-card span {
    display: block;
    margin-bottom: 38px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 2rem;
    font-weight: 800;
}

.process-card h3 {
    margin-bottom: 13px;
    color: var(--white);
}

.process-card p {
    color: rgba(255, 255, 255, 0.67);
}


/* =========================================================
   STANDARD CONTENT PAGES
========================================================= */

.page-header + .container,
body > section.container {
    padding-top: 75px;
    padding-bottom: 90px;
}

body > section.container h2 {
    margin-top: 35px;
    margin-bottom: 14px;
}

body > section.container h2:first-child {
    margin-top: 0;
}

body > section.container p {
    max-width: 900px;
    margin-bottom: 22px;
}

hr {
    height: 1px;
    margin: 42px 0;
    background: var(--border);
    border: 0;
}


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

form {
    max-width: 780px;
    margin-top: 35px;
    padding: 36px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

form p {
    margin-bottom: 20px;
}

label {
    display: inline-block;
    margin-bottom: 7px;
    color: var(--navy);
    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;
    padding: 13px 15px;
    color: var(--text);
    background: var(--white);
    border: 1px solid #cbd2d8;
    border-radius: 7px;
    outline: none;
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(139, 30, 63, 0.1);
}

form button {
    min-height: 52px;
    padding: 13px 25px;
    color: var(--white);
    background: var(--brand);
    border: 0;
    border-radius: 7px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background var(--transition),
        transform var(--transition);
}

form button:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 0;
    color: rgba(255, 255, 255, 0.7);
    background: #101a24;
    text-align: left;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.75fr 1fr 1fr;
    gap: 55px;
    padding-top: 70px;
    padding-bottom: 58px;
}

.footer-logo {
    width: auto;
    height: 72px;
    margin-bottom: 23px;
    background: var(--white);
    border-radius: 4px;
}

.footer-brand p {
    max-width: 350px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
    line-height: 1.8;
}

.footer-column h3 {
    margin-bottom: 22px;
    color: var(--white);
    font-size: 1rem;
}

.footer-column ul {
    display: grid;
    gap: 12px;
    list-style: none;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact p {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.62);
}

.footer-contact > a {
    overflow-wrap: anywhere;
}

.footer-contact-link {
    display: inline-flex;
    margin-top: 22px;
    align-items: center;
    gap: 8px;
    color: var(--white) !important;
    font-weight: 800;
}

.footer-contact-link span {
    transition: transform var(--transition);
}

.footer-contact-link:hover span {
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.84rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.84rem;
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}


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

/* =========================================================
   SCROLL REVEAL ANIMATIONS
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-35px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
    will-change: opacity, transform;
}

.reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(35px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
    will-change: opacity, transform;
}

.reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.96);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
    will-change: opacity, transform;
}

.reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}

.reveal-delay-4 {
    transition-delay: 0.32s;
}

.reveal-delay-5 {
    transition-delay: 0.4s;
}

.reveal-delay-6 {
    transition-delay: 0.48s;
}

@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }

}

@media (max-width: 1024px) {

    .hero-grid {
        gap: 42px;
    }

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

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

   .industries-header {
    gap: 45px;
}

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

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

.page-hero-grid {
    gap: 45px;
}

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

.capabilities-grid {
    grid-template-columns: 1fr;
    gap: 50px;
}

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

   .services-intro-grid,
.service-detail-grid {
    gap: 50px;
}

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

     .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-item:nth-child(3) {
        border-right: 1px solid var(--border);
    }

    .trust-item:nth-child(n + 4) {
        border-top: 1px solid var(--border);
    }

   .expertise-intro-grid,
.fds-grid,
.standards-layout {
    gap: 50px;
}

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

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

.workflow-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.workflow-arrow {
    display: none;
}

.industry-intro-grid,
.industry-support-grid {
    gap: 50px;
}

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

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

.contact-overview-grid {
    gap: 50px;
}

.contact-main-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 32px;
}

.contact-information-header,
.contact-detail-list,
.contact-project-types {
    padding-left: 26px;
    padding-right: 26px;
}

.contact-project-types {
    margin-left: 0;
    margin-right: 0;
}

.contact-confidentiality {
    padding-left: 26px;
    padding-right: 26px;
}

.contact-form-card {
    padding: 36px 30px;
}

.contact-direct-email-grid {
    gap: 50px;
}

   .privacy-intro-grid,
.privacy-update-grid {
    gap: 50px;
}

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

.privacy-policy-layout {
    grid-template-columns: 225px minmax(0, 1fr);
    gap: 45px;
}
   
   
}


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

/* =========================================================
   SCROLL REVEAL ANIMATIONS
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-35px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
    will-change: opacity, transform;
}

.reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(35px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
    will-change: opacity, transform;
}

.reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.96);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
    will-change: opacity, transform;
}

.reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}

.reveal-delay-4 {
    transition-delay: 0.32s;
}

.reveal-delay-5 {
    transition-delay: 0.4s;
}

.reveal-delay-6 {
    transition-delay: 0.48s;
}

@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }

}


@media (max-width: 780px) {

    section {
        padding: 72px 0;
    }

    .nav {
        min-height: auto;
        padding: 15px 0;
        flex-direction: column;
        gap: 10px;
    }

    .logo {
        height: 55px;
    }

    nav {
        width: 100%;
        justify-content: center;
        gap: 10px 20px;
        flex-wrap: wrap;
    }

    nav a {
        padding: 8px 0;
        font-size: 0.85rem;
    }

    nav a::after {
        bottom: 2px;
    }

    .hero {
        padding: 70px 0;
    }

    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 46px;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        min-height: 280px;
        max-height: 380px;
    }

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

    .btn,
    .button,
    .btn-outline {
        width: 100%;
    }

    .about-grid {
        gap: 42px;
    }

    .feature-grid,
    .service-grid,
    .expertise ul {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: auto;
    }

    .section-title {
        margin-bottom: 38px;
        text-align: left;
    }

    .section-title h2::after {
        margin-left: 0;
    }

    form {
        padding: 24px 20px;
    }
.service-card {
    min-height: auto;
}

.service-card h3 {
    max-width: calc(100% - 45px);
}

.services-action .btn {
    width: 100%;
}
   .industries-header {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 25px;
    margin-bottom: 38px;
}

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

.industry-card {
    min-height: auto;
}

.text-link {
    font-size: 0.88rem;
}

   .cta-actions {
    flex-direction: column;
}

.cta-actions .btn,
.btn-light-outline {
    width: 100%;
}

.footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 55px;
    padding-bottom: 45px;
}

.footer-bottom {
    padding: 24px 0;
    align-items: flex-start;
    flex-direction: column;
}

.footer-legal {
    flex-wrap: wrap;
}

   .page-hero {
    padding: 72px 0;
}

.page-hero-grid,
.about-detail-grid {
    grid-template-columns: 1fr;
}

.page-hero-grid,
.about-detail-grid {
    gap: 42px;
}

.about-detail-heading {
    position: static;
}

.values-grid,
.capabilities-list,
.client-grid {
    grid-template-columns: 1fr;
}

.value-card {
    min-height: auto;
}

   .services-intro-grid,
.service-detail-grid {
    grid-template-columns: 1fr;
    gap: 38px;
}

.service-detail-heading {
    position: static;
}

.service-detail-number {
    font-size: 3.5rem;
}

.detail-check-list,
.process-grid {
    grid-template-columns: 1fr;
}

.process-card {
    min-height: auto;
}

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

.trust-item {
    min-height: 112px;
    padding: 20px 14px;
}

.trust-item:nth-child(n + 3) {
    border-top: 1px solid var(--border);
}

.trust-item:nth-child(odd) {
    border-left: 1px solid var(--border);
}

.trust-item strong {
    font-size: 0.8rem;
}

.trust-item small {
    font-size: 0.68rem;
}

.expertise-intro-grid,
.fds-grid,
.standards-layout {
    grid-template-columns: 1fr;
    gap: 42px;
}

.expertise-card-grid,
.quality-grid,
.standards-grid,
.workflow-track {
    grid-template-columns: 1fr;
}

.expertise-card {
    min-height: auto;
}

.quality-card,
.workflow-item {
    min-height: auto;
}

.fds-analysis-panel {
    border-radius: 8px;
}

.analysis-step {
    grid-template-columns: 38px 1fr;
    padding: 20px;
}

.workflow-arrow {
    display: none;
}

.industry-intro-grid,
.industry-support-grid {
    grid-template-columns: 1fr;
    gap: 42px;
}

.industry-sector-grid,
.industry-client-grid {
    grid-template-columns: 1fr;
}

.industry-sector-card {
    min-height: auto;
}

.project-phase-list article {
    grid-template-columns: 40px 1fr;
    padding: 21px;
}

   .contact-overview-grid,
.contact-main-grid,
.contact-direct-email-grid {
    grid-template-columns: 1fr;
    gap: 42px;
}

.contact-information {
    position: static;
}

.contact-form-card {
    padding: 31px 22px;
}

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

.contact-project-types ul {
    grid-template-columns: 1fr;
}

.contact-step-grid {
    grid-template-columns: 1fr;
}

.contact-step-card {
    min-height: auto;
}

.form-submit-button {
    width: 100%;
}

.form-field-footer {
    display: block;
}

.character-count {
    display: block;
    margin-left: 0;
}

.contact-direct-email-action {
    padding: 25px 21px;
}

.privacy-intro-grid,
.privacy-update-grid,
.privacy-policy-layout {
    grid-template-columns: 1fr;
    gap: 42px;
}

.privacy-card-grid {
    grid-template-columns: 1fr;
}

.privacy-card {
    min-height: auto;
}

.privacy-policy-navigation {
    position: static;
}

.privacy-policy-navigation nav {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 18px;
}

.privacy-policy-section {
    padding-bottom: 42px;
    margin-bottom: 42px;
}

.privacy-note,
.privacy-warning,
.privacy-contact-card {
    padding: 21px;
}
   
   
}


/* =========================================================
   SMALL MOBILE
========================================================= */

/* =========================================================
   SCROLL REVEAL ANIMATIONS
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-35px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
    will-change: opacity, transform;
}

.reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(35px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
    will-change: opacity, transform;
}

.reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.96);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
    will-change: opacity, transform;
}

.reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}

.reveal-delay-4 {
    transition-delay: 0.32s;
}

.reveal-delay-5 {
    transition-delay: 0.4s;
}

.reveal-delay-6 {
    transition-delay: 0.48s;
}

@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }

}


@media (max-width: 480px) {

    .container {
        width: min(92%, 1180px);
    }

    .logo {
        height: 49px;
    }

    nav {
        gap: 7px 15px;
    }

    .hero h1 {
        font-size: 2.35rem;
    }

    .hero-text > p:not(.eyebrow) {
        font-size: 1rem;
    }

    .card,
    .feature-card {
        padding: 26px 22px;
    }
   .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        min-height: auto;
        border-top: 1px solid var(--border);
        border-left: 1px solid var(--border);
    }

    .trust-item:first-child {
        border-top: 0;
    }

    .privacy-policy-navigation nav {
        grid-template-columns: 1fr;
    }

   
}
