        /* --- BRAND DESIGN SYSTEM & RESET --- */
        :root {
            --primary-yellow: #FFFF80;
            --white: #FFFFFF;
            --black: #000000;
            --soft-gray: #F5F5F5;
            --dark-gray: #1A1A1A;
            --transition-editorial: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: 'Grenze', serif;
            background-color: var(--white);
            color: var(--black);
            overflow-x: hidden;
            font-size: 1.25rem;
            line-height: 1.5;
        }

        /* --- GLOBAL TYPOGRAPHY --- */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            line-height: 0.95;
        }
        
        p {
            font-weight: 400;
            font-size: 1.35rem;
            letter-spacing: 0.01em;
            line-height: 1.6;
        }

        .label-caps {
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            display: inline-block;
            margin-bottom: 15px;
        }

        /* --- LAYOUT WRAPPERS --- */
        section {
            padding: 140px 6%;
            position: relative;
            border-bottom: 1px solid rgba(0,0,0,0.08);
        }

        @media (max-width: 768px) {
            section { padding: 80px 4%; }
        }

        /* --- BRANDED BUTTONS & PILLS --- */
        .pill-btn {
            background: var(--white);
            color: var(--black);
            padding: 12px 28px;
            border-radius: 50px;
            text-transform: uppercase;
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: 0.05em;
            text-decoration: none;
            border: 1px solid transparent;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: var(--transition-editorial);
            cursor: pointer;
            display: inline-block;
        }

        .pill-btn:hover {
            background: var(--black);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .action-square-btn {
            background: var(--black);
            color: var(--white);
            padding: 18px 36px;
            font-weight: 700;
            font-size: 1.2rem;
            text-transform: uppercase;
            text-decoration: none;
            border: 1px solid var(--black);
            display: inline-block;
            transition: var(--transition-editorial);
            cursor: pointer;
        }

        .action-square-btn:hover {
            background: transparent;
            color: var(--black);
        }

        /* --- STYLISH EDITORIAL IMAGE CONTAINER --- */
        .editorial-image-frame {
            position: relative;
            overflow: hidden;
            background-color: var(--soft-gray);
            border-radius: 12px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
        }

        .editorial-image-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: var(--transition-editorial);
        }

        .editorial-image-frame:hover img {
            transform: scale(1.03);
        }

        /* --- NAVIGATION HEADER & MINIMAL BURGER --- */
        header {
            position: absolute;
            top: 0; left: 0; width: 100%;
            padding: 40px 6%;
            height: 100px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
        }

.logo {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--black);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.logo img {
    height: 245px;
    width: auto;
    display: block;
}

