@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

#home-link {
    display: none;
}

.banner {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
    z-index: 9999;
    background-color: transparent;
    border-top: 10px solid black;
    border-bottom: 5px solid black;
}

.banner::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

:focus-visible {
    outline: 3px solid #0056b3;
    outline-offset: 2px;
}

h2 {
    font-size: 2em;
    color: #0056b3;
    margin-bottom: 20px;
}

p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

main a:not(.cta-button):not(.logo-link):not(.nav-link),
footer a {
    color: #007BFF;
    text-decoration: none;
}

main a:not(.cta-button):not(.logo-link):not(.nav-link):hover,
main a:not(.cta-button):not(.logo-link):not(.nav-link):focus,
footer a:hover,
footer a:focus {
    color: #0056b3;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #0056b3;
    border: 2px solid #fff;
}

header {
    background-color: #fff;
    color: #333;
    padding: 10px 20px;
    z-index: 10000;
}

header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    width: min(100%, 1200px);
    margin: 0 auto;
}

.logo {
    font-size: 1.5em;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.logo .darke {
    color: black;
}

.logo .logix {
    color: #c00;
}

.logo .tm {
    font-size: 0.6em;
    vertical-align: super;
    color: black;
}

section .logo {
    font-size: 1em;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
}

.nav-links {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    margin-left: auto;
    white-space: nowrap;
}

.nav-links a {
    text-decoration: none;
    color: #2f343a;
    font-weight: 400;
    font-size: 0.95em;
}

.nav-links a:hover,
.nav-links a:focus {
    color: #1f2328;
}

.nav-links .nav-cta {
    background-color: #2f343a;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus {
    color: #fff;
    background-color: #1f2328;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: #0056b3;
    color: #fff;
    padding: 8px 12px;
    z-index: 10001;
}

.skip-link:focus {
    left: 10px;
    top: 10px;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-link:hover {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 1320px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        margin: 10px 0;
        text-align: left;
        padding: 10px;
        color: #2f343a;
    }
}

.hero {
    margin-top: 0;
    background-color: #000;
    background-image: none;
    text-align: center;
    padding: 50px 20px;
    color: #fff;
    position: relative;
    height: calc(100vh - 130px);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.58);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}

.hero-overlay .content {
    width: min(80%, 960px);
    padding: 0 20px;
    text-align: center;
}

.hero h1,
.hero p,
.cta-button {
    z-index: 1;
}

.hero h1 {
    font-size: 3em;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.2em;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.cta-button {
    background-color: #0056b3;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
}

.cta-button:hover,
.cta-button:focus {
    background-color: #003d7a;
    color: #fff;
    border: 2px solid #fff;
}

.section-cta {
    margin-top: 32px;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.hero-tertiary-link {
    font-size: 0.95em;
    margin: 0 0 14px;
    opacity: 0.92;
}

.hero-tertiary-link a {
    color: #cfe4ff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hero-tertiary-link a:hover,
.hero-tertiary-link a:focus {
    color: #fff;
}

.secondary-cta {
    background-color: transparent;
}

.resource-spotlight .secondary-cta,
.resource-actions .secondary-cta,
.offer-cta-row .secondary-cta {
    background-color: #0056b3;
    color: #fff;
    border: 1px solid #0056b3;
}

.resource-spotlight .secondary-cta:hover,
.resource-spotlight .secondary-cta:focus,
.resource-actions .secondary-cta:hover,
.resource-actions .secondary-cta:focus,
.offer-cta-row .secondary-cta:hover,
.offer-cta-row .secondary-cta:focus {
    background-color: #003d7a;
    color: #fff;
    border: 2px solid #0056b3;
}

.hero-trust-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.hero-trust-list li {
    margin: 6px 0;
    font-size: 0.95em;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

#about-us {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

#about-us img {
    border-radius: 10px;
    margin-top: 20px;
}

#problem-framing {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
}


.problem-list {
    max-width: 1080px;
    margin: 0 auto 20px;
    width: 100%;
    padding-left: 24px;
    text-align: left;
}

.section-disclaimer {
    max-width: 900px;
    margin: 24px auto 0;
    padding: 16px 18px;
    border: 1px solid #d8dee4;
    border-radius: 10px;
    background-color: #fff;
    color: #4b5563;
    font-size: 0.95em;
}

.problem-outcome {
    font-weight: 700;
    margin-bottom: 0;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

#services {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
}

#services .service {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

#services .service-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1320px) {
    #services .service {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {
    header {
        padding: 10px 16px;
    }

    .hero {
        height: auto;
        min-height: calc(100svh - 72px);
        padding: 32px 16px 40px;
    }

    .hero-overlay {
        position: relative;
        min-height: inherit;
        padding: 24px 0;
    }

    .hero-overlay .content {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .hero h1 {
        font-size: 2.2em;
    }

    .hero p {
        font-size: 1.05em;
    }

    .hero-trust-list li {
        font-size: 0.9em;
    }
}

@media (max-width: 600px) {
    #services .service {
        grid-template-columns: 1fr;
    }

}

#strategic-decision-engine {
    background-color: #f9f9f9;
    padding: 40px 20px;
}

