/* STREAMING_CHUNK:Defining CSS Variables and Base Reset... */
:root {
--navy:      #0E2A47;
--navy-mid:  #1A3D5C;
--petrol:    #1B7E8C;
--petrol-lt: #2AA3B5;
--sand:      #F5F1EA;
--stone:     #E2DDD4;
--stone-dk:  #B8B0A2;
--ink:       #1E1E1A;
--ink-soft:  #5C5B54;
--white:     #FFFFFF;
--max-w:     1280px;
--r:         3px;
--gap:       6.5rem;
}

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

html {
scroll-behavior: smooth;
}

body {
font-family: 'Inter', sans-serif;
font-size: 1rem;
color: var(--sand);
background: var(--navy);
line-height: 1.7;
-webkit-font-smoothing: antialiased;
font-weight: 300;
}

h1, h2, h3, h4 {
font-family: 'Lora', serif;
line-height: 1.25;
font-weight: 500;
color: var(--sand);
}

.container {
max-width: var(--max-w);
margin: 0 auto;
padding: 0 2.5rem;
}

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

/* STREAMING_CHUNK:Styling Navigation and Header Component... */
nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
background: var(--sand);
border-bottom: 1px solid var(--stone);
}

.nav-geo {
width: 100%;
background: var(--sand);
padding: .55rem 2.5rem;
font-size: .67rem;
font-weight: 500;
letter-spacing: .15em;
text-transform: uppercase;
color: var(--petrol);
display: flex;
align-items: center;
justify-content: center;
gap: .75rem;
max-height: 50px;
opacity: 1;
transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.25s ease;
overflow: hidden;
}

.nav-geo::before, .nav-geo::after {
content: '';
width: 28px;
height: 1px;
background: var(--petrol);
flex-shrink: 0;
}

body.scrolled .nav-geo {
max-height: 0;
padding-top: 0;
padding-bottom: 0;
opacity: 0;
}

.nav-inner {
max-width: var(--max-w);
margin: 0 auto;
padding: 0 2.5rem;
height: 60px;
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
}

.nav-brand {
font-family: 'Lora', serif;
font-size: 1rem;
color: var(--navy);
text-decoration: none;
font-weight: 500;
}

.nav-brand span {
color: var(--petrol);
font-weight: 400;
}

.nav-links {
display: flex;
gap: 1.75rem;
list-style: none;
align-items: center;
}

.nav-links a {
color: var(--ink-soft);
text-decoration: none;
font-size: .82rem;
transition: color .2s;
}

.nav-links a:hover {
color: var(--navy);
}

.nav-cta {
border: 1.5px solid var(--petrol);
color: var(--petrol) !important;
padding: .55rem 1.25rem;
border-radius: 2px;
font-weight: 500 !important;
transition: all .2s !important;
}

.nav-cta:hover {
background: var(--petrol);
border-color: var(--petrol);
color: var(--white) !important;
}

.lang-switch {
display: inline-flex;
align-items: center;
gap: .35rem;
font-size: .8rem;
color: var(--ink-soft);
font-weight: 400;
}

.lang-switch a {
color: var(--petrol);
text-decoration: none;
font-weight: 500;
transition: color .2s;
}

.lang-switch a:hover {
color: var(--navy);
text-decoration: underline;
}

.lang-switch .lang-active {
font-weight: 600;
color: var(--navy);
}

.hamburger {
display: none;
background: none;
border: none;
cursor: pointer;
padding: .4rem;
color: var(--navy);
font-size: 1.5rem;
line-height: 1;
}

/* STREAMING_CHUNK:Defining Common Section Utility Classes... */
section {
padding: var(--gap) 0;
}

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

.section-sand {
background: var(--sand);
}

.section-sand h1, .section-sand h2, .section-sand h3, .section-sand h4 {
color: var(--navy);
}

.section-sand .eyebrow {
color: var(--petrol);
}

.section-sand .s-intro {
color: var(--ink-soft);
}

.section-sand p {
color: var(--ink-soft);
}

.eyebrow {
font-size: .68rem;
font-weight: 500;
letter-spacing: .18em;
text-transform: uppercase;
color: var(--petrol-lt);
display: block;
margin-bottom: 1.1rem;
}

.s-h2 {
font-size: clamp(1.6rem, 2.8vw, 2.2rem);
font-weight: 500;
margin-bottom: 1.25rem;
}

