﻿/*=========================================
KPIS Website
Primary Stylesheet
=========================================*/

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope/Manrope-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 800;
    font-style: normal;
}

:root {
    --primary: #0F4C81;
    --primary-rgb: 15, 76, 129;
    --primary-light: #1E88E5;
    --heading: #1F2937;
    --text: #4B5563;
    --white: #FFFFFF;
    --light: #F8FAFC;
    --border: #E5E7EB;
    --section-space: 110px;
    --transition: .3s ease;
    --shadow: 0 12px 32px rgba(0,0,0,.08);
    --radius: 12px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter',sans-serif;
    font-size: 17px;
    color: var(--text);
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope',sans-serif;
    color: var(--heading);
    font-weight: 700;
    line-height: 1.2;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.section {
    padding: var(--section-space) 0;
}

.container {
    max-width: 1280px;
}

/*==================================================
TYPOGRAPHY
==================================================*/

h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.15rem;
    color: var(--text);
    max-width: 650px;
}

/*==================================================
UTILITIES
==================================================*/

.text-primary {
    color: var(--primary) !important;
}

.bg-light-section {
    background: var(--light);
}

.kpis-shadow {
    box-shadow: var(--shadow);
}

.radius {
    border-radius: var(--radius);
}

.mt-section {
    margin-top: var(--section-space);
}

.mb-section {
    margin-bottom: var(--section-space);
}

/*==================================================
SECTION HEADER
==================================================*/
.kpis-section {
    padding: var(--section-space) 0;
}

.kpis-section-header {
    max-width: 700px;
    margin: 0 auto 70px;
    text-align: center;
}

.kpis-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: .85rem;
    margin-bottom: 1rem;
}

.kpis-tag:not(.no-transform) {
    text-transform: uppercase;
}

.kpis-section-header h2 {
    margin-bottom: 1rem;
}

.kpis-section-header p {
    color: var(--text);
}

/*==================================================
BUTTONS
==================================================*/

.kpis-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: 14px 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    border: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.kpis-btn:hover {
    background: #0a3a62;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.kpis-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    transition: var(--transition);
}

.kpis-btn-outline:hover {
    background: var(--primary);
    color: white;
}

/*==================================================
NAVBAR
==================================================*/

.kpis-navbar {
    padding: 22px 0;
    transition: .35s ease;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,.05);
}

.kpis-navbar.scrolled {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    padding: 14px 0;
}

.kpis-logo {
    height: 46px;
    transition: .35s;
}

.navbar-nav {
    gap: 1rem;
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: .5rem 0 !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: .3s;
}

.nav-link:hover::after {
    width: 100%;
}

.kpis-navbar .nav-link {
    color: var(--text) !important;
    font-weight: 500;
    margin-left: 10px;
    margin-right: 10px;
    transition: .3s;
}

.kpis-navbar.scrolled .nav-link {
    color: var(--heading);
}

.kpis-navbar .nav-link:hover {
    color: var(--primary) !important;
}

.kpis-navbar.scrolled .nav-link.active {
    color: var(--primary) !important;
}

.kpis-navbar .navbar-toggler {
    border: none;
    box-shadow: none;
}

.kpis-navbar .navbar-toggler:focus {
    box-shadow: none;
}

.kpis-navbar .dropdown-menu {
    border: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}

/*==================================================
SCROLL ANIMATION
==================================================*/

.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

/*==================================================
HERO
==================================================*/

