/* ============================================================
   PARTNER ARCHITECTURE — PAOS™
   Design System: McKinsey / Strategy Consulting / Premium
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-white: #FFFFFF;
    --bg-soft: #F4F6FA;
    --bg-warm: #F0F2F7;
    --navy: #0F172A;
    --navy-light: #1E293B;
    --gray: #475569;
    --accent: #0B5BB5;
    --border: #D5DAE3;
    --border-light: #E8ECF2;
    --muted: #64748B;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-content: 1240px;
    --max-text: 720px;
    --radius: 12px;
    --radius-sm: 8px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray);
    background: var(--bg-white);
}

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

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

/* --- Container --- */
.container {
    max-width: var(--max-content);
    margin: 0 auto;
    padding: 0 56px;
}

.container--narrow {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 56px;
}

/* --- Sections --- */
.section {
    padding: 110px 0;
}

.section--compact {
    padding: 72px 0;
}

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

.section--soft {
    background: var(--bg-soft);
}

.section--navy {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
}

.section-headline {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 40px;
}

.section--navy .section-headline {
    color: white;
}

.section-text {
    max-width: var(--max-text);
}

.section-text--full {
    max-width: none;
}

.section-text p {
    margin-bottom: 18px;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
}

/* System Intro — Text + Image side by side */
.system-intro {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: auto 1fr;
    gap: 0 48px;
    align-items: start;
    margin-bottom: 24px;
}

.system-intro-headline {
    grid-column: 1 / -1;
    grid-row: 1;
}

.system-intro .section-text {
    grid-column: 1;
    grid-row: 2;
    max-width: none;
}

.system-intro .system-intro-visual {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
}

.system-intro-visual img {
    width: 100%;
    border-radius: var(--radius);
}

.text-emphasis {
    color: var(--navy);
    font-weight: 600;
}

.blue-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1.7em 0;
}

.blue-bullets li {
    padding-left: 20px;
    position: relative;
}

.blue-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--accent);
}

.section--navy .text-emphasis {
    color: white;
}

/* --- Thin horizontal rule between some sections --- */
.section + .section--white {
    border-top: 1px solid var(--border-light);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    padding: 0 0 72px;
    background: linear-gradient(175deg, var(--bg-soft) 0%, var(--bg-white) 60%);
}

.hero-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 48px;
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 180px;
    object-fit: cover;
    object-position: center;
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0) 60%);
}

.hero-banner-content {
    max-width: var(--max-content);
    margin: 0 auto;
    padding: 0 56px 20px;
    width: 100%;
}

.lang-switcher-banner {
    position: absolute;
    top: 16px;
    right: 56px;
    display: flex;
    gap: 12px;
    z-index: 3;
}

.lang-switcher-banner a {
    font-size: 13px;
    font-weight: 500;
    color: #1D4076;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.lang-switcher-banner a:hover {
    color: #163459;
}

.lang-switcher-banner a.active {
    color: #1D4076;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 0 0 16px rgba(255, 255, 255, 0.6);
}

.hero-banner .hero-category {
    color: var(--accent);
}

.hero-banner .hero-definition {
    color: var(--navy);
    margin-bottom: 0;
}

.hero-inner {
    max-width: var(--max-content);
    margin: 0 auto;
    padding: 0 56px;
}

.hero-header {
    margin-bottom: 24px;
}

.hero-title {
    margin-bottom: 8px;
}

.hero-columns {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    align-items: stretch;
}

.hero-text {
    display: flex;
    flex-direction: column;
}

.hero-category {
    display: inline-block;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.hero-definition {
    font-size: 22px;
    font-weight: 400;
    color: var(--gray);
    line-height: 1.55;
}

.hero-headline {
    font-size: 76px;
    font-weight: 800;
    color: #1D4076;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.hero-headline .tm {
    font-size: 0.35em;
    vertical-align: super;
    font-weight: 600;
}

.hero-system-desc {
    font-size: 26px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 6px;
}

.hero-value-prop {
    font-size: 18px;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 36px;
}

.hero-insight {
    margin-bottom: 20px;
}

.hero-insight p {
    font-size: 17px;
    font-weight: 400;
    color: var(--gray);
    line-height: 1.7;
}

.hero-supporting {
    font-size: 16px;
    color: var(--gray);
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 36px;
}

.hero-cta {
    display: flex;
    gap: 10px;
    margin-top: auto;
    align-items: stretch;
    max-width: 500px;
}

.hero-cta .btn {
    text-align: center;
    font-size: 17px;
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.hero-cta .btn-primary {
    background: #1D4076;
    border-color: #1D4076;
}

.hero-cta .btn-primary:hover {
    background: #163459;
}

/* --- Hero Visual: Architecture Stack --- */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-width: 0;
}

.arch-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}


