*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ---------- Variables ---------- */
:root {
    /* Brand colors */
    --primary: #5b2be0;
    --primary-600: #6d28d9;
    --primary-700: #4c1fb8;
    --primary-light: #8b5cf6;
    --accent: #76c043;
    --accent-600: #67ab37;
    --accent-700: #5a9930;

    /* Neutrals */
    --dark: #0b1437;
    --navy-900: #0a1130;
    --navy-800: #111a40;
    --ink: #1a1b2e;
    --text: #2c2c3a;
    --text-muted: #6b6b7b;
    --text-light: #9a9aab;
    --border: #ececf3;
    --border-soft: #f0eef8;
    --white: #ffffff;

    /* Section backgrounds */
    --bg-lavender: #f6f4fc;
    --bg-soft: #faf9fe;
    --purple-section: #2a1065;
    --purple-section-2: #3a157d;

    /* Typography */
    --font-base: 'Cairo', sans-serif;
    --fs-hero: clamp(2rem, 4vw, 3.25rem);
    --fs-h2: clamp(1.6rem, 3vw, 2.4rem);
    --fs-h3: 1.15rem;
    --fs-body: 0.95rem;
    --fs-small: 0.8rem;

    /* Spacing */
    --section-pad: 5rem;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-pill: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(20, 16, 60, 0.05);
    --shadow: 0 8px 30px rgba(40, 16, 100, 0.08);
    --shadow-lg: 0 18px 50px rgba(40, 16, 100, 0.12);
    --shadow-card: 0 6px 24px rgba(20, 16, 60, 0.07);
}

/* ---------- Global ---------- */
body {
    font-family: var(--font-base);
    font-size: var(--fs-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.25;
}

p {
    margin: 0 0 1rem;
    color: var(--text-muted);
}

.text-accent {
    color: var(--primary);
}

.section {
    padding-block: var(--section-pad);
}

.section-sm {
    padding-block: 3rem;
}

.bg-lavender {
    background: var(--bg-lavender);
}

.bg-soft {
    background: var(--bg-soft);
}

/* Section heading block */
.section-heading {
    font-size: var(--fs-h2);
    font-weight: 800;
    margin-bottom: 1rem;
    max-width: 640px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(91, 43, 224, 0.08);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
}

.eyebrow i {
    font-size: 0.85rem;
}

.section-lead {
    color: var(--text-muted);
    max-width: 620px;
    margin-bottom: 2.25rem;
}

/* ---------- Buttons ---------- */
.btn {
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1.5px solid transparent;
    transition: all 0.25s ease;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-700);
    border-color: var(--primary-700);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background: var(--accent-700);
    border-color: var(--accent-700);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-ghost {
    background: var(--white);
    border-color: var(--border);
    color: var(--text);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-sm {
    padding: 0.45rem 1.1rem;
    font-size: 0.82rem;
}

/* ==========================================================================
   Header / Navbar
   ========================================================================== */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 800;
    color: var(--ink);
}

.brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.1rem;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.25rem;
}

.brand-text {
    line-height: 1.1;
}

.brand-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--primary);
}

.brand-text span {
    font-size: 0.68rem;
    color: var(--text-light);
    font-weight: 500;
}

.site-nav .nav-link {
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.85rem;
    transition: color 0.2s ease;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.custom-lang-currency {
    position: relative;
}

.lang-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    border-radius: var(--radius-pill);
    padding: 0.35rem 0.65rem;
    font-size: 0.78rem;
    font-weight: 700;
}

.custom-dropdown {
    position: absolute;
    inset-block-start: calc(100% + 0.6rem);
    inset-inline-end: 0;
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 0.85rem;
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.custom-lang-currency:hover .custom-dropdown,
.custom-lang-currency:focus-within .custom-dropdown {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.dropdown-title {
    font-size: 0.72rem;
    color: var(--text-light);
    margin-bottom: 0.45rem;
}

.language-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.language-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 0;
    background: transparent;
    color: var(--text);
    border-radius: 6px;
    padding: 0.4rem 0.45rem;
    font-size: 0.82rem;
}

.language-item:hover,
.language-item.active {
    background: var(--soft-purple);
    color: var(--primary);
}

.currency-select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.45rem 0.55rem;
    font-size: 0.82rem;
}

.icon-btn {
    background: transparent;
    border: none;
    font-size: 1.15rem;
    color: var(--text);
    position: relative;
    padding: 0.25rem;
}