.s-intro {
font-size: 1rem;
color: rgba(255, 255, 255, .7);
max-width: 100%;
line-height: 1.85;
margin-bottom: 3.5rem;
font-weight: 300;
}

.btn-p {
background: var(--petrol);
color: var(--white);
padding: .95rem 2rem;
border-radius: 2px;
text-decoration: none;
font-weight: 500;
font-size: .875rem;
transition: all .2s;
display: inline-flex;
align-items: center;
gap: .45rem;
border: none;
}

.btn-p:hover {
background: var(--petrol-lt);
transform: translateY(-1px);
}

.btn-g {
border: 1.5px solid rgba(255, 255, 255, .35);
color: rgba(255, 255, 255, .8);
padding: .95rem 1.75rem;
border-radius: 2px;
text-decoration: none;
font-size: .875rem;
transition: all .2s;
display: inline-flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.btn-g:hover {
border-color: var(--sand);
color: var(--sand);
}

/* STREAMING_CHUNK:Styling Hero Section... */
.hero {
background: var(--navy);
min-height: 100vh;
display: flex;
align-items: center;
padding-top: calc(34px + 60px + 4rem);
padding-bottom: 5rem;
}

.hero-inner {
max-width: var(--max-w);
margin: 0 auto;
padding: 0 2.5rem;
display: grid;
grid-template-columns: 1.1fr .9fr;
gap: 5rem;
align-items: center;
width: 100%;
}

.hero-h1 {
font-size: clamp(2.1rem, 4vw, 3.2rem);
font-weight: 500;
color: var(--sand);
letter-spacing: -.015em;
margin-bottom: 1.5rem;
line-height: 1.25;
}

.hero-h1 em {
font-style: normal;
color: var(--petrol-lt);
}

.hero-sub-line {
font-size: 1.05rem;
font-weight: 500;
color: var(--petrol-lt);
margin-bottom: 1.75rem;
font-family: 'Lora', serif;
font-style: italic;
}

.hero-bridge {
font-size: .97rem;
color: rgba(255, 255, 255, .72);
font-weight: 300;
line-height: 1.9;
margin-bottom: 2rem;
max-width: 540px;
}

.hero-bridge strong {
color: var(--sand);
font-weight: 500;
}

.hero-trust-bar {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 2.75rem;
flex-wrap: wrap;
}

.htb-item {
font-size: .78rem;
color: rgba(255, 255, 255, .55);
}

.htb-dot {
color: rgba(255, 255, 255, .25);
}

.hero-btns {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}

.hero-right {
display: flex;
flex-direction: column;
gap: 0;
}

.photo-card {
border-radius: var(--r) var(--r) 0 0;
overflow: hidden;
position: relative;
background: var(--sand);
padding: 12px;
border: 1px solid var(--stone);
border-bottom: none;
}

.photo-card img {
width: 100%;
height: 310px;
object-fit: cover;
object-position: center top;
display: block;
border-radius: 2px;
}

.photo-overlay-soft {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 35%;
background: linear-gradient(to top, var(--sand) 0%, transparent 100%);
pointer-events: none;
}

.hero-fit-card {
background: var(--sand);
border-radius: 0 0 var(--r) var(--r);
padding: 1.5rem 1.75rem;
border: 1px solid var(--stone);
border-top: none;
}

.hfc-label {
font-size: .67rem;
font-weight: 500;
letter-spacing: .14em;
text-transform: uppercase;
color: var(--petrol);
margin-bottom: 1rem;
display: block;
}

.hfc-item {
display: flex;
align-items: flex-start;
gap: .8rem;
padding: .55rem 0;
font-size: .85rem;
color: var(--ink-soft);
line-height: 1.55;
border-bottom: 1px solid var(--stone);
}

.hfc-item:last-of-type {
border-bottom: none;
}

.hfc-dot {
width: 5px;
height: 5px;
border-radius: 50%;
background: var(--petrol);
flex-shrink: 0;
margin-top: .46rem;
}

.hfc-persona-text {
margin-top: 1.25rem;
padding-top: 1rem;
border-top: none;
font-size: .82rem;
color: var(--ink-soft);
line-height: 1.65;
font-weight: 300;
}

/* STREAMING_CHUNK:Styling Pain Checklist and Consequence Sections... */
.pain {
background: var(--sand);
}

.pain-checklist {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem 3rem;
margin-top: 2rem;
}

.pain-check-item {
display: flex;
align-items: flex-start;
gap: 1rem;
}

.pain-chk-box {
width: 20px;
height: 20px;
border: 2px solid var(--petrol);
border-radius: 3px;
background: var(--white);
flex-shrink: 0;
margin-top: 0.25rem;
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pain-check-text strong {
display: block;
color: var(--navy);
font-weight: 500;
font-size: 1.05rem;
margin-bottom: 0.25rem;
}

.pain-check-text {
font-size: 0.9rem;
color: var(--ink-soft);
line-height: 1.65;
font-weight: 300;
}

.consequence {
background: var(--navy);
padding: 5rem 0;
border-top: 1px solid rgba(255, 255, 255, .08);
border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.consequence-inner {
max-width: 860px;
margin: 0 auto;
padding: 0 2.5rem;
text-align: center;
}

.consequence-box {
border: 1px solid var(--stone);
border-radius: var(--r);
padding: 3rem 3.5rem;
background: var(--sand);
}

.consequence-quote {
font-family: 'Lora', serif;
font-size: clamp(1.5rem, 2.6vw, 2rem);
font-weight: 500;
color: var(--navy);
line-height: 1.45;
margin-bottom: 1.5rem;
}

.consequence-quote em {
font-style: italic;
color: var(--petrol);
}

.consequence-sub {
font-size: .97rem;
color: var(--ink-soft);
line-height: 1.85;
font-weight: 300;
}

/* STREAMING_CHUNK:Styling Portrait and KPI Sections... */
.portrait {
background: var(--sand);
}

.portrait-inner {
display: grid;
grid-template-columns: .85fr 1.15fr;
gap: 4rem;
align-items: start;
}

.portrait-img-wrap {
position: relative;
border-radius: var(--r);
overflow: hidden;
}

.portrait-img-wrap img {
width: 100%;
border-radius: var(--r);
display: block;
box-shadow: 0 15px 40px -15px rgba(14, 42, 71, .15);
}

.portrait-h3 {
font-size: 1.5rem;
font-weight: 500;
margin-bottom: 1.25rem;
line-height: 1.4;
color: var(--navy);
}

.portrait-p {
font-size: .93rem;
color: var(--ink-soft);
line-height: 1.85;
margin-bottom: 1rem;
font-weight: 300;
}

.portrait-p strong {
color: var(--navy);
font-weight: 500;
}

.portrait-tags-full {
display: flex;
flex-wrap: wrap;
gap: .6rem;
margin-top: 2rem;
}

.portrait-tag {
border: 1px solid var(--stone-dk);
background: transparent;
border-radius: 20px;
padding: .4rem 1.0rem;
font-size: .78rem;
color: var(--navy);
font-weight: 400;
transition: all .2s ease;
}

.portrait-tag:hover {
border-color: var(--petrol);
color: var(--petrol);
}

.kpi-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
margin-top: 2.5rem;
}

.kpi-card {
background: transparent;
border: none;
padding: 1.5rem 1rem;
text-align: center;
}

.kpi-num {
font-family: 'Lora', serif;
font-size: 2.8rem;
font-weight: 600;
color: var(--navy);
line-height: 1;
margin-bottom: .5rem;
}

.kpi-label {
font-size: .85rem;
color: var(--ink-soft);
font-weight: 400;
line-height: 1.4;
}

/* STREAMING_CHUNK:Styling Roles and CTA Strip Sections... */
.roles {
background: var(--navy);
}

.roles .eyebrow {
color: var(--petrol-lt);
}

.roles .s-h2 {
color: var(--sand);
}

.roles .s-intro {
color: rgba(255, 255, 255, .65);
}

.roles-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.25rem;
}

.role-card {
background: var(--sand);
border: 1px solid var(--stone);
border-radius: var(--r);
padding: 2.25rem;
}

.role-num {
font-family: 'Lora', serif;
font-size: 3.75rem;
color: var(--petrol);
font-weight: 500;
line-height: 1;
margin-bottom: .85rem;
opacity: .8;
}

.role-tag {
font-size: .68rem;
font-weight: 500;
letter-spacing: .1em;
text-transform: uppercase;
color: var(--petrol);
margin-bottom: .75rem;
display: block;
}

.role-title {
font-size: 1.3rem;
font-weight: 500;
margin-bottom: .7rem;
line-height: 1.35;
color: var(--navy);
}

.role-desc {
font-size: .88rem;
color: var(--ink-soft);
line-height: 1.75;
font-weight: 300;
}

.cta-strip {
background: var(--white);
border-top: 1px solid var(--stone);
border-bottom: 1px solid var(--stone);
padding: 2.5rem 0;
}

.cta-strip-inner {
max-width: var(--max-w);
margin: 0 auto;
padding: 0 2.5rem;
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
flex-wrap: wrap;
}

.cta-strip-text {
font-size: .95rem;
color: var(--ink-soft);
font-weight: 300;
}

.cta-strip-text strong {
font-family: 'Lora', serif;
font-size: 1.15rem;
color: var(--navy);
display: block;
margin-bottom: .3rem;
font-weight: 500;
}

/* STREAMING_CHUNK:Styling Case Studies and Mandates Grid... */
.cases {
background: var(--sand);
}

.cases .eyebrow {
color: var(--petrol);
}

.cases .s-h2 {
color: var(--navy);
}

.cases .s-intro {
color: var(--ink-soft);
}

.case-tabs-container {
background: var(--white);
border: 1px solid var(--stone);
border-radius: var(--r);
overflow: hidden;
margin-bottom: 2rem;
}

.case-tabs {
display: grid;
grid-template-columns: repeat(3, 1fr);
background: var(--stone);
border-bottom: 1px solid var(--stone-dk);
}

.case-tab-btn {
background: transparent;
border: none;
padding: 1.1rem 0.75rem;
text-align: center;
font-family: 'Inter', sans-serif;
cursor: pointer;
transition: all 0.2s;
border-bottom: 3px solid transparent;
}

.case-tab-btn:hover {
background: rgba(255, 255, 255, 0.5);
}

.case-tab-btn.active {
background: var(--white);
border-bottom-color: var(--petrol);
}

.case-tab-sub {
font-size: 0.68rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.12em;
color: var(--petrol);
display: block;
margin-bottom: 0.25rem;
}

.case-tab-title {
font-family: 'Lora', serif;
font-size: 1.05rem;
color: var(--navy);
font-weight: 500;
}

.case-content-panel {
padding: 2.5rem;
display: none;
}

.case-content-panel.active {
display: block;
}

.case-card-inner {
display: grid;
grid-template-columns: 260px 1fr;
gap: 2.5rem;
align-items: start;
}

.case-co {
font-size: .68rem;
font-weight: 500;
letter-spacing: .08em;
text-transform: uppercase;
color: var(--petrol);
margin-bottom: .5rem;
display: block;
}

.case-title {
font-size: 1.15rem;
font-weight: 500;
line-height: 1.4;
color: var(--navy);
margin-bottom: .75rem;
}

.case-badge {
display: inline-block;
border: 1px solid var(--stone-dk);
color: var(--petrol);
font-size: .68rem;
font-weight: 600;
letter-spacing: .06em;
text-transform: uppercase;
padding: .3rem .75rem;
border-radius: 20px;
background: rgba(27, 126, 140, .06);
}

.case-sit {
font-size: .88rem;
color: var(--ink-soft);
line-height: 1.75;
padding-bottom: 1.1rem;
border-bottom: 1px solid var(--stone);
margin-bottom: 1.1rem;
font-weight: 300;
}

.case-sit strong {
color: var(--navy);
font-weight: 500;
}

.results-label {
font-size: .64rem;
font-weight: 500;
letter-spacing: .1em;
text-transform: uppercase;
color: var(--stone-dk);
margin-bottom: .65rem;
display: block;
}

.result-item {
display: flex;
align-items: flex-start;
gap: .6rem;
font-size: .85rem;
color: var(--ink-soft);
line-height: 1.6;
padding: .28rem 0;
font-weight: 300;
}

.result-item::before {
content: '';
width: 4px;
height: 4px;
border-radius: 50%;
background: var(--petrol);
flex-shrink: 0;
margin-top: .52rem;
}

.more-mandates-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.25rem;
margin-top: 1.25rem;
}