.arch-layer {
    display: block;
    width: 100%;
    padding: 14px 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    border: 1px solid var(--border);
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    cursor: default;
}

a.arch-layer {
    cursor: pointer;
}

a.arch-layer:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.arch-layer--top {
    background: #1D4076;
    color: white;
    border-color: #1D4076;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.15);
}

.arch-layer--diagnostic {
    background: var(--bg-soft);
    border-color: var(--border);
}

.arch-layer--gap {
    background: var(--bg-warm);
    border-color: var(--border);
}

.arch-layer--install {
    background: var(--bg-soft);
    border-color: var(--border);
}

.arch-layer--result {
    background: #1D4076;
    color: white;
    border-color: #1D4076;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
}

.arch-label {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.arch-layer--top .arch-label {
    font-size: 17px;
}

.arch-arrow {
    display: flex;
    justify-content: center;
    padding: 2px 0;
}

/* ============================================================
   MICRO NAVIGATION
   ============================================================ */
.micro-nav {
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

.micro-nav.is-sticky {
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

.micro-nav-inner {
    max-width: var(--max-content);
    margin: 0 auto;
    padding: 0 56px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.lang-switcher {
    display: flex;
    gap: 12px;
    margin-left: auto;
}

.lang-switcher a {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

.lang-switcher a:hover {
    color: var(--navy);
}

.lang-switcher a.active {
    color: var(--navy);
    font-weight: 700;
}

.micro-nav-link {
    display: block;
    padding: 16px 0;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--muted);
    transition: color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}

.micro-nav-link:hover {
    color: var(--navy);
}

.micro-nav-link.active {
    color: var(--navy);
    border-bottom-color: var(--accent);
}

/* ============================================================
   SYSTEM SECTION
   ============================================================ */
.system-layers {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 56px 0;
    clear: both;
}

.system-layer {
    padding: 36px 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-white);
    border-left: 4px solid var(--accent);
}

.system-layer-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.system-layer p {
    max-width: var(--max-text);
    color: var(--gray);
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    font-size: 16px;
}

/* Dimensions */
.dimensions-block {
    margin-top: 72px;
}

.dimensions-headline {
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
}

.dimensions-intro {
    max-width: var(--max-text);
    margin-bottom: 40px;
    font-size: 16px;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
}

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

.dimension-card {
    padding: 28px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-white);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.dimension-card:hover {
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    transform: translateY(-2px);
}

.dimension-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dimension-card h4::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--accent);
    flex-shrink: 0;
}

.dimension-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* Transformation */
.transformation {
    margin-top: 72px;
    max-width: var(--max-text);
}

.transformation h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
}

.transformation p {
    font-size: 16px;
}

/* ============================================================
   WHAT PAOS INSTALLS
   ============================================================ */
.installs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.install-card {
    padding: 28px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-white);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.install-card:hover {
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    transform: translateY(-2px);
}

.install-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.install-card h4::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--accent);
    flex-shrink: 0;
}

.install-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.installs-closing {
    margin-top: 40px;
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    max-width: var(--max-text);
}

/* ============================================================
   MID-PAGE INSIGHT
   ============================================================ */
.section--insight {
    padding: 80px 0;
    background: var(--navy) url('../img/Thought_Breaker.png') center center / cover no-repeat;
    position: relative;
}

.section--insight::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 12, 18, 0.48);
    z-index: 1;
}

.section--insight .container {
    position: relative;
    z-index: 2;
}

.insight-quote {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.insight-quote p {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.35;
}

.insight-line-1 {
    color: #F4F7FA;
}

.insight-line-2 {
    color: #D9DEE5;
    font-weight: 600;
}

.insight-line-2 .highlight {
    color: #FFFFFF;
    font-weight: 700;
}

/* ============================================================
   ARCHITECTURE GAP
   ============================================================ */
.gap-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 48px;
    align-items: start;
}