.logo:hover {
    opacity: 0.8;
    color: var(--primary-yellow);
}        .nav-pill-box {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        @media (max-width: 1024px) {
            .nav-pill-box { display: none; }
        }

        /* Unique Minimalist Split Line Hamburger Toggle */
        .minimal-line-burger {
            width: 45px;
            height: 24px;
            background: none;
            border: none;
            cursor: pointer;
            position: relative;
            z-index: 102;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .burger-bar {
            width: 100%;
            height: 2px;
            background-color: var(--black);
            transition: var(--transition-editorial);
            transform-origin: left center;
        }

        .burger-bar-short {
            width: 60%;
            align-self: flex-end;
        }

        .minimal-line-burger.open .bar-1 {
            transform: rotate(45deg) translate(2px, -2px);
            background-color: var(--white);
        }

        .minimal-line-burger.open .bar-2 {
            width: 0%;
            opacity: 0;
        }

        .minimal-line-burger.open .bar-3 {
            transform: rotate(-45deg) translate(2px, 2px);
            width: 100%;
            background-color: var(--white);
        }

        /* Fullscreen Navigation Menu Overlay */
        .fs-nav-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100vh;
            background: var(--black);
            z-index: 101;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: var(--transition-editorial);
        }

        .fs-nav-overlay.active {
            transform: translateX(0);
        }

        .fs-links-stack {
            display: flex;
            flex-direction: column;
            gap: 25px;
            text-align: center;
        }

        .fs-links-stack a {
            font-size: 4rem;
            font-weight: 800;
            color: var(--white);
            text-transform: uppercase;
            text-decoration: none;
            transition: var(--transition-editorial);
        }

        .fs-links-stack a:hover {
            color: var(--primary-yellow);
            transform: skewX(-6deg);
        }

        /* --- ROUTER PANELS SYSTEM --- */
        .editorial-view-panel {
            display: none;
        }

        .editorial-view-panel.active-panel {
            display: block;
            animation: viewReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @keyframes viewReveal {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ==================== PAGE SYLES: HOMEPAGE ==================== */
        
        /* Hero Section Structural Grid */
        .hero-section-wrapper {
            background-color: var(--primary-yellow);
            min-height: 100vh;
            padding-top: 160px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .hero-magazine-cover {
            margin-top: 40px;
            width: 100%;
            height: 650px;
            position: relative;
        }

        .hero-overlay-container {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            padding: 60px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            color: var(--white);
            z-index: 5;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
            border-radius: 12px;
        }

        .hero-overlay-left h1 {
            font-size: clamp(3.5rem, 8vw, 7.5rem);
            line-height: 0.85;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .hero-overlay-right {
            max-width: 480px;
            text-align: right;
        }

        .hero-overlay-right p {
            color: rgba(255,255,255,0.9);
            font-size: 1.4rem;
        }

        @media (max-width: 991px) {
            .hero-magazine-cover { height: 450px; }
            .hero-overlay-container { flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 30px; }
            .hero-overlay-right { text-align: left; margin-top: 20px; max-width: 100%; }
        }

        /* Section 2: Who We Help Cards */
        .who-we-help-section {
            background-color: var(--primary-yellow);
            text-align: center;
        }

        .section-main-heading {
            font-size: clamp(2.8rem, 6vw, 5rem);
            margin-bottom: 20px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-sub-paragraph {
            max-width: 650px;
            margin: 0 auto 60px;
            font-size: 1.4rem;
        }

        .editorial-tall-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            text-align: left;
        }

        .tall-magazine-card {
            background: var(--white);
            padding: 50px 40px;
            border-radius: 8px;
            box-shadow: 0 4px 0px var(--black);
            border: 2px solid var(--black);
            transition: var(--transition-editorial);
        }

        .tall-magazine-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 30px rgba(0,0,0,0.1);
        }

        .tall-magazine-card h3 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            border-bottom: 2px solid var(--black);
            padding-bottom: 15px;
        }

        @media (max-width: 991px) {
            .editorial-tall-grid { grid-template-columns: 1fr; gap: 30px; }
        }

        /* Section 3: Split Editorial Section */
        .split-editorial-section {
            background: var(--white);
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 80px;
            align-items: center;
        }

        .split-editorial-right h2 {
            font-size: 4rem;
            margin-bottom: 30px;
        }

        .stat-rows-box {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
            border-top: 1px solid #ddd;
            padding-top: 30px;
        }

        .stat-metric-node h4 {
            font-size: 4rem;
            color: var(--black);
            margin-bottom: 5px;
        }

        @media (max-width: 991px) {
            .split-editorial-section { grid-template-columns: 1fr; gap: 40px; }
        }

        /* Section 4: Advantage Section Black */
        .advantage-black-section {
            background: var(--black);
            color: var(--white);
        }

        .advantage-black-section .label-caps { color: var(--primary-yellow); }

        .advantage-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .advantage-feature-node {
            border-left: 2px solid var(--primary-yellow);
            padding-left: 25px;
        }

        .advantage-feature-node h3 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--primary-yellow);
        }

        .advantage-feature-node p {
            color: #ccc;
            font-size: 1.25rem;
        }

        @media (max-width: 991px) {
            .advantage-features-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 600px) {
            .advantage-features-grid { grid-template-columns: 1fr; }
        }

        /* Section 5: Horizontal Framework Timeline */
        .horizontal-framework-scroller {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            padding: 40px 0;
            margin-top: 40px;
        }

        .horizontal-framework-scroller::-webkit-scrollbar {
            height: 6px;
        }

        .horizontal-framework-scroller::-webkit-scrollbar-thumb {
            background: var(--black);
            border-radius: 3px;
        }

        .timeline-process-block {
            flex: 0 0 320px;
            background: var(--soft-gray);
            padding: 40px 30px;
            border-top: 4px solid var(--black);
        }

        .timeline-process-block .step-num {
            font-size: 3.5rem;
            font-weight: 900;
            display: block;
            margin-bottom: 10px;
            opacity: 0.3;
        }

        .timeline-process-block h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        /* Section 6: Client Success Story Big Quote */
        .featured-quote-section {
            background-color: var(--primary-yellow);
            text-align: center;
            padding: 160px 10%;
        }

        .giant-editorial-quote {
            font-size: clamp(2.2rem, 5vw, 4.2rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 40px;
            text-transform: uppercase;
        }

        /* Section 7: Case Studies Grid */
        .case-studies-grid-layout {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .case-study-editorial-card {
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            background: var(--white);
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
        }

        .case-card-body {
            padding: 35px;
        }

        .case-card-body .industry-tag {
            font-size: 0.95rem;
            font-weight: 700;
            text-transform: uppercase;
            color: #666;
            letter-spacing: 0.1em;
            display: block;
            margin-bottom: 15px;
        }

        .case-card-body h3 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

        .case-card-metrics-box {
            background: var(--soft-gray);
            padding: 20px;
            margin: 20px 0;
            border-left: 3px solid var(--black);
        }

        @media (max-width: 991px) {
            .case-studies-grid-layout { grid-template-columns: 1fr; }
        }

        /* Section 8: Insights Grid Dark */
        .insights-dark-grid-section {
            background: var(--black);
            color: var(--white);
        }

        .insights-editorial-stack {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
            margin-top: 60px;
        }

        .insight-article-row-box {
            border-bottom: 1px solid rgba(255,255,255,0.15);
            padding-bottom: 35px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .insight-article-row-box h3 {
            font-size: 2.4rem;
            margin-bottom: 15px;
            color: var(--white);
            transition: var(--transition-editorial);
        }

        .insight-article-row-box h3:hover {
            color: var(--primary-yellow);
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .insights-editorial-stack { grid-template-columns: 1fr; }
        }

        /* Section 9: Yellow Newsletter Block */
        .newsletter-yellow-block {
            background-color: var(--primary-yellow);
            text-align: center;
        }

        .newsletter-editorial-form {
            max-width: 650px;
            margin: 40px auto 0;
            display: flex;
            border-bottom: 3px solid var(--black);
        }

        .newsletter-editorial-form input {
            flex: 1;
            padding: 20px;
            font-family: inherit;
            font-size: 1.4rem;
            background: transparent;
            border: none;
            outline: none;
        }

        .newsletter-editorial-form button {
            background: var(--black);
            color: var(--white);
            border: none;
            padding: 0 40px;
            font-family: inherit;
            font-size: 1.2rem;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition-editorial);
        }

        .newsletter-editorial-form button:hover {
            background: var(--white);
            color: var(--black);
        }

        /* ==================== SUBPAGES LAYOUT ARCHITECTURE ==================== */
        .page-editorial-banner-hero {
            background-color: var(--soft-gray);
            padding: 180px 6% 80px;
            border-bottom: 2px solid var(--black);
        }

        .page-editorial-banner-hero h1 {
            font-size: clamp(3.5rem, 7vw, 6.5rem);
            color: var(--black);
        }

        .subpage-container-body {
            padding: 100px 6%;
        }

        .longform-storytext-block {
            max-width: 850px;
            margin: 0 auto;
        }

        .longform-storytext-block h2 {
            font-size: 3rem;
            margin: 45px 0 20px;
        }

        .longform-storytext-block p {
            margin-bottom: 25px;
        }

        /* Split Layout Contact Template */
        .contact-split-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
        }

        .input-magazine-element {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 30px;
        }

        .input-magazine-element label {
            font-weight: 700;
            text-transform: uppercase;
            font-size: 1.1rem;
        }

        .input-magazine-element input, .input-magazine-element textarea {
            padding: 18px;
            border: 2px solid var(--black);
            font-family: inherit;
            font-size: 1.3rem;
            outline: none;
            background: var(--white);
        }

        @media (max-width: 991px) {
            .contact-split-grid { grid-template-columns: 1fr; gap: 50px; }
        }

        /* --- FOOTER STRUCTURE --- */
        footer {
            background-color: var(--black);
            color: var(--white);
            padding: 120px 6% 50px;
        }

        .footer-columns-matrix {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr) 1.5fr;
            gap: 50px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 80px;
            margin-bottom: 40px;
        }

        @media (max-width: 1024px) {
            .footer-columns-matrix { grid-template-columns: 1fr 1fr; gap: 40px; }
        }
        @media (max-width: 600px) {
            .footer-columns-matrix { grid-template-columns: 1fr; }
        }

        .footer-brand-column h2 {
            font-size: 3rem;
            color: var(--primary-yellow);
            margin-bottom: 15px;
        }

        .footer-nav-column h4 {
            font-size: 1.3rem;
            color: var(--primary-yellow);
            margin-bottom: 25px;
            letter-spacing: 0.05em;
        }

        .footer-nav-column ul {
            list-style: none;
        }

        .footer-nav-column ul li {
            margin-bottom: 15px;
        }

        .footer-nav-column ul li a {
            color: #bbb;
            text-decoration: none;
            font-size: 1.2rem;
            transition: var(--transition-editorial);
        }

        .footer-nav-column ul li a:hover {
            color: var(--white);
            padding-left: 5px;
        }

        .footer-bottom-credits {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            color: #666;
            font-size: 1.1rem;
        }