.icon-btn:hover {
    color: var(--primary);
}

.icon-btn .badge {
    position: absolute;
    top: -2px;
    inset-inline-end: -4px;
    background: var(--accent);
    color: #fff;
    font-size: 0.55rem;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: grid;
    place-items: center;
}

.signin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
}

.signin-link:hover {
    color: var(--primary);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    background:
        radial-gradient(1200px 500px at 80% 0%, rgba(91, 43, 224, 0.35), transparent),
        linear-gradient(120deg, #0a1130 0%, #14193f 55%, #1c1450 100%);
    color: #fff;
    padding-block: 4.5rem;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    color: #fff;
    font-size: var(--fs-hero);
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.hero h1 .grad {
    background: linear-gradient(90deg, #8b5cf6, #c4b5fd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 520px;
    margin-bottom: 1.75rem;
}

.hero-search {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-pill);
    padding: 0.35rem;
    max-width: 520px;
    backdrop-filter: blur(6px);
}

.hero-search input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 0.55rem 1.1rem;
    font-size: 0.88rem;
}

.hero-search input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.hero-search .btn {
    white-space: nowrap;
}

.hero-tag {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0.9rem 0 1.4rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.hero-cta .btn-soft {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}

.hero-cta .btn-soft:hover {
    background: rgba(255, 255, 255, 0.18);
}

.partner-link {
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* Hero map card */
.hero-map {
    background:
        linear-gradient(145deg, rgba(41, 17, 82, 0.92), rgba(21, 10, 47, 0.96)),
        radial-gradient(circle at 18% 24%, rgba(123, 82, 207, 0.24), transparent 42%);
    border: 1px solid rgba(80, 234, 236, 0.38);
    border-radius: 28px;
    padding: 0.75rem;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(151, 102, 255, 0.16) inset,
        0 20px 55px rgba(0, 0, 0, 0.34),
        0 0 36px rgba(45, 216, 218, 0.32);
}

.hero-map-frame {
    border-radius: 22px;
    width: 100%;
    aspect-ratio: 16/11;
    overflow: hidden;
    position: relative;
    background:
        radial-gradient(circle at 22% 18%, rgba(95, 58, 163, 0.4), transparent 36%),
        radial-gradient(circle at 70% 72%, rgba(26, 184, 207, 0.18), transparent 38%),
        linear-gradient(140deg, #211140 0%, #130b2c 58%, #17062d 100%);
}

.hero-map-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 42%);
    background-size: 34px 34px, 100% 100%;
    opacity: 0.32;
    pointer-events: none;
}

.hero-map-frame::after {
    content: "";
    position: absolute;
    right: 1.35rem;
    bottom: 1.05rem;
    width: 1.9rem;
    height: 1.9rem;
    background: #d8d5e7;
    clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
    opacity: 0.9;
}

.kingdom-map-svg {
    position: absolute;
    inset: 8% 4% 8% 6%;
    z-index: 1;
    width: 90%;
    height: 84%;
}

.map-labels text {
    fill: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 500;
}

.map-labels .label-strong {
    fill: #fff;
    font-size: 16px;
    font-weight: 800;
}

.city-dots circle {
    filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.42));
}

.map-stat-card {
    position: absolute;
    z-index: 3;
    min-width: 120px;
    background: rgba(33, 12, 72, 0.88);
    border: 1px solid rgba(124, 74, 225, 0.58);
    border-radius: 12px;
    padding: 0.72rem 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(8px);
}