.mm-card {
background: var(--white);
border: 1px solid var(--stone);
border-radius: var(--r);
padding: 1.5rem;
}

.mm-card-sector {
font-size: .6rem;
font-weight: 500;
letter-spacing: .08em;
text-transform: uppercase;
color: var(--petrol);
margin-bottom: .3rem;
display: block;
}

.mm-card-co {
font-size: .88rem;
font-weight: 500;
color: var(--navy);
margin-bottom: .6rem;
display: block;
}

.mm-card p {
font-size: .82rem;
color: var(--ink-soft);
line-height: 1.6;
font-weight: 300;
}

/* STREAMING_CHUNK:Styling Monthly Mandates and Packages... */
.pkgs {
background: var(--sand);
}

.pkgs .eyebrow {
color: var(--petrol);
}

.pkgs .s-h2 {
color: var(--navy);
}

.pkgs .s-intro {
color: var(--ink-soft);
}

.pkg-guarantee {
margin-top: 2rem;
padding: 1.5rem 2rem;
background: var(--white);
border-radius: var(--r);
border: 1px solid var(--stone);
text-align: center;
font-size: .93rem;
color: var(--ink-soft);
font-weight: 300;
line-height: 1.7;
}

.pkg-guarantee strong {
color: var(--navy);
font-weight: 500;
font-size: 1.05rem;
display: block;
margin-bottom: .35rem;
}

