/* =========================================================
   Titan Global Immigration - Site Stylesheet
   ========================================================= */

:root {
    --primary: var(--theme-primary, #0E2341);
    --primary-dark: var(--theme-primary-dark, #0E2341);
    --section-bg: #234a57;
    --accent: var(--theme-accent, #B08A4A);
    --accent-dark: #8e6d3a;
    --bg: var(--theme-background, #F8F6F1);
    --surface: var(--theme-surface, #ffffff);
    --text: var(--theme-text, #0E2341);
    --muted: var(--theme-muted, #667085);
    --border: #ddd8ce;
    --header-bg: var(--theme-header, #F8F6F1);
    --footer-bg: var(--theme-footer, #0E2341);
    --radius: 2px;
    --shadow-sm: 0 2px 8px rgba(14, 35, 65, 0.09);
    --shadow-md: 0 10px 28px rgba(14, 35, 65, 0.16);
    --font-heading: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: "Source Serif 4", Georgia, "Times New Roman", serif;
    --font-ui: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.15;
}

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

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

p {
    margin-top: 0;
}

.container {
    width: min(1120px, 88vw);
    margin: 0 auto;
}

/* Header */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--header-bg);
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #eceff2;
    box-shadow: 0 1px 0 rgba(10, 47, 58, 0.06);
}

.site-header-accent {
    height: 6px;
    background: var(--accent);
}

.header-shell {
    padding-top: 15px;
    padding-bottom: 15px;
}

.header-main {
    display: grid;
    grid-template-columns: 290px 1fr;
    align-items: center;
    gap: 18px;
}

.header-tools {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.nav-shell {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    justify-self: center;
}

.brand-logo {
    height: auto;
    width: 260px;
    max-width: 100%;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 3px;
    align-items: center;
    text-align: center;
}

.brand-text-wordmark {
    gap: 9px;
    align-items: center;
}

.brand-wordmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.brand-word {
    font-family: var(--font-ui);
    font-size: 1.06rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--primary);
}

.brand-accent {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    background:
        repeating-linear-gradient(
            135deg,
            #d9a141 0,
            #d9a141 2px,
            transparent 2px,
            transparent 5px
        );
    border: 1px solid rgba(217, 161, 65, 0.45);
}

.brand-name {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--primary-dark);
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.brand-sub {
    font-size: 0.36rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #7a8b95;
    padding-left: 0;
    text-align: center;
}

.site-nav {
    display: block;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link-wrap {
    display: flex;
    align-items: center;
    gap: 3px;
}

.nav-link {
    min-height: auto;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
    transition: color 0.15s ease, background 0.15s ease;
}

.nav-link:hover {
    color: var(--accent);
    background: transparent;
}

.submenu-toggle {
    display: none;
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    background: #e7edf2;
    color: var(--primary-dark);
    cursor: pointer;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 220px;
    padding: 6px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: #fff;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
    z-index: 200;
}

.nav-item:hover > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mega dropdown — Investments */
.nav-mega {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    width: min(860px, 92vw);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
    z-index: 200;
}

.nav-item:hover > .nav-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-mega-inner {
    display: grid;
    grid-template-columns: 200px 1px 1fr;
    gap: 0;
    padding: 28px 24px;
}

.nav-mega-divider {
    background: var(--border);
    margin: 0 20px;
}

.nav-mega-heading {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 14px;
}

.nav-mega-link {
    display: block;
    padding: 7px 8px 7px 0;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
    border-radius: 3px;
    transition: color 0.14s;
}

.nav-mega-link:hover {
    color: var(--accent);
}

.nav-mega-countries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px 12px;
}

.nav-mega-country {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 8px;
    border-radius: 4px;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: background 0.13s, color 0.13s;
    text-decoration: none;
}

.nav-mega-country:hover {
    background: #f4f7fa;
    color: var(--accent);
}

.nav-mega-flag {
    font-size: 1.25rem;
    line-height: 1;
    flex-shrink: 0;
}

.nav-dropdown-link {
    display: block;
    padding: 7px 9px;
    border-radius: 3px;
    color: var(--primary-dark);
    font-size: 0.78rem;
}

.nav-dropdown-link:hover {
    background: #f5f8fb;
    color: var(--primary);
}

.menu-toggle {
    display: none;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: #fff;
    color: var(--primary);
    padding: 7px 10px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.topbar-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 28px;
    color: var(--primary);
}

.topbar-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--primary);
}

.topbar-links svg {
    color: var(--primary);
    flex-shrink: 0;
}

.topbar-tagline {
    display: none;
}

.header-search {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid #d8dee3;
    border-radius: 6px;
    background: #fff;
    height: 36px;
}

.header-search input {
    width: 136px;
    border: 0;
    outline: 0;
    padding: 0 12px;
    color: #6a7b87;
    font-size: 0.72rem;
}

.header-search input::placeholder {
    color: #a3b0b8;
}

.header-search button {
    width: 38px;
    border: 0;
    background: var(--accent);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
}

/* Utilities */
.site-main {
    min-height: 56vh;
}

.page-wrap {
    padding-bottom: 0;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--muted);
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 6px;
}

.mb-2 {
    margin-bottom: 12px;
}

.mb-3 {
    margin-bottom: 20px;
}

.mb-4 {
    margin-bottom: 30px;
}

.mt-3 {
    margin-top: 20px;
}

.mt-4 {
    margin-top: 30px;
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-2 {
    gap: 8px;
}

.muted {
    color: var(--muted);
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
}

.section-title {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: clamp(2.05rem, 2.95vw, 2.65rem);
    font-weight: 600;
    color: #0E2341;
    line-height: 1.08;
}

.section-lead {
    margin: 0;
    max-width: 760px;
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--muted);
}

.section-intro {
    font-size: 0.9rem;
    line-height: 1.78;
    color: var(--muted);
}

.page-section {
    padding: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 34px;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.75);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: #fff;
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-dark:hover {
    background: var(--primary-dark);
    color: #fff;
}

.btn-ghost {
    padding-left: 0;
    padding-right: 0;
    background: transparent;
    border-color: transparent;
    color: var(--accent);
}

.btn-ghost:hover {
    color: var(--accent-dark);
    box-shadow: none;
}

.btn-sm {
    min-height: 30px;
    padding: 8px 13px;
    font-size: 0.56rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 5px 11px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pill-accent {
    border-color: var(--accent);
    background: var(--accent);
}

.pill-dark {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.14);
    color: #fff;
}

/* Hero */
.section-hero {
    padding: 0;
}

.hero-banner {
    position: relative;
    min-height: 718px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(6, 49, 71, 0.84) 0%, rgba(6, 49, 71, 0.54) 35%, rgba(6, 49, 71, 0.08) 66%),
        url("https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
}

.hero-banner[style] {
    background-size: cover !important;
    background-position: center !important;
}

.hero-shell {
    width: min(1520px, 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    padding: 40px 0 56px;
    margin-left: 118px;
}

.hero-eyebrow {
    display: none;
}

.hero-title {
    margin: 0 0 28px;
    font-family: var(--font-heading);
    font-size: clamp(4rem, 5.4vw, 5.7rem);
    font-weight: 700;
    line-height: 0.98;
    color: #fff;
}

.hero-copy,
.hero-copy p {
    margin: 0;
    max-width: 760px;
    font-size: 1.15rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-copy strong {
    color: #fff;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    margin-top: 196px;
    align-items: center;
}

.hero-btn {
    min-width: 0;
    width: 380px;
    min-height: 68px;
    padding: 0 28px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.hero-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(6, 40, 53, 0.18);
}

.hero-btn-light {
    background: #f8f5f1;
    color: #1a4250;
}

.hero-btn-dark {
    background: #274651;
    color: #fff;
}

.hero-btn-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: var(--accent);
    color: #fff;
}

.hero-btn-arrow {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    color: var(--accent);
}

.hero-badges {
    display: none;
}

/* Trust section */
.section-rich_text {
    padding: 0;
}

.rich-wrap {
    padding: 72px 0 78px;
    background: var(--bg);
}

.section-trust-layout {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.rich-wrap .container {
    width: min(1020px, 86vw);
}

.trust-block {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-block .section-title {
    margin-bottom: 18px;
    font-size: clamp(3rem, 3.5vw, 3.7rem);
    line-height: 1.04;
    color: #143f50;
}

.trust-divider {
    width: 100%;
    height: 1px;
    background: #d2dbe0;
    margin-bottom: 28px;
}

.trust-body,
.trust-body p,
.trust-secondary-copy p {
    margin: 0 0 26px;
    max-width: 980px;
    font-size: 0.97rem;
    line-height: 1.58;
    letter-spacing: 0.02em;
    color: #143f50;
}

.trust-right-heading {
    margin: 34px 0 16px;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 3.4vw, 3.6rem);
    font-weight: 600;
    line-height: 1.04;
    color: #143f50;
}

.trust-secondary-copy {
    max-width: 980px;
}

.trust-secondary-copy p:last-child {
    margin-bottom: 0;
}

.trust-cta {
    display: flex;
    justify-content: center;
    margin-top: 38px;
}

.trust-btn {
    min-width: 308px;
    min-height: 50px;
    padding: 0 34px;
    border-radius: 4px;
    background: #234a57;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.trust-btn:hover {
    background: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(17, 57, 71, 0.16);
}

.trust-btn-arrow {
    display: inline-flex;
    align-items: center;
    color: #fff;
}

.rich-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

.rich-card p {
    color: var(--muted);
    line-height: 1.8;
}

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

.cta-strip {
    padding: 72px 0 76px;
    text-align: center;
    background: var(--section-bg);
}

.cta-inner {
    width: min(980px, 86vw);
}

.cta-mark {
    width: 42px;
    height: 42px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background:
        repeating-linear-gradient(
            135deg,
            #d9a141 0,
            #d9a141 4px,
            transparent 4px,
            transparent 8px
        );
}

.cta-strip .section-title {
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(2.6rem, 3.3vw, 3.6rem);
    line-height: 1.06;
}

.cta-strip .section-lead,
.cta-strip .cta-copy,
.cta-strip .cta-copy p {
    margin: 0 auto 34px;
    max-width: 1040px;
    color: #fff;
    font-family: var(--font-ui);
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.52;
    letter-spacing: 0.01em;
}

.cta-strip .cta-copy p:last-child {
    margin-bottom: 0;
}

.cta-action {
    min-width: 242px;
    min-height: 48px;
    padding: 0 28px;
    border-radius: 6px;
    background: #66afc1;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.cta-action:hover {
    background: #74bbcb;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(13, 52, 62, 0.16);
}

.cta-action-arrow {
    display: inline-flex;
    align-items: center;
}

/* Key facts */
.section-key_facts {
    padding: 0;
}

.key-facts-wrap {
    padding: 78px 0 92px;
    background: #f7f7f7;
}

.key-facts-wrap .section-title {
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #cfd8dd;
    font-size: clamp(3rem, 3.5vw, 3.65rem);
    line-height: 1.04;
    color: #143f50;
}

.key-facts-wrap .section-lead {
    margin-bottom: 74px;
    max-width: 1260px;
    color: #143f50;
    font-size: 0.98rem;
    line-height: 1.58;
}

.key-facts-wrap .section-lead-rich,
.key-facts-wrap .section-lead-rich p {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.key-facts-wrap .section-lead-rich p {
    margin: 0;
}

.key-facts-wrap .section-lead-rich p + p {
    margin-top: 12px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    align-items: stretch;
}

.stat-card {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    min-height: 100%;
    padding: 26px 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(20, 63, 80, 0.09);
    border-radius: 22px;
    box-shadow: 0 16px 36px rgba(14, 35, 65, 0.08);
}

.stat-icon {
    width: 110px;
    height: 110px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    color: #e09a32;
    box-shadow: 0 10px 24px rgba(19, 52, 67, 0.12);
}

.stat-icon svg {
    width: 44px;
    height: 44px;
}

.stat-copy {
    min-width: 0;
}

.stat-value {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 2.4vw, 3rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 0.98;
    word-break: break-word;
}

.stat-rule {
    width: 100%;
    max-width: 100%;
    height: 1px;
    background: #d7dde1;
    margin-bottom: 14px;
}

.stat-label {
    margin: 0;
    color: #253d48;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: none;
    line-height: 1.4;
}

.stat-note {
    margin: 8px 0 0;
    color: #143f50;
    font-size: 0.92rem;
    line-height: 1.45;
}

.section-key_facts .text-center.mt-4 {
    margin-top: 86px;
}

.section-key_facts .btn-outline-dark {
    min-width: 242px;
    min-height: 48px;
    padding: 0 28px;
    border-radius: 4px;
    background: #234a57;
    color: #fff;
    border-color: #234a57;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.28em;
}

.section-key_facts .btn-outline-dark:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Investment options cards */
.section-investment_options {
    padding: 0;
}

.investment-wrap {
    padding: 78px 0 92px;
    background: #f4f4f4;
}

.investment-wrap .section-title {
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #cfd8dd;
    text-align: center;
    font-size: clamp(3rem, 3.5vw, 3.7rem);
    line-height: 1.04;
    color: #143f50;
}

.investment-wrap .section-lead {
    margin: 0 auto 62px;
    text-align: center;
    max-width: 1200px;
    color: #143f50;
    font-size: 0.98rem;
    line-height: 1.58;
}

.programme-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px;
}

.programme-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(17, 57, 71, 0.14);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.programme-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.programme-image-wrap {
    height: 225px;
    overflow: hidden;
}

.programme-image,
.programme-image-placeholder {
    width: 100%;
    height: 100%;
}

.programme-image {
    object-fit: cover;
}

.programme-image-placeholder {
    background: linear-gradient(130deg, #84afbf 0%, #6f8f9e 46%, #d0b084 100%);
}

.programme-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0 18px 22px;
    text-align: center;
}

.programme-heading {
    padding: 18px 0 14px;
}

.programme-country {
    margin-bottom: 6px;
    color: #2a4854;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.programme-title {
    margin-bottom: 0;
    color: #2a4854;
    font-family: var(--font-ui);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.12;
    text-transform: uppercase;
}

.programme-min {
    display: none;
}

.programme-rule {
    width: 100%;
    height: 1px;
    background: #d7dde1;
    margin-bottom: 16px;
}

.programme-features {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: grid;
    gap: 6px;
    flex: 1;
}

.programme-features li {
    color: #33434b;
    font-size: 0.86rem;
    line-height: 1.42;
}

.programme-features li::before {
    content: "";
}

.programme-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 0;
}

.cards-view-all {
    margin-top: 44px;
    text-align: center;
}

.investment-wrap .btn-outline-dark,
.news-wrap .btn-outline-dark {
    min-width: 154px;
    min-height: 34px;
    padding: 0 18px;
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
}

.investment-wrap .btn-outline-dark:hover,
.news-wrap .btn-outline-dark:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

/* Categories */
.section-benefits {
    padding: 0;
}

.categories-wrap {
    padding: 74px 0 82px;
    background: var(--section-bg);
}

.categories-wrap .section-title {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
    color: #fff;
    text-align: left;
    font-size: clamp(3rem, 3.4vw, 3.6rem);
    line-height: 1.04;
}

.categories-wrap .section-lead {
    margin: 0 0 44px;
    max-width: 820px;
    color: rgba(255, 255, 255, 0.98);
    text-align: left;
    font-family: var(--font-ui);
    font-size: 0.98rem;
    font-weight: 400;
    line-height: 1.5;
}

.categories-wrap .categories-copy,
.categories-wrap .categories-copy p {
    margin: 0 0 44px;
    max-width: 820px;
    color: rgba(255, 255, 255, 0.98);
    text-align: left;
    font-family: var(--font-ui);
    font-size: 0.98rem;
    font-weight: 400;
    line-height: 1.5;
}

.categories-wrap .categories-copy p:last-child {
    margin-bottom: 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 56px;
}

.category-card {
    text-align: center;
    color: #fff;
    padding: 0;
    border: 0;
    background: transparent;
}

.category-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 28px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    color: var(--accent);
    box-shadow: 0 10px 24px rgba(14, 35, 65, 0.18);
}

.category-icon svg {
    width: 40px;
    height: 40px;
}

.category-card h4 {
    margin: 0 0 18px;
    font-size: 2.1rem;
    color: #fff;
    font-family: var(--font-heading);
    line-height: 1.1;
}

.category-card p {
    margin: 0 auto 24px;
    max-width: 420px;
    color: rgba(255, 255, 255, 0.98);
    font-size: 0.98rem;
    line-height: 1.46;
}

.categories-wrap .btn-primary {
    display: inline-block;
    padding: 11px 26px;
    border-radius: 4px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.18s, border-color 0.18s;
}

.categories-wrap .btn-primary::after {
    content: " \2192";
    font-size: 0.9rem;
}

.categories-wrap .btn-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.85);
    color: #fff;
}

/* Investment listings style (for dedicated section if used) */
.section-investment_listings {
    padding: 0;
}

.listings-wrap {
    padding: 78px 0 92px;
    background: #fff;
}

.listings-wrap .container {
    width: min(1180px, 88vw);
}

.listings-intro {
    max-width: 700px;
    margin-bottom: 22px;
}

.listings-wrap .section-title {
    position: relative;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 0;
    font-size: clamp(2.2rem, 2.35vw, 3.05rem);
    line-height: 1.08;
    color: #143f50;
}

.listings-wrap .section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(100%, 585px);
    height: 1px;
    background: #d9dfdf;
}

.listings-wrap .section-lead,
.listings-wrap .section-lead p {
    margin: 0;
    max-width: 640px;
    color: #143f50;
    font-size: 0.86rem;
    line-height: 1.72;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.listing-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: #fff;
    border: 1px solid rgba(20, 63, 80, 0.08);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(17, 57, 71, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.listing-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.listing-image-wrap {
    height: 188px;
    overflow: hidden;
    position: relative;
}

.listing-image,
.listing-image-placeholder {
    width: 100%;
    height: 100%;
}

.listing-image {
    object-fit: cover;
}

.listing-image-placeholder {
    background: linear-gradient(130deg, #a1c8d3 0%, #6f9cab 50%, #d2bf9b 100%);
}

.listing-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 0;
}

.listing-type-badge {
    position: absolute;
    top: 14px;
    right: 0;
    min-width: 108px;
    padding: 11px 16px 10px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.92);
    color: #2a4854;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    text-align: center;
}

.listing-accent {
    height: 6px;
    background: #f3a537;
}

.listing-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 18px 12px;
}

.listing-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #143f50;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: none;
}