.map-stat-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: -2px;
    width: 3px;
    height: 100%;
    border-radius: 10px;
    background: var(--stat-accent, #93e33d);
    box-shadow: 0 0 10px var(--stat-accent, #93e33d);
}

.map-stat-card span,
.map-stat-card small {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
}

.map-stat-card strong {
    display: block;
    margin-top: 0.16rem;
    color: #fff;
    font-size: 1.55rem;
    line-height: 1;
}

.map-stat-card small {
    margin-top: 0.2rem;
    color: #a9ef4b;
}

.map-stat-gdp {
    --stat-accent: #a9ef4b;
    top: 1rem;
    left: 1rem;
}

.map-stat-projects {
    --stat-accent: #25d4df;
    top: 1rem;
    right: 1rem;
}

.map-stat-jobs {
    --stat-accent: #ef6946;
    left: 1rem;
    bottom: 5.3rem;
}

.map-stat-tourism {
    --stat-accent: #8b5cf6;
    right: 1rem;
    bottom: 5.3rem;
}

.map-legend {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    width: min(92%, 420px);
    flex-wrap: wrap;
}

.map-legend span {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    min-height: 28px;
    padding: 0.32rem 0.65rem;
    border-radius: 999px;
    background: rgba(92, 60, 161, 0.62);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.68rem;
    font-weight: 700;
}

.map-legend i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.legend-riyadh,
.legend-tabuk {
    background: #a9ef4b;
}

.legend-jeddah {
    background: #15b9da;
}

.legend-makkah {
    background: #e86f40;
}

.legend-eastern {
    background: #8b5cf6;
}

/* ==========================================================================
   Feature cards (Why Regional Incubator) — connected bordered grid
   ========================================================================== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    overflow: visible;
}

.feature-cell {
    padding: 1.6rem 1.4rem;
    border-inline-end: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--white);
    transition: all 0.25s ease;
    position: relative;
}

/* remove right border on last column (every 4th) */
.feature-cell:nth-child(4n) {
    border-inline-end: 0;
}

/* remove bottom border on last row (5th–8th) */
.feature-cell:nth-child(n+5) {
    border-bottom: 0;
}

.feature-cell:hover {
    background: var(--bg-soft);
}

.feature-cell.is-active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: transparent;
    border-radius: var(--radius);
    color: #fff;
    box-shadow: 0 18px 40px rgba(91, 43, 224, 0.35);
    transform: scale(1.04);
    z-index: 2;
}

.feature-cell.is-active h3,
.feature-cell.is-active p {
    color: #fff;
}

.feature-cell.is-active .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.feature-cell h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.feature-cell p {
    font-size: 0.82rem;
    margin: 0;
    line-height: 1.6;
}

.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(91, 43, 224, 0.1);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.feature-card p {
    font-size: 0.82rem;
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   Filter tabs
   ========================================================================== */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.filter-tab {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 0.4rem 1.15rem;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.filter-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ==========================================================================
   City cards
   ========================================================================== */
.city-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    transition: all 0.25s ease;
}

.city-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.city-card .thumb {
    aspect-ratio: 16/10;
    object-fit: cover;
    width: 100%;
    background: linear-gradient(135deg, #cdbff0, #a78bda);
}

.city-card-body {
    padding: 0.9rem 1rem 1.1rem;
}

.city-card-body h3 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.city-card-body h3 i {
    color: var(--primary);
    font-size: 0.9rem;
}

.city-desc {
    font-size: 0.74rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0.8rem;
    min-height: 2.2em;
}

/* Segmented stat row inside city cards */
.city-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 0.9rem;
}

.city-stats div {
    text-align: center;
    padding: 0.45rem 0.2rem;
    border-inline-end: 1px solid var(--border);
}

.city-stats div:last-child {
    border-inline-end: 0;
}

.city-stats strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.city-stats span {
    font-size: 0.56rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* legacy chip (kept for other sections) */
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 0.85rem;
}

.chip {
    font-size: 0.62rem;
    font-weight: 600;
    background: var(--bg-lavender);
    color: var(--primary);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-pill);
}

.city-card .btn {
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   Economic indicators (dark purple section)
   ========================================================================== */
.indicators {
    background: #1d0037;
    color: #fff;
    text-align: center;
}

.home-indicators {
    padding-block: 7.25rem 4.1rem;
}

.home-indicators__inner {
    max-width: 1344px;
}

.home-indicators__eyebrow {
    gap: 1rem;
    min-height: 56px;
    padding: 0.55rem 1.75rem;
    margin-bottom: 1.8rem;
    background: rgba(132, 25, 255, 0.1);
    border: 1px solid #8419ff;
    border-radius: 999px;
    color: #8419ff;
    font-size: 1rem;
    font-weight: 800;
}

.home-indicators__eyebrow span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #8419ff;
    box-shadow: 0 0 18px rgba(132, 25, 255, 0.95);
}

.indicators .home-indicators__title {
    max-width: 860px;
    margin: 0 auto 1.75rem;
    color: #5955e8;
    font-size: clamp(2.5rem, 4.2vw, 3.5rem);
    line-height: 1.28;
    font-weight: 900;
    letter-spacing: 0;
}