.hero-section {
    position: relative;
    padding: 170px 0 var(--section-space);
    overflow: hidden;
    background: #fff;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -250px;
    right: -150px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(15,76,129,.10), transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size:3rem;
    line-height:1.15;
    font-weight:800;
    margin-bottom:24px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.hero-content .lead {
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-illustration {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 25px;
}

.hero-illustration img {
    width: 100%;
    max-width: 620px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/*==================================================
TRUST SECTION
==================================================*/

.kpis-trust {
    padding: 70px 0;
    background: #fff;
    border-top: 1px solid var(--border);
}

.kpis-trust i {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
}

.kpis-trust h5 {
    margin-bottom: 15px;
}

.kpis-trust p {
    margin: 0 auto;
    max-width: 280px;
}

/*==================================================
BUSINESS CHALLENGES
==================================================*/

.challenge-card {
    background: #fff;
    padding: 40px 35px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    height: 100%;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.challenge-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: .35s;
}

.challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,.08);
    border-color: rgba(15,76,129,.3);
}

.challenge-card:hover::before {
    height: 100%;
}

.challenge-card i {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 22px;
    transition: .35s;
}

.challenge-card:hover i {
    transform: scale(1.15);
}

.challenge-card h4 {
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.challenge-card p {
    margin: 0;
    color: var(--text);
}

/*==================================================
SERVICES
==================================================*/

.service-row {
    margin-top: 80px;
}

.service-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.service-content {
    max-width: 540px;
}

.service-number {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 22px;
}

.service-content p {
    margin-bottom: 24px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/*==================================================
EXPERTISE
==================================================*/

.expertise-card {
    background: #fff;
    padding: 35px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all .35s ease;
    height: 100%;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(15,76,129,.25);
}

.expertise-card h4 {
    color: var(--primary);
    margin-bottom: 18px;
}

.expertise-card p {
    margin: 0;
}

/*==================================================
PROCESS
==================================================*/

.process-wrapper {
    position: relative;
}

.process-line {
    position: absolute;
    left: 8%;
    right: 8%;
    top: 50%;
    height: 2px;
    background: #d8e4ef;
    z-index: 0;
}

.process-card {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: var(--radius);
    padding: 35px;
    border: 1px solid var(--border);
    text-align: center;
    transition: .35s;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.process-number {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.process-card h4 {
    margin-bottom: 18px;
}

/*==================================================
WHAT WE BUILD
==================================================*/

.solution-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 35px;
    height: 100%;
    border: 1px solid var(--border);
    transition: .35s;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.solution-card i {
    font-size: 44px;
    color: var(--primary);
    margin-bottom: 20px;
}

.solution-card h4 {
    margin-bottom: 16px;
}

.solution-card p {
    margin: 0;
}

/*==================================================
CONSULTATION
==================================================*/

.consultation-section {
    padding: var(--section-space) 0;
}

.consultation-box {
    background: linear-gradient(135deg,#0F4C81,#174f80);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 70px;
    text-align: center;
}

.consultation-box h2 {
    color: #fff;
}

.consultation-box p {
    color: rgba(255,255,255,.85);
    margin-bottom: 40px;
}

.consultation-box .form-control {
    height: 58px;
    border: none;
    border-radius: var(--radius-sm);
}

.consultation-box .kpis-btn {
    height: 58px;
    background: #2E6EB5;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
    transition: .3s;
}

.consultation-box .kpis-btn:hover {
    background: #3D7CC2;
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(0,0,0,.22);
}

/*==================================================
FOOTER
==================================================*/

.footer {
    background: #f7f8fa;
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-logo {
    height: 46px;
    margin-bottom: 25px;
}

.footer h5 {
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer li {
    margin-bottom: 12px;
}

.footer a {
    color: var(--text);
    text-decoration: none;
}

.footer a:hover {
    color: var(--primary);
}

.footer hr {
    margin: 50px 0 25px;
}

.footer-bottom {
    text-align: center;
    color: #777;
}

/*==================================================
PAGE HERO
==================================================*/

.page-hero {
    position: relative;
    padding: 175px 0 90px;
    background: var(--light);
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    top: -220px;
    right: -160px;
    width: 620px;
    height: 620px;
    background: radial-gradient( circle, rgba(15, 76, 129, .10), transparent 70% );
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    max-width: 850px;
    margin-bottom: 22px;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.page-hero p {
    max-width: 760px;
    margin-bottom: 0;
    font-size: 1.1rem;
}

/*==================================================
PAGE HERO ILLUSTRATION
==================================================*/

.page-hero-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-hero-illustration img {
    width: 100%;
    max-width: 500px;
    height: auto;
    user-select: none;
    pointer-events: none;
    filter: drop-shadow(0 25px 45px rgba(15,76,129,.12));
    animation: float 6s ease-in-out infinite;
    border-radius: var(--radius);
}

/*==================================================
PAGE BREADCRUMB
==================================================*/

.page-breadcrumb {
    margin-top: 30px;
    font-size: .92rem;
    color: var(--text-light);
}

.page-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.page-breadcrumb a:hover {
    color: var(--primary);
}

.page-breadcrumb span {
    margin: 0 8px;
    opacity: .5;
}


/*==================================================
ABOUT PAGE
==================================================*/

.about-content h2 {
    margin-bottom: 28px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-highlight {
    margin-top: 30px;
    padding: 22px 25px;
    background: var(--light);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md, 16px) var(--radius-md, 16px) 0;
    font-weight: 500;
    color: var(--heading);
}

.about-experience {
    padding: 50px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    color: #fff;
    box-shadow: var(--shadow);
}

.about-experience-number {
    margin-bottom: 6px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(4rem, 8vw, 6.5rem);
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.about-experience h3 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.7rem;
}

.about-experience > p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .82);
}

.about-experience-list {
    display: grid;
    gap: 15px;
}

.about-experience-list > div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-experience-list i {
    margin-top: 3px;
    color: #fff;
    font-size: 1.15rem;
}

.value-card {
    position: relative;
    height: 100%;
    padding: 35px 30px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: .35s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(15, 76, 129, .25);
    box-shadow: var(--shadow);
}

.value-card:hover::before {
    height: 100%;
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    background: rgba(15, 76, 129, .08);
    border-radius: var(--radius);
    color: var(--primary);
    font-size: 1.65rem;
}

.value-card h4 {
    margin-bottom: 15px;
}

.value-card p {
    margin: 0;
}

.principles-title {
    font-size: clamp(2.4rem, 3.2vw, 2.8rem);
    line-height: 1.18;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.principle-item {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.principle-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: var(--shadow);
}

.principle-item > span {
    flex: 0 0 auto;
    color: var(--primary);
    font-family: "Manrope", sans-serif;
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.principle-item h4 {
    margin-bottom: 10px;
}

.principle-item p {
    margin: 0;
}

/*==================================================
SERVICES PAGE
==================================================*/

.services-intro {
    padding: 36px 40px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.services-intro-title {
    margin: 0;
    color: var(--primary);
    font-size: clamp(1.6rem, 2.4vw, 1.8rem);
    line-height: 1.35;
}

.services-intro-points {
    height: 100%;
}

.services-intro-item {
    height: 100%;
    padding: 10px 28px;
    border-left: 1px solid var(--border);
}

.services-intro-icon {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 1.8rem;
}

.services-intro-item p {
    margin: 0;
    font-size: .94rem;
    line-height: 1.65;
}

.service-feature-section {
    padding: var(--section-space) 0;
}

.service-feature-image {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.service-feature-image img {
    width: 100%;
    height: auto;
    transition: transform .5s ease;
}

.service-feature-image:hover img {
    transform: scale(1.025);
}

.service-feature-content {
    max-width: 650px;
}

.service-heading {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}

.service-heading h2 {
    margin: 0;
    font-size: clamp(1.8rem, 2.8vw, 2.35rem);
}

.service-index {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 36px;
    padding: 0 10px;
    background: var(--primary);
    border-radius: 6px;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.service-feature-content > p {
    margin-bottom: 25px;
    font-size: 1.03rem;
}

.service-benefits {
    display: grid;
    gap: 11px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.service-benefits li {
    position: relative;
    padding-left: 28px;
}

.service-benefits li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--primary);
    font-weight: 800;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary);
    font-weight: 700;
}

.service-link i {
    transition: transform var(--transition);
}

.service-link:hover {
    color: #0a3a62;
}

.service-link:hover i {
    transform: translateX(5px);
}


/*==================================================
SERVICES APPROACH
==================================================*/

.services-approach-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.services-approach-grid::before {
    content: "";
    position: absolute;
    top: 31px;
    right: 8%;
    left: 8%;
    height: 2px;
    background: var(--border);
}

.services-approach-item {
    position: relative;
    z-index: 1;
    padding: 0 18px;
    text-align: center;
}

.services-approach-item > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    background: var(--primary);
    border: 6px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    box-shadow: 0 0 0 1px var(--border);
}

.services-approach-item h3 {
    margin-bottom: 12px;
}

.services-approach-item p {
    margin: 0;
}


/*==================================================
FAQ ACCORDION
==================================================*/

.kpis-accordion {
    display: grid;
    gap: 15px;
}

.kpis-accordion .accordion-item {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.kpis-accordion .accordion-button {
    padding: 23px 26px;
    background: #fff;
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    box-shadow: none;
}

.kpis-accordion .accordion-button:not(.collapsed) {
    background: rgba(15, 76, 129, .05);
    color: var(--primary);
    box-shadow: none;
}

.kpis-accordion .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.kpis-accordion .accordion-body {
    padding: 5px 26px 25px;
    line-height: 1.8;
}

/*==================================================
PROCESS PAGE INTRODUCTION
==================================================*/

.process-intro h2 {
    margin-bottom: 24px;
}

.process-intro p {
    margin-bottom: 18px;
}

.process-principles {
    display: grid;
    gap: 18px;
}

.process-principle {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.process-principle:hover {
    transform: translateY(-5px);
    background: #fff;
    border-color: rgba(15, 76, 129, .25);
    box-shadow: var(--shadow);
}

.process-principle-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: rgba(15, 76, 129, .08);
    border-radius: var(--radius);
    color: var(--primary);
    font-size: 1.4rem;
}

.process-principle h3 {
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.process-principle p {
    margin: 0;
}


/*==================================================
DETAILED PROCESS TIMELINE
==================================================*/

.process-timeline {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 47px;
    width: 2px;
    background: var(--border);
}

.process-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 30px;
    padding-bottom: 45px;
}

.process-timeline-item:last-child {
    padding-bottom: 0;
}

.process-timeline-number {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 94px;
    height: 94px;
    background: var(--primary);
    border: 8px solid var(--light);
    border-radius: 50%;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 0 0 1px var(--border);
}

.process-timeline-content {
    padding: 32px 35px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.process-timeline-content:hover {
    transform: translateY(-5px);
    border-color: rgba(15, 76, 129, .25);
    box-shadow: var(--shadow);
}

.process-stage {
    display: block;
    margin-bottom: 9px;
    color: var(--primary);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.process-timeline-content h3 {
    margin-bottom: 14px;
    font-size: 1.45rem;
}

.process-timeline-content > p {
    margin-bottom: 20px;
}

.process-timeline-content ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-timeline-content li {
    position: relative;
    padding-left: 24px;
}

.process-timeline-content li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--primary);
    font-weight: 800;
}


/*==================================================
PROJECT VISIBILITY
==================================================*/

.visibility-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.visibility-card {
    height: 100%;
    padding: 30px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.visibility-card:hover {
    transform: translateY(-6px);
    background: #fff;
    border-color: rgba(15, 76, 129, .25);
    box-shadow: var(--shadow);
}

.visibility-card i {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 1.8rem;
}

.visibility-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.visibility-card p {
    margin: 0;
}


/*==================================================
PROJECT TYPES
==================================================*/

.project-type-card {
    position: relative;
    height: 100%;
    padding: 35px 30px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.project-type-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: .35s ease;
}

.project-type-card:hover {
    transform: translateY(-7px);
    border-color: rgba(15, 76, 129, .25);
    box-shadow: var(--shadow);
}

.project-type-card:hover::before {
    height: 100%;
}

.project-type-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    background: rgba(15, 76, 129, .08);
    border-radius: var(--radius);
    color: var(--primary);
    font-size: 1.55rem;
}

.project-type-card h3 {
    margin-bottom: 14px;
    font-size: 1.25rem;
}

.project-type-card p {
    margin: 0;
}

/* ==================================================
   CONTACT PAGE
================================================== */

.contact-main-section {
    position: relative;
}


/* ==================================================
   CONTACT INTRODUCTION
================================================== */

.contact-intro h2 {
    max-width: 560px;
    margin-bottom: 1.25rem;
}

.contact-intro p {
    max-width: 580px;
    color: var(--kpis-text-muted);
    line-height: 1.8;
}

.contact-intro p:last-child {
    margin-bottom: 0;
}


/* ==================================================
   CONTACT DETAILS
================================================== */

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.25rem;
}

.contact-detail-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid var(--kpis-border);
    border-radius: var(--radius);
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

a.contact-detail-card:hover {
    color: inherit;
    border-color: rgba(var(--primary-rgb), 0.35);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
    transform: translateY(-3px);
}

.contact-detail-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: rgba(var(--primary-rgb), 0.09);
    color: var(--primary);
    font-size: 1.3rem;
}

.contact-detail-content {
    min-width: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.contact-detail-content > span {
    margin-bottom: 0.2rem;
    color: var(--kpis-text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.contact-detail-content strong {
    color: var(--kpis-heading);
    font-size: 1rem;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.contact-detail-content small {
    margin-top: 0.2rem;
    color: var(--kpis-text-muted);
    line-height: 1.5;
}

.contact-detail-arrow {
    color: var(--kpis-text-muted);
    font-size: 1rem;
    transition: color 0.25s ease, transform 0.25s ease;
}

a.contact-detail-card:hover .contact-detail-arrow {
    color: var(--primary);
    transform: translate(2px, -2px);
}

.contact-detail-static {
    cursor: default;
}


/* ==================================================
   CONTACT FORM CARD
================================================== */

.contact-form-card {
    padding: clamp(1.5rem, 4vw, 2.75rem);
    border: 1px solid var(--kpis-border);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h2 {
    margin-bottom: 0.75rem;
}

.contact-form-header p {
    max-width: 570px;
    margin-bottom: 0;
    color: var(--kpis-text-muted);
    line-height: 1.7;
}

.kpis-form-group {
    position: relative;
}

.kpis-form-group .form-label {
    margin-bottom: 0.55rem;
    color: var(--kpis-heading);
    font-size: 0.9rem;
    font-weight: 700;
}

.kpis-form-group .form-control {
    min-height: 56px;
    padding: .9rem 1rem;
    border: 1px solid #d9e2ec;
    border-radius: var(--radius);
    background: #fff;
    transition: all .25s ease;
}

.kpis-form-group textarea.form-control {
    min-height: 170px;
    resize: vertical;
}

.kpis-form-group .form-control::placeholder {
    color: #98a2b3;
}

.kpis-form-group .form-control:hover {
    border-color: #b8c7d9;
}

.kpis-form-group .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .2rem rgba(var(--primary-rgb), .10);
}

.field-error {
    display: block;
    min-height: 22px;
    margin-top: 6px;
    color: #dc3545;
    font-size: .85rem;
}

.form-control.error {
    border-color: #dc3545;
}

.form-control.error:focus {
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.15);
}

.field-validation-error {
    display: block;
    margin-top: 0.4rem;
    color: #c62828;
    font-size: 0.82rem;
    line-height: 1.4;
}

.contact-validation-summary {
    margin-bottom: 1.5rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(220, 53, 69, 0.25);
    border-radius: var(--radius);
    background: rgba(220, 53, 69, 0.06);
    color: #b42318;
    font-size: 0.9rem;
}

.contact-validation-summary ul {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.contact-form-footer {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 0.25rem;
}

.contact-submit-btn {
    display: inline-flex;
    min-width: 170px;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    white-space: nowrap;
}

.contact-submit-btn i {
    transition: transform 0.25s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(4px);
}

.contact-form-footer p {
    max-width: 350px;
    margin: 0;
    color: var(--kpis-text-muted);
    font-size: 0.78rem;
    line-height: 1.55;
}


/* ==================================================
   CONTACT SUCCESS MESSAGE
================================================== */

.contact-success-message {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 1.75rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(25, 135, 84, 0.22);
    border-radius: var(--radius);
    background: rgba(25, 135, 84, 0.07);
}

.contact-success-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #198754;
    color: #fff;
}

.contact-success-message strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #146c43;
}

.contact-success-message p {
    margin: 0;
    color: #287a55;
    font-size: 0.9rem;
    line-height: 1.55;
}


/* ==================================================
   WHAT HAPPENS NEXT
================================================== */

.contact-next-steps {
    margin-top: 3rem;
}

.contact-step-card {
    position: relative;
    height: 100%;
    padding: 2rem;
    overflow: hidden;
    border: 1px solid var(--kpis-border);
    border-radius: var(--radius-md);
    background: #fff;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-step-card:hover {
    border-color: rgba(var(--primary-rgb), 0.28);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
    transform: translateY(-5px);
}

.contact-step-number {
    position: absolute;
    top: 0.8rem;
    right: 1.25rem;
    color: rgba(var(--primary-rgb), 0.08);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
}

.contact-step-icon {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.35rem;
    border-radius: var(--radius);
    background: rgba(var(--primary-rgb), 0.09);
    color: var(--primary);
    font-size: 1.35rem;
}

.contact-step-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.contact-step-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    color: var(--kpis-text-muted);
    line-height: 1.7;
}


/* ==================================================
   CONTACT REASSURANCE
================================================== */

.contact-reassurance {
    padding: clamp(1.75rem, 5vw, 3.5rem);
    border: 1px solid var(--kpis-border);
    border-radius: var(--radius-lg);
    background: linear-gradient( 135deg, rgba(var(--primary-rgb), 0.045), rgba(var(--primary-rgb), 0.015) );
}

.contact-reassurance h2 {
    margin-bottom: 1.25rem;
}

.contact-reassurance p {
    color: var(--kpis-text-muted);
    line-height: 1.75;
}

.contact-reassurance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-reassurance-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.25rem;
    border: 1px solid var(--kpis-border);
    border-radius: var(--radius);
    background: #fff;
}

.contact-reassurance-item > i {
    margin-top: 0.1rem;
    color: var(--primary);
    font-size: 1.25rem;
}

.contact-reassurance-item h3 {
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.contact-reassurance-item p {
    margin-bottom: 0;
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ==================================================
   RESOURCES PAGE
================================================== */

.resources-intro h2 {
    max-width: 600px;
    margin-bottom: 1.25rem;
}

.resources-intro p {
    max-width: 600px;
    color: var(--kpis-text-muted);
    line-height: 1.8;
}


/* ==================================================
   RESOURCE FOCUS
================================================== */

.resource-focus-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-focus-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.35rem;
    border: 1px solid var(--kpis-border);
    border-radius: var(--radius);
    background: #fff;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.resource-focus-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
    transform: translateY(-3px);
}

.resource-focus-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: rgba(var(--primary-rgb), 0.09);
    color: var(--primary);
    font-size: 1.3rem;
}

.resource-focus-card h3 {
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
}

.resource-focus-card p {
    margin-bottom: 0;
    color: var(--kpis-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}


/* ==================================================
   RESOURCE CATEGORIES
================================================== */

.resource-category-grid {
    margin-top: 3rem;
}

.resource-category-card {
    position: relative;
    display: flex;
    height: 100%;
    flex-direction: column;
    padding: 2rem;
    border: 1px solid var(--kpis-border);
    border-radius: var(--radius);
    background: #fff;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.resource-category-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    border-radius: var(--radius) 0 0 var(--radius);
    background: var(--primary);
    content: "";
    transition: height 0.3s ease;
}

.resource-category-card:hover {
    border-color: rgba(var(--primary-rgb), 0.28);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
    transform: translateY(-5px);
}

.resource-category-card:hover::before {
    height: 100%;
}

.resource-category-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    border-radius: var(--radius);
    background: rgba(var(--primary-rgb), 0.09);
    color: var(--primary);
    font-size: 1.45rem;
}

.resource-category-label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.09em;
}

.resource-category-card h3 {
    margin-bottom: 0.85rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.resource-category-card p {
    margin-bottom: 1.5rem;
    color: var(--kpis-text-muted);
    line-height: 1.7;
}

.resource-category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: auto;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.resource-category-link i {
    transition: transform 0.25s ease;
}

.resource-category-link:hover i {
    transform: translateX(4px);
}


/* ==================================================
   FEATURED RESOURCE
================================================== */

.featured-resource {
    padding: clamp(1.75rem, 5vw, 4rem);
    overflow: hidden;
    border: 1px solid var(--kpis-border);
    border-radius: var(--radius-lg);
    background: linear-gradient( 135deg, rgba(var(--primary-rgb), 0.055), rgba(var(--primary-rgb), 0.015) );
}

.featured-resource-content h2 {
    margin-bottom: 1.2rem;
}

.featured-resource-content > p {
    margin-bottom: 1.5rem;
    color: var(--kpis-text-muted);
    line-height: 1.75;
}

.featured-resource-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 0 0 1.75rem;
    padding: 0;
    list-style: none;
}

.featured-resource-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: var(--kpis-heading);
    font-size: 0.92rem;
}

.featured-resource-list i {
    margin-top: 0.1rem;
    color: var(--primary);
    font-size: 1.05rem;
}

.featured-resource-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}

.featured-resource-window {
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    border: 1px solid rgba(var(--primary-rgb), 0.18);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
    transform: rotate(-2deg);
}

.featured-resource-window-header {
    display: flex;
    gap: 0.45rem;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid var(--kpis-border);
}

.featured-resource-window-header span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d7dee7;
}

.featured-resource-window-body {
    padding: 2rem;
}

.featured-resource-line {
    height: 12px;
    margin-bottom: 0.9rem;
    border-radius: var(--radius);
    background: #e9eef5;
}

.featured-resource-line-sm {
    width: 45%;
    background: rgba(var(--primary-rgb), 0.2);
}

.featured-resource-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.featured-resource-metrics > div {
    padding: 1.2rem;
    border-radius: var(--radius);
    background: rgba(var(--primary-rgb), 0.06);
    text-align: center;
}

.featured-resource-metrics strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--primary);
    font-size: 1.7rem;
}

.featured-resource-metrics span {
    color: var(--kpis-text-muted);
    font-size: 0.78rem;
    line-height: 1.4;
}

/* ==================================================
   RESOURCE STATS
================================================== */

.resource-stats {
    margin-top: 1rem;
}

.resource-stat-card {
    height: 100%;
    padding: 2rem 1.75rem;
    background: #fff;
    border: 1px solid #e9edf3;
    border-radius: var(--radius);
    text-align: center;
    transition: all .3s ease;
}

.resource-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
    border-color: rgba(var(--primary-rgb), .25);
}

.resource-stat-number {
    margin-bottom: .75rem;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
}

.resource-stat-title {
    margin-bottom: .75rem;
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
}

.resource-stat-card p {
    margin: 0;
    color: #6b7280;
    font-size: .95rem;
    line-height: 1.7;
}

.resource-stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), .08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.resource-stat-icon i {
    font-size: 1.6rem;
    color: var(--primary);
}