.listing-flag {
    width: 24px;
    height: 16px;
    display: inline-block;
    flex-shrink: 0;
    border: 1px solid rgba(20, 63, 80, 0.12);
    box-shadow: 0 1px 2px rgba(17, 57, 71, 0.08);
}

.flag-st-kitts {
    background:
        linear-gradient(150deg, #1b9a00 0 40%, #f7ce00 40% 45%, #000 45% 55%, #f7ce00 55% 60%, #ce1126 60% 100%);
}

.flag-greece {
    background:
        linear-gradient(to bottom, #0d5eb6 0 14%, #fff 14% 28%, #0d5eb6 28% 42%, #fff 42% 56%, #0d5eb6 56% 70%, #fff 70% 84%, #0d5eb6 84% 100%);
}

.flag-grenada {
    background:
        linear-gradient(to right, #ce1126 0 16%, transparent 16% 84%, #ce1126 84% 100%),
        linear-gradient(to bottom, #ce1126 0 18%, transparent 18% 82%, #ce1126 82% 100%),
        linear-gradient(135deg, #fcd116 0 50%, #007a5e 50% 100%);
}

.flag-default {
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.listing-rule {
    height: 1px;
    background: #d9dfdf;
    margin: 0;
}

.listing-title {
    margin-bottom: 5px;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 1.03rem;
    line-height: 1.35;
}

.listing-price {
    margin-bottom: 0;
    color: #143f50;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.listing-description {
    margin: 0;
    padding: 14px 18px 24px;
    color: #143f50;
    font-size: 0.8rem;
    line-height: 1.72;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listing-footer {
    margin-top: auto;
    padding: 12px 18px 10px;
    border-top: 1px solid #d9dfdf;
    text-align: center;
}

.listing-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--accent);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.listing-link::after {
    content: ">";
}

.listing-link:hover {
    color: var(--accent-dark);
}

.listing-tagline {
    margin-bottom: 0;
    margin-top: 0;
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.listings-wrap .cards-view-all {
    margin-top: 50px;
}

.listings-wrap .btn-outline-dark {
    min-width: 132px;
    min-height: 28px;
    padding: 0 20px;
    border-radius: 4px;
    background: #234a57;
    border-color: #234a57;
    color: #fff;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.28em;
}

.listings-wrap .btn-outline-dark:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* FAQ */
.section-faq {
    padding: 0;
}

.faq-wrap {
    padding: 58px 0 72px;
    background: #f8f8f6;
}

.faq-wrap .container {
    width: min(758px, 72vw);
}

.faq-intro {
    margin-bottom: 2px;
}

.faq-wrap .section-title {
    font-family: var(--font-heading);
    position: relative;
    margin: 0 0 14px;
    padding-bottom: 16px;
    border-bottom: 0;
    font-size: 3.35rem;
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.015em;
    color: var(--primary);
}

.faq-wrap .section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #dfe4e7;
}

.faq-wrap .section-lead,
.faq-wrap .section-lead p {
    margin: 0 0 18px;
    font-family: var(--font-ui);
    color: #244754;
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.62;
    letter-spacing: 0.005em;
}

.faq-list {
    display: grid;
    gap: 0;
}

.faq-item {
    background: transparent;
    padding: 17px 0 15px;
    border-top: 1px solid #dfe4e7;
}

.faq-item:first-child {
    border-top: 0;
}

.faq-question {
    margin: 0 0 13px;
    font-family: var(--font-ui);
    color: #1f4350;
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: 0.01em;
}

.faq-answer {
    font-family: var(--font-ui);
    color: #264754;
    font-size: 0.97rem;
    font-weight: 400;
    line-height: 1.38;
    letter-spacing: 0.012em;
}

/* Testimonials */
.section-testimonials {
    padding: 0;
}

.testimonials-wrap {
    padding: 66px 0 98px;
    background: #1f4f59;
}

.testimonials-wrap .container {
    width: min(1500px, 79.5vw);
}

.testimonials-wrap .section-title {
    font-family: var(--font-heading);
    color: #fff;
    margin: 0 0 42px;
    padding-bottom: 19px;
    border-bottom: 1px solid rgba(235, 242, 245, 0.68);
    font-size: clamp(3.35rem, 3.45vw, 4.2rem);
    font-weight: 400;
    letter-spacing: -0.018em;
    line-height: 0.98;
}

.testimonials-wrap .section-lead,
.testimonials-wrap .section-lead p {
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 28px;
    max-width: 760px;
    font-size: 0.94rem;
    line-height: 1.8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 72px;
    align-items: stretch;
}

.testimonials-slider {
    position: relative;
}

.testimonials-viewport {
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 72px;
    transition: transform 0.48s ease;
    will-change: transform;
}

.quote-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    min-height: 364px;
    flex: 0 0 calc((100% - 144px) / 3);
}

.quote-stars {
    margin-bottom: 18px;
    font-size: 0;
    line-height: 1;
}

.quote-stars::before {
    content: "\201C";
    color: #f8be66;
    font-size: 4.9rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 0.7;
}

.quote-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.97);
    font-family: var(--font-ui);
    font-size: clamp(1.16rem, 1.14vw, 1.52rem);
    line-height: 1.56;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.012em;
}

.quote-author {
    margin: auto 0 0;
    padding-top: 36px;
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--font-ui);
    font-size: 1.05rem;
    line-height: 1.5;
    text-align: center;
}

.quote-author strong {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 1.16rem;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.012em;
}

.quote-author span {
    display: block;
    font-size: 1.02rem;
    font-style: italic;
}

.testimonials-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 22px;
}

.testimonial-dot {
    padding: 0;
    border: 0;
    appearance: none;
    cursor: pointer;
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.testimonial-dot.is-active {
    background: var(--accent);
}

.testimonial-dot:hover,
.testimonial-dot:focus-visible {
    transform: scale(1.08);
    outline: none;
}

.testimonials-footer {
    margin-top: 42px;
    text-align: center;
}

.testimonials-footer .btn-outline {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    min-width: 374px;
    min-height: 48px;
    padding: 13px 58px 13px 30px;
    border-radius: 6px;
    font-family: var(--font-ui);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.34em;
    position: relative;
}

.testimonials-footer .btn-outline::after {
    content: "";
    position: absolute;
    right: 32px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: translateY(-50%) rotate(45deg);
}

.testimonials-footer .btn-outline:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

/* Latest news */
.section-latest_news {
    padding: 0;
}

.news-wrap {
    padding: 74px 0 86px;
    background: #fff;
}

.news-wrap .container {
    width: min(1500px, 79vw);
}

.news-wrap .section-title {
    margin: 0 0 30px;
    padding-bottom: 18px;
    border-bottom: 1px solid #d7dde1;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 3.2vw, 4rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.018em;
    color: var(--primary);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 38px;
}

.news-card {
    display: flex;
    flex-direction: column;
    border: 0;
    border-radius: 0;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(17, 57, 71, 0.14);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.news-card-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    color: inherit;
}

.news-image-wrap {
    height: 345px;
    overflow: hidden;
}

.news-image,
.news-image-placeholder {
    width: 100%;
    height: 100%;
}

.news-image {
    object-fit: cover;
}

.news-image-placeholder {
    background: linear-gradient(130deg, #89b8c9 0%, #7f929d 52%, #7a9ace 100%);
}

.news-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px 24px 24px;
}

.news-date {
    margin-bottom: 14px;
    color: #9ea6ad;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.55px;
    text-transform: uppercase;
}

.news-title {
    margin: 0;
    color: var(--primary-dark);
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.34;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.news-view-all {
    margin-top: 30px;
    text-align: center;
}

.news-wrap .btn-outline-dark {
    min-width: 234px;
    min-height: 48px;
    padding: 13px 56px 13px 28px;
    border-radius: 6px;
    background: #f3a83d;
    border-color: #f3a83d;
    color: #fff;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    position: relative;
}

.news-wrap .btn-outline-dark::after {
    content: "";
    position: absolute;
    right: 32px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: translateY(-50%) rotate(45deg);
}

.news-wrap .btn-outline-dark:hover {
    background: #e79c31;
    border-color: #e79c31;
}

/* Process */
.section-process {
    padding: 0;
}

.process-wrap {
    padding: 64px 0 68px;
    background: #f5f5f5;
}

.process-grid {
    display: grid;
    gap: 10px;
}

.step-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.step-index {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
}

.step-content h5 {
    margin: 0 0 4px;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.step-content p {
    margin: 0;
    color: var(--muted);
    font-size: 0.8rem;
}

/* Footer */
.site-footer {
    margin-top: 0;
    background: #214f57;
    color: #fff;
}

.footer-top {
    padding: 98px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(340px, 1.35fr) minmax(280px, 0.92fr) minmax(240px, 0.78fr);
    gap: 86px;
    align-items: start;
}

.footer-brand {
    max-width: 440px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 42px;
}

.footer-logo-img {
    width: 260px;
    height: auto;
    max-width: 100%;
    display: block;
}

.footer-logo-wordmark {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.footer-logo-word {
    color: #fff;
    font-family: var(--font-ui);
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.footer-logo-accent {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background:
        repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.96) 0,
            rgba(255, 255, 255, 0.96) 2px,
            transparent 2px,
            transparent 5px
        );
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.footer-logo-sub {
    padding-left: 36px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.64rem;
    line-height: 1;
    letter-spacing: 0.42em;
    text-transform: uppercase;
}

.footer-nav {
    display: grid;
    gap: 18px;
    margin-bottom: 38px;
}

.footer-nav a {
    color: var(--accent);
    font-family: var(--font-ui);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.footer-nav a:hover {
    color: #d4a96a;
}

.footer-social {
    display: flex;
    gap: 22px;
    margin-bottom: 34px;
}

.footer-social a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.96);
}

.footer-social a:hover {
    color: #f5a53a;
}

.footer-social svg {
    width: 28px;
    height: 28px;
}

.footer-member {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.62);
}

.footer-member-badge {
    width: 34px;
    height: 34px;
}

.footer-member-copy span {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.06em;
}

.footer-member-copy small {
    display: block;
    font-size: 0.56rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-office h3 {
    margin: 0 0 16px;
    color: #fff;
    font-family: var(--font-ui);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.footer-office p {
    margin: 0 0 12px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

.footer-office-main {
    padding-top: 88px;
}

.footer-office-list {
    display: grid;
    gap: 28px;
    justify-items: end;
    text-align: right;
    padding-top: 88px;
}

.footer-office-phone {
    display: inline-block;
    margin-top: 18px;
    color: #f5a53a;
    font-size: 1rem;
    line-height: 1.25;
    letter-spacing: 0.01em;
}

.footer-bottom {
    padding: 34px 0 54px;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-copy {
    margin: 0;
    color: #fff;
    font-size: 0.92rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.footer-legal {
    display: flex;
    gap: 40px;
}

.footer-legal a {
    color: #f5a53a;
    font-size: 0.92rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.footer-legal a:hover {
    color: #ffc164;
}

/* Page head */
.page-head {
    padding: 32px 0 22px;
}

.page-head h1 {
    margin: 0 0 7px;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.3rem);
}

/* Responsive */
@media (max-width: 1100px) {
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: minmax(280px, 1fr) minmax(240px, 0.9fr) minmax(220px, 0.8fr);
        gap: 48px;
    }

    .footer-brand {
        max-width: none;
    }
}

@media (max-width: 960px) {
    .programme-grid,
    .listings-grid,
    .categories-grid,
    .stats-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .testimonials-wrap .container {
        width: min(1140px, 90vw);
    }

    .testimonials-track {
        gap: 34px;
    }

    .quote-card {
        flex-basis: calc((100% - 68px) / 3);
    }

    .news-wrap .container {
        width: min(1400px, 90vw);
    }

    .news-grid {
        gap: 28px;
    }

    .news-image-wrap {
        height: 290px;
    }

    .news-body {
        padding: 15px 18px 20px;
    }

    .news-title {
        font-size: 1rem;
    }
}

@media (max-width: 860px) {
    .header-shell {
        padding-top: 14px;
        padding-bottom: 12px;
    }

    .header-main {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .header-tools {
        align-items: stretch;
        gap: 12px;
    }

    .topbar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .topbar-links {
        justify-content: flex-start;
        gap: 14px 20px;
    }

    .header-search {
        width: 100%;
    }

    .header-search input {
        width: 100%;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        z-index: 300;
        background: #fff;
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        padding: 12px 16px 15px;
    }

    .site-nav.is-open {
        display: block;
    }

    .nav-shell {
        position: relative;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .nav-link-wrap {
        justify-content: space-between;
    }

    .submenu-toggle {
        display: grid;
    }

    .nav-dropdown {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        padding: 0 0 0 10px;
        margin: 4px 0 6px;
    }

    .nav-item.is-open > .nav-dropdown {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-brand,
    .footer-office-main,
    .footer-office-list {
        padding-top: 0;
    }

    .footer-office-list {
        justify-items: start;
        text-align: left;
    }

    .hero-banner {
        min-height: 560px;
    }

    .hero-content {
        width: min(560px, 100%);
        margin-left: 0;
        padding: 48px 0;
    }

    .hero-title {
        font-size: 3rem;
        margin-bottom: 18px;
    }

    .hero-copy,
    .hero-copy p {
        font-size: 1rem;
    }

    .hero-actions {
        margin-top: 48px;
        gap: 16px;
        flex-wrap: wrap;
    }

    .hero-btn {
        min-width: 0;
        width: 100%;
        font-size: 0.84rem;
    }

    .rich-wrap .container {
        width: min(100%, 90vw);
    }

    .trust-block .section-title,
    .trust-right-heading {
        font-size: 2.45rem;
    }

    .trust-body,
    .trust-body p,
    .trust-secondary-copy p {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .cta-strip {
        padding: 56px 0 60px;
    }

    .cta-mark {
        width: 34px;
        height: 34px;
        margin-bottom: 22px;
    }

    .cta-strip .section-title {
        font-size: 2.35rem;
        margin-bottom: 18px;
    }

    .cta-strip .section-lead {
        font-size: 0.92rem;
        margin-bottom: 28px;
    }

    .cta-strip .cta-copy,
    .cta-strip .cta-copy p {
        font-size: 0.92rem;
        margin-bottom: 28px;
    }

    .key-facts-wrap {
        padding: 58px 0 64px;
    }

    .key-facts-wrap .section-title {
        font-size: 2.45rem;
    }

    .key-facts-wrap .section-lead {
        margin-bottom: 48px;
        font-size: 0.92rem;
    }

    .stats-grid {
        gap: 36px;
    }

    .stat-card {
        grid-template-columns: 92px 1fr;
        gap: 18px;
        padding: 22px 18px;
    }

    .stat-icon {
        width: 92px;
        height: 92px;
    }

    .stat-icon svg {
        width: 34px;
        height: 34px;
    }

    .stat-value {
        font-size: 2.45rem;
    }

    .stat-label,
    .stat-note {
        font-size: 0.86rem;
    }

    .section-key_facts .text-center.mt-4 {
        margin-top: 56px;
    }

    .investment-wrap {
        padding: 58px 0 68px;
    }

    .investment-wrap .section-title {
        font-size: 2.45rem;
    }

    .investment-wrap .section-lead {
        margin-bottom: 42px;
        font-size: 0.92rem;
    }

    .programme-grid {
        gap: 24px;
    }

    .programme-image-wrap {
        height: 180px;
    }

    .programme-features li {
        font-size: 0.8rem;
    }

    .categories-wrap {
        padding: 58px 0 64px;
    }

    .categories-wrap .section-title {
        font-size: 2.45rem;
        margin-bottom: 18px;
        padding-bottom: 14px;
    }

    .categories-grid {
        gap: 30px;
    }

    .category-icon {
        width: 76px;
        height: 76px;
        margin-bottom: 22px;
    }

    .category-icon svg {
        width: 34px;
        height: 34px;
    }

    .category-card h4 {
        font-size: 1.6rem;
        margin-bottom: 14px;
    }

    .category-card p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .categories-wrap .section-lead,
    .categories-wrap .categories-copy,
    .categories-wrap .categories-copy p {
        font-size: 0.92rem;
        margin-bottom: 32px;
    }

    .listings-wrap {
        padding: 66px 0 76px;
    }

    .listings-wrap .section-title {
        font-size: 2.02rem;
    }

    .listings-wrap .section-lead,
    .listings-wrap .section-lead p {
        font-size: 0.82rem;
    }

    .listings-grid {
        gap: 20px;
    }

    .listing-image-wrap {
        height: 176px;
    }

    .listing-meta-row {
        padding: 12px 16px;
    }

    .listing-location,
    .listing-price {
        font-size: 0.74rem;
    }

    .listing-description {
        padding: 14px 16px 18px;
        font-size: 0.74rem;
    }

    .listing-footer {
        padding: 10px 16px 12px;
    }

    .faq-wrap {
        padding: 54px 0 64px;
    }

    .faq-wrap .container {
        width: min(758px, 80vw);
    }

    .faq-wrap .section-title {
        font-size: 2.85rem;
        margin-bottom: 13px;
        padding-bottom: 15px;
    }

    .faq-item {
        padding: 15px 0 14px;
    }

    .faq-question {
        margin-bottom: 11px;
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.88rem;
        line-height: 1.42;
    }
}

@media (max-width: 640px) {
    .hero-banner {
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .brand-logo {
        height: 38px;
    }

    .brand-name {
        font-size: 1.45rem;
        letter-spacing: 0.12em;
    }

    .brand-sub {
        font-size: 0.62rem;
        letter-spacing: 0.28em;
    }

    .topbar-links a {
        font-size: 0.88rem;
        gap: 8px;
    }

    .programme-grid,
    .listings-grid,
    .categories-grid,
    .stats-grid,
    .news-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .rich-wrap,
    .key-facts-wrap,
    .investment-wrap,
    .categories-wrap,
    .listings-wrap,
    .faq-wrap,
    .testimonials-wrap,
    .news-wrap,
    .process-wrap,
    .cta-strip {
        padding: 42px 0;
    }

    .stat-card {
        grid-template-columns: 34px 1fr;
    }

    .hero-actions {
        margin-top: 28px;
    }

    .hero-btn {
        min-height: 58px;
        padding: 0 18px;
        gap: 12px;
        font-size: 0.74rem;
        letter-spacing: 0.13em;
    }

    .quote-card {
        min-height: 0;
    }

    .testimonials-wrap .section-title {
        margin-bottom: 28px;
        padding-bottom: 16px;
        font-size: 2.9rem;
    }

    .quote-stars::before {
        font-size: 4.1rem;
    }

    .quote-text {
        font-size: 1rem;
    }

    .testimonials-track {
        gap: 0;
    }

    .quote-card {
        flex-basis: 100%;
        padding: 0 4px;
    }

    .quote-author {
        padding-top: 28px;
        font-size: 0.94rem;
    }

    .quote-author strong {
        font-size: 1.02rem;
    }

    .quote-author span {
        font-size: 0.92rem;
    }

    .testimonials-dots {
        gap: 12px;
        margin-top: 14px;
    }

    .testimonial-dot {
        width: 9px;
        height: 9px;
    }

    .testimonials-footer .btn-outline {
        min-width: min(100%, 320px);
        min-height: 44px;
        padding: 12px 50px 12px 24px;
        font-size: 0.74rem;
        letter-spacing: 0.24em;
    }

    .testimonials-footer .btn-outline::after {
        right: 24px;
        width: 8px;
        height: 8px;
        border-top-width: 2px;
        border-right-width: 2px;
    }

    .news-wrap .section-title {
        font-size: 2.45rem;
        margin-bottom: 24px;
        padding-bottom: 15px;
    }

    .news-grid {
        gap: 22px;
    }

    .news-image-wrap {
        height: 220px;
    }

    .news-date {
        margin-bottom: 10px;
        font-size: 0.68rem;
    }

    .news-title {
        font-size: 0.92rem;
        line-height: 1.3;
    }

    .news-wrap .btn-outline-dark {
        min-width: 210px;
        min-height: 44px;
        padding: 12px 48px 12px 24px;
        font-size: 0.74rem;
        letter-spacing: 0.24em;
    }

    .news-wrap .btn-outline-dark::after {
        right: 24px;
        width: 8px;
        height: 8px;
        border-top-width: 2px;
        border-right-width: 2px;
    }

    .hero-btn-icon {
        width: 24px;
        height: 24px;
    }

    .trust-block .section-title,
    .trust-right-heading {
        font-size: 2rem;
    }

    .trust-divider {
        margin-bottom: 20px;
    }

    .trust-body,
    .trust-body p,
    .trust-secondary-copy p {
        margin-bottom: 20px;
        font-size: 0.88rem;
    }

    .trust-cta {
        margin-top: 28px;
    }

    .trust-btn {
        min-width: 0;
        width: 100%;
        gap: 14px;
        letter-spacing: 0.16em;
        font-size: 0.76rem;
    }

    .cta-strip .section-title {
        font-size: 1.95rem;
    }

    .cta-strip .section-lead {
        font-size: 0.86rem;
        line-height: 1.6;
    }

    .cta-strip .cta-copy,
    .cta-strip .cta-copy p {
        font-size: 0.86rem;
        line-height: 1.6;
    }

    .cta-action {
        min-width: 0;
        width: 100%;
        gap: 16px;
        font-size: 0.74rem;
        letter-spacing: 0.16em;
    }

    .stats-grid {
        gap: 28px;
    }

    .stat-card {
        grid-template-columns: 78px 1fr;
        gap: 18px;
        align-items: start;
    }

    .stat-icon {
        width: 78px;
        height: 78px;
    }

    .stat-icon svg {
        width: 30px;
        height: 30px;
    }

    .stat-value {
        font-size: 2.6rem;
    }

    .stat-rule {
        width: 100%;
        margin-bottom: 10px;
    }

    .stat-label,
    .stat-note {
        font-size: 0.82rem;
    }

    .investment-wrap .section-title {
        font-size: 2rem;
    }

    .investment-wrap .section-lead {
        margin-bottom: 30px;
        font-size: 0.86rem;
    }

    .programme-grid {
        gap: 18px;
    }

    .programme-image-wrap {
        height: 168px;
    }

    .programme-body {
        padding: 0 14px 18px;
    }

    .programme-heading {
        padding: 16px 0 12px;
    }

    .programme-features li {
        font-size: 0.78rem;
    }

    .categories-wrap .section-title {
        font-size: 2rem;
    }

    .listings-intro {
        margin-bottom: 18px;
    }

    .listings-wrap .section-title {
        font-size: 1.95rem;
        margin-bottom: 18px;
        padding-bottom: 14px;
    }

    .listings-wrap .section-lead,
    .listings-wrap .section-lead p {
        font-size: 0.8rem;
        line-height: 1.66;
    }

    .listing-image-wrap {
        height: 176px;
    }

    .listing-type-badge {
        min-width: 102px;
        padding: 10px 14px;
        font-size: 0.72rem;
    }

    .listing-meta-row {
        padding: 12px 15px;
    }

    .listing-location,
    .listing-price {
        font-size: 0.76rem;
    }

    .listing-description {
        padding: 14px 15px 18px;
        font-size: 0.76rem;
    }

    .listing-footer {
        padding: 10px 15px 12px;
    }

    .listing-tagline {
        font-size: 0.64rem;
        letter-spacing: 0.12em;
    }

    .faq-wrap .container {
        width: min(758px, 90vw);
    }

    .faq-wrap .section-title {
        font-size: 2.2rem;
        margin-bottom: 12px;
        padding-bottom: 13px;
    }

    .faq-wrap .section-lead,
    .faq-wrap .section-lead p {
        font-size: 0.8rem;
        line-height: 1.56;
    }

    .faq-item {
        padding: 14px 0 13px;
    }

    .faq-question {
        margin-bottom: 9px;
        font-size: 0.92rem;
        line-height: 1.24;
    }

    .faq-answer {
        font-size: 0.82rem;
        line-height: 1.44;
    }

    .news-wrap .container {
        width: min(1500px, 90vw);
    }

    .news-wrap .section-title {
        font-size: 2.12rem;
        margin-bottom: 20px;
        padding-bottom: 13px;
    }

    .news-image-wrap {
        height: 210px;
    }

    .news-body {
        padding: 14px 16px 18px;
    }

    .news-date {
        margin-bottom: 9px;
        font-size: 0.64rem;
    }

    .news-title {
        font-size: 0.88rem;
        line-height: 1.28;
    }

    .news-wrap .btn-outline-dark {
        min-width: min(100%, 220px);
        min-height: 42px;
        padding: 11px 44px 11px 22px;
        font-size: 0.7rem;
        letter-spacing: 0.22em;
    }

    .news-wrap .btn-outline-dark::after {
        right: 22px;
        width: 8px;
        height: 8px;
        border-top-width: 2px;
        border-right-width: 2px;
    }

    .footer-top {
        padding: 54px 0 22px;
    }

    .footer-logo {
        margin-bottom: 28px;
    }

    .footer-logo-word {
        font-size: 0.96rem;
        letter-spacing: 0.28em;
    }

    .footer-logo-accent {
        width: 18px;
        height: 18px;
    }

    .footer-logo-sub {
        padding-left: 26px;
        font-size: 0.58rem;
        letter-spacing: 0.32em;
    }

    .footer-nav {
        gap: 14px;
        margin-bottom: 28px;
    }

    .footer-nav a,
    .footer-office p,
    .footer-office-phone,
    .footer-copy,
    .footer-legal a {
        font-size: 0.84rem;
    }

    .footer-social {
        gap: 18px;
        margin-bottom: 24px;
    }

    .footer-social a,
    .footer-social svg {
        width: 24px;
        height: 24px;
    }

    .footer-office h3 {
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .footer-office-main,
    .footer-office-list {
        gap: 22px;
    }

    .footer-bottom {
        padding: 26px 0 34px;
    }

    .footer-bottom-inner {
        align-items: flex-start;
        gap: 14px;
        padding-top: 22px;
    }

    .footer-legal {
        gap: 22px;
        flex-wrap: wrap;
    }

    .category-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 18px;
    }

    .category-icon svg {
        width: 30px;
        height: 30px;
    }

    .category-card h4 {
        font-size: 1.45rem;
        margin-bottom: 12px;
    }

    .category-card p {
        font-size: 0.84rem;
        margin-bottom: 16px;
    }

    .categories-wrap .btn-primary {
        min-width: 0;
        width: 100%;
        font-size: 0.74rem;
        letter-spacing: 0.16em;
    }

    .categories-wrap .section-lead,
    .categories-wrap .categories-copy,
    .categories-wrap .categories-copy p {
        font-size: 0.86rem;
        margin-bottom: 26px;
    }

    .listings-wrap .section-title {
        font-size: 2rem;
    }

    .listings-wrap .section-lead,
    .listings-wrap .section-lead p {
        font-size: 0.86rem;
        margin-bottom: 24px;
    }

    .listing-image-wrap {
        height: 180px;
    }

    .listing-type-badge {
        top: 12px;
        right: 12px;
        min-width: 120px;
        padding: 9px 12px;
        font-size: 0.62rem;
    }

    .listing-meta-row {
        padding: 12px 14px;
        gap: 10px;
        align-items: flex-start;
        flex-direction: column;
    }

    .listing-location {
        font-size: 0.72rem;
    }

    .listing-flag {
        width: 28px;
        height: 18px;
    }

    .listing-price {
        font-size: 0.72rem;
    }

    .listing-description {
        padding: 0 14px 18px;
        font-size: 0.82rem;
    }

    .listing-footer {
        padding: 0 14px 18px;
    }

    .listing-tagline {
        font-size: 0.68rem;
        letter-spacing: 0.16em;
    }

    .listing-link {
        font-size: 0.66rem;
        letter-spacing: 0.14em;
    }

    .footer-grid {
        gap: 20px;
    }
}

/* ==========================================================================
   Investment Location Listing Page
   ========================================================================== */

.inv-loc-hero {
    background: var(--section-bg);
    color: #fff;
    padding: 80px 0 64px;
    text-align: center;
}

.inv-loc-eyebrow {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 16px;
}

.inv-loc-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #fff;
    margin: 0 0 18px;
    line-height: 1.1;
}

.inv-loc-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.78);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.inv-loc-filter-bar {
    background: #fff;
    border-bottom: 1px solid #E2E8EE;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 40;
    box-shadow: 0 2px 8px rgba(14,35,65,0.06);
}

.inv-loc-filters {
    display: flex;
    gap: 12px;
    align-items: center;
}

.inv-filter-select-wrap {
    position: relative;
}

.inv-filter-select {
    appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230E2341' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") right 12px center no-repeat;
    border: 1.5px solid #D8DDE4;
    border-radius: 6px;
    padding: 9px 36px 9px 14px;
    font-family: var(--font-ui);
    font-size: 0.88rem;
    color: var(--primary);
    cursor: pointer;
    min-width: 180px;
}

.inv-filter-select:focus {
    outline: none;
    border-color: var(--accent);
}

.inv-loc-body {
    padding: 56px 0 80px;
    background: var(--background);
}

.inv-loc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.inv-loc-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(14,35,65,0.08);
    background: #fff;
    transition: box-shadow 0.2s, transform 0.2s;
}

.inv-loc-card:hover {
    box-shadow: 0 8px 28px rgba(14,35,65,0.14);
    transform: translateY(-3px);
}

.inv-loc-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.inv-loc-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--section-bg);
}

.inv-loc-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.inv-loc-card-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--section-bg), #1a3740);
}

.inv-loc-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
}

.inv-loc-card-body {
    padding: 22px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.inv-loc-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.inv-loc-card-country {
    font-family: var(--font-ui);
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.inv-loc-card-price {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent);
}

.inv-loc-card-title {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    color: var(--primary);
    margin: 0 0 10px;
    line-height: 1.3;
}

.inv-loc-card-summary {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.55;
    flex: 1;
    margin: 0 0 16px;
}

.inv-loc-card-cta {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: auto;
}

.inv-loc-empty {
    text-align: center;
    padding: 60px 0;
    color: var(--muted);
}

/* ==========================================================================
   Investment Detail Page (invd-*)
   ========================================================================== */

/* Title band */
.invd-title-band {
    background: var(--primary);
    padding: 52px 0 36px;
}

.invd-breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 18px;
}

.invd-breadcrumb a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.invd-breadcrumb a:hover { color: rgba(255,255,255,0.9); }

.invd-h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.7rem);
    color: #fff;
    margin: 0 0 24px;
    line-height: 1.18;
    max-width: 820px;
}

.invd-meta-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
}

.invd-meta-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.invd-country-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 40px;
}