.guarantees {
display: flex;
gap: 2.5rem;
justify-content: center;
margin-top: 1.5rem;
flex-wrap: wrap;
}

.g-item {
display: flex;
align-items: center;
gap: .6rem;
font-size: .84rem;
color: var(--ink-soft);
font-weight: 300;
}

.g-dot {
width: 5px;
height: 5px;
border-radius: 50%;
background: var(--petrol);
flex-shrink: 0;
}

.pkg-tabs-container {
background: var(--white);
border: 1px solid var(--stone);
border-radius: var(--r);
overflow: hidden;
margin-top: 2rem;
}

.pkg-tabs {
display: grid;
grid-template-columns: repeat(3, 1fr);
background: var(--stone);
border-bottom: 1px solid var(--stone-dk);
}

.pkg-tab-btn {
background: transparent;
border: none;
padding: 1.1rem 0.75rem;
text-align: center;
font-family: 'Inter', sans-serif;
cursor: pointer;
transition: all 0.2s;
border-bottom: 3px solid transparent;
}

.pkg-tab-btn:hover {
background: rgba(255, 255, 255, 0.4);
}

.pkg-tab-btn.active {
background: var(--white);
border-bottom-color: var(--petrol);
}

.pkg-tab-sub {
font-size: 0.68rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.12em;
color: var(--petrol);
display: block;
margin-bottom: 0.25rem;
}