/* ==================================================
   LATEST ARTICLES
================================================== */

.latest-resource-grid {
    margin-top: 3rem;
}

.resource-article-card {
    display: flex;
    height: 100%;
    flex-direction: column;
    padding: 1.75rem;
    border: 1px solid var(--kpis-border);
    border-radius: var(--radius);
    background: #fff;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.resource-article-card:hover {
    border-color: rgba(var(--primary-rgb), 0.28);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
    transform: translateY(-4px);
}

.resource-article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: var(--kpis-text-muted);
    font-size: 0.76rem;
}

.resource-article-meta span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary);
    font-weight: 700;
}

.resource-article-card h3 {
    margin-bottom: 0.85rem;
    font-size: 1.15rem;
    line-height: 1.45;
}

.resource-article-card p {
    margin-bottom: 1.5rem;
    color: var(--kpis-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.resource-read-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: auto;
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.resource-read-link i {
    transition: transform 0.25s ease;
}

.resource-read-link:hover i {
    transform: translateX(4px);
}

.resources-view-all {
    margin-top: 2.5rem;
    text-align: center;
}


/* ==================================================
   RESOURCE TOPICS
================================================== */

.resource-topic-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.resource-topic-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.15rem 1.25rem;
    border: 1px solid var(--kpis-border);
    border-radius: var(--radius);
    background: #fff;
    color: var(--kpis-heading);
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.resource-topic-card i {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    font-size: 1.1rem;
}

.resource-topic-card:hover {
    color: var(--primary);
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    transform: translateY(-3px);
}

/* ==================================================
   SERVICE SINGLE PAGE
================================================== */

.service-hero {
    position: relative;
    overflow: hidden;
    padding: 175px 0 95px;
    background: var(--light);
}

.service-hero::after {
    content: "";
    position: absolute;
    top: -220px;
    right: -160px;
    width: 620px;
    height: 620px;
    background: radial-gradient( circle, rgba(15, 76, 129, .10), transparent 70% );
    pointer-events: none;
}

.service-hero .container {
    position: relative;
    z-index: 1;
}

.service-eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-hero h1 {
    max-width: 680px;
    margin-top: 15px;
    margin-bottom: 24px;
    color: var(--heading);
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: normal;
    line-height: 1.15;
}

.service-hero h1 span {
    color: var(--primary);
}

.service-hero-lead {
    max-width: 650px;
    margin-bottom: 35px;
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.75;
}

.service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.service-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    color: var(--text);
    font-size: .94rem;
    font-weight: 600;
}

.service-hero-points span {
    display: inline-flex;
    align-items: center;
}

.service-hero-points i {
    margin-right: 7px;
    color: var(--primary);
}

/* ==================================================
   HERO DASHBOARD ILLUSTRATION
================================================== */

.service-hero-visual {
    position: relative;
    padding: 30px 0 30px 25px;
}

.software-window {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow);
}