.invd-flag { font-size: 1.1rem; line-height: 1; }

.invd-type-tag,
.invd-status-tag {
    font-family: var(--font-ui);
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 3px;
}

.invd-type-tag {
    background: var(--accent);
    color: #fff;
}

.invd-status-tag {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
}

.invd-price {
    font-family: var(--font-ui);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent);
}

.invd-enquire-top {
    flex-shrink: 0;
    font-size: 0.84rem;
    padding: 12px 28px;
    letter-spacing: 0.06em;
}

/* Two-column top body */
.invd-top-body {
    background: #fff;
    padding: 56px 0 48px;
    border-bottom: 1px solid #E8ECF0;
}

.invd-top-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 56px;
    align-items: start;
}

.invd-section-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary);
    margin: 0 0 26px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.invd-key-list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.invd-key-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #F0F2F5;
}

.invd-key-item:last-child { border-bottom: none; }

.invd-key-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(176,138,74,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
}

.invd-key-icon svg {
    width: 18px;
    height: 18px;
}

.invd-key-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.invd-key-label {
    font-family: var(--font-ui);
    font-size: 0.73rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--muted);
}

.invd-key-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
}

.invd-enquire-key {
    font-size: 0.84rem;
    padding: 13px 32px;
    letter-spacing: 0.06em;
}