.indicators .home-indicators__title .grad {
    color: #3d65f2;
}

.indicators .home-indicators__lead {
    max-width: 900px;
    margin: 0 auto 4.15rem;
    color: #7c839d;
    font-size: 1.06rem;
    line-height: 1.45;
}

.home-indicators__grid {
    row-gap: 1.25rem !important;
}

.home-indicators .stat-box {
    min-height: 164px;
    padding: 23px 23px 25px;
    text-align: start;
    background: transparent;
    border: 1px solid rgba(132, 25, 255, 0.38);
    border-radius: 18px;
}

.stat-box__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.home-indicators .stat-icon {
    width: 48px;
    height: 48px;
    margin: 0;
    border-radius: 50%;
    background: rgba(65, 39, 80, 0.8);
    color: #4db322;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
}

.home-indicators .stat-box .label {
    color: #737c97;
    font-size: 0.95rem;
    line-height: 1.35;
    margin-bottom: 0.55rem;
}

.home-indicators .stat-box .num {
    color: #8419ff;
    font-size: 1.26rem;
    line-height: 1.25;
    font-weight: 900;
}

.home-indicators .stat-box .delta {
    color: #4db322;
    font-size: 0.86rem;
    font-weight: 900;
    margin: 0;
    white-space: nowrap;
}

.home-indicators__cta {
    margin-top: 4.75rem;
}

.home-indicators .btn-soft {
    min-height: 50px;
    padding: 0.75rem 1.05rem;
    background: transparent;
    border-color: #4db322;
    color: #4db322;
    font-weight: 900;
}

.home-indicators .btn-soft:hover {
    background: rgba(77, 179, 34, 0.12);
    border-color: #4db322;
    color: #4db322;
}

/* ==========================================================================
   Opportunity cards
   ========================================================================== */
.opp-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.4rem;
    height: 100%;
    transition: all 0.25s ease;
}

.opp-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

/* ==========================================================================
   Home investment opportunities
   ========================================================================== */
.home-investment {
    background: #fff;
    padding-block: 5.55rem 4.45rem;
}


.home-investment__eyebrow {
    gap: 0.55rem;
    margin-bottom: 1.15rem;
    padding: 0.55rem 1.05rem;
    background: #eadcfb;
    color: #7900ff;
    font-size: 0.78rem;
    font-weight: 900;
}

.home-investment__title {
    max-width: 690px;
    margin: 0 0 0.75rem;
    color: #0a1d3b;
    font-size: clamp(2rem, 4.1vw, 3rem);
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: 0;
}

.home-investment__title span {
    display: block;
    color: #7900ff;
}

.home-investment__lead {
    max-width: 710px;
    margin: 0 0 2.9rem;
    color: #71809a;
    font-size: 0.86rem;
    line-height: 1.8;
}

.home-investment__toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.45rem;
}

.home-investment__tabs {
    margin-bottom: 0;
    gap: 0.7rem;
}

.home-investment__tabs .filter-tab {
    min-height: 29px;
    padding: 0.36rem 1.05rem;
    border: 1px solid rgba(121, 0, 255, 0.35);
    border-radius: 999px;
    background: #fff;
    color: #4c148c;
    font-size: 0.68rem;
    line-height: 1;
    font-weight: 900;
}

.home-investment__tabs .filter-tab.active {
    background: #4b059d;
    border-color: #4b059d;
    color: #fff;
}

.home-investment__view-all {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: #4b059d;
    border-color: #4b059d;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
}

.home-investment__view-all:hover {
    background: #7900ff;
    border-color: #7900ff;
    color: #fff;
}

.home-investment-card {
    overflow: hidden;
    min-height: 172px;
    padding: 0;
    border: 1px solid #dce4ef;
    border-radius: 16px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
}

.home-investment-card:hover {
    box-shadow: 0 18px 40px rgba(20, 30, 55, 0.08);
}

.home-investment-card__head {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0.8rem;
    padding: 1.05rem 1.05rem 0.8rem;
}

.home-investment-card .opp-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    margin: 0;
    font-size: 0.96rem;
}

.home-investment-card h3 {
    margin: 0 0 0.25rem;
    color: #091b39;
    font-size: 0.82rem;
    line-height: 1.25;
    font-weight: 900;
}

.home-investment-card__place {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #6f7c92;
    font-size: 0.68rem;
    line-height: 1.4;
}