.software-window-header {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 46px;
    padding: 0 18px;
    border-bottom: 1px solid var(--border);
    background: var(--light);
}

.software-window-header > span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
}

.software-window-header strong {
    margin-left: 8px;
    color: var(--text);
    font-size: .8rem;
}

.software-window-body {
    display: flex;
    min-height: 390px;
}

.software-sidebar {
    width: 145px;
    padding: 24px 14px;
    background: var(--primary);
    color: rgba(255, 255, 255, .82);
}

.software-logo {
    margin-bottom: 30px;
    padding-left: 10px;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
}

.software-nav {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 9px;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: .76rem;
}

.software-nav.active {
    background: rgba(255, 255, 255, .16);
    color: #fff;
}

.software-content {
    flex: 1;
    padding: 24px;
    background: var(--light);
}

.software-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.software-stat {
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
}

.software-stat small,
.software-stat span {
    display: block;
    color: var(--text);
    font-size: .63rem;
}

.software-stat strong {
    display: block;
    margin: 5px 0;
    color: var(--heading);
    font-size: 1.28rem;
}

.software-chart {
    height: 220px;
    margin-top: 18px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
}

.software-chart-heading {
    color: var(--heading);
    font-size: .75rem;
    font-weight: 700;
}

.software-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 150px;
    padding-top: 20px;
}

.software-bars span {
    flex: 1;
    min-height: 15px;
    border-radius: 5px 5px 0 0;
    background: var(--primary);
    opacity: .82;
}

.software-bars span:nth-child(even) {
    opacity: .55;
}

.service-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 17px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.service-floating-card i {
    color: var(--primary);
    font-size: 1.3rem;
}

.service-floating-card span {
    display: flex;
    flex-direction: column;
    color: var(--text);
    font-size: .72rem;
}

.service-floating-card strong {
    color: var(--heading);
    font-size: .83rem;
}

.service-floating-card-one {
    top: 0;
    right: 20px;
}

.service-floating-card-two {
    right: -15px;
    bottom: 0;
}

/* ==================================================
   SERVICE SECTIONS
================================================== */

.service-section {
    padding: var(--section-space) 0;
}

.service-section-muted {
    background: var(--light);
}

.service-section-dark {
    background: var(--primary);
    color: #fff;
}

.service-overview h2,
.service-section h2,
.service-cta h2 {
    margin-bottom: 20px;
    color: var(--heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.2;
}

.service-section-dark h2 {
    color: #fff;
}

.service-large-copy {
    color: var(--heading);
    font-size: 1.15rem;
    line-height: 1.8;
}

.service-section p {
    color: var(--text);
    line-height: 1.75;
}

.service-section-heading {
    max-width: 700px;
    margin: 0 auto 70px;
    text-align: center;
}

.service-section-heading-light p {
    color: rgba(255, 255, 255, .78);
}

/* ==================================================
   CHALLENGE CARDS
================================================== */

.service-feature-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    padding: 35px 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    transition: var(--transition);
}

.service-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: .35s ease;
}

.service-feature-card:hover {
    transform: translateY(-7px);
    border-color: rgba(15, 76, 129, .25);
    box-shadow: var(--shadow);
}

.service-feature-card:hover::before {
    height: 100%;
}

.service-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    border-radius: var(--radius);
    background: rgba(15, 76, 129, .08);
    color: var(--primary);
    font-size: 1.55rem;
}

.service-feature-card h3,
.service-solution-card h3,
.service-benefit-item h3 {
    color: var(--heading);
    font-size: 1.15rem;
    font-weight: 700;
}

.service-feature-card p,
.service-solution-card p,
.service-benefit-item p {
    margin-bottom: 0;
}

/* ==================================================
   WHAT WE BUILD
================================================== */