/* Image column */
.invd-image-col {
    position: sticky;
    top: 80px;
}

.invd-primary-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(14,35,65,0.12);
}

.invd-img-placeholder {
    width: 100%;
    height: 360px;
    border-radius: 8px;
    background: linear-gradient(135deg, #e8edf2 0%, #d4dce6 100%);
}

/* Description */
.invd-description-band {
    background: var(--background);
    padding: 56px 0;
}

.invd-description-wrap {
    max-width: 820px;
}

.invd-description {
    font-size: 1rem;
    line-height: 1.78;
    color: var(--text);
}

.invd-description p { margin-bottom: 1.1em; }
.invd-description h2,
.invd-description h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin: 1.5em 0 0.5em;
}

/* Share bar */
.invd-share-band {
    background: #fff;
    border-top: 1px solid #E8ECF0;
    border-bottom: 1px solid #E8ECF0;
    padding: 18px 0;
}

.invd-share-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.invd-share-label {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-right: 4px;
}

.invd-share-links {
    display: flex;
    gap: 8px;
}

.invd-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 4px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.invd-share-btn svg { width: 14px; height: 14px; }
.invd-share-btn:hover { opacity: 0.82; }

.invd-share-fb { background: #1877F2; color: #fff; }
.invd-share-tw { background: #1DA1F2; color: #fff; }
.invd-share-li { background: #0A66C2; color: #fff; }

.invd-back-link {
    margin-left: auto;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.invd-back-link:hover { color: var(--primary); }

/* Related investments */
.invd-related {
    background: var(--background);
    padding: 64px 0;
}

.invd-related-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--primary);
    margin: 0 0 36px;
}

.invd-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.invd-rel-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(14,35,65,0.07);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
}

.invd-rel-card:hover {
    box-shadow: 0 8px 28px rgba(14,35,65,0.13);
    transform: translateY(-3px);
}

.invd-rel-img {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #e8edf2;
}

.invd-rel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.invd-rel-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8edf2 0%, #d4dce6 100%);
}