#strategic-decision-engine .strategic-decision-engine-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#strategic-decision-engine .service {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

#strategic-decision-engine .service-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sde-outputs {
    max-width: 1100px;
    margin: 20px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}

.sde-output-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 16px;
}

@media (max-width: 1320px) {
    #strategic-decision-engine .service {
        grid-template-columns: repeat(2, 1fr);
    }

    .sde-outputs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    #strategic-decision-engine .service {
        grid-template-columns: 1fr;
    }
}

#commitment {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

#commitment img {
    border-radius: 10px;
    margin-top: 20px;
}

#success-stories {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.success-story-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.success-story-item:hover {
    background-color: #e9e9e9;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.success-story-item h3 {
    margin-top: 0;
    color: black;
}

.success-story-item p {
    margin-bottom: 0;
    font-size: 1em;
    line-height: 1.6;
}

#assurance {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
}

#use-cases {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

#how-it-works {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

.how-grid {
    max-width: 1100px;
    margin: 0 auto 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.how-step {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
}

.how-step span {
    display: inline-flex;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background-color: #0056b3;
    color: #fff;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-weight: 700;
}

.how-examples {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
}

.autonomy-line {
    max-width: 900px;
    margin: 20px auto 0;
    font-weight: 700;
}

@media (max-width: 1320px) {
    .success-stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 600px) {
    .success-stories-grid {
        grid-template-columns: 1fr;
    }

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

#success-story {
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: left;
}

#contact-us {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

#contact-us form {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

#contact-us p {
    margin-top: 20px;
    text-align: center;
}

#contact-us label {
    text-align: center;
}

#contact-us input,
#contact-us select,
#contact-us textarea {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

#contact-us .form-disclosure {
    max-width: 600px;
    margin: 16px auto 0;
    font-size: 0.95em;
}

.briefing-feedback {
    max-width: 600px;
    margin: 0 auto 20px;
    padding: 14px 16px;
    border-radius: 10px;
    text-align: left;
}

.briefing-feedback-success {
    border: 1px solid #b7e3c6;
    background-color: #edf8f1;
    color: #1f5132;
}

.briefing-feedback-error {
    border: 1px solid #f2c2c2;
    background-color: #fff1f1;
    color: #7a1f1f;
}

#contact-us .briefing-confirmation {
    max-width: 600px;
    margin: 20px auto 0;
    padding: 20px;
    border: 1px solid #d8dee4;
    border-radius: 10px;
    background-color: #fff;
    text-align: left;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

#contact-us .briefing-confirmation h3 {
    margin-top: 0;
    color: #0056b3;
}

#contact-us a {
    color: #0056b3;
    text-decoration: none;
}

#contact-us a:hover {
    text-decoration: none;
}

