    * {
        box-sizing: border-box;
    }

    body {
        margin: 0;
        font-family: 'Inter', sans-serif;
        background: radial-gradient(circle at 20% 20%, #0f1b2e, #05080f);
        color: #e6edf3;
        overflow-x: hidden;
    }

    header {
        padding: 25px 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        backdrop-filter: blur(10px);
        background: rgba(0, 0, 0, 0.4);
        position: relative;
        top: 0;
    }

    .logo {
        font-weight: 800;
        letter-spacing: 2px;
    }

    nav a {
        margin-left: 30px;
        text-decoration: none;
        color: #8aa4ff;
        font-size: 14px;
    }

    .hero {
        padding: 200px 60px;
    }

    .hero-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .hero-left {
        max-width: 700px;
    }

    .hero h1 {
        font-size: 72px;
        font-weight: 800;
        line-height: 1.05;
        background: linear-gradient(90deg, #7aa2ff, #00f0ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero p {
        font-size: 22px;
        color: #9aa6c4;
        margin-top: 30px;
    }

    .hero-visual {
        position: relative;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle at center, rgba(0, 240, 255, 0.2), transparent 60%);
    }

    .pulse {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 1px solid rgba(0, 240, 255, 0.4);
        animation: pulse 4s infinite ease-out;
    }

    .pulse.delay {
        animation-delay: 2s;
    }

    @keyframes pulse {
        0% {
            transform: scale(0.8);
            opacity: 0.8;
        }

        100% {
            transform: scale(1.4);
            opacity: 0;
        }
    }

    .section {
        padding: 120px 60px;
        max-width: 1200px;
        margin: auto;
    }

    .section h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
    }

    .card {
        background: rgba(255, 255, 255, 0.03);
        padding: 40px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
    }

    .calculator {
        background: rgba(255, 255, 255, 0.04);
        padding: 50px;
        border-radius: 20px;
        border: 1px solid rgba(0, 255, 255, 0.15);
    }

    .form-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    label {
        font-size: 14px;
        font-weight: 600;
        display: block;
        margin-bottom: 10px;
        color: #8aa4ff;
    }

    select {
        width: 100%;
        padding: 14px;
        border-radius: 10px;
        border: none;
        background: #0b1220;
        color: white;
    }

    .checkbox-group {
        margin-top: 30px;
    }

    .checkbox-group label {
        display: block;
        margin-bottom: 8px;
    }

    button {
        margin-top: 40px;
        padding: 16px 30px;
        border: none;
        border-radius: 10px;
        background: linear-gradient(90deg, #7aa2ff, #00f0ff);
        color: black;
        font-weight: 700;
        cursor: pointer;
    }


    .memory-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 40px;
        margin-top: 60px;
    }

    .memory-item {
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    .memory-item i {
        font-size: 22px;
        color: #00f0ff;
        margin-top: 5px;
        min-width: 30px;
    }

    .memory-item h4 {
        margin: 0 0 8px 0;
        font-size: 18px;
    }

    .memory-item p {
        margin: 0;
        color: #9aa6c4;
        line-height: 1.6;
    }

    .result {
        margin-top: 50px;
        padding: 40px;
        background: #0b1220;
        border-radius: 16px;
    }

    footer {
        padding: 80px 60px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        color: #6b7aa6;
        font-size: 14px;
    }

    /* Structural Risks – Alternative Visual System */

    .structural-risks {
        position: relative;
        padding-top: 140px;
        padding-bottom: 140px;
        background: linear-gradient(180deg, rgba(255, 0, 0, 0.02), transparent);
    }

    .risk-header {
        max-width: 900px;
        margin-bottom: 120px;
    }

    .risk-label {
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #ff4d4d;
        /* Risk Accent */
        margin-bottom: 20px;
    }

    .risk-intro {
        font-size: 22px;
        line-height: 1.8;
        color: #b8c2d9;
        margin-top: 25px;
    }

    .risk-container {
        display: flex;
        flex-direction: column;
        gap: 120px;
    }

    .risk-row {
        display: grid;
        grid-template-columns: 380px 1fr;
        gap: 80px;
        align-items: start;
        position: relative;
    }

    .risk-row::before {
        content: "";
        position: absolute;
        left: 360px;
        top: 0;
        bottom: 0;
        width: 1px;
        background: linear-gradient(to bottom, rgba(255, 0, 0, 0.3), transparent);
    }

    .risk-word {
        font-size: 40px;
        font-weight: 800;
        letter-spacing: 3px;
        color: #ff4d4d;
        opacity: 0.85;
    }

    .risk-text {
        font-size: 18px;
        line-height: 1.9;
        color: #9aa6c4;
        max-width: 720px;
    }

    /* Subtle hover emphasis */

    .risk-row:hover .risk-word {
        opacity: 1;
        transform: translateX(5px);
        transition: all 0.3s ease;
    }

    .risk-row:hover .risk-text {
        color: #cbd5f0;
        transition: color 0.3s ease;
    }

    /* Responsive */

    @media (max-width: 1000px) {
        .risk-row {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .risk-row::before {
            display: none;
        }

        .risk-word {
            font-size: 28px;
        }
    }

    /* Architectural Response */

    .architectural-response {
        margin-top: 160px;
    }

    .response-header {
        max-width: 900px;
        margin-bottom: 100px;
    }

    .response-label {
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #00f0ff;
        margin-bottom: 20px;
    }

    .response-intro {
        font-size: 20px;
        line-height: 1.7;
        color: #9aa6c4;
        margin-top: 20px;
    }

    .response-container {
        border-left: 1px solid rgba(0, 240, 255, 0.15);
        padding-left: 60px;
    }

    .response-row {
        display: grid;
        grid-template-columns: 320px 1fr;
        gap: 50px;
        margin-bottom: 100px;
        align-items: start;
    }

    .response-word {
        font-size: 34px;
        font-weight: 800;
        letter-spacing: 2px;
        color: #00f0ff;
    }

    .response-text {
        font-size: 18px;
        line-height: 1.8;
        color: #9aa6c4;
        max-width: 700px;
    }

    /* Architecture Diagram Section */

    .architecture-diagram {
        margin-top: 180px;
        margin-bottom: 180px;
        text-align: center;
    }

    .diagram-header {
        max-width: 900px;
        margin: 0 auto 80px auto;
    }

    .diagram-label {
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #00f0ff;
        margin-bottom: 20px;
    }

    .diagram-intro {
        font-size: 20px;
        line-height: 1.7;
        color: #9aa6c4;
        margin-top: 20px;
    }

    .diagram-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .diagram-wrapper img {
        max-width: 1200px;
        width: 100%;
        height: auto;
        border-radius: 18px;
        box-shadow:
            0 0 40px rgba(0, 240, 255, 0.15),
            0 0 120px rgba(0, 240, 255, 0.05);
    }

    .strategic-impact {
        margin-top: 220px;
        margin-bottom: 220px;
    }

    .impact-wrapper {
        max-width: 900px;
    }

    .impact-label {
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #00f0ff;
        margin-bottom: 25px;
    }

    .impact-lead {
        font-size: 24px;
        line-height: 1.8;
        color: #e6edf3;
        margin-top: 40px;
        margin-bottom: 60px;
    }

    .impact-body p {
        font-size: 19px;
        line-height: 2;
        color: #9aa6c4;
        margin-bottom: 35px;
    }

    .impact-closing {
        font-size: 20px;
        color: #e6edf3;
        margin-top: 50px;
    }

    .impact-signature {
        margin-top: 140px;
        padding-top: 60px;
        border-top: 1px solid rgba(0, 240, 255, 0.2);
        text-align: center;
        font-size: 32px;
        line-height: 1.5;
        font-weight: 700;
        color: #e6edf3;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .signature-icon {
        color: #00f0ff;
        opacity: 0.8;
    }

    .target-audience {
        margin-top: 180px;
        margin-bottom: 180px;
    }

    .audience-header {
        max-width: 900px;
        margin-bottom: 80px;
    }

    .audience-intro {
        font-size: 20px;
        line-height: 1.7;
        color: #9aa6c4;
        margin-top: 20px;
    }

    .audience-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px 80px;
    }

    .audience-item {
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    .audience-icon {
        color: #00f0ff;
        margin-top: 5px;
        opacity: 0.8;
    }

    .audience-item h3 {
        font-size: 20px;
        margin-bottom: 10px;
        color: #e6edf3;
    }

    .audience-item p {
        font-size: 17px;
        line-height: 1.8;
        color: #9aa6c4;
    }

    /* Roadmap Section */

    .roadmap {
        margin-top: 220px;
        margin-bottom: 220px;
    }

    .roadmap-header {
        max-width: 900px;
        margin-bottom: 120px;
    }

    .roadmap-label {
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #00f0ff;
        margin-bottom: 20px;
    }

    .roadmap-intro {
        font-size: 22px;
        line-height: 1.8;
        color: #9aa6c4;
        margin-top: 25px;
    }

    .roadmap-container {
        display: flex;
        flex-direction: column;
        gap: 80px;
        border-left: 1px solid rgba(0, 240, 255, 0.2);
        padding-left: 60px;
    }

    .roadmap-step {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 60px;
        align-items: start;
    }

    .roadmap-number {
        font-size: 36px;
        font-weight: 800;
        color: #00f0ff;
    }

    .roadmap-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
        color: #e6edf3;
    }

    .roadmap-content p {
        font-size: 17px;
        line-height: 1.8;
        color: #9aa6c4;
        max-width: 750px;
    }

    @media (max-width: 1000px) {
        .roadmap-step {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .roadmap-container {
            padding-left: 30px;
        }
    }


    /* Structural Assessment Section */

    .structural-assessment {
        margin-top: 240px;
        margin-bottom: 240px;
        padding: 140px 80px;
        background: linear-gradient(180deg, rgba(0, 240, 255, 0.04), transparent);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .assessment-wrapper {
        max-width: 900px;
    }

    .assessment-label {
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #00f0ff;
        margin-bottom: 25px;
    }

    .assessment-lead {
        font-size: 24px;
        line-height: 1.8;
        color: #e6edf3;
        margin-top: 40px;
        margin-bottom: 80px;
    }

    .assessment-details {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .assessment-block h3 {
        font-size: 20px;
        margin-bottom: 12px;
        color: #e6edf3;
    }

    .assessment-block p {
        font-size: 18px;
        line-height: 1.9;
        color: #9aa6c4;
        max-width: 750px;
    }

    .assessment-cta {
        margin-top: 100px;
    }

    .assessment-button {
        display: inline-block;
        padding: 16px 32px;
        border-radius: 10px;
        background: linear-gradient(90deg, #7aa2ff, #00f0ff);
        color: #000;
        font-weight: 700;
        text-decoration: none;
        transition: opacity 0.3s ease;
    }

    .assessment-button:hover {
        opacity: 0.85;
    }






    /* Intelligence Flow Section */

    .intelligence-flow {
        margin-top: 220px;
        margin-bottom: 220px;
    }

    .flow-header {
        max-width: 900px;
        margin-bottom: 120px;
    }

    .flow-label {
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #00f0ff;
        margin-bottom: 20px;
    }

    .flow-intro {
        font-size: 22px;
        line-height: 1.8;
        color: #9aa6c4;
        margin-top: 25px;
    }

    .flow-grid {
        display: grid;
        grid-template-columns: 1fr 300px 1fr;
        gap: 60px;
        align-items: start;
    }

    .flow-column-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 25px;
        color: #e6edf3;
    }

    .flow-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .flow-list li {
        font-size: 17px;
        line-height: 1.8;
        color: #9aa6c4;
    }

    .flow-center {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .flow-core {
        text-align: center;
        padding: 40px 20px;
        border: 1px solid rgba(0, 240, 255, 0.3);
        border-radius: 16px;
        font-weight: 700;
        color: #e6edf3;
        font-size: 18px;
    }

    .flow-list li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        font-size: 17px;
        line-height: 1.8;
        color: #9aa6c4;
    }

    .flow-icon {
        min-width: 22px;
        color: #00f0ff;
    }

    .flow-icon svg {
        width: 22px;
        height: 22px;
        stroke: currentColor;
        stroke-width: 1.5;
        fill: none;
    }


    /* Architectural Authority */

    .architectural-authority {
        margin-top: 240px;
        margin-bottom: 240px;
    }

    .authority-wrapper {
        max-width: 900px;
    }

    .authority-label {
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #00f0ff;
        margin-bottom: 25px;
    }

    .authority-lead {
        font-size: 24px;
        line-height: 1.8;
        color: #e6edf3;
        margin-top: 40px;
        margin-bottom: 60px;
    }

    .authority-body p {
        font-size: 19px;
        line-height: 2;
        color: #9aa6c4;
        margin-bottom: 35px;
    }

    .authority-closing {
        font-size: 21px;
        color: #e6edf3;
        margin-top: 60px;
    }


    .investment-framework {
        margin-top: 240px;
        margin-bottom: 240px;
    }

    .investment-box {
        background: rgba(255, 255, 255, 0.03);
        padding: 60px;
        border-radius: 18px;
        border: 1px solid rgba(0, 240, 255, 0.15);
    }

    .investment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
    }

    .investment-result {
        margin-top: 50px;
        padding: 30px;
        background: #0b1220;
        border-radius: 14px;
    }

    /* Responsive */

    @media (max-width: 1100px) {
        .flow-grid {
            grid-template-columns: 1fr;
            gap: 60px;
        }

        .flow-center {
            order: -1;
        }
    }


    .structural-assessment {
        margin-top: 260px;
        margin-bottom: 200px;
    }

    .assessment-wrapper {
        max-width: 900px;
    }

    .assessment-label {
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #00f0ff;
        margin-bottom: 25px;
    }

    .assessment-intro {
        font-size: 22px;
        line-height: 1.8;
        color: #9aa6c4;
        margin-top: 35px;
        margin-bottom: 80px;
    }

    .assessment-form {
        display: flex;
        flex-direction: column;
    }

    .assessment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 10px;
        color: #8aa4ff;
    }

    .form-group input,
    .form-group textarea {
        background: #0b1220;
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 16px;
        border-radius: 10px;
        color: white;
        font-family: inherit;
        font-size: 15px;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border: 1px solid #00f0ff;
    }

    .full-width {
        margin-bottom: 50px;
    }

    .assessment-button {
        align-self: flex-start;
        padding: 18px 36px;
        border: none;
        border-radius: 12px;
        background: linear-gradient(90deg, #7aa2ff, #00f0ff);
        color: black;
        font-weight: 700;
        font-size: 15px;
        cursor: pointer;
    }

    .assessment-button:hover {
        opacity: 0.9;
    }

    .assessment-note {
        margin-top: 25px;
        font-size: 13px;
        color: #6b7aa6;
    }

    .site-footer {
        margin-top: 200px;
        padding: 80px 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        text-align: center;
    }

    .footer-inner {
        max-width: 800px;
        margin: 0 auto;
    }

    .footer-brand {
        font-size: 14px;
        color: #9aa6c4;
        margin-bottom: 20px;
    }

    .footer-links {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .footer-links a {
        color: #8aa4ff;
        text-decoration: none;
        transition: opacity 0.2s ease;
    }

    .footer-links a:hover {
        opacity: 0.7;
    }

    .footer-links span {
        margin: 0 8px;
        color: #6b7aa6;
    }

    .footer-tagline {
        font-size: 13px;
        color: #6b7aa6;
        letter-spacing: 0.5px;
    }

    .footer-links a {
        color: #9aa6c4;
        /* gleiche Farbe wie Footer-Text */
        text-decoration: none;
        /* keine Unterstreichung */
        transition: opacity 0.2s ease;
    }

    .footer-links a:hover {
        opacity: 0.6;
        /* subtiler Hover */
    }

    @media (max-width: 1000px) {
        .audience-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
    }


    <section class="section engagement-model"><div class="engagement-header"><div class="engagement-label">Engagement Model</div><h2>From Analysis to Enterprise Infrastructure</h2><p class="engagement-intro">Enterprise memory is not deployed in a workshop. It is architected through a structured,
    phased transformation. </p></div><div class="engagement-container"><div class="engagement-row"><div class="engagement-phase">01</div><div class="engagement-content"><h3>Structural Analysis</h3><p>Assessment of system landscape,
    knowledge dependencies and decision flows. Identification of architectural fragmentation and sovereignty exposure. </p></div></div><div class="engagement-row"><div class="engagement-phase">02</div><div class="engagement-content"><h3>Architecture Design</h3><p>Blueprint of enterprise memory layer,
    governance model and integration strategy. Definition of ingestion pipelines and deployment boundaries. </p></div></div><div class="engagement-row"><div class="engagement-phase">03</div><div class="engagement-content"><h3>Infrastructure Deployment</h3><p>Implementation within Private Cloud or On-Premise environments. Integration of reasoning layer,
    access control and auditability mechanisms. </p></div></div><div class="engagement-row"><div class="engagement-phase">04</div><div class="engagement-content"><h3>Strategic Retainer</h3><p>Continuous capability expansion,
    model optimization and enterprise-wide enablement. Enterprise intelligence evolves alongside organizational growth. </p></div></div></div></section>
    /* Responsive */

    @media (max-width: 900px) {
        .response-row {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .response-word {
            font-size: 26px;
        }

        .response-container {
            padding-left: 30px;
        }
    }

    /* Responsive */

    @media (max-width: 900px) {
        .risk-row {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .risk-word {
            font-size: 26px;
        }

        .risk-container {
            padding-left: 30px;
        }
    }

    /* ===== Comparison Layout Fix ===== */

    .comparison-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 120px;
        margin-top: 80px;
    }

    .comparison-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 30px;
        color: #e6edf3;
    }

    .comparison-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .comparison-list li {
        display: grid;
        grid-template-columns: 28px 1fr;
        gap: 16px;
        align-items: start;
        font-size: 17px;
        line-height: 1.8;
        color: #9aa6c4;
    }

    .comparison-list .icon {
        color: #00f0ff;
        font-size: 16px;
        margin-top: 4px;
    }

    .comparison-list .text {
        display: block;
    }

    /* Responsive */

    @media (max-width: 900px) {
        .comparison-grid {
            grid-template-columns: 1fr;
            gap: 60px;
        }
    }

    /* ===== Enterprise Memory Diagram ===== */

    .memory-diagram-section {
        margin-top: 120px;
    }

    .memory-diagram-wrapper {
        display: grid;
        grid-template-columns: 1fr 300px 1fr;
        gap: 80px;
        align-items: center;
    }

    .memory-diagram-column {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .diagram-title {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #e6edf3;
    }

    .fragment-box,
    .result-box {
        padding: 14px 18px;
        border-radius: 10px;
        font-size: 14px;
        line-height: 1.6;
    }

    /* BEFORE styling */
    .fragment-box {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        color: #9aa6c4;
    }

    /* AFTER styling */
    .result-box {
        background: rgba(0, 240, 255, 0.05);
        border: 1px solid rgba(0, 240, 255, 0.25);
        color: #c9f9ff;
    }

    /* CENTER */

    .memory-diagram-center {
        text-align: center;
        position: relative;
    }

    .memory-core {
        padding: 30px 20px;
        border-radius: 16px;
        border: 1px solid rgba(0, 240, 255, 0.4);
        background: rgba(0, 240, 255, 0.05);
        font-weight: 700;
        color: #e6edf3;
    }

    .memory-sub {
        margin-top: 15px;
        font-size: 13px;
        letter-spacing: 1px;
        color: #00f0ff;
        opacity: 0.8;
    }

    /* Responsive */

    @media (max-width: 1000px) {
        .memory-diagram-wrapper {
            grid-template-columns: 1fr;
            gap: 60px;
        }
    }

    /* ===== Method Contrast Section ===== */


    /* ===== Advanced Method Contrast ===== */

    .method-grid {
        display: grid;
        grid-template-columns: 1fr 1px 1fr;
        gap: 80px;
        align-items: center;
    }

    .method-divider {
        background: linear-gradient(to bottom,
                rgba(0, 240, 255, 0.0),
                rgba(0, 240, 255, 0.4),
                rgba(0, 240, 255, 0.0));
        height: 400px;
    }

    .method-side h2 {
        margin-bottom: 30px;
    }

    .method-intro {
        font-size: 20px;
        line-height: 1.8;
        margin-bottom: 50px;
        color: #9aa6c4;
    }

    .method-card {
        padding: 40px;
        border-radius: 18px;
    }

    .method-card h4 {
        margin-bottom: 25px;
        font-weight: 700;
    }

    .method-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .method-card li {
        font-size: 16px;
        line-height: 1.7;
    }

    /* Negative (subtle red, less emphasis) */
    .method-card.negative {
        background: rgba(255, 77, 77, 0.04);
        border: 1px solid rgba(255, 77, 77, 0.2);
        color: #9aa6c4;
    }

    /* Positive (stronger cyan emphasis) */
    .method-card.positive {
        background: rgba(0, 240, 255, 0.06);
        border: 1px solid rgba(0, 240, 255, 0.4);
        box-shadow: 0 0 40px rgba(0, 240, 255, 0.08);
    }

    /* Responsive */
    @media (max-width: 1000px) {
        .method-grid {
            grid-template-columns: 1fr;
        }

        .method-divider {
            display: none;
        }
    }

    /* ===== Executive Deliverables ===== */

    .deliverables-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 40px;
        margin-top: 60px;
    }

    .deliverable-card {
        padding: 35px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(0, 240, 255, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .deliverable-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 0 40px rgba(0, 240, 255, 0.15);
    }

    .deliverable-card h4 {
        margin-bottom: 15px;
        font-weight: 700;
    }

    .deliverable-card p {
        font-size: 16px;
        line-height: 1.8;
        color: #9aa6c4;
    }

    .deliverable-title {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 18px;
        font-weight: 700;
    }

    .deliverable-title i {
        font-size: 18px;
        color: #00f0ff;
        opacity: 0.9;
    }

    .founder-quote {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 300;
    border-left: 3px solid rgba(120, 200, 255, 0.6);
    padding-left: 24px;
    margin-top: 40px;
    max-width: 720px;
}

.founder-quote p {
    margin-bottom: 18px;
}

.quote-highlight {
    font-weight: 600;
    color: #ffffff;
}

.quote-author {
    margin-top: 24px;
    font-size: 0.95rem;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

/* ===== INFO NAVIGATION ===== */

.info-navigation {
    padding-top: 120px;
}

.info-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.info-label {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 10px;
}

.info-intro {
    opacity: 0.8;
    margin-bottom: 60px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.info-icon {
    font-size: 20px;
    color: #7dd3fc;
    margin-top: 4px;
}

.info-content h3 {
    margin: 0 0 6px 0;
    font-weight: 600;
}

.info-content p {
    margin: 0;
    font-size: 14px;
    opacity: 0.7;
}

/* ===== LIST CONSISTENCY IN DARK SECTIONS ===== */

.strategic-impact ul,
.strategic-impact li {
    color: inherit;
}

.strategic-impact ul {
    margin: 12px 0 20px 20px;
    padding: 0;
}

.strategic-impact li {
    margin-bottom: 8px;
    opacity: 0.85;
}

.section p { color: rgba(255,255,255,0.75); }

@media (max-width: 768px) {
  .hero {
    padding: 120px 24px 80px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.1;
  }

  .hero p {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-orb {
    opacity: 0.4;
    right: -80px;
  }
}

.risk-item {
  padding: 24px;
  border-left: 2px solid #ff3b3b;
  margin-bottom: 32px;
}

.solution-block {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.solution-block h3 {
  font-size: 20px;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .architecture img {
    max-width: 100%;
    border-radius: 12px;
  }
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 900px) {

  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual {
    width: 260px;
    height: 260px;
    margin-top: 60px;
    align-self: center;
  }

}

.risk-row::before {
    left: 360px;
}

@media (max-width: 900px) {

  .risk-container {
    gap: 70px;
  }

  .risk-text {
    font-size: 16px;
    line-height: 1.7;
  }

}

.response-container {
    border-left: 1px solid rgba(0, 240, 255, 0.15);
    padding-left: 60px;
}


/* =========================================
   MOBILE ENTERPRISE OVERRIDE
   ========================================= */

@media (max-width: 900px) {

  /* ---------------------------------------
     GLOBAL
  --------------------------------------- */

  body {
    overflow-x: hidden;
  }

  .section {
    padding: 80px 24px;
  }

  .structural-risks,
  .architectural-response,
  .architecture-diagram,
  .strategic-impact,
  .target-audience,
  .roadmap,
  .structural-assessment,
  .intelligence-flow,
  .architectural-authority,
  .investment-framework {
    margin-top: 120px;
    margin-bottom: 120px;
  }

  h2 {
    font-size: 26px;
    line-height: 1.2;
  }

  p {
    font-size: 16px;
    line-height: 1.7;
  }

  /* ---------------------------------------
     HEADER
  --------------------------------------- */

  header {
    padding: 20px 24px;
  }

  nav a {
    margin-left: 18px;
    font-size: 13px;
  }

  /* ---------------------------------------
     HERO
  --------------------------------------- */

  .hero {
    padding: 120px 24px 80px;
  }

  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.1;
  }

  .hero p {
    font-size: 16px;
    margin-top: 24px;
  }

  .hero-visual {
    width: 240px;
    height: 240px;
    margin-top: 60px;
    align-self: center;
  }

  /* ---------------------------------------
     STRUCTURAL RISKS
  --------------------------------------- */

  .risk-header {
    margin-bottom: 80px;
  }

  .risk-container {
    gap: 70px;
  }

  .risk-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .risk-row::before {
    display: none;
  }

  .risk-word {
    font-size: 22px;
    letter-spacing: 2px;
  }

  .risk-text {
    font-size: 16px;
    line-height: 1.7;
  }

  /* ---------------------------------------
     ARCHITECTURAL RESPONSE
  --------------------------------------- */

  .response-header {
    margin-bottom: 70px;
  }

  .response-container {
    border-left: none;
    padding-left: 0;
  }

  .response-row {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 60px;
  }

  .response-word {
    font-size: 22px;
  }

  .response-text {
    font-size: 16px;
  }

  /* ---------------------------------------
     DIAGRAM
  --------------------------------------- */

  .diagram-wrapper img {
    border-radius: 14px;
  }

  /* ---------------------------------------
     TARGET AUDIENCE
  --------------------------------------- */

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* ---------------------------------------
     ROADMAP
  --------------------------------------- */

  .roadmap-container {
    padding-left: 20px;
  }

  .roadmap-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .roadmap-number {
    font-size: 24px;
  }

  /* ---------------------------------------
     INTELLIGENCE FLOW
  --------------------------------------- */

  .flow-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .flow-center {
    order: -1;
  }

  /* ---------------------------------------
     INVESTMENT
  --------------------------------------- */

  .investment-box {
    padding: 30px;
  }

  .investment-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  button {
    width: 100%;
  }

  /* ---------------------------------------
     ASSESSMENT FORM
  --------------------------------------- */

  .assessment-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .assessment-button {
    width: 100%;
    text-align: center;
  }

  /* ---------------------------------------
     FOOTER
  --------------------------------------- */

  .site-footer {
    padding: 60px 24px;
  }

}

.footer-language-switch {
    font-size: 0.9rem;
    margin:20px auto;
}

.footer-language-switch a {
    text-decoration: none;
    color: #888;
    transition: 0.2s ease;
}

.footer-language-switch a:hover {
    color: #fff;
}