.invd-rel-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 3px;
}

.invd-rel-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.invd-rel-country {
    font-family: var(--font-ui);
    font-size: 0.73rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin: 0 0 6px;
}

.invd-rel-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--primary);
    margin: 0 0 8px;
    line-height: 1.35;
}

.invd-rel-price {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 700;
    margin: 0 0 14px;
}

.invd-rel-cta {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: auto;
}

/* Refined investment detail experience */
.invd-shell {
    background: #fff;
    padding: 34px 0 70px;
}

.invd-shell .invd-breadcrumb {
    color: rgba(14, 35, 65, 0.52);
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.invd-shell .invd-breadcrumb a {
    color: rgba(14, 35, 65, 0.58);
}

.invd-shell .invd-breadcrumb a:hover {
    color: var(--primary);
}

.invd-hero {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 34px;
}

.invd-shell .invd-h1 {
    color: #173b44;
    font-size: clamp(2.6rem, 5.8vw, 4.5rem);
    max-width: 920px;
    margin: 0 auto 24px;
}

.invd-meta-band {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 0 8px;
}

.invd-meta-left,
.invd-meta-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.invd-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #173b44;
    font-size: 0.95rem;
    font-weight: 600;
}

.invd-meta-country {
    font-weight: 700;
}

.invd-shell .invd-price {
    color: #173b44;
    font-size: 1.7rem;
}

.invd-overview-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
    background: #f6f3ef;
    margin-bottom: 42px;
    overflow: hidden;
    border-radius: 4px;
}