.content-page {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.page-intro {
    max-width: 860px;
    margin: 0 auto 28px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.offer-card {
    background: #fff;
    border: 1px solid #d8dee4;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    padding: 28px;
}

.offer-card h2 {
    margin-top: 0;
}

.offer-meta {
    margin: 0 0 18px;
    font-weight: 700;
    color: #1f2328;
}

.offer-card h3 {
    margin-bottom: 8px;
}

.offer-card ul {
    margin-top: 0;
    margin-bottom: 18px;
    padding-left: 20px;
}

.offer-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.resource-spotlight {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

.resource-spotlight .content-page {
    padding: 0;
    text-align: center;
}

.resource-spotlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.resource-teaser {
    background: #fff;
    border: 1px solid #d8dee4;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.resource-audience {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    justify-content: center;
}

.resource-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background-color: #e8f1fb;
    color: #0056b3;
    font-size: 0.8em;
    font-weight: 700;
}

.resource-preview {
    color: #4b5563;
}

.resource-related {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #d8dee4;
}

.resource-related h3 {
    margin-bottom: 8px;
}

.resource-related ul {
    margin: 0;
    padding-left: 20px;
}

.resource-next-step {
    margin-top: 20px;
}

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

@media (max-width: 600px) {
    .resource-grid {
        grid-template-columns: 1fr;
    }

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

    .resource-spotlight-grid {
        grid-template-columns: 1fr;
    }
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 16px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
}

.footer-content {
    width: min(100%, 1200px);
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

footer a {
    color: #007BFF;
    text-decoration: none;
}

footer p {
    text-align: center;
}

footer a:hover {
    text-decoration: none;
    color: #0056b3;
}

:root {
    --dlx-ink: #0d1b2a;
    --dlx-ink-soft: #243449;
    --dlx-muted: #5c6b7c;
    --dlx-surface: #f3f7fa;
    --dlx-surface-strong: #ffffff;
    --dlx-panel: #0f2133;
    --dlx-panel-soft: #13293d;
    --dlx-border: rgba(16, 42, 67, 0.12);
    --dlx-border-strong: rgba(95, 214, 205, 0.2);
    --dlx-teal: #38bdb2;
    --dlx-teal-strong: #1e9d96;
    --dlx-shadow: 0 24px 60px rgba(7, 23, 38, 0.12);
}

body {
    background:
        radial-gradient(circle at top, rgba(56, 189, 178, 0.08), transparent 28%),
        linear-gradient(180deg, #eef4f8 0%, #f8fbfd 100%);
    color: var(--dlx-ink-soft);
}

main {
    flex: 1 0 auto;
}

main > section,
.content-page {
    position: relative;
}

section[id] {
    scroll-margin-top: 96px;
}

h2 {
    color: var(--dlx-ink);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 18px;
}

h3 {
    color: var(--dlx-ink);
    line-height: 1.2;
}

p {
    color: var(--dlx-muted);
    line-height: 1.7;
}

:focus-visible {
    outline: 3px solid var(--dlx-teal);
}

.section-shell {
    width: min(100%, 1180px);
    margin: 0 auto;
}

.section-shell-wide {
    width: min(100%, 1240px);
}

.section-heading {
    max-width: 840px;
    margin: 0 auto 32px;
    text-align: center;
}

.section-heading p:last-child {
    margin-bottom: 0;
}

.section-kicker {
    margin-bottom: 10px;
    color: var(--dlx-teal-strong);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

header {
    position: sticky;
    top: 0;
    padding: 14px 20px;
    background: rgba(248, 251, 253, 0.92);
    border-bottom: 1px solid rgba(16, 42, 67, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 40px rgba(7, 23, 38, 0.06);
}

header .header-content {
    width: min(100%, 1280px);
    gap: 20px;
}

.logo {
    font-size: 1.6em;
}

.menu-toggle {
    color: var(--dlx-ink);
}

.nav-links {
    gap: 12px;
}

.nav-links a {
    padding: 10px 12px;
    color: var(--dlx-ink-soft);
    font-size: 0.94em;
    font-weight: 600;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--dlx-ink);
    background-color: rgba(56, 189, 178, 0.1);
    transform: translateY(-1px);
}

.nav-links .nav-cta {
    background: linear-gradient(135deg, var(--dlx-panel) 0%, #18334d 100%);
    color: #fff;
    padding: 10px 16px;
    box-shadow: 0 12px 24px rgba(15, 33, 51, 0.18);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus {
    background: linear-gradient(135deg, #102539 0%, #204564 100%);
    color: #fff;
}

.skip-link {
    background: var(--dlx-panel);
}

.hero {
    height: auto;
    min-height: calc(100svh - 82px);
    padding: 48px 20px 32px;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 178, 0.24), transparent 34%),
        radial-gradient(circle at top right, rgba(23, 59, 92, 0.55), transparent 28%),
        linear-gradient(135deg, #081521 0%, #0d2335 46%, #14324b 100%);
}

.hero-overlay {
    position: relative;
    padding: 42px 0 28px;
    background: transparent;
}

.hero-overlay .content.hero-content {
    width: min(100%, 1100px);
    padding: 0;
}

.hero-eyebrow {
    margin-bottom: 14px;
    color: rgba(219, 252, 249, 0.84);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0 auto 18px;
    max-width: 900px;
    font-size: clamp(2.9rem, 6vw, 5rem);
    line-height: 0.96;
    text-shadow: none;
}

.hero-lead {
    max-width: 920px;
    margin: 0 auto 18px;
    font-size: clamp(1.08rem, 2vw, 1.34rem);
    color: rgba(233, 244, 247, 0.92);
    text-shadow: none;
}

.hero-lead strong,
.hero-core-promise strong,
.hero-trust-list strong,
.problem-frame-card strong {
    color: #fff;
}

.hero-core-promise {
    margin: 0 auto 26px;
    max-width: 780px;
    color: #d7fff8;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.cta-button {
    background: linear-gradient(135deg, var(--dlx-teal-strong) 0%, var(--dlx-teal) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 14px 22px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 14px 30px rgba(9, 24, 37, 0.18);
}

.cta-button:hover,
.cta-button:focus {
    background: linear-gradient(135deg, #178783 0%, #2aaea3 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.secondary-cta {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: none;
}

.secondary-cta:hover,
.secondary-cta:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
}

.hero-cta-group {
    margin-bottom: 26px;
    gap: 14px;
}

.hero-trust-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 0;
}

.hero-trust-list li {
    margin: 0;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    color: rgba(233, 244, 247, 0.9);
    line-height: 1.55;
}

.trust-band {
    padding: 0 20px 20px;
    margin-top: -18px;
}

.trust-band-inner {
    width: min(100%, 1080px);
    margin: 0 auto;
    padding: 20px 24px;
    border: 1px solid var(--dlx-border-strong);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--dlx-shadow);
    text-align: center;
}

.trust-band-title {
    margin: 0;
    color: var(--dlx-ink);
    font-size: 0.98rem;
    font-weight: 700;
}

.trust-band-copy {
    margin: 10px 0 0;
}

#problem-framing,
#strategic-decision-engine,
#how-it-works,
#use-cases,
#about-us,
#contact-us {
    padding: 76px 20px;
}

#problem-framing {
    background: transparent;
    text-align: center;
}

.problem-frame-card {
    padding: 30px 34px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 251, 0.98) 100%);
    border: 1px solid var(--dlx-border);
    box-shadow: var(--dlx-shadow);
}

.problem-lead {
    max-width: 1120px;
    margin: 0 auto 14px;
    color: var(--dlx-ink);
    font-size: clamp(1.16rem, 2vw, 1.4rem);
    font-weight: 600;
}

.problem-outcome {
    max-width: 1120px;
    margin: 0 auto;
    color: var(--dlx-muted);
    font-size: 1.05rem;
    font-weight: 500;
}

#strategic-decision-engine {
    background:
        linear-gradient(180deg, rgba(9, 21, 33, 0.04) 0%, rgba(9, 21, 33, 0.02) 100%);
}

#strategic-decision-engine .strategic-decision-engine-content {
    text-align: center;
}