.pkg-tab-title {
font-family: 'Lora', serif;
font-size: 1.05rem;
color: var(--navy);
font-weight: 500;
}

.pkg-content-panel {
padding: 2.5rem;
display: none;
}

.pkg-content-panel.active {
display: block;
}

.pkg-panel-grid {
display: grid;
grid-template-columns: 1.2fr 0.8fr;
gap: 3rem;
align-items: start;
}

.pkg-panel-title {
font-size: 1.5rem;
color: var(--navy);
margin-bottom: 0.5rem;
font-weight: 500;
}

.pkg-panel-for {
font-size: 0.95rem;
font-weight: 500;
color: var(--navy);
margin-bottom: 1.25rem;
}

.pkg-sub {
font-size: 0.82rem;
color: var(--ink-soft);
font-weight: 300;
}

.pkg-list {
list-style: none;
}

.pkg-list li {
display: flex;
align-items: flex-start;
gap: 0.6rem;
font-size: 0.86rem;
color: var(--ink-soft);
padding: 0.38rem 0;
font-weight: 300;
line-height: 1.6;
}

.pkg-list li::before {
content: '';
width: 4px;
height: 4px;
border-radius: 50%;
background: var(--petrol);
flex-shrink: 0;
margin-top: 0.55rem;
}

.pkg-btn {
display: block;
text-align: center;
padding: 0.85rem 1.25rem;
border-radius: 2px;
text-decoration: none;
font-weight: 500;
font-size: 0.85rem;
background: var(--petrol);
color: var(--white);
transition: all 0.2s;
white-space: nowrap;
width: 100%;
border: none;
}

.pkg-btn:hover {
background: var(--navy);
}

.pkg-link-more {
display: inline-flex;
align-items: center;
gap: 0.35rem;
margin-top: 0.85rem;
font-size: 0.83rem;
font-weight: 500;
color: var(--petrol);
text-decoration: none;
transition: color 0.2s;
}