.invd-overview-details {
    padding: 34px 28px;
}

.invd-shell .invd-key-list {
    margin: 0;
}

.invd-shell .invd-key-item {
    border-bottom: none;
    padding: 0 0 18px;
}

.invd-shell .invd-key-item:last-child {
    padding-bottom: 0;
}

.invd-shell .invd-key-icon {
    width: 28px;
    height: 28px;
    background: transparent;
    position: relative;
}

.invd-shell .invd-key-icon i {
    width: 18px;
    height: 18px;
    display: block;
    border: 2px solid var(--accent);
    border-radius: 4px;
}

.invd-shell .invd-key-label {
    font-size: 1rem;
    letter-spacing: 0;
    text-transform: none;
    color: #173b44;
    margin-bottom: 4px;
}

.invd-shell .invd-key-value {
    font-size: 0.97rem;
    font-weight: 500;
    color: #425a66;
    line-height: 1.7;
}

.invd-overview-image,
.invd-overview-image .invd-primary-img,
.invd-overview-image .invd-img-placeholder {
    min-height: 100%;
    height: 100%;
}

.invd-overview-image .invd-primary-img,
.invd-overview-image .invd-img-placeholder {
    border-radius: 0;
    box-shadow: none;
    min-height: 520px;
}

.invd-copy-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.invd-copy-body {
    color: #314a55;
    font-size: 1.06rem;
    line-height: 1.9;
}

.invd-copy-body p {
    margin-bottom: 1.2em;
}

.invd-copy-body h2,
.invd-copy-body h3 {
    font-family: var(--font-heading);
    color: #173b44;
    font-size: 2rem;
    margin: 1.5em 0 0.5em;
}

.invd-highlights {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid #e3e1dd;
}

.invd-highlights h2 {
    font-family: var(--font-heading);
    color: #173b44;
    font-size: 2rem;
    margin: 0 0 16px;
}

.invd-highlights ul {
    margin: 0;
    padding-left: 20px;
    color: #314a55;
    line-height: 1.9;
}

.invd-disclaimer {
    margin-top: 30px;
    font-size: 0.82rem;
    color: #6b7b84;
    font-style: italic;
    line-height: 1.7;
}

.invd-copy-cta {
    text-align: center;
    margin-top: 30px;
}

.invd-related-head {
    padding-top: 42px;
    border-top: 1px solid #e3e1dd;
    margin-top: 48px;
}

.invd-shell .invd-related {
    background: transparent;
    padding: 0;
}

.invd-shell .invd-related-title {
    margin-bottom: 26px;
}

.invd-rel-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 10px;
}

.invd-rel-summary {
    color: #445a65;
    line-height: 1.75;
    margin: 0 0 16px;
}

.invd-shell .invd-share-band {
    background: transparent;
    border: 0;
    padding: 22px 0 0;
    justify-content: center;
}

.invd-shell .invd-share-band,
.invd-shell .invd-share-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.invd-shell .invd-share-label {
    margin-right: 8px;
    font-size: 0.76rem;
}

.invd-shell .invd-share-btn {
    width: 36px;
    height: 36px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
}

/* Generic page fallback */
.page-fallback-shell {
    background: linear-gradient(180deg, #fff 0%, #f8f6f1 100%);
    padding: 48px 0 72px;
}

.page-fallback-intro {
    background: #fff;
    border: 1px solid #e3e8ee;
    border-radius: 18px;
    padding: 38px;
    box-shadow: 0 18px 48px rgba(14, 35, 65, 0.08);
    margin-bottom: 36px;
}

.page-fallback-eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-fallback-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #173b44;
    margin: 0 0 14px;
}

.page-fallback-copy {
    color: #4d6470;
    font-size: 1rem;
    line-height: 1.85;
    max-width: 780px;
}

.page-fallback-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.page-fallback-block + .page-fallback-block {
    margin-top: 40px;
}

.page-fallback-block-head,
.post-country-strip-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 18px;
}

.page-fallback-block-head h3,
.post-country-strip-head h2,
.post-country-strip-head h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #173b44;
    margin: 0;
}

.page-fallback-block-head a,
.post-country-strip-head a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.page-fallback-posts,
.page-fallback-investments,
.post-index-grid,
.post-country-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.page-fallback-post,
.page-fallback-investment,
.post-card,
.post-country-card {
    background: #fff;
    border: 1px solid #e6eaef;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(14, 35, 65, 0.06);
    text-decoration: none;
    color: inherit;
}

.page-fallback-post-image,
.page-fallback-investment-image,
.post-card-image,
.post-country-image {
    aspect-ratio: 1.25 / 1;
    background: linear-gradient(135deg, #e7edf2, #d0dae2);
}

.page-fallback-post-image img,
.page-fallback-investment-image img,
.post-card-image img,
.post-country-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-fallback-post-body,
.page-fallback-investment-body,
.post-card-body,
.post-country-body {
    padding: 18px;
}

.page-fallback-post-date,
.post-card-date {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.72rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.page-fallback-post-body h4,
.page-fallback-investment-body h4,
.post-card-title,
.post-country-body h3 {
    font-family: var(--font-heading);
    color: #173b44;
    line-height: 1.3;
    margin: 0 0 10px;
}

.page-fallback-post-body p,
.page-fallback-investment-body p,
.post-card-excerpt {
    color: #536874;
    line-height: 1.75;
    margin: 0;
}

.page-fallback-investment-meta,
.post-country-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

/* Post index and article pages */
.post-index-hero {
    background: linear-gradient(180deg, #fff 0%, #f7f4ef 100%);
    padding: 56px 0 32px;
    text-align: center;
}

.post-index-eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
    margin: 0 0 12px;
}

.post-index-title,
.post-detail-title {
    font-family: var(--font-heading);
    color: #173b44;
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 1.08;
    margin: 0;
}

.post-index-subtitle,
.post-detail-excerpt {
    max-width: 760px;
    margin: 18px auto 0;
    color: #526873;
    font-size: 1.02rem;
    line-height: 1.9;
}

.post-index-shell,
.post-detail-shell {
    background: #f8f6f1;
    padding: 12px 0 72px;
}

.post-card {
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.post-card:hover,
.post-country-card:hover,
.page-fallback-post:hover,
.page-fallback-investment:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(14, 35, 65, 0.1);
}

.post-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.post-card-cta {
    display: inline-block;
    margin-top: 14px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.post-country-strip {
    margin-top: 42px;
}

.post-detail-breadcrumb {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    color: rgba(14, 35, 65, 0.58);
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.post-detail-breadcrumb a {
    color: rgba(14, 35, 65, 0.58);
    text-decoration: none;
}

.post-detail-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 28px;
}

.post-detail-date {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.post-detail-image {
    max-width: 1080px;
    margin: 0 auto 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(14, 35, 65, 0.12);
}

.post-detail-image img {
    width: 100%;
    display: block;
}

.post-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 34px;
    align-items: start;
}

.post-detail-body {
    background: #fff;
    border: 1px solid #e6eaef;
    border-radius: 18px;
    padding: 34px;
    color: #334c57;
    line-height: 1.9;
    box-shadow: 0 10px 28px rgba(14, 35, 65, 0.06);
}

.post-detail-body h2,
.post-detail-body h3 {
    font-family: var(--font-heading);
    color: #173b44;
    margin: 1.4em 0 0.5em;
}

.post-detail-sidebar {
    position: sticky;
    top: 100px;
}

.post-side-card {
    background: #173b44;
    color: #fff;
    border-radius: 18px;
    padding: 24px;
}

.post-side-card h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 0 0 16px;
}

.post-side-investments {
    display: grid;
    gap: 12px;
}

.post-side-investment {
    display: block;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 14px;
    color: #fff;
    text-decoration: none;
}

.post-side-investment span,
.post-side-investment small {
    display: block;
    color: rgba(255, 255, 255, 0.72);
}

.post-side-investment strong {
    display: block;
    margin: 4px 0;
}

.post-related {
    margin-top: 42px;
}

.post-index-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Richer programme hub pages */
.hero-banner-hub {
    position: relative;
    padding: 120px 0 110px;
}

.hero-banner-hub::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 34, 43, 0.1), rgba(9, 34, 43, 0.45));
    pointer-events: none;
}