#strategic-decision-engine .service,
.success-stories-grid,
.how-flow {
    gap: 22px;
}

#strategic-decision-engine .service {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 34px;
}

#strategic-decision-engine .service-item,
.success-story-item,
.how-step,
.how-examples,
#contact-us form,
#contact-us .briefing-confirmation {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--dlx-border);
    border-radius: 22px;
    box-shadow: var(--dlx-shadow);
}

#strategic-decision-engine .service-item {
    padding: 24px;
    text-align: left;
}

#strategic-decision-engine .service-item h3 {
    margin-bottom: 10px;
}

.sde-table-wrap {
    margin-top: 8px;
    overflow-x: auto;
}

.sde-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--dlx-border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--dlx-shadow);
}

.sde-table thead th {
    padding: 18px 20px;
    background: linear-gradient(135deg, var(--dlx-panel) 0%, #17324a 100%);
    color: #fff;
    text-align: left;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sde-table tbody th,
.sde-table tbody td {
    padding: 20px;
    text-align: left;
    vertical-align: top;
    border-top: 1px solid rgba(16, 42, 67, 0.08);
}

.sde-table tbody th {
    width: 28%;
    color: var(--dlx-ink);
    font-size: 1rem;
}

.sde-table tbody td {
    color: var(--dlx-muted);
}

.autonomy-line {
    max-width: 860px;
    margin: 24px auto 0;
    color: var(--dlx-ink-soft);
    font-weight: 600;
}

#how-it-works {
    background:
        linear-gradient(180deg, rgba(9, 21, 33, 0.03) 0%, rgba(9, 21, 33, 0.01) 100%);
    text-align: center;
}

.how-flow {
    max-width: 1180px;
    margin: 0 auto 28px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    position: relative;
}

.how-step {
    position: relative;
    padding: 28px 24px 24px;
    text-align: left;
    overflow: hidden;
}

.how-step::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--dlx-teal) 0%, rgba(56, 189, 178, 0.18) 100%);
}

.how-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.how-step-number,
.how-step span.how-step-number {
    width: 44px;
    height: 44px;
    margin: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dlx-panel) 0%, #23415d 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
}

.how-step-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(56, 189, 178, 0.12);
    color: var(--dlx-teal-strong);
}

.how-step-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.how-step h3 {
    margin: 0 0 10px;
}