.service-solution-card {
    display: flex;
    gap: 20px;
    height: 100%;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    transition: var(--transition);
}

.service-solution-card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 76, 129, .25);
    box-shadow: var(--shadow);
}

.service-solution-number {
    flex: 0 0 auto;
    color: var(--primary);
    font-family: "Manrope", sans-serif;
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: 2px;
}

/* ==================================================
   SERVICE PROCESS
================================================== */

.service-process {
    max-width: 940px;
    margin: auto;
}

.service-process-step {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    padding: 27px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.service-process-step > span {
    color: rgba(255, 255, 255, .7);
    font-family: "Manrope", sans-serif;
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.service-process-step h3 {
    margin-bottom: 8px;
    color: #fff;
    font-size: 1.15rem;
}

.service-process-step p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
}

/* ==================================================
   BENEFITS
================================================== */

.service-benefit-list {
    display: grid;
    gap: 14px;
}

.service-benefit-item {
    display: flex;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    transition: var(--transition);
}

.service-benefit-item:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 76, 129, .25);
    box-shadow: var(--shadow);
}

.service-benefit-item > i {
    color: var(--primary);
    font-size: 1.4rem;
}

/* ==================================================
   SERVICE CTA
================================================== */

.service-cta {
    padding: var(--section-space) 0;
    background: #fff;
}

.service-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 70px;
    border-radius: var(--radius-lg);
    background: linear-gradient( 135deg, var(--primary), #174f80 );
    color: #fff;
}

.service-cta .service-eyebrow {
    color: rgba(255, 255, 255, .72);
}

.service-cta h2 {
    max-width: 800px;
    margin-bottom: 12px;
    color: #fff;
}

.service-cta p {
    max-width: 750px;
    margin: 0;
    color: rgba(255, 255, 255, .85);
    font-size: 1.06rem;
}

.service-cta .kpis-btn {
    flex-shrink: 0;
    background: #fff;
    color: var(--primary);
}

.service-cta .kpis-btn:hover {
    background: var(--light);
    color: var(--primary);
}

/* ==================================================
   PROCESS AUTOMATION HERO ILLUSTRATION
================================================== */

.automation-window {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow);
}

.automation-window-header {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 46px;
    padding: 0 18px;
    border-bottom: 1px solid var(--border);
    background: var(--light);
}

.automation-window-header > span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
}

.automation-window-header strong {
    margin-left: 8px;
    color: var(--text);
    font-size: .8rem;
}

.automation-window-body {
    min-height: 410px;
    padding: 28px;
    background: var(--light);
}

.automation-flow {
    max-width: 470px;
    margin: auto;
}

.automation-step {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
}

.automation-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(var(--primary-rgb), .08);
    color: var(--primary);
    font-size: 1.2rem;
}

.automation-step small,
.automation-step strong,
.automation-step span {
    display: block;
}

.automation-step small {
    margin-bottom: 2px;
    color: var(--primary);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.automation-step strong {
    margin-bottom: 2px;
    color: var(--heading);
    font-size: .88rem;
}

.automation-step div > span {
    color: var(--text);
    font-size: .69rem;
}

.automation-connector {
    width: 2px;
    height: 20px;
    margin: 0 0 0 40px;
    background: var(--border);
}

.automation-complete {
    color: var(--primary);
    font-size: 1.15rem;
}

.automation-pending {
    color: #94a3b8;
    font-size: 1.1rem;
}

.automation-status {
    padding: 5px 8px;
    border-radius: 20px;
    background: rgba(var(--primary-rgb), .08);
    color: var(--primary);
    font-size: .63rem;
    font-weight: 700;
    white-space: nowrap;
}

/* ==================================================
   WEB APPLICATION HERO ILLUSTRATION
================================================== */

.webapp-window {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow);
}

.webapp-window-header {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 48px;
    padding: 0 16px;
    border-bottom: 1px solid var(--border);
    background: var(--light);
}

.webapp-window-controls {
    display: flex;
    gap: 6px;
}

.webapp-window-controls span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
}

.webapp-address-bar {
    flex: 1;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--text);
    font-size: .67rem;
}

.webapp-address-bar i {
    margin-right: 6px;
    color: var(--primary);
}

.webapp-window-body {
    display: flex;
    min-height: 405px;
}

.webapp-sidebar {
    width: 145px;
    padding: 22px 14px;
    background: var(--primary);
    color: rgba(255, 255, 255, .8);
}

.webapp-brand {
    margin-bottom: 24px;
    padding-left: 8px;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: .95rem;
    font-weight: 800;
}

.webapp-user {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    padding: 10px 7px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.webapp-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    font-size: .66rem;
    font-weight: 700;
}

.webapp-user strong,
.webapp-user small {
    display: block;
}

.webapp-user strong {
    color: #fff;
    font-size: .67rem;
}

.webapp-user small {
    font-size: .57rem;
}

.webapp-nav-item {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 7px;
    padding: 9px;
    border-radius: var(--radius-sm);
    font-size: .7rem;
}

.webapp-nav-item.active {
    background: rgba(255, 255, 255, .16);
    color: #fff;
}

.webapp-content {
    flex: 1;
    min-width: 0;
    padding: 22px;
    background: var(--light);
}

.webapp-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
}

.webapp-heading small,
.webapp-heading strong {
    display: block;
}

.webapp-heading small {
    color: var(--text);
    font-size: .65rem;
}

.webapp-heading strong {
    color: var(--heading);
    font-size: .96rem;
}

.webapp-heading button {
    padding: 7px 10px;
    border: 0;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: #fff;
    font-size: .64rem;
}

.webapp-heading button i {
    margin-right: 4px;
}

.webapp-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.webapp-stat-card {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
}

.webapp-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: var(--radius-sm);
    background: rgba(var(--primary-rgb), .08);
    color: var(--primary);
    font-size: .9rem;
}

.webapp-stat-card small,
.webapp-stat-card strong {
    display: block;
}

.webapp-stat-card small {
    color: var(--text);
    font-size: .55rem;
}

.webapp-stat-card strong {
    color: var(--heading);
    font-size: .95rem;
}

.webapp-project-panel {
    margin-top: 15px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
}

.webapp-panel-heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--heading);
    font-size: .7rem;
}

.webapp-panel-heading span {
    color: var(--primary);
    font-weight: 700;
}

.webapp-project-row {
    display: grid;
    grid-template-columns: minmax(110px, 1.3fr) minmax(70px, 1fr) 28px;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    border-top: 1px solid var(--border);
}

.webapp-project-row strong,
.webapp-project-row small {
    display: block;
}

.webapp-project-row strong {
    color: var(--heading);
    font-size: .62rem;
}

.webapp-project-row small {
    color: var(--text);
    font-size: .55rem;
}

.webapp-project-row > span {
    color: var(--primary);
    font-size: .6rem;
    font-weight: 700;
    text-align: right;
}

.webapp-progress {
    height: 6px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(var(--primary-rgb), .08);
}

.webapp-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--primary);
}

/* ==================================================
   WEBSITE DESIGN HERO ILLUSTRATION
================================================== */

.website-hero-visual {
    min-height: 520px;
}

.website-browser {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow);
}

.website-browser-header {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 48px;
    padding: 0 16px;
    border-bottom: 1px solid var(--border);
    background: var(--light);
}

.website-browser-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

.website-browser-controls span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
}

.website-browser-address {
    flex: 1;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--text);
    font-size: .67rem;
}

.website-browser-address i {
    margin-right: 5px;
    color: var(--primary);
}

.website-browser-body {
    min-height: 420px;
    background: #fff;
}

.website-preview-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 22px;
    border-bottom: 1px solid var(--border);
}

.website-preview-logo {
    color: var(--primary);
    font-family: "Manrope", sans-serif;
    font-size: .9rem;
    font-weight: 800;
}

.website-preview-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    color: var(--text);
    font-size: .58rem;
    font-weight: 600;
}

.website-preview-header-cta {
    padding: 7px 10px;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: #fff;
    font-size: .56rem;
    font-weight: 700;
}