.home-investment-card__place i {
    color: #7900ff;
    font-size: 0.72rem;
}

.home-investment-card p {
    flex: 1 1 auto;
    margin: 0 1.05rem;
    padding: 1.05rem 0 1.15rem;
    border-top: 1px solid #e6ebf2;
    color: #71809a;
    font-size: 0.72rem;
    line-height: 1.75;
}

.home-investment-card .opp-foot {
    min-height: 44px;
    padding: 0.65rem 1.05rem;
    background: #f5f5f6;
}

.home-investment-card .tag {
    display: inline-flex;
    align-items: center;
    min-height: 18px;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: #eff9e8;
    border: 1px solid #73b949;
    color: #4c8d24;
    font-size: 0.5rem;
    font-weight: 900;
    line-height: 1;
}

.home-investment-card .view-all {
    min-height: 19px;
    padding: 0.32rem 0.65rem;
    border-radius: 999px;
    background: #6500d5;
    color: #fff;
    font-size: 0.5rem;
    font-weight: 900;
}

.home-investment-card .view-all:hover {
    background: #7900ff;
    color: #fff;
}

.home-investment-card.tone-green .opp-icon {
    background: #edf7e7;
    color: #6aa83c;
}

.home-investment-card.tone-cyan .opp-icon {
    background: #e7f8fb;
    color: #22aeca;
}

.home-investment-card.tone-blue .opp-icon {
    background: #eaf3ff;
    color: #2f80d8;
}

.home-investment-card.tone-pink .opp-icon {
    background: #ffe9fb;
    color: #e633c7;
}

.home-investment-card.tone-red .opp-icon {
    background: #ffeaea;
    color: #ff4b55;
}

.home-investment-card.tone-gold .opp-icon {
    background: #f8eddb;
    color: #ac7324;
}

.home-investment-card.tone-cyan .tag {
    background: #e9fbff;
    border-color: #25b8d4;
    color: #1596ad;
}

.home-investment-card.tone-blue .tag {
    background: #edf5ff;
    border-color: #2f80d8;
    color: #2f72bd;
}

.home-investment-card.tone-pink .tag {
    background: #fff0fc;
    border-color: #e633c7;
    color: #c628a9;
}

.home-investment-card.tone-red .tag {
    background: #fff0f0;
    border-color: #ff4b55;
    color: #d8323a;
}

.home-investment-card.tone-gold .tag {
    background: #fbf2e6;
    border-color: #ac7324;
    color: #8d5d1d;
}

@media (max-width: 991.98px) {
    .home-investment__toolbar {
        display: block;
    }

    .home-investment__view-all {
        margin-top: 1rem;
    }
}

@media (max-width: 575.98px) {
    .home-investment {
        padding-block: 3.75rem;
    }

    .home-investment__title {
        font-size: 2rem;
    }

    .home-investment__tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.35rem;
    }

    .home-investment__tabs .filter-tab {
        white-space: nowrap;
    }
}

.opp-card .opp-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-lavender);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.opp-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.opp-card p {
    font-size: 0.82rem;
    margin-bottom: 1rem;
}

.opp-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 0.85rem;
}

.tag {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-pill);
    background: rgba(118, 192, 67, 0.12);
    color: var(--accent-700);
}

.tag.purple {
    background: rgba(91, 43, 224, 0.1);
    color: var(--primary);
}

.home-investment-card .opp-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    margin-bottom: 0;
    font-size: 0.96rem;
}

.home-investment-card h3 {
    margin-bottom: 0.25rem;
    font-size: 0.82rem;
}

.home-investment-card p {
    margin-bottom: 0;
    font-size: 0.72rem;
}

.home-investment-card .opp-foot {
    border-top: 0;
    padding-top: 0.65rem;
}

.home-investment-card .tag {
    font-size: 0.5rem;
    font-weight: 900;
}

/* ==========================================================================
   Event cards
   ========================================================================== */
.event-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    transition: all 0.25s ease;
}