.gap-visual {
    display: flex;
    justify-content: center;
}

.gap-visual img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.gap-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px 32px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.gap-items {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.gap-item {
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
    background: var(--bg-soft);
}

.gap-arrow {
    display: flex;
    justify-content: center;
    padding: 4px 0;
}

.gap-result {
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.gap-result--negative {
    background: var(--bg-warm);
    color: var(--navy-light);
    border: 1px solid var(--border);
}

/* ============================================================
   PERSPECTIVE
   ============================================================ */
/* Uses generic section styles — white bg with top border */

/* ============================================================
   FOUNDER
   ============================================================ */
#founder {
    padding-top: 72px;
}

.founder-block {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 56px;
    align-items: start;
}

.founder-photo {
    text-align: left;
    padding-top: 63px;
}

.founder-photo img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

.founder-name {
    font-size: 30px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.founder-name-small {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-top: 24px;
    margin-bottom: 2px;
}

.founder-authority {
    font-size: 17px;
    font-weight: 600;
    color: #1D4076;
    margin-bottom: 2px;
}

.founder-authority-sub {
    font-size: 15px;
    font-weight: 400;
    color: var(--muted);
    margin-bottom: 28px;
}

.founder-headline {
    text-align: left;
    margin-bottom: 20px;
}

.founder-story p {
    margin-bottom: 14px;
    font-size: 16px;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
}

/* ============================================================
   ENGAGEMENT
   ============================================================ */
.engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 24px;
}

.engagement-step {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 32px 28px;
}

.engagement-step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.engagement-step-meta {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 16px;
}

.engagement-step p:last-child {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 0;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.engagement-result {
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
}

/* ============================================================
   WHY PARTNER ARCHITECTURE MATTERS
   ============================================================ */
.wpa-top {
    margin-bottom: 24px;
}

.wpa-top .section-headline {
    margin-bottom: 40px;
}

.wpa-top-text {
    overflow: hidden;
}

.wpa-top-text .section-text {
    max-width: none;
    margin-bottom: 32px;
}

.wpa-top-text .wpa-subhead {
    margin-top: 0;
}

.wpa-top-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 18px;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.wpa-top-image {
    float: right;
    width: 36%;
    margin: 0 0 24px 48px;
}

.wpa-top-image img {
    width: 100%;
    border-radius: var(--radius);
}

.wpa-subhead {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}

.wpa-perspectives {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
    clear: both;
}

.wpa-card {
    padding: 36px 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-white);
    border-left: 4px solid var(--accent);
}

.wpa-card-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.wpa-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 16px;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.wpa-card .blue-bullets {
    margin-bottom: 16px;
}

.wpa-card .blue-bullets li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.wpa-early-cta {
    margin-top: 28px;
    clear: both;
}


.wpa-takeaway {
    border-left: 3px solid var(--accent);
    padding-left: 24px;
    font-size: 18px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.6;
    margin-top: 24px;
    margin-bottom: 18px;
}

/* ============================================================
   INSTALLATION TEASER
   ============================================================ */
.install-teaser {
    max-width: var(--max-text);
}

.install-teaser p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 18px;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.install-teaser-cta {
    margin-top: 32px;
}

/* ============================================================
   SIGNATURE STATEMENT
   ============================================================ */
.section--signature {
    background: #64748B;
    padding: 80px 0;
    text-align: center;
}

.signature-statement {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    max-width: 780px;
    margin: 0 auto;
}

/* ============================================================
   THOUGHT BREAKER — NAVY VARIANT
   ============================================================ */
.section--thought-breaker-navy {
    background: #1D4076;
    padding: 80px 0;
    text-align: center;
}

.section--thought-breaker-navy .insight-quote p {
    color: #FFFFFF;
}

.section--thought-breaker-navy .insight-line-1 {
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   DIAGNOSTIC REPORT (CONVERSION BLOCK)
   ============================================================ */
.dr-block {
    max-width: none;
}

.dr-bridge {
    font-size: 17px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.6;
    margin-bottom: 32px;
}

.dr-core-statement {
    font-size: 18px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.5;
    margin-bottom: 48px;
    border-left: 3px solid var(--accent);
    padding-left: 24px;
}

.dr-content {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 56px;
    margin-bottom: 24px;
}

.dr-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 20px;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.dr-subhead {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
    margin-top: 32px;
}

.dr-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.dr-list li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray);
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.dr-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--accent);
}