.website-preview-hero {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    min-height: 220px;
    padding: 28px 26px;
    background: radial-gradient( circle at 85% 20%, rgba(var(--primary-rgb), .10), transparent 35% ), linear-gradient( 135deg, rgba(var(--primary-rgb), .04), #fff );
}

.website-preview-hero-copy {
    max-width: 260px;
}

.website-preview-tag {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: .51rem;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.website-preview-hero-copy > strong {
    display: block;
    margin-bottom: 9px;
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: 1.23rem;
    font-weight: 800;
    line-height: 1.25;
}

.website-preview-hero-copy p {
    max-width: 220px;
    margin-bottom: 14px;
    color: var(--text);
    font-size: .59rem;
    line-height: 1.65;
}

.website-preview-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.website-preview-actions span {
    padding: 7px 10px;
    border-radius: var(--radius-sm);
    font-size: .53rem;
    font-weight: 700;
}

.website-preview-actions span:first-child {
    background: var(--primary);
    color: #fff;
}

.website-preview-actions span:last-child {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--heading);
}

.website-preview-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.website-preview-image-shape {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 145px;
    height: 145px;
    border-radius: 48% 52% 48% 52%;
    background: linear-gradient( 145deg, rgba(var(--primary-rgb), .16), rgba(var(--primary-rgb), .05) );
    color: var(--primary);
    font-size: 3.4rem;
    transform: rotate(-4deg);
}

.website-preview-image-shape i {
    transform: rotate(4deg);
}

.website-preview-image-card {
    position: absolute;
    right: 3px;
    bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 11px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.website-preview-image-card i {
    color: var(--primary);
    font-size: .9rem;
}

.website-preview-image-card small,
.website-preview-image-card strong {
    display: block;
}

.website-preview-image-card small {
    color: var(--text);
    font-size: .49rem;
}

.website-preview-image-card strong {
    color: var(--heading);
    font-size: .69rem;
}

.website-preview-services {
    padding: 20px 24px 23px;
}

.website-preview-section-heading {
    margin-bottom: 14px;
    text-align: center;
}

.website-preview-section-heading small,
.website-preview-section-heading strong {
    display: block;
}

.website-preview-section-heading small {
    margin-bottom: 3px;
    color: var(--primary);
    font-size: .48rem;
    font-weight: 800;
    letter-spacing: .7px;
}

.website-preview-section-heading strong {
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: .78rem;
}

.website-preview-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.website-preview-service-grid article {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
}

.website-preview-service-grid article i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    margin-bottom: 8px;
    border-radius: var(--radius-sm);
    background: rgba(var(--primary-rgb), .08);
    color: var(--primary);
    font-size: .72rem;
}

.website-preview-service-grid strong,
.website-preview-service-grid span {
    display: block;
}

.website-preview-service-grid strong {
    margin-bottom: 4px;
    color: var(--heading);
    font-size: .58rem;
}

.website-preview-service-grid span {
    color: var(--text);
    font-size: .48rem;
    line-height: 1.5;
}

/* Mobile website preview */

.website-mobile-preview {
    position: absolute;
    right: -18px;
    bottom: -24px;
    width: 132px;
    padding: 8px;
    border: 5px solid var(--heading);
    border-radius: 22px;
    background: var(--heading);
    box-shadow: var(--shadow);
    z-index: 3;
}

.website-mobile-speaker {
    width: 28px;
    height: 3px;
    margin: 0 auto 7px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .28);
}

.website-mobile-screen {
    overflow: hidden;
    min-height: 224px;
    border-radius: 12px;
    background: #fff;
}

.website-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px;
    border-bottom: 1px solid var(--border);
    color: var(--primary);
    font-size: .53rem;
}

.website-mobile-header i {
    font-size: .74rem;
}

.website-mobile-hero {
    padding: 17px 10px;
    background: rgba(var(--primary-rgb), .05);
}

.website-mobile-hero span,
.website-mobile-hero strong {
    display: block;
}

.website-mobile-hero span {
    margin-bottom: 6px;
    color: var(--primary);
    font-size: .38rem;
    font-weight: 800;
    text-transform: uppercase;
}

.website-mobile-hero strong {
    margin-bottom: 10px;
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: .7rem;
    line-height: 1.3;
}

.website-mobile-hero div {
    display: inline-block;
    padding: 6px 8px;
    border-radius: 4px;
    background: var(--primary);
    color: #fff;
    font-size: .42rem;
    font-weight: 700;
}

.website-mobile-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    padding: 9px;
}

.website-mobile-cards span {
    height: 52px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: linear-gradient( 145deg, rgba(var(--primary-rgb), .08), #fff );
}

/* Website quality cards */

.website-standard-card {
    height: 100%;
    padding: 28px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    text-align: center;
    transition: var(--transition);
}

.website-standard-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--primary-rgb), .24);
    box-shadow: var(--shadow-sm);
}

.website-standard-card > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), .08);
    color: var(--primary);
    font-size: 1.35rem;
}

.website-standard-card h3 {
    margin-bottom: 10px;
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.website-standard-card p {
    margin: 0;
    color: var(--text);
    font-size: .91rem;
    line-height: 1.7;
}

/* ==================================================
   IT CONSULTING HERO ILLUSTRATION
================================================== */

.consulting-hero-visual {
    min-height: 520px;
}

.consulting-board {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow);
}

.consulting-board-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 72px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--light);
}

.consulting-board-header small,
.consulting-board-header strong {
    display: block;
}

.consulting-board-header small {
    margin-bottom: 3px;
    color: var(--primary);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.consulting-board-header strong {
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: .92rem;
}

.consulting-board-status {
    flex: 0 0 auto;
    padding: 6px 10px;
    border-radius: 20px;
    background: rgba(var(--primary-rgb), .08);
    color: var(--primary);
    font-size: .61rem;
    font-weight: 700;
}

.consulting-board-body {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(155px, .75fr);
    min-height: 410px;
}

.consulting-roadmap {
    position: relative;
    padding: 28px 24px 24px 29px;
    background: #fff;
}

.consulting-roadmap-line {
    position: absolute;
    top: 45px;
    bottom: 47px;
    left: 49px;
    width: 2px;
    background: var(--border);
}

.consulting-roadmap-item {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 15px;
    margin-bottom: 24px;
}

.consulting-roadmap-item:last-child {
    margin-bottom: 0;
}

.consulting-roadmap-marker {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 2px solid var(--border);
    border-radius: 50%;
    background: #fff;
    color: #94a3b8;
    font-size: .66rem;
    font-weight: 800;
}

.consulting-roadmap-item.complete
.consulting-roadmap-marker {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.consulting-roadmap-item.active
.consulting-roadmap-marker {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), .08);
    color: var(--primary);
    box-shadow: 0 0 0 5px rgba(var(--primary-rgb), .06);
}

.consulting-roadmap-item small,
.consulting-roadmap-item strong {
    display: block;
}

.consulting-roadmap-item small {
    margin-bottom: 3px;
    color: var(--primary);
    font-size: .56rem;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.consulting-roadmap-item strong {
    margin-bottom: 4px;
    color: var(--heading);
    font-size: .78rem;
}

.consulting-roadmap-item p {
    margin: 0;
    color: var(--text);
    font-size: .61rem;
    line-height: 1.55;
}

.consulting-summary-panel {
    padding: 25px 19px;
    border-left: 1px solid var(--border);
    background: var(--light);
}

.consulting-summary-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    color: var(--heading);
    font-size: .76rem;
}

.consulting-summary-heading i {
    color: var(--primary);
}

.consulting-priority {
    margin-bottom: 17px;
}

.consulting-priority > span {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: .6rem;
    font-weight: 600;
}

.consulting-priority > div {
    height: 6px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(var(--primary-rgb), .08);
}

.consulting-priority > div span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--primary);
}

.consulting-decision-card {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 13px;
    border: 1px solid rgba(var(--primary-rgb), .15);
    border-radius: var(--radius-sm);
    background: #fff;
}

.consulting-decision-card > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    border-radius: var(--radius-sm);
    background: rgba(var(--primary-rgb), .08);
    color: var(--primary);
    font-size: .9rem;
}

.consulting-decision-card small,
.consulting-decision-card strong {
    display: block;
}

.consulting-decision-card small {
    margin-bottom: 2px;
    color: var(--text);
    font-size: .48rem;
}

.consulting-decision-card strong {
    color: var(--heading);
    font-size: .6rem;
    line-height: 1.35;
}

/* Consulting principle cards */

.consulting-principle-card {
    height: 100%;
    padding: 28px 23px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    text-align: center;
    transition: var(--transition);
}

.consulting-principle-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--primary-rgb), .24);
    box-shadow: var(--shadow-sm);
}

.consulting-principle-card > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), .08);
    color: var(--primary);
    font-size: 1.35rem;
}