.event-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.event-card .thumb {
    aspect-ratio: 16/11;
    object-fit: cover;
    width: 100%;
    background: linear-gradient(135deg, #2a1065, #6d28d9);
}

.event-card-body {
    padding: 1rem;
}

.event-card-body h3 {
    font-size: 0.92rem;
    margin-bottom: 0.6rem;
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.72rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.event-meta i {
    color: var(--primary);
    margin-inline-end: 0.25rem;
}

.home-city-events {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 48%, #8b5cf6 100%);
    color: var(--white);
}

.home-city-events .eyebrow {
    border-color: rgba(255, 255, 255, 0.75);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.home-city-events .section-heading,
.home-city-events .section-lead {
    color: var(--white);
}

.home-city-events .text-accent {
    color: #e9d5ff !important;
}

.home-city-events .filter-tab {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.08);
}

.home-city-events .filter-tab.active,
.home-city-events .filter-tab:hover {
    color: var(--white);
    background: #4c1d95;
    border-color: #4c1d95;
}

.home-city-events .btn-primary {
    background: #4c1d95;
    border-color: #4c1d95;
    color: var(--white);
}

.home-city-events .event-card {
    border: 0;
    box-shadow: 0 18px 45px rgba(49, 16, 129, 0.2);
}

.home-city-events .empty-state {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    color: var(--white);
    font-weight: 700;
    padding: 1rem 1.25rem;
}

/* ==========================================================================
   Product cards
   ========================================================================== */
.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    transition: all 0.25s ease;
}

.product-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.product-card .thumb {
    aspect-ratio: 16/10;
    object-fit: cover;
    width: 100%;
    background: linear-gradient(135deg, #e7c98f, #c89b4a);
}

.product-card-body {
    padding: 0.9rem 1rem 1.1rem;
}

.product-card-body h3 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.product-price {
    color: var(--accent-700);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.85rem;
}

.product-location {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.45rem;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.product-location i {
    color: var(--primary);
}

.home-products-section {
    padding-top: 5.4rem;
    padding-bottom: 5rem;
    background: var(--white);
}

.home-products-section .container {
    max-width: 1330px;
}

.home-products-head {
    max-width: 920px;
}

.home-products-eyebrow {
    background: #f2e6ff;
    border-color: #f2e6ff;
    color: #6f00ff;
    font-size: 0.78rem;
    padding: 0.48rem 1.2rem;
}

.home-products-section .section-heading {
    max-width: 850px;
    margin-top: 1.25rem;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 3vw, 3.45rem);
    line-height: 1.22;
}

.home-products-section .text-accent {
    color: #7a00ff !important;
}

.home-products-section .section-lead {
    max-width: 860px;
    color: #66758f;
    font-size: 0.96rem;
    line-height: 1.8;
}

.home-products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 4.1rem 0 1.6rem;
}

.home-products-tabs {
    margin: 0;
    gap: 0.55rem;
}

.home-products-tabs .filter-tab,
.home-products-next {
    min-height: 32px;
    padding: 0.42rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
}

.home-products-tabs .filter-tab {
    border: 1px solid #7a00ff;
    color: #1d143a;
    background: var(--white);
}

.home-products-tabs .filter-tab.active,
.home-products-tabs .filter-tab:hover {
    background: #4d0099;
    border-color: #4d0099;
    color: var(--white);
}

.home-products-next {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid #4d0099;
    background: #4d0099;
    color: var(--white);
    text-decoration: none;
}

.home-products-next:hover {
    background: #370071;
    border-color: #370071;
    color: var(--white);
}

.home-products-grid {
    --bs-gutter-x: 1.25rem;
}

.home-product-card {
    border-radius: 8px;
    box-shadow: none;
}

.home-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(20, 16, 60, 0.09);
}

.home-product-visual {
    display: block;
    width: 100%;
    aspect-ratio: 1.86/1;
    background: #d9d9d9;
    overflow: hidden;
}

.home-product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-product-body {
    padding: 1.25rem 1.5rem 1.45rem;
}

.home-product-body h3 {
    min-height: 2.4em;
    margin-bottom: 0.45rem;
    color: #091a3a;
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1.35;
}

.home-product-location {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1rem;
    color: #65708a;
    font-size: 0.8rem;
    font-weight: 700;
}

.home-product-location i {
    color: #7a00ff;
    font-size: 0.92rem;
}

.home-product-badge {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1.35rem;
    border-radius: var(--radius-pill);
    background: #f2e6ff;
    color: #5b008f;
    font-size: 0.68rem;
    font-weight: 800;
}

.home-product-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 38px;
    padding: 0.5rem 0.8rem;
    border: 1px solid #7a00ff;
    border-radius: var(--radius-pill);
    color: #6f00ff;
    background: var(--white);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 900;
}