.hero-content-hub {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-content-hub .hero-title {
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 1.04;
}

.hero-content-hub .hero-copy,
.hero-content-hub .hero-copy p {
    font-size: 1.08rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content-hub .hero-actions {
    justify-content: center;
}

.hero-badges-hub {
    justify-content: center;
}

.rich-wrap-hub,
.key-facts-wrap-hub,
.investment-wrap-hub,
.process-wrap-hub,
.faq-wrap-hub {
    padding-top: 86px;
    padding-bottom: 86px;
}

.rich-wrap-hub {
    background: linear-gradient(180deg, #fff 0%, #f9f6f1 100%);
}

.section-trust-layout-hub {
    max-width: 1120px;
    margin: 0 auto;
}

.trust-block-hub {
    background: #fff;
    border: 1px solid #e7ecef;
    border-radius: 22px;
    padding: 42px 44px;
    box-shadow: 0 18px 48px rgba(14, 35, 65, 0.08);
}

.trust-block-hub .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.trust-side-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
}

.key-facts-wrap-hub {
    background: #173b44;
}

.key-facts-wrap-hub .section-title,
.key-facts-wrap-hub .section-lead {
    color: #fff;
}

.stats-grid-hub {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.stat-card-hub {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
    box-shadow: none;
}

.stat-card-hub .stat-value,
.stat-card-hub .stat-label {
    color: #fff;
}

.stat-card-hub .stat-note {
    color: rgba(255, 255, 255, 0.72);
}

.stat-card-hub .stat-rule {
    background: rgba(255, 255, 255, 0.25);
}

.investment-wrap-hub {
    background: #f8f6f1;
}

.programme-grid-hub {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.programme-card-hub {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(14, 35, 65, 0.09);
    border: 1px solid #e7ebef;
}

.programme-card-hub .programme-image-wrap {
    height: 240px;
}

.programme-card-hub .programme-body {
    padding: 24px;
}

.programme-card-hub .programme-title {
    font-size: 1.5rem;
}

.process-wrap-hub {
    background: #fff;
}

.process-grid-hub {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 980px;
    margin: 0 auto;
}

.step-item-hub {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 24px 26px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e4ebf0;
    box-shadow: 0 8px 26px rgba(14, 35, 65, 0.05);
}

.step-item-hub .step-index {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #173b44, #28697a);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
}

.step-item-hub .step-content h5 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.step-item-hub .step-content p {
    margin: 0;
    line-height: 1.8;
    color: #526671;
}

.faq-wrap-hub {
    background: linear-gradient(180deg, #f8f6f1 0%, #fff 100%);
}

.faq-list-hub {
    display: grid;
    gap: 16px;
}

.faq-item-hub {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 24px 28px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e7ecef;
    box-shadow: 0 10px 28px rgba(14, 35, 65, 0.05);
}

.faq-index-hub {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(176, 138, 74, 0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.faq-item-hub .faq-question,
.faq-item-hub .faq-answer {
    grid-column: 2;
}

.faq-item-hub .faq-question {
    margin-bottom: 8px;
}

.faq-item-hub .faq-answer {
    line-height: 1.6;
}

/* Legacy selectors kept for backward compat */
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ==========================================================================
   Investment Enquiry Modal
   ========================================================================== */

.inv-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10,20,40,0.62);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s;
}

.inv-modal-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.inv-modal {
    background: #fff;
    border-radius: 10px;
    padding: 44px 48px;
    max-width: 660px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(14,35,65,0.22);
}

.inv-modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--muted);
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
}

.inv-modal-close:hover {
    color: var(--primary);
}

.inv-modal-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--primary);
    margin: 0 0 18px;
}

.inv-modal-divider {
    height: 2px;
    background: var(--accent);
    width: 40px;
    margin-bottom: 18px;
}

.inv-modal-desc {
    font-size: 0.92rem;
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.inv-modal-form .inv-modal-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.inv-modal-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.inv-modal-field label {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

.inv-modal-field input,
.inv-modal-field textarea {
    border: 1.5px solid #D8DDE4;
    border-radius: 6px;
    padding: 10px 14px;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    color: var(--text);
    background: #fff;
    transition: border-color 0.16s;
    width: 100%;
    box-sizing: border-box;
}

.inv-modal-field input:focus,
.inv-modal-field textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.inv-modal-field textarea {
    resize: vertical;
    min-height: 100px;
}

.inv-modal-success {
    text-align: center;
    padding: 20px 0;
}

.inv-modal-success h2 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 10px;
}

.btn-enquire-submit {
    width: 100%;
    padding: 14px;
    font-size: 0.86rem;
    letter-spacing: 0.1em;
}

.req {
    color: var(--accent);
}

/* ==========================================================================
   Contact Form Section
   ========================================================================== */

.contact-form-wrap {
    padding: 80px 0 100px;
    background: var(--background);
}

.contact-form-inner {
    max-width: 980px;
    margin: 0 auto 40px;
    background: #fff;
    border: 1px solid #E2E8EE;
    border-radius: 12px;
    padding: 64px 72px;
    box-shadow: 0 4px 24px rgba(14,35,65,0.09);
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--primary);
    margin: 0 0 20px;
}

.contact-form-divider {
    height: 3px;
    background: var(--accent);
    width: 52px;
    margin-bottom: 22px;
}

.contact-form-desc {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 36px;
    line-height: 1.7;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.contact-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.contact-form-field label {
    font-family: var(--font-ui);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
}

.contact-form-field input,
.contact-form-field textarea {
    border: 1.5px solid #D8DDE4;
    border-radius: 7px;
    padding: 14px 18px;
    font-family: var(--font-ui);
    font-size: 1rem;
    color: var(--text);
    background: #fff;
    transition: border-color 0.16s;
    width: 100%;
    box-sizing: border-box;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.contact-form-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 16px 44px;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.18s;
    margin-top: 12px;
}

.contact-form-submit:hover {
    background: var(--accent-dark);
}

.contact-form-success {
    text-align: center;
    padding: 20px 0;
    color: var(--primary);
}

.contact-form-success h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.contact-form-errors {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 0.88rem;
    color: #856404;
}

.contact-form-note {
    text-align: center;
    font-size: 0.86rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ── Legal Content Section ────────────────────────────── */
.legal-wrap {
    padding: 72px 0 96px;
    background: var(--background);
}

.legal-inner {
    max-width: 860px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #E2E8EE;
    border-radius: 12px;
    padding: 60px 72px;
    box-shadow: 0 4px 24px rgba(14,35,65,0.07);
}

.legal-meta {
    font-size: 0.82rem;
    color: var(--muted);
    margin: 0 0 18px;
    letter-spacing: 0.02em;
}

.legal-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary);
    margin: 0 0 18px;
    line-height: 1.2;
}

.legal-divider {
    height: 3px;
    background: var(--accent);
    width: 52px;
    margin-bottom: 32px;
}

.legal-body {
    font-size: 0.97rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 40px;
}

.legal-body p { margin-bottom: 1rem; }
.legal-body ul, .legal-body ol { margin: 0 0 1rem 1.4rem; }
.legal-body li { margin-bottom: 0.4rem; }
.legal-body a { color: var(--accent); text-decoration: underline; }

.legal-clause {
    border-top: 1px solid #E2E8EE;
    padding-top: 32px;
    margin-top: 32px;
}

.legal-clause-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary);
    margin: 0 0 16px;
}

.legal-clause-body {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
}

.legal-clause-body p { margin-bottom: 0.85rem; }
.legal-clause-body ul, .legal-clause-body ol { margin: 0 0 0.85rem 1.4rem; }
.legal-clause-body li { margin-bottom: 0.35rem; }
.legal-clause-body a { color: var(--accent); text-decoration: underline; }

@media (max-width: 768px) {
    .legal-inner {
        padding: 36px 24px;
    }
    .legal-title {
        font-size: 1.6rem;
    }
}
/* ───────────────────────────────────────────────────── */

.programme-archive-hero {
    padding: 88px 0 34px;
    background:
        radial-gradient(circle at top right, rgba(176, 138, 74, 0.16), transparent 34%),
        linear-gradient(180deg, #f8f6f1 0%, #f7f4ee 100%);
}

.programme-archive-hero-inner {
    max-width: 860px;
}

.programme-archive-eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.programme-archive-title {
    margin: 0 0 16px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 4.1rem);
    line-height: 1.02;
}

.programme-archive-subtitle {
    margin: 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.programme-archive-shell {
    padding: 16px 0 86px;
}

.programme-archive-filters {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) repeat(2, minmax(0, 1fr)) auto;
    gap: 16px;
    align-items: end;
    padding: 24px;
    background: #fff;
    border: 1px solid #e1e7ef;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(14, 35, 65, 0.06);
}

.programme-archive-search,
.programme-archive-select {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.programme-archive-search label,
.programme-archive-select label {
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.programme-archive-search input,
.programme-archive-select select {
    min-height: 48px;
    border: 1px solid #d8dee6;
    border-radius: 10px;
    padding: 0 14px;
    background: #fff;
    color: var(--text);
    font-size: 0.95rem;
}

.programme-archive-search input:focus,
.programme-archive-select select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(176, 138, 74, 0.12);
}

.programme-archive-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.programme-archive-actions .btn {
    min-width: 138px;
    text-align: center;
}

.programme-archive-results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 6px 0;
    color: var(--muted);
}

.programme-archive-results-bar p {
    margin: 0;
    font-weight: 600;
}

.programme-archive-results-bar a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.programme-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 28px;
}

.programme-archive-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e3e8ef;
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(14, 35, 65, 0.08);
}

.programme-archive-card-image,
.programme-archive-card-image-placeholder {
    height: 238px;
    background: linear-gradient(135deg, #d9e4ea 0%, #eef2f6 100%);
}

.programme-archive-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.programme-archive-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
}

.programme-archive-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.programme-archive-card-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(14, 35, 65, 0.06);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.programme-archive-card-title {
    margin: 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.55rem;
    line-height: 1.15;
}

.programme-archive-card-headline,
.programme-archive-card-summary {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.programme-archive-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #e8edf3;
}

.programme-archive-card-label {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.programme-archive-card-footer strong {
    color: var(--primary);
    font-size: 1rem;
}

.programme-archive-empty {
    margin-top: 28px;
    padding: 54px 28px;
    background: #fff;
    border: 1px solid #e3e8ef;
    border-radius: 18px;
    text-align: center;
}

.programme-archive-empty h2 {
    margin: 0 0 10px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 2rem;
}

.programme-archive-empty p {
    margin: 0;
    color: var(--muted);
}

.btn-accent {
    background: var(--accent);
    border: 2px solid var(--accent);
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: background 0.18s, border-color 0.18s;
    cursor: pointer;
}

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
}

.btn-arrow {
    font-size: 1rem;
}

/* ==========================================================================
   Responsive: investment pages
   ========================================================================== */