.pkg-link-more:hover {
color: var(--navy);
text-decoration: underline;
}

/* STREAMING_CHUNK:Styling Standalone Formats and FAQs... */
#einstieg .pkg-tabs-container {
background: var(--sand);
border: 1px solid var(--stone);
}

#einstieg .pkg-tabs {
background: var(--stone);
border-bottom-color: var(--stone-dk);
}

#einstieg .pkg-tab-btn:hover {
background: rgba(255, 255, 255, 0.5);
}

#einstieg .pkg-tab-btn.active {
background: var(--sand);
border-bottom-color: var(--petrol);
}

#einstieg .pkg-tab-sub {
color: var(--petrol);
}

#einstieg .pkg-tab-title {
color: var(--navy);
}

#einstieg .pkg-panel-title {
color: var(--navy);
}

#einstieg .pkg-panel-for {
color: var(--navy);
}

#einstieg .pkg-list li {
color: var(--ink-soft);
}

.pkg-kpi-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
margin-top: 3.5rem;
padding-top: 2.5rem;
border-top: 1px solid var(--stone);
}

.entry {
background: var(--navy);
}

.entry .eyebrow {
color: var(--petrol-lt);
}

.entry .s-h2 {
color: var(--sand);
}

.objections {
background: var(--sand);
}

.objections .eyebrow {
color: var(--petrol);
}

.objections .s-h2 {
color: var(--navy);
}

.objections .s-intro {
color: var(--ink-soft);
}

.obj-grid {
display: grid;
grid-template-columns: 1.2fr .8fr;
gap: 5rem;
align-items: start;
}

.obj-list {
display: flex;
flex-direction: column;
gap: 0;
}

.obj-q {
border-bottom: 1px solid var(--stone);
}

.obj-q:first-child {
border-top: 1px solid var(--stone);
}

.obj-toggle {
width: 100%;
text-align: left;
background: none;
border: none;
cursor: pointer;
padding: 1.25rem 0;
display: flex;
justify-content: space-between;
align-items: center;
gap: 1rem;
font-family: 'Lora', serif;
font-size: .93rem;
color: var(--navy);
font-weight: 500;
font-style: italic;
}

.obj-toggle:hover {
color: var(--petrol);
}

.obj-icon {
flex-shrink: 0;
font-size: 1.1rem;
color: var(--petrol);
transition: transform .25s;
font-style: normal;
font-family: 'Inter', sans-serif;
font-weight: 300;
}

.obj-q.open .obj-icon {
transform: rotate(45deg);
}

.obj-answer {
max-height: 0;
overflow: hidden;
transition: max-height .3s ease;
}

.obj-q.open .obj-answer {
max-height: 200px;
}

.obj-at {
font-size: .87rem;
color: var(--ink-soft);
line-height: 1.8;
font-weight: 300;
padding-bottom: 1.25rem;
}

.obj-at strong {
color: var(--navy);
font-weight: 500;
}

.not-for {
background: var(--navy);
border-radius: var(--r);
padding: 2.25rem;
}

.nf-title {
font-size: 1.05rem;
font-weight: 500;
margin-bottom: 1.25rem;
color: var(--sand);
}

.nf-list {
list-style: none;
}

.nf-list li {
display: flex;
align-items: flex-start;
gap: .7rem;
font-size: .86rem;
color: rgba(255, 255, 255, .6);
padding: .5rem 0;
border-bottom: 1px solid rgba(255, 255, 255, .08);
font-weight: 300;
line-height: 1.6;
}

.nf-list li:last-child {
border-bottom: none;
padding-bottom: 0;
}

.nf-list li::before {
content: '';
width: 4px;
height: 4px;
border-radius: 50%;
background: rgba(255, 255, 255, .3);
flex-shrink: 0;
margin-top: .52rem;
}

.nf-sub {
margin-top: 1.25rem;
padding-top: 1.25rem;
border-top: 1px solid rgba(255, 255, 255, .1);
font-size: .83rem;
color: var(--petrol-lt);
line-height: 1.75;
font-weight: 300;
}

.nf-sub strong {
color: var(--petrol-lt);
font-weight: 500;
}

/* STREAMING_CHUNK:Styling Region Section with Sand Cards... */
.region {
background: var(--navy);
}

.region .eyebrow {
color: var(--petrol-lt);
}