.consulting-principle-card h3 {
    margin-bottom: 10px;
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.consulting-principle-card p {
    margin: 0;
    color: var(--text);
    font-size: .91rem;
    line-height: 1.7;
}

/* ==================================================
   INSIGHTS
================================================== */

.insights-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 100px;
    background: radial-gradient( circle at 85% 18%, rgba(var(--primary-rgb), .09), transparent 33% ), linear-gradient( 180deg, rgba(var(--primary-rgb), .025), #fff );
}

.insights-hero h1 {
    max-width: 760px;
    margin: 18px 0 22px;
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.insights-hero h1 span {
    color: var(--primary);
}

.insights-hero > .container > .row > div:first-child > p {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.8;
}

.insights-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}

/* Hero visual */

.insights-hero-visual {
    position: relative;
    min-height: 440px;
}

.insights-visual-window {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow);
}

.insights-visual-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 18px;
    border-bottom: 1px solid var(--border);
    background: var(--light);
}

.insights-visual-header > div {
    display: flex;
    gap: 6px;
}

.insights-visual-header > div span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
}

.insights-visual-header small {
    color: var(--text);
    font-size: .67rem;
    font-weight: 700;
}

.insights-visual-body {
    padding: 24px;
}

.insights-visual-feature {
    padding: 27px;
    border-radius: var(--radius);
    background: linear-gradient( 135deg, rgba(var(--primary-rgb), .12), rgba(var(--primary-rgb), .035) );
}

.insights-visual-feature > span,
.insights-visual-feature > strong {
    display: block;
}

.insights-visual-feature > span {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.insights-visual-feature > strong {
    max-width: 330px;
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: 1.15rem;
    line-height: 1.45;
}

.insights-visual-lines {
    display: grid;
    gap: 7px;
    margin-top: 21px;
}

.insights-visual-lines i {
    display: block;
    height: 7px;
    border-radius: 10px;
    background: rgba(var(--primary-rgb), .12);
}

.insights-visual-lines i:nth-child(1) {
    width: 90%;
}

.insights-visual-lines i:nth-child(2) {
    width: 76%;
}

.insights-visual-lines i:nth-child(3) {
    width: 55%;
}

.insights-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.insights-visual-grid article {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.insights-visual-grid article i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: var(--radius-sm);
    background: rgba(var(--primary-rgb), .08);
    color: var(--primary);
}

.insights-visual-grid article span {
    color: var(--heading);
    font-size: .72rem;
    font-weight: 700;
}

.insights-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.insights-floating-card > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    border-radius: var(--radius-sm);
    background: rgba(var(--primary-rgb), .08);
    color: var(--primary);
}

.insights-floating-card strong,
.insights-floating-card span {
    display: block;
}

.insights-floating-card strong {
    color: var(--heading);
    font-size: .7rem;
}

.insights-floating-card span {
    margin-top: 2px;
    color: var(--text);
    font-size: .57rem;
}

.insights-floating-card-one {
    left: -28px;
    bottom: 44px;
}

.insights-floating-card-two {
    right: -24px;
    top: 84px;
}

/* Shared insights sections */

.insights-section {
    padding: 100px 0;
}

.insights-section-heading {
    max-width: 760px;
    margin-bottom: 44px;
}

.insights-section-heading-inline {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    max-width: none;
    gap: 32px;
}

.insights-section-heading h2 {
    margin: 15px 0 12px;
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.85rem, 3vw, 2.55rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.insights-section-heading p {
    max-width: 700px;
    margin: 0;
    color: var(--text);
    line-height: 1.8;
}

.insights-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    padding-bottom: 4px;
    color: var(--primary);
    font-size: .92rem;
    font-weight: 700;
    text-decoration: none;
}

.insights-text-link i {
    transition: transform .2s ease;
}

.insights-text-link:hover i {
    transform: translateX(4px);
}

/* Featured insight */

.featured-insight-section {
    background: #fff;
}

.featured-insight {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.featured-insight-image {
    display: block;
    min-height: 100%;
    background: var(--light);
}

.featured-insight-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.featured-insight-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 100%;
    padding: 54px;
}

.featured-insight-content h2 {
    margin: 18px 0 17px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.65rem, 2.5vw, 2.3rem);
    font-weight: 800;
    line-height: 1.25;
}

.featured-insight-content h2 a {
    color: var(--heading);
    text-decoration: none;
}

.featured-insight-content h2 a:hover {
    color: var(--primary);
}

.featured-insight-content > p {
    margin-bottom: 23px;
    color: var(--text);
    line-height: 1.8;
}

.featured-insight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 27px;
    color: var(--text);
    font-size: .83rem;
}

.featured-insight-meta span,
.featured-insight-meta time {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.featured-insight-meta i {
    color: var(--primary);
}

/* Topics */

.insights-topics-section {
    background: var(--light);
}

.insights-topic-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.insights-topic-card {
    display: flex;
    gap: 17px;
    min-height: 100%;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.insights-topic-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--primary-rgb), .24);
    box-shadow: var(--shadow-sm);
}

.insights-topic-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: var(--radius-sm);
    background: rgba(var(--primary-rgb), .08);
    color: var(--primary);
    font-size: 1.1rem;
}

.insights-topic-card h3 {
    margin: 2px 0 8px;
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.insights-topic-card p {
    margin: 0 0 13px;
    color: var(--text);
    font-size: .88rem;
    line-height: 1.65;
}

.insights-topic-card > div:last-child > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: .78rem;
    font-weight: 700;
}

/* Insight cards */

.latest-insights-section {
    background: #fff;
}

.insight-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    transition: var(--transition);
}

.insight-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--primary-rgb), .24);
    box-shadow: var(--shadow-sm);
}

.insight-card-image-link {
    display: block;
}

.insight-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--light);
}

.insight-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.insight-card:hover .insight-card-image img {
    transform: scale(1.035);
}

.insight-card-featured {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 9px;
    border-radius: 20px;
    background: var(--primary);
    color: #fff;
    font-size: .66rem;
    font-weight: 700;
}

.insight-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
}

.insight-card-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.insight-topic-link {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 20px;
    background: rgba(var(--primary-rgb), .07);
    color: var(--primary);
    font-size: .68rem;
    font-weight: 700;
    text-decoration: none;
}

.insight-topic-link:hover {
    background: rgba(var(--primary-rgb), .13);
    color: var(--primary);
}

.insight-card h3 {
    margin: 16px 0 11px;
    font-family: "Manrope", sans-serif;
    font-size: 1.12rem;
    font-weight: 750;
    line-height: 1.45;
}

.insight-card h3 a {
    color: var(--heading);
    text-decoration: none;
}

.insight-card h3 a:hover {
    color: var(--primary);
}

.insight-card-body > p {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 20px;
    color: var(--text);
    font-size: .91rem;
    line-height: 1.72;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.insight-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--text);
    font-size: .76rem;
}

.insight-card-meta > span[aria-hidden="true"] {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #94a3b8;
}

.insight-card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 17px;
    color: var(--primary);
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
}

.insight-card-read-more i {
    transition: transform .2s ease;
}

.insight-card-read-more:hover i {
    transform: translateX(4px);
}

/* Empty state */

.insights-empty-state {
    padding: 60px 25px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--light);
    text-align: center;
}

.insights-empty-state > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 19px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), .08);
    color: var(--primary);
    font-size: 1.5rem;
}

.insights-empty-state h3 {
    margin-bottom: 8px;
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: 1.25rem;
}

.insights-empty-state p {
    max-width: 530px;
    margin: 0 auto;
    color: var(--text);
}

/* ==================================================
   INSIGHT TOPICS PAGE
================================================== */

.topics-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 100px;
    background: radial-gradient( circle at 82% 22%, rgba(var(--primary-rgb), .10), transparent 32% ), linear-gradient( 180deg, rgba(var(--primary-rgb), .025), #fff );
}

.topics-hero h1 {
    max-width: 720px;
    margin: 18px 0 22px;
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.topics-hero h1 span {
    color: var(--primary);
}

.topics-hero p {
    max-width: 680px;
    margin: 0;
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.8;
}

.topics-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}

/* Orbit illustration */

.topics-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 430px;
}

.topics-orbit {
    position: relative;
    width: 390px;
    height: 390px;
}

.topics-orbit-center {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(var(--primary-rgb), .18);
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow);
    transform: translate(-50%, -50%);
}