@media (max-width: 900px) {
    .hero-banner-hub {
        padding: 88px 0 80px;
    }

    .trust-block-hub {
        padding: 30px 26px;
    }

    .stats-grid-hub,
    .programme-grid-hub {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .invd-meta-band,
    .post-detail-grid {
        grid-template-columns: 1fr;
    }

    .invd-meta-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .invd-overview-card {
        grid-template-columns: 1fr;
    }

    .invd-overview-image {
        order: -1;
    }

    .page-fallback-posts,
    .page-fallback-investments,
    .post-index-grid,
    .post-country-grid,
    .post-index-grid--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .invd-title-band {
        padding: 44px 0 30px;
    }

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

    .invd-image-col {
        position: static;
        order: -1;
    }

    .invd-primary-img,
    .invd-img-placeholder {
        height: 320px;
    }

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

    .invd-share-inner {
        align-items: flex-start;
    }

    .invd-back-link {
        margin-left: 0;
        width: 100%;
    }

    .inv-detail-layout {
        grid-template-columns: 1fr;
    }

    .inv-detail-sidebar-card {
        position: static;
    }

    .inv-loc-filters {
        flex-wrap: wrap;
    }

    .contact-form-inner {
        padding: 40px 32px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .inv-modal {
        padding: 32px 24px;
    }

    .inv-modal-form .inv-modal-row {
        grid-template-columns: 1fr;
    }

    .programme-archive-filters {
        grid-template-columns: 1fr;
    }

    .programme-archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .programme-archive-actions,
    .programme-archive-results-bar,
    .programme-archive-card-footer {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 600px) {
    .hero-banner-hub {
        padding: 72px 0 62px;
    }

    .rich-wrap-hub,
    .key-facts-wrap-hub,
    .investment-wrap-hub,
    .process-wrap-hub,
    .faq-wrap-hub {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .trust-block-hub {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .stats-grid-hub,
    .programme-grid-hub {
        grid-template-columns: 1fr;
    }

    .stat-card,
    .stat-card-hub {
        grid-template-columns: 78px 1fr;
        gap: 16px;
        padding: 18px 16px;
        border-radius: 18px;
    }

    .stat-icon {
        width: 78px;
        height: 78px;
    }

    .stat-icon svg {
        width: 28px;
        height: 28px;
    }

    .key-facts-wrap .section-lead {
        margin-bottom: 32px;
    }

    .step-item-hub,
    .faq-item-hub {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .faq-index-hub {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .faq-item-hub .faq-question,
    .faq-item-hub .faq-answer,
    .faq-index-hub {
        grid-column: auto;
        grid-row: auto;
    }

    .invd-shell {
        padding: 26px 0 54px;
    }

    .invd-overview-details {
        padding: 24px 20px;
    }

    .invd-overview-image .invd-primary-img,
    .invd-overview-image .invd-img-placeholder {
        min-height: 320px;
    }

    .page-fallback-intro,
    .post-detail-body {
        padding: 24px 20px;
    }

    .page-fallback-posts,
    .page-fallback-investments,
    .post-index-grid,
    .post-country-grid,
    .post-index-grid--compact {
        grid-template-columns: 1fr;
    }

    .page-fallback-block-head,
    .post-country-strip-head,
    .invd-shell .invd-share-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .inv-loc-grid {
        grid-template-columns: 1fr;
    }

    .invd-breadcrumb {
        flex-wrap: wrap;
    }

    .invd-h1 {
        margin-bottom: 18px;
    }

    .invd-meta-bar {
        align-items: flex-start;
    }

    .invd-enquire-top,
    .invd-enquire-key {
        width: 100%;
    }

    .invd-top-body,
    .invd-description-band,
    .invd-related {
        padding: 40px 0;
    }

    .invd-primary-img,
    .invd-img-placeholder {
        height: 260px;
    }

    .invd-share-links {
        width: 100%;
        flex-wrap: wrap;
    }

    .invd-share-btn {
        flex: 1 1 140px;
        justify-content: center;
    }

    .invd-related-grid {
        grid-template-columns: 1fr;
    }

    .inv-detail-gallery {
        grid-template-columns: 1fr;
    }

    .nav-mega {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 0;
    }

    .nav-item.has-mega.is-open > .nav-mega {
        display: block;
    }

    .nav-mega-inner {
        grid-template-columns: 1fr;
        padding: 8px 0;
        gap: 0;
    }

    .nav-mega-divider {
        display: none;
    }

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

    .programme-archive-shell {
        padding-bottom: 70px;
    }

    .programme-archive-filters {
        padding: 18px;
    }

    .programme-archive-card-body {
        padding: 20px;
    }

    .programme-archive-card-image,
    .programme-archive-card-image-placeholder {
        height: 210px;
    }

    .programme-archive-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Investments By Country Page (/investments/{country})
   ========================================================================== */

.ibc-hero {
    background: var(--section-bg);
    color: #fff;
    padding: 72px 0 60px;
    text-align: center;
}

.ibc-hero-flag {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 16px;
}

.ibc-eyebrow {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 12px;
}

.ibc-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.05;
}

.ibc-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.76);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.62;
}

.ibc-section-heading {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: #0E2341;
    margin: 0 0 32px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
}

.ibc-programmes {
    padding: 60px 0 48px;
    background: var(--background);
}

.ibc-programme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.ibc-programme-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(14,35,65,0.06);
    transition: box-shadow 0.2s, transform 0.2s;
    overflow: hidden;
}

.ibc-programme-card:hover {
    box-shadow: 0 8px 26px rgba(14,35,65,0.13);
    transform: translateY(-3px);
}

.ibc-programme-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 24px 22px;
}

.ibc-prog-flag {
    font-size: 2.6rem;
    line-height: 1;
    flex-shrink: 0;
}

.ibc-prog-body {
    flex: 1;
}

.ibc-prog-category {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 6px;
}

.ibc-prog-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #0E2341;
    margin: 0 0 8px;
    line-height: 1.25;
}

.ibc-prog-headline {
    font-size: 0.86rem;
    color: var(--muted);
    margin: 0 0 14px;
    line-height: 1.5;
}

.ibc-prog-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.ibc-prog-amount {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
}

.ibc-prog-time {
    font-family: var(--font-ui);
    font-size: 0.76rem;
    color: var(--muted);
}

.ibc-prog-cta {
    font-family: var(--font-ui);
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ibc-investments {
    padding: 48px 0 72px;
    background: #f0f2f5;
}

.ibc-inv-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ibc-inv-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(14,35,65,0.07);
    transition: box-shadow 0.2s, transform 0.2s;
}

.ibc-inv-card:hover {
    box-shadow: 0 8px 26px rgba(14,35,65,0.14);
    transform: translateY(-3px);
}

.ibc-inv-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--section-bg);
}

.ibc-inv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ibc-inv-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--section-bg), #1a3740);
}

.ibc-inv-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 3px;
}

.ibc-inv-body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ibc-inv-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.ibc-inv-status {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.ibc-inv-price {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
}

.ibc-inv-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #0E2341;
    margin: 0 0 8px;
    line-height: 1.3;
}

.ibc-inv-summary {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.55;
    flex: 1;
    margin: 0 0 14px;
}

.ibc-inv-cta {
    font-family: var(--font-ui);
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: auto;
}

@media (max-width: 900px) {
    .ibc-inv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ibc-programme-grid {
        grid-template-columns: 1fr;
    }
}

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

.pricing-compare-section {
    padding: 30px 0 80px;
    background: linear-gradient(180deg, #fff 0%, #f7f5f0 100%);
}

.pricing-compare-head {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.pricing-compare-eyebrow {
    margin-bottom: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
}

.pricing-compare-head h2 {
    margin-bottom: 12px;
    color: #173946;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
}

.pricing-compare-head p {
    margin: 0;
    color: #50646e;
    line-height: 1.7;
}

.pricing-compare-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(23, 57, 70, 0.08);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(23, 57, 70, 0.08);
}

.pricing-compare-table {
    width: 100%;
    min-width: 920px;
    border-collapse: collapse;
}

.pricing-compare-table th,
.pricing-compare-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(23, 57, 70, 0.08);
    text-align: left;
    vertical-align: middle;
}

.pricing-compare-table th {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #647781;
    background: #f8fafb;
}

.pricing-compare-table tbody tr:hover {
    background: rgba(232, 166, 77, 0.06);
}

.pricing-country-cell {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #173946;
}

.pricing-flag {
    width: 26px;
    height: 18px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(23, 57, 70, 0.15);
}

.pricing-quote-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pricing-empty-state {
    text-align: center;
    color: #647781;
}

@media (max-width: 767px) {
    .pricing-compare-section {
        padding: 20px 0 56px;
    }

    .pricing-compare-table-wrap {
        border-radius: 18px;
    }

    .pricing-compare-table th,
    .pricing-compare-table td {
        padding: 14px 16px;
    }
}

.programme-detail-hero {
    padding: 56px 0 30px;
    background: linear-gradient(180deg, #f8f6f1 0%, #fffdf8 100%);
}

.programme-detail-hero-grid,
.programme-detail-body-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 36px;
    align-items: start;
}

.programme-detail-copy h1 {
    margin: 0 0 18px;
    color: #0e2341;
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.5vw, 4.4rem);
    line-height: 1.04;
}

.programme-detail-eyebrow,
.programme-detail-section-kicker {
    margin: 0 0 12px;
    color: #b08a4a;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.programme-detail-headline,
.programme-detail-summary,
.programme-detail-richtext,
.programme-detail-investment-body p,
.programme-detail-news-body p {
    color: #415768;
    line-height: 1.8;
}

.programme-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 28px;
}

.programme-detail-meta span,
.programme-detail-fact-label {
    color: #617381;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.programme-detail-meta span {
    padding: 10px 14px;
    border: 1px solid rgba(14, 35, 65, 0.12);
    border-radius: 999px;
    background: #fff;
}

.programme-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.programme-detail-visual img,
.programme-detail-visual-placeholder,
.programme-detail-investment-image img,
.programme-detail-investment-image-placeholder,
.programme-detail-news-image img,
.programme-detail-news-image-placeholder {
    width: 100%;
    display: block;
    border-radius: 26px;
}

.programme-detail-visual img,
.programme-detail-visual-placeholder {
    min-height: 460px;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(14, 35, 65, 0.12), rgba(176, 138, 74, 0.18));
}

.programme-detail-facts,
.programme-detail-body,
.programme-detail-pricing,
.programme-detail-related,
.programme-detail-news {
    padding: 28px 0 68px;
}

.programme-detail-facts-grid,
.programme-detail-related-grid,
.programme-detail-news-grid {
    display: grid;
    gap: 22px;
}

.programme-detail-facts-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.programme-detail-fact-card,
.programme-detail-sidebar-card,
.programme-detail-investment-card,
.programme-detail-news-card {
    border: 1px solid rgba(14, 35, 65, 0.08);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(16, 37, 63, 0.06);
}

.programme-detail-fact-card {
    padding: 24px;
}

.programme-detail-fact-card h3,
.programme-detail-section-head h2 {
    margin: 0;
    color: #0e2341;
    font-family: var(--font-heading);
}

.programme-detail-section-head {
    margin-bottom: 26px;
}

.programme-detail-richtext > :first-child {
    margin-top: 0;
}

.programme-detail-richtext > :last-child {
    margin-bottom: 0;
}

.programme-detail-sidebar-card {
    position: sticky;
    top: 120px;
    padding: 26px;
}

.programme-detail-sidebar-card h2 {
    margin: 0 0 16px;
    color: #0e2341;
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.programme-detail-sidebar-card ul {
    margin: 0 0 22px;
    padding-left: 18px;
    color: #415768;
    line-height: 1.8;
}

.programme-detail-pricing-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(14, 35, 65, 0.08);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(16, 37, 63, 0.06);
}

.programme-detail-pricing-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.programme-detail-pricing-table th,
.programme-detail-pricing-table td {
    padding: 18px 22px;
    border-bottom: 1px solid rgba(14, 35, 65, 0.08);
    text-align: left;
}

.programme-detail-pricing-table th {
    color: #617381;
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.programme-detail-related-grid,
.programme-detail-news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.programme-detail-investment-image img,
.programme-detail-investment-image-placeholder,
.programme-detail-news-image img,
.programme-detail-news-image-placeholder {
    height: 230px;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(14, 35, 65, 0.12), rgba(176, 138, 74, 0.18));
    border-radius: 24px 24px 0 0;
}

.programme-detail-investment-body,
.programme-detail-news-body {
    padding: 22px;
}

.programme-detail-investment-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    color: #617381;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.programme-detail-investment-body h3,
.programme-detail-news-body h3 {
    margin: 0 0 12px;
    color: #0e2341;
    font-size: 1.35rem;
    line-height: 1.25;
}

.programme-detail-news-date {
    margin: 0 0 12px;
    color: #b08a4a;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .programme-detail-hero-grid,
    .programme-detail-body-grid,
    .programme-detail-facts-grid,
    .programme-detail-related-grid,
    .programme-detail-news-grid {
        grid-template-columns: 1fr;
    }

    .programme-detail-sidebar-card {
        position: static;
    }
}

@media (max-width: 767px) {
    .programme-detail-hero {
        padding-top: 36px;
    }

    .programme-detail-visual img,
    .programme-detail-visual-placeholder {
        min-height: 280px;
    }

    .programme-detail-facts,
    .programme-detail-body,
    .programme-detail-pricing,
    .programme-detail-related,
    .programme-detail-news {
        padding: 18px 0 48px;
    }
}