.home-product-link:hover {
    background: #6f00ff;
    color: var(--white);
}

.home-products-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2.6rem;
}

.home-products-primary,
.home-products-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 54px;
    padding: 0.75rem 1.55rem;
    border-radius: var(--radius-pill);
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 900;
}

.home-products-primary {
    background: #7a00ff;
}

.home-products-primary:hover {
    background: #5c00c9;
    color: var(--white);
}

.home-products-secondary {
    background: #4c9b31;
}

.home-products-secondary:hover {
    background: #347a20;
    color: var(--white);
}

[dir="rtl"] .home-products-next i,
[dir="rtl"] .home-products-secondary i {
    transform: scaleX(-1);
}

@media (max-width: 991.98px) {
    .home-products-section {
        padding-top: 3.5rem;
    }

    .home-products-toolbar {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 2.5rem;
    }

    .home-products-next {
        align-self: flex-start;
    }
}

@media (max-width: 575.98px) {
    .home-products-section .section-heading {
        font-size: 2rem;
    }

    .home-product-body {
        padding: 0.95rem 0.85rem 1rem;
    }

    .home-product-body h3 {
        font-size: 0.8rem;
    }

    .home-product-link {
        font-size: 0.68rem;
    }

    .home-products-primary,
    .home-products-secondary {
        width: 100%;
    }
}

/* ==========================================================================
   Innovation band
   ========================================================================== */
.innovation {
    background: var(--bg-lavender);
}

.innovation-img {
    border-radius: var(--radius-lg);
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    background: radial-gradient(circle at 60% 40%, #1b2b6b, #05060f);
}

.innovation h2 {
    font-size: var(--fs-h2);
    font-weight: 800;
    margin-bottom: 1rem;
}

/* ==========================================================================
   Partners
   ========================================================================== */
.partners {
    text-align: center;
}

.partners h2 {
    font-size: var(--fs-h2);
    font-weight: 800;
    max-width: 640px;
    margin: 0.5rem auto 0.75rem;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin: 2.5rem 0;
}

.partner-logos img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.25s ease;
}

.partner-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.partner-cta {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Inner page banner
   ========================================================================== */
.page-banner {
    background:
        radial-gradient(800px 300px at 80% 0%, rgba(91, 43, 224, 0.35), transparent),
        linear-gradient(120deg, #0a1130, #1c1450);
    color: #fff;
    text-align: center;
    padding-block: 3rem;
}

.page-banner h1 {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
}

.page-banner .crumb {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.4rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background:
        linear-gradient(135deg, var(--purple-section), #1a0a45);
    color: rgba(255, 255, 255, 0.75);
    padding-top: 3.5rem;
}

.site-footer h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    display: inline-block;
    padding: 0.22rem 0;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #fff;
}

.footer-brand .brand-text strong {
    color: #fff;
}

.footer-about {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 1rem 0;
    max-width: 280px;
}

.newsletter {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-pill);
    padding: 0.3rem;
    max-width: 300px;
}

.newsletter input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 0.4rem 0.9rem;
    font-size: 0.82rem;
}

.newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.social-row {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

.social-row a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 0.9rem;
    padding: 0;
}

.social-row a:hover {
    background: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 3rem;
    padding-block: 1.25rem;
    font-size: 0.78rem;
}

.footer-bottom a {
    font-size: 0.78rem;
    margin-inline-start: 1.25rem;
}