.how-step p {
    margin-bottom: 0;
}

.how-risk {
    margin-top: 14px;
    color: var(--dlx-ink-soft);
    font-weight: 600;
}

.how-examples {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px;
    text-align: center;
}

.how-examples p {
    margin: 0;
}

#use-cases {
    background: transparent;
    text-align: center;
}

.decision-pattern-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.decision-pattern-card {
    padding: 28px 24px;
    text-align: left;
}

.pattern-label {
    margin-bottom: 10px;
    color: var(--dlx-teal-strong);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.decision-pattern-card h3 {
    margin: 0 0 12px;
}

#about-us {
    background:
        linear-gradient(180deg, rgba(9, 21, 33, 0.04) 0%, rgba(9, 21, 33, 0.02) 100%);
    text-align: center;
}

.principles-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 26px;
}

.principle-card {
    padding: 24px 20px;
}

.principle-card h3 {
    margin: 0;
    font-size: 1.02rem;
}

.section-cta {
    margin-top: 32px;
}

#contact-us {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(241, 247, 250, 0.98) 100%);
    text-align: center;
}

#contact-us form {
    max-width: 720px;
    padding: 30px;
}

#contact-us input,
#contact-us select,
#contact-us textarea {
    border: 1px solid rgba(16, 42, 67, 0.14);
    border-radius: 12px;
    background: #fbfdff;
}

#contact-us .briefing-feedback {
    border-radius: 16px;
    box-shadow: var(--dlx-shadow);
}

#contact-us .briefing-confirmation {
    padding: 28px;
}

.site-footer {
    background: linear-gradient(135deg, #081521 0%, #102336 100%);
    color: rgba(234, 243, 247, 0.86);
    padding: 28px 16px 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.footer-content {
    width: min(100%, 1200px);
    text-align: center;
}

.footer-tagline,
.footer-contact,
.footer-copy {
    margin: 0;
}

.footer-tagline {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.footer-contact {
    margin-top: 12px;
    color: rgba(234, 243, 247, 0.78);
}

.footer-links {
    margin: 16px 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-copy {
    margin-top: 16px;
    color: rgba(234, 243, 247, 0.68);
    font-size: 0.92rem;
}

.site-footer a,
.site-footer a:hover,
.site-footer a:focus {
    color: #8ae7df;
}

.site-footer .logo .darke {
    color: #fff;
}

@media (max-width: 1320px) {
    header .header-content {
        width: min(100%, 100%);
    }

    #strategic-decision-engine .service,
    .principles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .decision-pattern-grid,
    .how-flow,
    .hero-trust-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 921px) {
    .menu-toggle {
        display: none;
    }

    .nav-links {
        display: flex;
        position: static;
        width: auto;
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        flex-direction: row;
    }
}

@media (max-width: 920px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 10px);
        right: 20px;
        width: min(320px, calc(100vw - 40px));
        padding: 14px;
        background: rgba(248, 251, 253, 0.98);
        border: 1px solid rgba(16, 42, 67, 0.1);
        border-radius: 20px;
        box-shadow: 0 24px 40px rgba(7, 23, 38, 0.14);
    }

    .nav-links a {
        width: 100%;
    }

    .nav-links.show {
        display: flex;
    }
}

@media (max-width: 768px) {
    header {
        padding: 12px 16px;
    }

    .hero {
        min-height: auto;
        padding: 38px 16px 20px;
    }

    .hero-overlay {
        padding: 28px 0 12px;
    }

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

    .hero-lead,
    .hero-core-promise {
        max-width: 100%;
    }

    #problem-framing,
    #strategic-decision-engine,
    #how-it-works,
    #use-cases,
    #about-us,
    #contact-us {
        padding: 60px 16px;
    }

    .problem-frame-card,
    #contact-us form {
        padding: 24px 20px;
    }

    .how-flow,
    #strategic-decision-engine .service,
    .decision-pattern-grid,
    .principles-grid,
    .hero-trust-list {
        grid-template-columns: 1fr;
    }

    .sde-table {
        min-width: 0;
    }

    .sde-table thead {
        display: none;
    }

    .sde-table,
    .sde-table tbody,
    .sde-table tr,
    .sde-table th,
    .sde-table td {
        display: block;
        width: 100%;
    }

    .sde-table tr + tr {
        border-top: 1px solid rgba(16, 42, 67, 0.08);
    }

    .sde-table tbody th,
    .sde-table tbody td {
        padding: 16px 18px;
        border-top: 0;
    }

    .sde-table tbody td {
        padding-top: 0;
    }

    .footer-links {
        gap: 12px;
    }
}