.topics-orbit-center i {
    margin-bottom: 7px;
    color: var(--primary);
    font-size: 1.45rem;
}

.topics-orbit-center strong {
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
}

.topics-orbit-center span {
    color: var(--text);
    font-size: .7rem;
}

.topics-orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px dashed rgba(var(--primary-rgb), .24);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.topics-orbit-ring-one {
    width: 255px;
    height: 255px;
}

.topics-orbit-ring-two {
    width: 380px;
    height: 380px;
}

.topics-orbit-item {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.topics-orbit-item-one {
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
}

.topics-orbit-item-two {
    top: 84px;
    right: 8px;
}

.topics-orbit-item-three {
    right: 8px;
    bottom: 84px;
}

.topics-orbit-item-four {
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
}

.topics-orbit-item-five {
    bottom: 84px;
    left: 8px;
}

.topics-orbit-item-six {
    top: 84px;
    left: 8px;
}

/* Topic cards */

.topics-section {
    padding: 100px 0;
    background: var(--light);
}

.topics-section-heading {
    max-width: 760px;
    margin-bottom: 44px;
}

.topics-section-heading h2 {
    margin: 15px 0 12px;
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.85rem, 3vw, 2.55rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.topics-section-heading p {
    margin: 0;
    color: var(--text);
    line-height: 1.8;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.topic-page-card {
    display: flex;
    gap: 20px;
    min-height: 100%;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    transition: var(--transition);
}

.topic-page-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--primary-rgb), .25);
    box-shadow: var(--shadow-sm);
}

.topic-page-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: var(--radius-sm);
    background: rgba(var(--primary-rgb), .08);
    color: var(--primary);
    font-size: 1.25rem;
}

.topic-page-card-content h2 {
    margin: 2px 0 11px;
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: 1.2rem;
    font-weight: 750;
}

.topic-page-card-content p {
    margin: 0 0 17px;
    color: var(--text);
    font-size: .92rem;
    line-height: 1.72;
}

.topic-page-card-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: .84rem;
    font-weight: 700;
    text-decoration: none;
}

.topic-page-card-content a i {
    transition: transform .2s ease;
}

.topic-page-card-content a:hover i {
    transform: translateX(4px);
}

/* Guidance */

.topics-guidance-section {
    padding: 100px 0;
    background: #fff;
}

.topics-guidance-section h2 {
    margin: 15px 0 16px;
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.85rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.topics-guidance-section
.col-lg-5 > p {
    margin: 0 0 26px;
    color: var(--text);
    line-height: 1.8;
}

.topics-guidance-grid {
    display: grid;
    gap: 15px;
}

.topics-guidance-grid article {
    display: flex;
    gap: 18px;
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--light);
}

.topics-guidance-grid article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), .09);
    color: var(--primary);
    font-family: "Manrope", sans-serif;
    font-size: .78rem;
    font-weight: 800;
}

.topics-guidance-grid h3 {
    margin: 1px 0 7px;
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 750;
}

.topics-guidance-grid p {
    margin: 0;
    color: var(--text);
    font-size: .89rem;
    line-height: 1.65;
}

.topics-empty-state {
    padding: 60px 25px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    text-align: center;
}

.topics-empty-state > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), .08);
    color: var(--primary);
    font-size: 1.4rem;
}

.topics-empty-state h3 {
    margin-bottom: 8px;
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: 1.2rem;
}

.topics-empty-state p {
    margin: 0;
    color: var(--text);
}

/* ==================================================
   INSIGHT TOPIC PAGE
================================================== */

.topic-hero {
    position: relative;
    overflow: hidden;
    padding: 130px 0 92px;
    background: radial-gradient( circle at 82% 30%, rgba(var(--primary-rgb), .11), transparent 30% ), linear-gradient( 180deg, rgba(var(--primary-rgb), .025), #fff );
}

.topic-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 42px;
    color: var(--text);
    font-size: .82rem;
}

.topic-breadcrumb a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.topic-breadcrumb a:hover {
    color: var(--primary);
}

.topic-breadcrumb i {
    color: rgba(var(--primary-rgb), .45);
    font-size: .68rem;
}

.topic-breadcrumb span {
    color: var(--heading);
    font-weight: 650;
}

.topic-hero h1 {
    max-width: 760px;
    margin: 18px 0 22px;
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.topic-hero h1 span {
    color: var(--primary);
}

.topic-hero p {
    max-width: 740px;
    margin: 0;
    color: var(--text);
    font-size: 1.07rem;
    line-height: 1.82;
}

.topic-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}

/* Hero visual */

.topic-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.topic-hero-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 250px;
}

.topic-hero-icon > div {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 126px;
    height: 126px;
    border: 1px solid rgba(var(--primary-rgb), .18);
    border-radius: 30px;
    background: #fff;
    color: var(--primary);
    font-size: 2.7rem;
    box-shadow: var(--shadow);
    transform: rotate(-5deg);
}

.topic-hero-icon-ring {
    position: absolute;
    width: 205px;
    height: 205px;
    border: 1px dashed rgba(var(--primary-rgb), .27);
    border-radius: 50%;
}

.topic-hero-icon-ring-two {
    width: 248px;
    height: 248px;
    border-style: solid;
    border-color: rgba(var(--primary-rgb), .08);
}

.topic-hero-note {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    color: var(--heading);
    font-size: .76rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.topic-hero-note i {
    color: var(--primary);
}

.topic-hero-note-one {
    top: 34px;
    right: 0;
}

.topic-hero-note-two {
    bottom: 35px;
    left: 0;
}

/* Topic navigation */

.topic-filter-section {
    position: relative;
    z-index: 5;
    padding: 0 0 32px;
    background: #fff;
}

.topic-filter {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 21px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.topic-filter-label {
    flex: 0 0 auto;
    color: var(--heading);
    font-size: .79rem;
    font-weight: 750;
}

.topic-filter-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.topic-filter-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--text);
    font-size: .75rem;
    font-weight: 650;
    line-height: 1;
    text-decoration: none;
    transition: var(--transition);
}

.topic-filter-link:hover {
    border-color: rgba(var(--primary-rgb), .16);
    background: rgba(var(--primary-rgb), .05);
    color: var(--primary);
}

.topic-filter-link.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

/* Insight listing */

.topic-insights-section {
    padding: 88px 0 100px;
    background: var(--light);
}

.topic-insights-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 42px;
}

.topic-insights-heading > div {
    max-width: 720px;
}

.topic-insights-heading h2 {
    margin: 15px 0 12px;
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.85rem, 3vw, 2.55rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.topic-insights-heading p {
    margin: 0;
    color: var(--text);
    line-height: 1.8;
}

.topic-insight-count {
    flex: 0 0 auto;
    padding: 9px 14px;
    border: 1px solid rgba(var(--primary-rgb), .15);
    border-radius: 999px;
    background: rgba(var(--primary-rgb), .06);
    color: var(--primary);
    font-size: .76rem;
    font-weight: 750;
}

/* Empty state */

.topic-empty-state {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 35px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    text-align: center;
}

.topic-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 19px;
    border-radius: 20px;
    background: rgba(var(--primary-rgb), .08);
    color: var(--primary);
    font-size: 1.55rem;
}

.topic-empty-state h3 {
    margin: 0 0 10px;
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
}

.topic-empty-state p {
    max-width: 540px;
    margin: 0 auto;
    color: var(--text);
    line-height: 1.75;
}

.topic-empty-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

/* Guidance */

.topic-guidance-section {
    padding: 92px 0;
    background: #fff;
}

.topic-guidance-card {
    padding: 44px;
    border: 1px solid rgba(var(--primary-rgb), .13);
    border-radius: var(--radius);
    background: linear-gradient( 135deg, rgba(var(--primary-rgb), .055), rgba(var(--primary-rgb), .015) );
}

.topic-guidance-card h2 {
    margin: 15px 0 13px;
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -.025em;
}

.topic-guidance-card p {
    max-width: 680px;
    margin: 0;
    color: var(--text);
    line-height: 1.8;
}

.topic-guidance-points {
    display: grid;
    gap: 12px;
}

.topic-guidance-points > div {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px 16px;
    border: 1px solid rgba(var(--primary-rgb), .11);
    border-radius: 12px;
    background: rgba(255, 255, 255, .82);
    color: var(--heading);
    font-size: .88rem;
    font-weight: 650;
}

.topic-guidance-points i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), .1);
    color: var(--primary);
}