.dr-metrics {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 1px solid var(--border-light);
    padding-left: 40px;
    align-self: start;
    padding-top: 8px;
}

.dr-metric {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.dr-metric:last-child {
    border-bottom: none;
}

.dr-metric-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #1D4076;
    line-height: 1.2;
}

.dr-metric-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    margin-top: 2px;
}

.dr-delay {
    border-left: 3px solid var(--accent);
    padding-left: 24px;
    font-size: 18px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.6;
    margin-bottom: 36px;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.dr-cta-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding-top: 8px;
}

.dr-cta-sub {
    font-size: 14px;
    color: var(--muted);
    margin-top: 14px;
    text-align: center;
    line-height: 1.5;
}

/* ============================================================
   CTA
   ============================================================ */
.section--cta {
    background: #1D4076;
    text-align: center;
    padding: 80px 0;
}

.cta-headline {
    font-size: 32px;
    font-weight: 600;
    color: white;
    line-height: 1.35;
    max-width: 780px;
    margin: 0 auto 36px;
}

.cta-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.section--cta .btn-primary {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    color: var(--navy);
}

.section--cta .btn-primary:hover {
    border-color: var(--navy);
    background: var(--bg-warm);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.section--contact {
    background: var(--bg-soft);
}

.contact-form {
    padding: 20px 0;
}

.contact-form .btn-primary {
    background: #1D4076;
    border-color: #1D4076;
}

.contact-form .btn-primary:hover {
    background: #163459;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.required {
    color: var(--accent);
    text-transform: none;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    font-family: var(--font);
    font-size: 15px;
    color: var(--navy);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(11, 91, 181, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.form-status {
    margin-top: 18px;
    font-size: 15px;
    font-weight: 500;
}

.form-status--success {
    color: #1D4076;
}

.form-status--error {
    color: #dc2626;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 13px 30px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    letter-spacing: 0.01em;
}

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

.btn-primary:hover {
    background: #094A94;
    box-shadow: 0 4px 12px rgba(11, 91, 181, 0.25);
}

.wpa-early-cta .btn {
    padding: 16px 36px;
    font-size: 15px;
}

.wpa-early-cta .btn-primary {
    background: #1D4076;
    border-color: #1D4076;
}

.wpa-early-cta .btn-primary:hover {
    background: #163459;
    box-shadow: 0 4px 12px rgba(29, 64, 118, 0.25);
}

.btn-secondary {
    background: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--navy);
}

.btn-secondary:hover {
    border-color: var(--navy);
    background: var(--bg-soft);
}

.btn-large {
    padding: 16px 36px;
    font-size: 15px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    padding: 36px 0;
    background: #1D4076;
}

.footer-inner {
    max-width: var(--max-content);
    margin: 0 auto;
    padding: 0 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-copy--link {
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-copy--link:hover {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   IMPRINT / SUBPAGE
   ============================================================ */
.hero--subpage {
    padding-bottom: 0;
}

.hero--subpage .hero-inner {
    display: none;
}

.imprint-section {
    padding: 0 0 80px;
    text-align: left;
}

.imprint-section .container {
    max-width: var(--max-content);
    padding-top: 0;
}

.imprint-title {
    font-size: 32px;
    font-weight: 700;
    color: #1D4076;
    margin-bottom: 8px;
}

.imprint-subtitle {
    font-size: 15px;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 32px;
}

.imprint-block {
    margin-bottom: 24px;
}

.imprint-block h2 {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.imprint-block p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.section--transition {
    padding: 64px 0;
}

.transition-quote {
    margin: 28px 0;
    padding-left: 20px;
    border-left: 3px solid var(--accent);
}

.transition-quote p {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.45;
}

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

.hero-category-link:visited,
.hero-category-link:hover,
.hero-category-link:active {
    text-decoration: none;
    color: inherit;
}

.imprint-email {
    color: #1D4076;
    text-decoration: none;
    transition: text-decoration 0.2s ease;
}

.imprint-email:visited,
.imprint-email:active {
    color: #1D4076;
}

.imprint-email:hover {
    text-decoration: underline;
    color: #1D4076;
}

/* ============================================================
   ANIMATIONS (Fade In)
   ============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Hero layers progressive reveal */
.reveal-layer {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
    .micro-nav-inner {
        gap: 24px;
    }
}

@media (max-width: 920px) {
    .micro-nav-inner {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .micro-nav-link {
        text-align: center;
        padding: 12px 6px;
        border-bottom: none;
    }

    .micro-nav-link.active {
        border-bottom-color: transparent;
    }

    .lang-switcher {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        grid-column: 1 / -1;
        justify-content: center;
        padding: 8px 0;
        border-top: 1px solid var(--border-light);
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .container,
    .container--narrow {
        padding: 0 32px;
    }

    .hero-inner {
        padding: 0 32px;
    }

    .arch-label {
        font-size: clamp(13px, 1.6vw, 16px);
    }

    .hero-banner-content {
        padding: 0 32px 20px;
    }

    .micro-nav-inner {
        padding: 0 32px;
    }

    .lang-switcher-banner {
        right: 32px;
    }

    .footer-inner {
        padding: 0 32px;
    }

    .section {
        padding: 88px 0;
    }

    .hero--subpage {
        padding-bottom: 0;
    }

    .imprint-section {
        padding: 0 0 80px;
    }

    .system-intro-headline {
        grid-column: 1 / -1;
        margin-bottom: 24px;
    }

    .system-intro .system-intro-visual {
        grid-row: 2;
    }

    .gap-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-headline {
        font-size: 56px;
    }


    .hero-definition {
        font-size: 18px;
    }

    .hero-system-desc {
        font-size: 22px;
    }

    .hero-insight p {
        font-size: 18px;
    }

    .hero-cta .btn {
        font-size: clamp(13px, 1.8vw, 17px);
        padding: 12px 16px;
    }

    .system-intro {
        grid-template-columns: 3fr 2fr;
        gap: 36px;
    }

    .section-headline {
        font-size: 30px;
    }

    .insight-quote p {
        font-size: 26px;
    }

    .cta-headline {
        font-size: 26px;
    }

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

    .wpa-top-image {
        width: 38%;
        margin-left: 32px;
    }

    .wpa-early-cta .btn {
        width: 100%;
        text-align: center;
    }

    .wpa-perspectives {
        gap: 24px;
    }

    .engagement-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dr-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dr-metrics {
        border-left: none;
        padding-left: 0;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
        border-top: 1px solid var(--border-light);
        padding-top: 24px;
    }

    .dr-metrics {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .dr-metric {
        border-bottom: none;
        padding: 16px 16px;
        border-right: 1px solid var(--border-light);
    }

    .dr-metric:nth-child(3n) {
        border-right: none;
    }

    .dr-metric:nth-child(n+4) {
        border-top: 1px solid var(--border-light);
    }

    .section--thought-breaker-navy {
        padding: 64px 0;
    }

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

    .founder-block {
        grid-template-columns: 200px 1fr;
        gap: 40px;
    }

    .founder-photo img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 710px) {
    .arch-layer {
        padding: 14px 2px;
    }

    .arch-stack {
        gap: 3px;
    }
}

/* Mobile */
@media (max-width: 680px) {
    .container,
    .container--narrow {
        padding: 0 20px;
    }

    .hero-banner-content {
        padding: 0 20px 12px;
    }

    .lang-switcher-banner {
        right: 20px;
        top: 12px;
    }

    .system-intro,
    .gap-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .system-intro-headline {
        grid-column: 1;
        grid-row: auto;
    }

    .system-intro .section-text {
        grid-column: 1;
        grid-row: auto;
    }

    .system-intro .system-intro-visual {
        grid-column: 1;
        grid-row: auto;
    }

    .section {
        padding: 64px 0;
    }

    .imprint-section {
        padding: 0 0 80px;
    }

    /* Hero */
    .hero {
        padding: 0 0 48px;
    }

    .hero--subpage {
        padding-bottom: 0;
    }

    .hero-inner {
        padding: 0 20px;
    }

    .hero-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-headline {
        font-size: 40px;
    }


    .hero-system-desc {
        font-size: 20px;
    }

    .hero-category {
        font-size: 22px;
    }

    .hero-definition {
        font-size: 14px;
    }

    .hero-value-prop {
        font-size: 16px;
    }

    .hero-insight p {
        font-size: 17px;
    }

    .arch-label {
        font-size: 17px;
    }

    .hero-cta {
        flex-direction: row;
        margin-top: 36px;
        max-width: 100%;
    }

    .hero-cta .btn {
        flex: 1 1 0;
        min-width: 0;
        font-size: 17px;
        padding: 13px 12px;
    }

    /* Micro Nav — 3x2 Grid */
    .micro-nav-inner {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        padding: 0 20px;
    }

    .lang-switcher {
        position: static;
        transform: none;
        grid-column: 1 / -1;
        justify-content: center;
        padding: 8px 0;
        border-top: 1px solid var(--border-light);
    }

    .micro-nav-link {
        text-align: center;
        padding: 12px 6px;
        font-size: 13px;
        border-bottom: none;
    }

    /* Sections */
    .section-headline {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .section--insight {
        padding: 56px 0;
    }

    .insight-quote p {
        font-size: 20px;
    }

    .dimensions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .dimension-card {
        padding: 20px;
    }

    .dimension-card h4 {
        font-size: 14px;
    }

    .dimension-card p {
        font-size: 13px;
    }

    .installs-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .install-card {
        padding: 20px;
    }

    .install-card h4 {
        font-size: 14px;
    }

    .install-card p {
        font-size: 13px;
    }

    .installs-closing {
        font-size: 15px;
    }

    /* Founder */
    .founder-block {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .founder-photo {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 0;
    }

    .founder-photo img {
        width: 160px;
        height: 160px;
    }

    .founder-text {
        order: 1;
    }

    .founder-story {
        text-align: left;
    }

    /* Signature Statement */
    .signature-statement {
        font-size: 20px;
    }

    /* Thought Breaker Navy */
    .section--thought-breaker-navy {
        padding: 56px 0;
    }

    /* Diagnostic Report */
    .dr-core-statement {
        font-size: 17px;
    }

    .dr-metrics {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        border-top: 1px solid var(--border-light);
    }

    .dr-metric {
        padding: 14px 16px;
        border-bottom: 1px solid var(--border-light);
        border-right: 1px solid var(--border-light);
    }

    .dr-metric:nth-child(3n) {
        border-right: 1px solid var(--border-light);
    }

    .dr-metric:nth-child(2n) {
        border-right: none;
    }

    .dr-metric:nth-child(n+4) {
        border-top: none;
    }

    .dr-metric:nth-child(5),
    .dr-metric:nth-child(6) {
        border-bottom: none;
    }

    .dr-metric-number {
        font-size: 24px;
    }

    .wpa-early-cta .btn {
        width: 100%;
        text-align: center;
    }

    .dr-cta-wrapper {
        width: 100%;
    }

    .dr-cta-wrapper .btn {
        width: 100%;
    }

    /* CTA */
    .section--cta {
        padding: 72px 0;
    }

    .cta-headline {
        font-size: 20px;
    }

    .cta-text {
        font-size: 15px;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        gap: 14px;
        text-align: center;
        padding: 0 20px;
    }

    .footer-links {
        gap: 20px;
    }

    /* WPA */
    .wpa-top {
        grid-template-columns: 1fr;
    }

    .wpa-image {
        display: none;
    }

    .wpa-perspectives {
        grid-template-columns: 1fr;
    }

    .wpa-card {
        padding: 24px 24px;
    }

    /* System layers */
    .system-layer {
        padding: 24px 24px;
    }

    .system-layer-title {
        font-size: 17px;
    }

    .dimensions-headline {
        font-size: 20px;
    }

    .transformation h3 {
        font-size: 20px;
    }

    /* Gap */
    .gap-diagram {
        padding: 28px 20px;
    }
}

@media (max-width: 750px) {
    .lang-switcher-banner {
        position: static;
        justify-content: flex-end;
        padding: 8px 20px;
        background: var(--bg-white);
    }

    .lang-switcher-banner a {
        text-shadow: none;
    }

    .lang-switcher-banner a.active {
        text-shadow: none;
    }
}