/* ---------- Utilities ---------- */
.view-all {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.text-balance {
    text-wrap: balance;
}

/* ---------- Animations ---------- */
[data-fade] {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-fade].in {
    opacity: 1;
    transform: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991.98px) {
    :root {
        --section-pad: 3.5rem;
    }

    .hero {
        padding-block: 3rem;
    }

    .hero-map {
        margin-top: 2.5rem;
    }

    .hero-map-frame {
        aspect-ratio: 16/10;
    }

    .kingdom-map-svg {
        inset: 9% 2% 9% 4%;
        width: 94%;
        height: 82%;
    }

    .header-actions {
        gap: 0.6rem;
    }

    /* Feature grid -> 2 columns */
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-cell {
        border-inline-end: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .feature-cell:nth-child(4n) {
        border-inline-end: 1px solid var(--border);
    }

    .feature-cell:nth-child(2n) {
        border-inline-end: 0;
    }

    .feature-cell:nth-child(n+5) {
        border-bottom: 1px solid var(--border);
    }

    .feature-cell:nth-child(n+7) {
        border-bottom: 0;
    }

    .feature-cell.is-active {
        transform: none;
        box-shadow: none;
        border-radius: 0;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-pad: 3rem;
    }

    .hero-search {
        flex-direction: column;
        gap: 0.4rem;
    }

    .hero-search .btn {
        width: 100%;
        justify-content: center;
    }

    .partner-logos {
        gap: 1.5rem;
    }

    .partner-logos img {
        height: 36px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom a {
        margin: 0 0.5rem;
    }

    .stat-box {
        text-align: center;
    }

    .stat-icon {
        margin-inline: auto;
    }
}

@media (max-width: 575.98px) {
    .section-heading {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-map {
        padding: 0.8rem;
    }

    .hero-map-frame {
        aspect-ratio: 1/1.05;
    }

    .kingdom-map-svg {
        inset: 16% -8% 16% -2%;
        width: 110%;
        height: 68%;
    }

    .map-labels text {
        font-size: 11px;
    }

    .map-labels .label-strong {
        font-size: 13px;
    }

    .map-stat-card {
        min-width: 92px;
        padding: 0.52rem 0.58rem;
    }

    .map-stat-card span,
    .map-stat-card small {
        font-size: 0.56rem;
    }

    .map-stat-card strong {
        font-size: 1.08rem;
    }

    .map-stat-gdp,
    .map-stat-projects {
        top: 0.7rem;
    }

    .map-stat-gdp,
    .map-stat-jobs {
        left: 0.7rem;
    }

    .map-stat-projects,
    .map-stat-tourism {
        right: 0.7rem;
    }

    .map-stat-jobs,
    .map-stat-tourism {
        bottom: 4.25rem;
    }

    .map-legend {
        bottom: 0.75rem;
        gap: 0.35rem;
    }

    .map-legend span {
        min-height: 24px;
        padding: 0.25rem 0.48rem;
        font-size: 0.58rem;
    }

    .filter-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }

    .filter-tab {
        white-space: nowrap;
    }

    /* Feature grid -> 1 column */
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-cell {
        border-inline-end: 0 !important;
        border-bottom: 1px solid var(--border) !important;
    }

    .feature-cell:last-child {
        border-bottom: 0 !important;
    }
}




/* ==========================================================================
   About page — unique styles
   ========================================================================== */

.about-hero-img {
    border-radius: var(--radius-lg);
    width: 100%;
    aspect-ratio: 16/11;
    object-fit: cover;
    background: radial-gradient(circle at 60% 40%, #1b2b6b, #05060f);
    box-shadow: var(--shadow-lg);
}

/* The platform brings together */
.brings-together {
    max-width: 720px;
}

.brings-title {
    font-size: 1rem;
    font-weight: 700;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.25rem;
}

.brings-list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink);
    padding: 0.4rem 0;
}

.brings-list li i {
    color: var(--primary);
    font-size: 1rem;
}

/* Vision & Mission cards */
.vm-card {
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    color: #fff;
}

.vm-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.vm-card h3 {
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}

.vm-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    margin: 0;
}

.vm-vision {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
}

.vm-vision .vm-icon {
    background: rgba(255, 196, 0, 0.18);
    color: #ffce5c;
}

.vm-vision h3 {
    color: #ffce5c;
}

.vm-mission {
    background: linear-gradient(135deg, #2148c0, #2f6be0);
}

.vm-mission .vm-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Value cards */
.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.6rem 1.4rem;
    height: 100%;
    transition: all 0.25s ease;
}

.value-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.value-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.82rem;
    margin: 0;
    line-height: 1.6;
}

.vi-blue {
    background: rgba(59, 130, 246, 0.12);
    color: #3b82f6;
}

.vi-green {
    background: rgba(118, 192, 67, 0.14);
    color: var(--accent-700);
}

.vi-amber {
    background: rgba(245, 184, 39, 0.16);
    color: #e0a318;
}

.vi-purple {
    background: rgba(91, 43, 224, 0.1);
    color: var(--primary);
}

.vi-teal {
    background: rgba(20, 184, 166, 0.14);
    color: #14b8a6;
}

.vi-orange {
    background: rgba(249, 115, 22, 0.14);
    color: #f97316;
}