.region .s-h2 {
color: var(--sand);
}

.region-layout {
display: grid;
grid-template-columns: 1fr 240px 1fr;
gap: 2.5rem;
align-items: center;
margin-top: 2rem;
}

.region-col {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.region-card {
background: var(--sand);
border: 1px solid var(--stone);
border-radius: var(--r);
padding: 1.75rem;
}

.region-card h3 {
font-size: 1.15rem;
font-weight: 500;
color: var(--navy);
margin-bottom: .65rem;
}

.region-card p {
font-size: .88rem;
color: var(--ink-soft);
line-height: 1.8;
font-weight: 300;
}

.region-card strong {
color: var(--navy);
font-weight: 500;
}

.region-card strong.highlight-bold {
font-weight: 600;
color: var(--navy);
}

.map-center {
display: flex;
justify-content: center;
align-items: center;
}

.map-svg {
width: 100%;
max-width: 220px;
height: auto;
}

/* STREAMING_CHUNK:Styling Final CTA, Footer, and Responsive Rules... */
.final-cta {
background: var(--petrol);
color: var(--white);
text-align: center;
padding: var(--gap) 0;
}

.final-cta .eyebrow {
color: rgba(255, 255, 255, .7);
}

.cta-h2 {
font-size: clamp(1.7rem, 3vw, 2.4rem);
font-weight: 500;
color: var(--white);
max-width: 600px;
margin: 0 auto 1.25rem;
line-height: 1.35;
}

.cta-sub {
font-size: 1rem;
color: rgba(255, 255, 255, .8);
max-width: 480px;
margin: 0 auto 3rem;
line-height: 1.85;
font-weight: 300;
}

.cta-btns {
display: flex;
gap: 1.25rem;
justify-content: center;
align-items: center;
}

.final-cta .btn-p {
background: var(--navy);
color: var(--white);
}

.final-cta .btn-p:hover {
background: var(--navy-mid);
}

footer {
background: var(--navy);
padding: 2.25rem 2.5rem;
border-top: 1px solid rgba(255, 255, 255, .1);
}

.foot {
max-width: var(--max-w);
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}

.foot-brand {
font-family: 'Lora', serif;
color: rgba(255, 255, 255, .5);
font-size: .85rem;
line-height: 1.6;
}

.foot-brand span {
color: var(--petrol-lt);
}

.foot-brand a {
color: rgba(255, 255, 255, .6);
text-decoration: none;
transition: color .2s;
}

.foot-brand a:hover {
color: var(--sand);
text-decoration: underline;
}

.foot-links {
display: flex;
gap: 1.75rem;
list-style: none;
align-items: center;
}

.foot-links a {
color: rgba(255, 255, 255, .45);
text-decoration: none;
font-size: .78rem;
transition: color .2s;
}

.foot-links a:hover {
color: var(--sand);
}

@media(max-width: 1024px) {
.hero-inner, .portrait-inner, .obj-grid {
grid-template-columns: 1fr;
gap: 3rem;
}
.pain-checklist, .roles-grid, .kpi-grid {
grid-template-columns: 1fr;
gap: 1.25rem;
}
.pkg-kpi-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}
.more-mandates-grid {
grid-template-columns: repeat(2, 1fr);
}
.region-layout {
grid-template-columns: 1fr;
gap: 1.5rem;
}

.hamburger {
display: block;
}
.nav-links {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--sand);
border-bottom: 1px solid var(--stone);
flex-direction: column;
padding: 1.5rem 2.5rem;
gap: 1.25rem;
align-items: flex-start;
box-shadow: 0 12px 30px rgba(14, 42, 71, 0.12);
}
.nav-links.active {
display: flex;
}
.nav-cta {
width: 100%;
text-align: center;
}
section {
padding: 4rem 0;
}
}

@media(max-width: 600px) {
.container {
padding: 0 1.25rem;
}
.nav-geo {
padding: .55rem 1rem;
font-size: .6rem;
}
.nav-inner {
padding: 0 1.25rem;
}
.cta-btns {
flex-direction: column;
align-items: stretch;
}
.guarantees {
flex-direction: column;
align-items: center;
gap: 1rem;
}
.pkg-kpi-grid {
grid-template-columns: 1fr;
gap: 1.25rem;
}
.more-mandates-grid {
grid-template-columns: 1fr;
}
}