/* Collins Meroka — design system ported from SEO Kenya (sk-* components) */

:root {
    --bs-primary: #E65100;
    --bs-primary-rgb: 230, 81, 0;
    --bs-primary-hover: #BF360C;

    --sk-accent: #FF6D00;
    --sk-accent-hover: #E66300;
    --sk-accent-rgb: 255, 109, 0;

    /* Typography */
    --sk-font-heading: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
    --sk-font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
    --bs-font-sans-serif: var(--sk-font-body);
    --bs-body-font-family: var(--sk-font-body);
    --sk-text-base: 1rem;
    --sk-text-lg: 1.111rem;
    --sk-text-sm: 0.889rem;
    --sk-title-section: 1.667rem;
    --sk-title-card: 1.222rem;
    --sk-title-hero-intro: 1.556rem;
    --sk-title-hero-accent: clamp(2rem, 4.5vw, 2.667rem);

    /* New subtle background colors */
    --bs-primary-subtle: #FFF3E0;
    --bs-primary-subtle-rgb: 255, 243, 224;
    
    --bs-secondary-subtle: #F9F3FF;
    --bs-secondary-subtle-rgb: 249, 243, 255;
    
    --bs-info-subtle: #F8F2FF;
    --bs-info-subtle-rgb: 248, 242, 255;
}

html {
    font-size: 18px;
}

body {
    font-family: var(--sk-font-body);
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6,
.btn,
.navbar-brand,
.accordion-button {
    font-family: var(--sk-font-heading);
}

.btn {
    border-radius: 0;
}

.btn-primary {
    background-color: var(--sk-accent);
    border-color: var(--sk-accent);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--sk-accent-hover);
    border-color: var(--sk-accent-hover);
    color: #fff;
    box-shadow: none;
    transform: none;
}

.btn-outline-primary {
    color: var(--sk-accent);
    border: 3px solid var(--sk-accent);
    background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--sk-accent);
    border-color: var(--sk-accent);
    color: #fff;
    box-shadow: none;
    transform: none;
}

/* Floating WhatsApp button */
.whatsapp-btn {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 1030;
    background: #25d366;
    color: #fff;
    border-radius: 0;
    padding: 0.875rem 1.25rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--sk-font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.whatsapp-btn:hover {
    background: #20ba5a;
    color: #fff;
    transform: translateY(-2px);
}

.text-primary {
    color: var(--bs-primary) !important;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

/* Update link colors */
a {
    color: var(--bs-primary);
}

a:hover {
    color: var(--bs-primary-hover);
}

/* Typography ? 18px body base */
h1, .h1 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2, .h2 {
    font-size: var(--sk-title-section);
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

h3, .h3 {
    font-size: var(--sk-title-card);
    line-height: 1.35;
    font-weight: 600;
    margin-bottom: 1rem;
}

h4, .h4 {
    font-size: var(--sk-text-lg);
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Base text styles ? 18px */
p, ul li, ol li, .body-text {
    font-size: 1rem;
    line-height: 1.65;
    color: #2d2d2d;
    margin-bottom: 1rem;
}

.lead {
    font-size: var(--sk-text-lg);
    line-height: 1.6;
    color: #000000;
    font-weight: 400;
}

.text-muted {
    font-size: 1rem;
    line-height: 1.65;
}

/* Responsive headings ? paragraphs stay 18px */
@media (max-width: 767.98px) {
    h1, .h1 { font-size: 1.778rem; }
    h2, .h2 { font-size: 1.444rem; }
    h3, .h3 { font-size: 1.111rem; }
    h4, .h4 { font-size: 1rem; }
}
:root {
    --sk-navbar-height: 4rem;
    --sk-main-offset: calc(var(--sk-navbar-height) + 50px);
}

/* Navbar and Menu Styling */
.sk-navbar {
    height: var(--sk-navbar-height);
    min-height: var(--sk-navbar-height);
    max-height: var(--sk-navbar-height);
    padding: 0;
    --bs-navbar-padding-y: 0;
    --bs-navbar-padding-x: 0;
}

.sk-navbar > .container {
    align-items: center;
    height: var(--sk-navbar-height);
    min-height: var(--sk-navbar-height);
    max-height: var(--sk-navbar-height);
    padding-top: 0;
    padding-bottom: 0;
}

.sk-navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.sk-navbar-brand__logo {
    display: block;
    width: auto;
    height: 2.125rem;
    flex-shrink: 0;
}

.sk-navbar-brand__name {
    font-family: var(--sk-font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
}

.sk-navbar-brand__name--short {
    display: none;
}

.sk-navbar-nav .sk-nav-link {
    font-family: var(--sk-font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
    padding: 0 0.875rem;
}

.sk-navbar-nav .sk-nav-link:hover,
.sk-navbar-nav .sk-nav-link:focus {
    color: var(--bs-primary);
}

.sk-nav-link--dropdown {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.sk-nav-link--dropdown.dropdown-toggle::after {
    display: none;
}

.sk-nav-chevron {
    width: 0.4375rem;
    height: 0.4375rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -0.2em;
    flex-shrink: 0;
    opacity: 0.65;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.sk-nav-link--dropdown:hover .sk-nav-chevron,
.sk-nav-link--dropdown:focus .sk-nav-chevron {
    opacity: 1;
}

.sk-nav-link--dropdown[aria-expanded="true"] .sk-nav-chevron {
    transform: rotate(-135deg);
    margin-top: 0.15em;
    opacity: 1;
}

.sk-navbar-dropdown .sk-nav-dropdown-item {
    font-family: var(--sk-font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.45;
    padding: 0.625rem 1.125rem;
    color: #333;
}

.sk-navbar-dropdown .sk-nav-dropdown-item:hover,
.sk-navbar-dropdown .sk-nav-dropdown-item:focus {
    background: color-mix(in srgb, var(--sk-accent) 6%, #fff);
    color: var(--bs-primary);
}

.sk-navbar-cta__btn {
    font-family: var(--sk-font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    padding: 0.5625rem 1.125rem;
    line-height: 1.3;
    white-space: nowrap;
}

.sk-navbar-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.75rem;
    border: 2px solid #ddd;
    border-radius: 0;
    background: #fff;
    background-image: none;
}

.sk-navbar-toggle:focus {
    box-shadow: 0 0 0 0.15rem color-mix(in srgb, var(--sk-accent) 25%, transparent);
}

.sk-navbar-toggle__icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
    width: 1.125rem;
    height: 0.875rem;
    flex-shrink: 0;
}

.sk-navbar-toggle__icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: #333;
}

.sk-navbar-toggle__label {
    font-family: var(--sk-font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #333;
    line-height: 1;
}

/* Legacy navbar rules ? kept for other layouts */
.navbar.sk-navbar,
.sk-navbar.navbar {
    min-height: 4rem;
}

.navbar-nav .nav-link {
    font-weight: 600;
}

.nav-item {
    padding: 0;
}

/* Mega Menu Positioning and Styling */
.dropdown-hover.position-static > .dropdown-menu {
    left: 0 !important;  /* Force alignment with left edge of navbar */
    right: 0 !important;
    width: 100%;
    margin-top: 0;
    padding: 1rem 0;
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.dropdown-hover:hover > .dropdown-menu {
    display: block;
}

.dropdown-hover > .dropdown-toggle:active {
    pointer-events: none;
}

/* Mega Menu Content Styling */
.dropdown-menu .container {
    max-width: 1320px;
    padding: 0 1rem;
}

.dropdown-menu .row {
    margin: 0 -0.5rem;  /* Reduce row margins */
}

.dropdown-menu .col-md-6,
.dropdown-menu .col-lg-3 {
    padding: 0 0.5rem;  /* Reduce column padding */
}

.list-group-flush {
    margin-bottom: 0;
}

.list-group-item-action {
    padding: 0.5rem 0.75rem;  /* Reduce padding */
    color: #333;
    font-weight: 500;
    border: none;
    transition: all 0.2s ease;
}

.list-group-item-action:hover {
    background: #f8f9fa;
    color: #0d6efd;
    transform: translateX(5px);
}

/* Regular Dropdown Styling */
.dropdown-menu:not(.w-100) {
    border: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    min-width: 200px;
}

/* Mobile Menu Adjustments */
@media (max-width: 991.98px) {
    :root {
        --sk-navbar-height: 3.25rem;
    }

    .sk-navbar {
        height: var(--sk-navbar-height);
        min-height: var(--sk-navbar-height);
        max-height: var(--sk-navbar-height);
    }

    .sk-navbar > .container {
        height: var(--sk-navbar-height);
        min-height: var(--sk-navbar-height);
        max-height: var(--sk-navbar-height);
    }

    .sk-navbar-brand__name--full {
        display: none;
    }

    .sk-navbar-brand__name--short {
        display: inline;
    }

    .sk-navbar-brand__logo {
        height: 1.875rem;
    }

    .sk-navbar-brand__name {
        font-size: 1rem;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 0.5rem 0 1rem;
        border-top: 1px solid #e8e8e8;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        max-height: calc(100vh - 3.25rem);
        overflow-y: auto;
    }

    .sk-navbar-nav {
        gap: 0;
        padding: 0;
    }

    .sk-navbar-nav > .nav-item {
        border-bottom: 1px solid #f0f0f0;
    }

    .sk-navbar-nav > .nav-item:last-child {
        border-bottom: 0;
    }

    .sk-navbar-nav .sk-nav-link {
        display: block;
        font-size: 1rem;
        font-weight: 600;
        padding: 0.875rem 1rem;
    }

    .sk-navbar-nav .dropdown-menu {
        position: static !important;
        float: none;
        transform: none !important;
        box-shadow: none !important;
        border: 0;
        border-radius: 0;
        margin: 0;
        padding: 0 0 0.5rem;
        background: #fafafa;
    }

    .sk-navbar-nav .sk-nav-dropdown-item {
        font-size: 0.9375rem;
        font-weight: 500;
        padding: 0.625rem 1rem 0.625rem 1.5rem;
        color: #444;
    }

    .sk-navbar-cta {
        padding: 0.75rem 1rem 0.25rem;
    }

    .sk-navbar-cta__btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }

    .dropdown-menu {
        box-shadow: none !important;
        border: none;
        padding: 0;
        margin: 0;
    }

    .list-group-item-action {
        padding: 0.5rem 1rem;
    }

    .dropdown-menu .container {
        padding: 0;
    }

    .dropdown-menu .row {
        margin: 0;
    }

    .dropdown-menu .col-md-6,
    .dropdown-menu .col-lg-3 {
        padding: 0;
    }
}

@media (min-width: 992px) {
    .sk-navbar .navbar-collapse {
        display: flex !important;
        align-items: center;
        align-self: stretch;
        height: 100%;
    }

    .sk-navbar-nav {
        gap: 0.25rem;
        align-items: center;
        height: 100%;
        padding: 0;
    }

    .sk-navbar-nav > .nav-item {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .sk-navbar-nav .sk-nav-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        min-height: var(--sk-navbar-height);
        height: 100%;
    }

    .sk-navbar-cta {
        display: flex;
        align-items: center;
        height: 100%;
    }
}

.sk-main {
    padding-top: 0;
    margin-top: 0;
}

/* Every page ? first block clears the fixed navbar */
.sk-main > :first-child {
    padding-top: var(--sk-main-offset);
}

.sk-career-sticky {
    top: var(--sk-navbar-height) !important;
}

/* Welcome / service heroes ? extra breathing room on large screens */
@media (min-width: 992px) {
    .sk-main > .sk-hero:first-child {
        padding-top: calc(var(--sk-main-offset) + 1rem);
    }
}

/* Welcome page ? hero */
.sk-hero {
    margin-top: 0;
    padding-bottom: 2.5rem;
    background: var(--bs-primary-subtle);
}

.sk-hero__eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sk-hero__headline {
    margin-bottom: 1.25rem;
    line-height: 1.15;
    font-family: var(--sk-font-heading);
    font-size: clamp(1.875rem, 4.2vw, 2.75rem);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}
/* Welcome-style split headlines size themselves via intro/accent spans */
.sk-hero__headline:has(.sk-hero__headline-intro),
.sk-hero__headline:has(.sk-hero__headline-accent) {
    font-size: unset;
    font-weight: inherit;
    letter-spacing: normal;
}

.sk-hero__headline-intro {
    display: block;
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    margin-bottom: 0.25rem;
}

.sk-hero__headline-accent {
    display: block;
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

/* Important outcomes / metrics — black text, orange underline */
.sk-em {
    color: inherit;
    font-weight: inherit;
    text-decoration: underline;
    text-decoration-color: var(--sk-accent);
    text-decoration-thickness: 0.12em;
    text-underline-offset: 0.18em;
}

.sk-hero__lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #3d3d3d;
    max-width: 36rem;
    margin-bottom: 1.5rem;
}

.sk-hero__platforms {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    max-width: 36rem;
}

.sk-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-bottom: 1.25rem;
}

.sk-hero__proof {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #C62828;
    max-width: 32rem;
    line-height: 1.5;
}

.sk-hero__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    max-width: 40rem;
}

.sk-hero__bullets li {
    position: relative;
    font-size: 1rem;
    line-height: 1.55;
    color: #444;
    padding: 0.35rem 0 0.35rem 1.625rem;
    margin-bottom: 0.25rem;
}

.sk-hero__bullets li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: rgba(255, 109, 0, 0.45);
    line-height: 1;
}

.sk-hero__reviews {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    margin-bottom: 1.25rem;
    font-size: var(--sk-text-sm);
    color: #555;
}

.sk-hero__reviews-brand {
    font-family: var(--sk-font-heading);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.sk-hero__reviews-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.05rem;
    line-height: 1;
}

.sk-hero__reviews-star {
    font-size: 0.9375rem;
    color: #FBBC04;
    letter-spacing: -0.05em;
}

.sk-hero__reviews-star--partial {
    color: #e0e0e0;
    position: relative;
}

.sk-hero__reviews-star--partial::before {
    content: "\2605";
    position: absolute;
    left: 0;
    top: 0;
    width: 70%;
    overflow: hidden;
    color: #FBBC04;
}

.sk-hero__reviews-score {
    font-weight: 600;
    color: #1a1a1a;
}

.sk-hero__reviews-count {
    color: #888;
}

.sk-hero__result {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #2E7D32;
    max-width: 32rem;
    line-height: 1.5;
    margin-top: 1.25rem;
}

.sk-hero__proof-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 0;
}

.sk-hero__proof-card-title {
    font-family: var(--sk-font-heading);
    font-size: 1.111rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 1.25rem;
}

.sk-hero__proof-stat {
    padding: 1rem 0;
    border-top: 1px solid #f0f0f0;
}

.sk-hero__proof-stat:first-of-type {
    border-top: none;
    padding-top: 0;
}

.sk-hero__proof-stat-value {
    display: block;
    font-family: var(--sk-font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sk-accent);
    line-height: 1.15;
    margin-bottom: 0.25rem;
}

.sk-hero__proof-stat-label {
    display: block;
    font-size: 0.944rem;
    line-height: 1.55;
    color: #555;
}

@media (min-width: 992px) {
    .sk-hero__proof-card {
        margin: 0 0 0 auto;
    }
}

.sk-hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.sk-hero__image {
    width: 100%;
    max-width: 540px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(230, 81, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

@media (min-width: 992px) {
    .sk-main > .sk-hero:first-child {
        padding-bottom: 3rem;
    }

    .sk-hero__visual {
        justify-content: flex-end;
    }

    .sk-hero__image {
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {
    .sk-main > .sk-hero:first-child {
        padding-bottom: 3.5rem;
    }

    .sk-hero__actions .btn {
        width: 100%;
    }
}

/* Welcome page ? why SEO */
.sk-pain {
    padding: 2.5rem 0 4rem;
    background: #fff;
}

.sk-pain__title {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    margin-bottom: 2rem;
    line-height: 1.25;
}

.sk-pain__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.sk-pain__item {
    padding: 1.75rem;
    border: 1px solid #e5e5e5;
    background: #fff;
}

.sk-pain__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: rgba(255, 109, 0, 0.12);
    color: var(--sk-accent);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1;
}

.sk-pain__item-title {
    font-size: 1.3125rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 0.75rem;
}

.sk-pain__text {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #555;
}

@media (min-width: 768px) {
    .sk-pain {
        padding: 3rem 0 5rem;
    }

    .sk-pain__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        align-items: stretch;
    }

    .sk-pain__item {
        padding: 2rem;
    }

    .sk-pain__num {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.25rem;
    }

    .sk-pain__item-title {
        font-size: 1.375rem;
        min-height: 2.6em;
    }

    .sk-pain__text {
        font-size: 1.125rem;
    }
}

/* Welcome page ? services */
.sk-services {
    padding: 3rem 0 4rem;
    background: #fafafa;
}

.sk-services__title {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.sk-services__intro {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #555;
    text-align: left;
    margin: 0 0 2.5rem;
}

.sk-services__grid {
    display: flex;
    flex-direction: column;
}

.sk-services__card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.375rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #e8e8e8;
}

.sk-services__card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sk-services__card:first-child {
    padding-top: 0;
}

.sk-services__card-title {
    font-size: 1.1875rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0;
}

.sk-services__card-title a {
    color: #1a1a1a;
    text-decoration: underline;
    text-decoration-color: var(--sk-accent);
    text-decoration-thickness: 0.1em;
    text-underline-offset: 3px;
}

.sk-services__card:nth-child(3n+1) .sk-services__card-title,
.sk-services__card:nth-child(3n+1) .sk-services__card-title a,
.sk-services__card:nth-child(3n+2) .sk-services__card-title,
.sk-services__card:nth-child(3n+2) .sk-services__card-title a,
.sk-services__card:nth-child(3n+3) .sk-services__card-title,
.sk-services__card:nth-child(3n+3) .sk-services__card-title a {
    color: #1a1a1a;
}

.sk-services__card-title a:hover {
    color: var(--bs-primary);
    text-decoration-color: var(--bs-primary);
}

.sk-services__card-title:not(:has(a)) {
    color: #1a1a1a;
    text-decoration: underline;
    text-decoration-color: var(--sk-accent);
    text-decoration-thickness: 0.1em;
    text-underline-offset: 3px;
}

.sk-services__card-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

@media (min-width: 768px) {
    .sk-services {
        padding: 4rem 0 5rem;
    }

    .sk-services__card {
        grid-template-columns: 11.5rem 1fr;
        gap: 2.5rem;
        align-items: start;
        padding: 1.375rem 0;
    }

.sk-process {
    padding: 3rem 0 4rem;
    background: #fff;
}

.sk-process__layout {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "header"
        "steps";
    gap: 2rem;
}

.sk-process__header {
    grid-area: header;
}

.sk-process__title {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.sk-process__intro {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #555;
}

.sk-process__steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sk-process__track {
    grid-area: steps;
}

.sk-process__step {
    display: grid;
    grid-template-columns: 4.5rem 1fr;
    gap: 0 1.5rem;
    align-items: start;
    padding-bottom: 2.25rem;
    position: relative;
}

.sk-process__step:last-child {
    padding-bottom: 0;
}

.sk-process__step:not(:last-child) .sk-process__marker::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 3.25rem;
    bottom: -0.5rem;
    width: 1px;
    background: #e8e8e8;
    transform: translateX(-50%);
}

.sk-process__marker {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 0.125rem;
}

.sk-process__num {
    font-size: 2.75rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    letter-spacing: -0.03em;
    color: rgba(255, 109, 0, 0.14);
    user-select: none;
}

.sk-process__step-title {
    font-size: 1.1875rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 0.375rem;
}

.sk-process__step-text {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #555;
    max-width: 32rem;
}

.sk-process__cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    padding-left: calc(4.5rem + 1.5rem);
}

.sk-process__cta .btn {
    width: 100%;
    max-width: 100%;
}

.sk-process__cta--paired {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
}

@media (min-width: 768px) {
    .sk-process {
        padding: 4rem 0 5rem;
    }

    .sk-process__step {
        grid-template-columns: 5.5rem 1fr;
        gap: 0 2rem;
        padding-bottom: 2.75rem;
    }
.sk-home-blog {
    padding: 3rem 0 4rem;
    background: #fff;
    border-top: 1px solid #ececec;
}

.sk-home-blog__title {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.sk-home-blog__intro {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #555;
    margin: 0 0 2rem;
    max-width: 42rem;
}

.sk-home-blog__footer {
    margin-top: 2rem;
    text-align: left;
}

.sk-home-blog__link {
    font-family: var(--sk-font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--sk-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.sk-home-blog__link:hover {
    color: var(--sk-accent-hover);
}

@media (min-width: 768px) {
    .sk-home-blog {
        padding: 3.5rem 0 4.5rem;
    }
}

/* Welcome page ? closing CTA */
.sk-cta {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, #ffffff 0%, var(--bs-primary-subtle) 100%);
    border-top: 1px solid #e5e5e5;
}

.sk-cta__inner {
    max-width: 38rem;
}

.sk-cta__eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bs-primary);
    margin-bottom: 0.75rem;
}

.sk-cta__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.sk-cta__accent {
    display: block;
    color: #1a1a1a;
    margin-top: 0.125rem;
}

.sk-cta__text {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #555;
    margin-bottom: 1.75rem;
}

.sk-cta__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-bottom: 1.25rem;
}

.sk-cta__note {
    font-size: 0.875rem;
    color: #888;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .sk-cta {
        padding: 5rem 0 6rem;
    }

    .sk-cta__text {
        font-size: 1.125rem;
    }
}

@media (max-width: 575.98px) {
    .sk-cta__actions .btn {
        width: 100%;
    }
}

/* Service pages ? warm pastel CTA band */
.sk-cta--band {
    padding: 3.5rem 0;
    background: #fdf3eb;
    background: color-mix(in srgb, var(--sk-accent) 14%, #ffffff 86%);
    border-top: 1px solid #f0e4d8;
    border-top: 1px solid color-mix(in srgb, var(--sk-accent) 18%, #e5e5e5 82%);
    border-bottom: 1px solid #f0e4d8;
    border-bottom: 1px solid color-mix(in srgb, var(--sk-accent) 18%, #e5e5e5 82%);
}

.sk-cta--band .sk-cta__title {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    margin-bottom: 0.75rem;
}

.sk-cta--band .sk-cta__text {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .sk-cta--band {
        padding: 4rem 0;
    }
}

@media (max-width: 991.98px) {
    .sk-cta--band .text-lg-end .btn {
        width: 100%;
    }
}

/* Service pages ? hero stats */
.sk-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.sk-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.25rem;
    background: #fff;
    border: 1px solid #e5e5e5;
    min-height: 8rem;
}

.sk-hero__stat-value {
    display: block;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--sk-accent);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.sk-hero__stat-label {
    display: block;
    font-size: 0.875rem;
    line-height: 1.45;
    color: #666;
}

@media (min-width: 992px) {
    .sk-hero__stats {
        margin: 0 0 0 auto;
    }
}

/* Service pages ? 3-column pricing */
@media (min-width: 992px) {
    .sk-pricing__grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Service pages ? 2-column pain grid */
.sk-pain--alt {
    background: #fafafa;
}

.sk-pain__grid--2 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {

/* Consult home helpers — match SEO Kenya visual language */
.cm-stats {
    padding: 2.5rem 0;
    background: #f5f5f5;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}
.cm-stats__number {
    font-family: var(--sk-font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 0.35rem;
}
.cm-stats__title {
    font-family: var(--sk-font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 0.35rem;
}
.cm-stats__desc {
    font-size: 0.9375rem;
    color: #555;
    margin: 0;
}
.cm-prose {
    padding: 3rem 0 4rem;
    background: #fff;
}
.cm-prose__box {
    max-width: 48rem;
}
.cm-prose__panel {
    max-width: 48rem;
    margin: 0 auto;
    padding: 2rem 2rem 2.25rem;
    background: #fafafa;
    border: 1px solid #e8e8e8;
}
.cm-prose__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}
.cm-prose__body {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #2d2d2d;
}
.cm-prose__body p {
    margin-bottom: 1rem;
}
.cm-prose__steps {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}
.cm-prose__steps li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.75rem;
    margin-bottom: 0.5rem;
}
.cm-prose__steps li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0.45rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: rgba(255, 109, 0, 0.55);
    line-height: 1;
}
.cm-prose-modal {
    border-radius: 0;
    border: 1px solid #e5e5e5;
}
.cm-prose-modal .modal-header {
    align-items: flex-start;
}
.cm-prose-modal .modal-title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    padding-right: 1rem;
}
.cm-prose-modal .modal-body {
    max-height: min(70vh, 32rem);
}
.cm-check-row {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.75rem;
    margin-bottom: 0.85rem;
}
.cm-check-row p {
    font-size: 1rem;
    line-height: 1.55;
    color: #444;
}
.cm-check-row--yes::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0.4rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #2E7D32;
    line-height: 1;
}
.cm-check-row--no::before {
    content: "\2715";
    position: absolute;
    left: 0;
    top: 0.4rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #C62828;
    line-height: 1;
}
.cm-compare {
    padding: 3rem 0 4rem;
    background: #fafafa;
}
.cm-compare__eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bs-primary);
    margin-bottom: 0.5rem;
}
.cm-compare__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}
.cm-compare__lead {
    font-size: 1.0625rem;
    color: #555;
    margin-bottom: 2rem;
}
.cm-compare__card {
    height: 100%;
    padding: 1.75rem;
    background: #fff;
    border: 1px solid #e5e5e5;
}
.cm-compare__card--negative,
.cm-compare__card--positive {
    border: 1px solid #e5e5e5;
    background: #fff;
}
.cm-compare__card--negative .cm-compare__card-title {
    color: #1a1a1a;
}
.cm-compare__card--positive .cm-compare__card-title {
    color: #1a1a1a;
}
.cm-compare__card-title {
    font-size: 1.222rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}
.cm-split {
    padding: 3rem 0 4rem;
    background: #fff;
}
.cm-split__eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bs-primary);
    margin-bottom: 0.5rem;
}
.cm-split__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}
.cm-split__text {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #555;
    margin-bottom: 1.5rem;
}
.cm-split__chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
    margin-bottom: 1.5rem;
}
.cm-split__chip {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--sk-font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
}
.cm-split__chip::before {
    content: "\2713";
    flex-shrink: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    color: rgba(255, 109, 0, 0.55);
    line-height: 1;
}
.cm-split__chip i {
    display: none;
}
.cm-split__image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(230, 81, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08);
}
.cm-blog-card {
    height: 100%;
    background: #fff;
    border: 1px solid #e5e5e5;
    transition: border-color 0.2s ease;
}
.cm-blog-card:hover {
    border-color: color-mix(in srgb, var(--sk-accent) 35%, #e5e5e5);
}
.cm-blog-card__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.cm-blog-card__body {
    padding: 1.25rem 1.35rem 1.5rem;
}
.cm-blog-card__title {
    font-size: 1.111rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    line-height: 1.35;
}
.cm-blog-card__title a {
    color: #1a1a1a;
    text-decoration: none;
}
.cm-blog-card__title a:hover {
    color: var(--bs-primary);
}
.cm-related {
    padding: 1.5rem 0 3rem;
    background: #fff;
    border-top: 1px solid #e5e5e5;
}
.cm-related a {
    font-family: var(--sk-font-heading);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}
.footer.bg-dark a,
footer.bg-dark a {
    color: #fff !important;
}
footer.bg-dark a:hover {
    color: #fff !important;
    opacity: 0.85;
}
footer.bg-dark .text-white,
footer.bg-dark p,
footer.bg-dark li {
    color: #fff !important;
}
footer.bg-dark .fs-5 {
    font-size: 1.05rem !important;
}
.sk-footer-blurb {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #fff !important;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Static page shell */
.cm-page-hero {
    padding: 2.5rem 0 2rem;
    background: var(--bs-primary-subtle);
    border-bottom: 1px solid #e5e5e5;
}
.cm-page-hero__eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bs-primary);
    margin-bottom: 0.5rem;
}
.cm-page-hero__title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.cm-page-hero__lead {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #3d3d3d;
    max-width: 42rem;
    margin-bottom: 0;
}
.cm-page-hero__meta {
    font-size: 0.875rem;
    color: #666;
    margin-top: 1rem;
}
.cm-doc {
    padding: 3rem 0 4rem;
    background: #fff;
}
.cm-doc__body {
    max-width: 48rem;
}
.cm-doc__body h2 {
    font-size: 1.444rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.cm-doc__body h3 {
    font-size: 1.111rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.cm-doc__body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}
.cm-doc__body p,
.cm-doc__body li {
    font-size: 1rem;
    line-height: 1.7;
    color: #2d2d2d;
}
.cm-doc__panel {
    padding: 1.5rem;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    margin-bottom: 1.5rem;
}
.cm-doc__panel--accent {
    background: #fff;
    border: 1px solid #e5e5e5;
}

/* CMS / blog quotes — faint orange wash, no side stripe */
.blog-content blockquote,
.cm-blog-content blockquote,
.cm-doc__body blockquote,
.service-content blockquote,
.content-rich blockquote,
.three-column-content blockquote,
.article-content blockquote {
    position: relative;
    margin: 2rem 0;
    padding: 1.75rem 1.5rem 1.75rem 3.25rem;
    border: none;
    background: color-mix(in srgb, var(--sk-accent) 10%, #ffffff 90%);
    font-size: 1.1875rem;
    font-style: italic;
    line-height: 1.65;
    color: #2d2d2d;
}

.blog-content blockquote::before,
.cm-blog-content blockquote::before,
.cm-doc__body blockquote::before,
.service-content blockquote::before,
.content-rich blockquote::before,
.three-column-content blockquote::before,
.article-content blockquote::before {
    content: "\201C";
    position: absolute;
    left: 0.65rem;
    top: 0.35rem;
    font-family: var(--sk-font-heading);
    font-size: 3.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    color: color-mix(in srgb, var(--sk-accent) 28%, transparent);
}

.blog-content blockquote p:last-child,
.cm-blog-content blockquote p:last-child,
.cm-doc__body blockquote p:last-child,
.service-content blockquote p:last-child,
.content-rich blockquote p:last-child,
.three-column-content blockquote p:last-child,
.article-content blockquote p:last-child {
    margin-bottom: 0;
}
.cm-contact-card {
    padding: 1.25rem 1.35rem;
    background: #fff;
    border: 1px solid #e5e5e5;
    margin-bottom: 1rem;
}
.cm-contact-card__label {
    font-family: var(--sk-font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.25rem;
}
.cm-contact-card__value,
.cm-contact-card__value a {
    font-family: var(--sk-font-heading);
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}
.cm-contact-card__value a:hover {
    color: var(--bs-primary);
}
.cm-form-card {
    background: #fff;
    border: 1px solid #e5e5e5;
}
.cm-form-card__header {
    padding: 1.25rem 1.5rem;
    background: var(--bs-primary);
    color: #fff;
}
.cm-form-card__header h2 {
    font-size: 1.111rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}
.cm-form-card__body {
    padding: 1.5rem;
}
.cm-form-card .form-control,
.cm-form-card .form-select {
    border-radius: 0;
}
.cm-form-card .form-label {
    font-family: var(--sk-font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
}
.cm-map-wrap {
    padding: 3rem 0;
    background: #fafafa;
    border-top: 1px solid #e5e5e5;
}
.cm-map-wrap iframe {
    border: 0;
    width: 100%;
    min-height: 320px;
}

/* Blog index (from SEO Kenya) */

.sk-blog-index-hero {
    padding-bottom: 1.5rem;
    background: #fffaf6;
    background: color-mix(in srgb, var(--sk-accent) 7%, #ffffff 93%);
    border-bottom: 1px solid #f0e8e0;
    border-bottom: 1px solid color-mix(in srgb, var(--sk-accent) 12%, #e5e5e5 88%);
}

.sk-blog-index-hero__title {
    font-family: var(--sk-font-heading);
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
    line-height: 1.25;
    color: #1a1a1a;
    margin-bottom: 0.375rem;
}

.sk-blog-index-hero__lead {
    font-size: 1rem;
    line-height: 1.55;
    color: #555;
    max-width: 36rem;
}

.sk-blog-index {
    padding: 2.5rem 0 3rem;
    background: #fff;
}

.sk-blog-index-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e5e5e5;
    background: #fff;
}

.sk-blog-index-card__image-link {
    display: block;
    flex-shrink: 0;
}

.sk-blog-index-card__image {
    display: block;
    width: 100%;
    height: 13.75rem;
    object-fit: cover;
    border-bottom: 1px solid #e5e5e5;
}

.sk-blog-index-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.125rem 1.25rem 1.25rem;
}

.sk-blog-index-card__meta {
    font-size: var(--sk-text-sm);
    line-height: 1.45;
    margin-bottom: 0.5rem;
}

.sk-blog-index-card__category {
    font-weight: 600;
    color: var(--sk-accent);
}

.sk-blog-index-card__category--industry {
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
}

.sk-blog-index-card__date {
    color: #888;
}

.sk-blog-index-card__date::before {
    content: "\00B7";
    margin: 0 0.35rem;
    color: #ccc;
}

.sk-blog-index-card__title {
    font-family: var(--sk-font-heading);
    font-size: 1.111rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

.sk-blog-index-card__title a {
    color: #1a1a1a;
    text-decoration: none;
}

.sk-blog-index-card__title a:hover {
    color: var(--sk-accent);
}

.sk-blog-index-card__excerpt {
    font-size: 0.944rem;
    line-height: 1.6;
    color: #555;
}

.sk-blog-index-cta {
    margin-top: 2.5rem;
    padding: 1.75rem 1.5rem;
    text-align: center;
    background: #fff8f3;
    background: color-mix(in srgb, var(--sk-accent) 10%, #ffffff 90%);
    border: 1px solid #f0e0d4;
    border: 1px solid color-mix(in srgb, var(--sk-accent) 16%, #e5e5e5 84%);
}

.sk-blog-index-cta__title {
    font-family: var(--sk-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.sk-blog-index-cta__text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.sk-blog-index-pagination {
    margin-top: 2.5rem;
}

.sk-blog-index-empty {
    padding: 3rem 1rem;
    border: 1px solid #e5e5e5;
    background: #fafafa;
}

.sk-blog-index-empty__title {
    font-family: var(--sk-font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.sk-blog-index-empty__text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    max-width: 28rem;
    margin: 0 auto 1.5rem;
}

.sk-blog-index-prose {
    padding: 3rem 0 4rem;
    background: #fafafa;
    border-top: 1px solid #e5e5e5;
}

.sk-blog-index-prose__inner {
    max-width: 48rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #555;
}

.sk-blog-index-prose__title {
    font-family: var(--sk-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.sk-blog-index-prose__inner h3 {
    font-family: var(--sk-font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.4;
    color: #333;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
}

.sk-blog-index-prose__inner p {
    margin-bottom: 1rem;
}

.sk-blog-index-prose__inner ul {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

.sk-blog-index-prose__inner li {
    margin-bottom: 0.35rem;
}

.sk-blog-index-prose__inner li:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .sk-blog-index-hero {
        padding-bottom: 1.75rem;
    }

    .sk-blog-index {
        padding: 3rem 0 4rem;
    }

    .sk-blog-index-cta {
        padding: 2rem 2rem;
    }
}

@media (max-width: 575.98px) {
    .sk-blog-index-card__image {
        height: 11.5rem;
    }

    .sk-blog-index-cta .btn {
        width: 100%;
    }
}

/* About page */
.sk-about-hero {
    padding-bottom: 2.5rem;
}

.sk-about-hero__eyebrow {
    font-size: 0.8125rem;

/* Blog article show */
.cm-blog-show-hero {
    padding: 2.5rem 0 2rem;
    background: var(--bs-primary-subtle);
    border-bottom: 1px solid #e5e5e5;
}
.cm-blog-show-hero__crumb {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
.cm-blog-show-hero__crumb a { text-decoration: none; font-weight: 600; }
.cm-blog-show-hero__title {
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.cm-blog-show-hero__meta {
    font-size: 0.9375rem;
    color: #666;
}
.cm-blog-content {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #2d2d2d;
}
.cm-blog-content h2, .cm-blog-content h3 {
    font-family: var(--sk-font-heading);
    color: #1a1a1a;
    margin-top: 2rem;
}

/* CMS service pages (e.g. /seo-services) — blog-style article body */
.cm-service-article {
    padding: 2.5rem 0 3.5rem;
}
.cm-service-article .blog-content,
.cm-service-article .cm-blog-content {
    max-width: none;
}
.cm-service-article .blog-content img,
.cm-service-article .cm-blog-content img {
    max-width: 100%;
    height: auto;
    margin: 1.25rem 0;
}
.cm-service-article .blog-content h2:first-child,
.cm-service-article .cm-blog-content h2:first-child {
    margin-top: 0;
}
.cm-blog-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #e5e5e5;
    color: #333;
    text-decoration: none;
    margin-bottom: 0.5rem;
}
.cm-blog-share a:hover {
    border-color: var(--sk-accent);
    color: var(--sk-accent);
}
.cm-blog-featured {
    margin-bottom: 2rem;
}
.cm-blog-featured__main {
    display: block;
    background: #fff;
    border: 1px solid #e5e5e5;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.cm-blog-featured__main:hover { border-color: color-mix(in srgb, var(--sk-accent) 35%, #e5e5e5); color: inherit; }
.cm-blog-featured__img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}
.cm-blog-featured__body { padding: 1.35rem 1.5rem 1.5rem; }
.cm-blog-side-item {
    display: flex;
    gap: 0.85rem;
    padding: 0.85rem;
    background: #fff;
    border: 1px solid #e5e5e5;
    margin-bottom: 0.75rem;
    text-decoration: none;
    color: inherit;
}
.cm-blog-side-item:hover { border-color: color-mix(in srgb, var(--sk-accent) 35%, #e5e5e5); color: inherit; }
.cm-blog-side-item__img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    flex-shrink: 0;
}
.cm-blog-side-item__title {
    font-size: 0.975rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    color: #1a1a1a;
}
.sk-blog-index-pagination .page-link {
    border-radius: 0;
    color: #333;
    border-color: #e5e5e5;
}
.sk-blog-index-pagination .page-item.active .page-link {
    background: var(--sk-accent);
    border-color: var(--sk-accent);
    color: #fff;
}

/* ===== Service pages: map legacy classes to SEO Kenya look ===== */
.hero-section,
.hero-section.hero-compact {
    margin-top: 0;
    padding: 2.5rem 0 3rem;
    background: var(--bs-primary-subtle);
}
.hero-section .h5.fw-bold.text-dark,
.hero-section h1.h5 {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bs-primary) !important;
    margin-bottom: 0.5rem;
}
.hero-section .display-4,
.hero-section .display-5 {
    font-family: var(--sk-font-heading);
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
}
.hero-section .display-4 .text-primary,
.hero-section .display-5 .text-primary,
.sk-hero .text-primary {
    color: #1a1a1a !important;
    text-decoration: underline;
    text-decoration-color: var(--sk-accent);
    text-decoration-thickness: 0.1em;
    text-underline-offset: 0.18em;
}
.hero-section .lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #3d3d3d;
    max-width: 36rem;
}
.stats-card {
    height: 100%;
    padding: 1.25rem 1rem;
    background: #fff;
    border: 1px solid #e5e5e5;
    text-align: center;
}
.stats-number {
    font-family: var(--sk-font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--sk-accent);
    line-height: 1.1;
    margin-bottom: 0.35rem;
}
.stats-card .h6,
.stats-card p.h6 {
    font-family: var(--sk-font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1a1a1a;
}
.bg-pastel-blue {
    background: color-mix(in srgb, var(--sk-accent) 12%, #ffffff 88%) !important;
    border-top: 1px solid color-mix(in srgb, var(--sk-accent) 18%, #e5e5e5 82%);
    border-bottom: 1px solid color-mix(in srgb, var(--sk-accent) 18%, #e5e5e5 82%);
}
.step-card {
    height: 100%;
    padding: 1.75rem;
    background: #fff;
    border: 1px solid #e5e5e5;
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: rgba(255, 109, 0, 0.12);
    color: var(--sk-accent);
    font-family: var(--sk-font-heading);
    font-size: 1.125rem;
    font-weight: 700;
}
.bento-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 1.5rem;
    height: 100%;
    text-align: left;
}
.bento-item h3,
.bento-item .h5,
.bento-item h4,
.bento-item .h6 {
    font-family: var(--sk-font-heading);
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
}
.bento-item .text-center {
    text-align: left !important;
}
.bento-item i {
    display: none;
}
.bento-tall {
    min-height: 0;
}
.primary-bordered-image {
    border: 1px solid #e5e5e5;
    border-radius: 0;
    box-shadow: none;
}

/* Service page section headers — full row start, left aligned (~half container) */
.cm-section-head {
    max-width: min(36rem, 100%);
    width: 100%;
    margin-bottom: 2rem;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}
.cm-section-head__eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bs-primary);
    margin-bottom: 0.5rem;
}
.cm-section-head__title {
    font-family: var(--sk-font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}
.cm-section-head__lead {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #555;
    margin-bottom: 0;
    max-width: 36rem;
}

/* Equal feature cards (replaces uneven bento) */
.cm-feature-card {
    height: 100%;
    padding: 1.5rem 1.35rem;
    background: #fff;
    border: 1px solid #e5e5e5;
    text-align: left;
}
.cm-feature-card__title {
    font-family: var(--sk-font-heading);
    font-size: 1.1875rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 0.65rem;
    text-decoration: underline;
    text-decoration-color: var(--sk-accent);
    text-decoration-thickness: 0.1em;
    text-underline-offset: 0.2em;
}
.cm-feature-card__text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Service heroes — keep lead proportionate to headline */
.sk-hero .lead,
.sk-hero .lead.fs-4,
section.sk-hero p.lead {
    font-size: 1.125rem !important;
    line-height: 1.7;
    color: #3d3d3d;
    max-width: 36rem;
    font-weight: 400;
}
.sk-hero h1.sk-hero__headline.display-4,
.sk-hero h1.sk-hero__headline.display-5 {
    font-size: clamp(1.875rem, 4.2vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.sk-hero__headline .text-primary {
    color: #1a1a1a !important;
    text-decoration: underline;
    text-decoration-color: var(--sk-accent);
    text-decoration-thickness: 0.1em;
    text-underline-offset: 0.18em;
}
.service-card,
.hover-lift {
    background: #fff;
    border: 1px solid #e5e5e5 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    transition: border-color 0.2s ease;
}
.service-card:hover,
.hover-lift:hover {
    border-color: color-mix(in srgb, var(--sk-accent) 35%, #e5e5e5) !important;
    transform: none !important;
}
.cta-section {
    padding: 2.5rem;
    background: linear-gradient(180deg, #ffffff 0%, var(--bs-primary-subtle) 100%);
    border: 1px solid #e5e5e5;
}
.services .accordion-button,
.accordion-button {
    font-family: var(--sk-font-heading);
    font-weight: 700;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    background: color-mix(in srgb, var(--sk-accent) 8%, #fff);
    color: var(--bs-primary);
}
.accordion-item {
    border-radius: 0 !important;
    border-color: #e5e5e5;
}
.rounded-3,
.rounded {
    border-radius: 0 !important;
}
.p-3.bg-white.rounded-3,
.p-3.bg-white {
    border: 1px solid #e5e5e5;
}
.content-rich h2 {
    font-family: var(--sk-font-heading);
    font-weight: 700;
    color: #1a1a1a;
}
@media (min-width: 992px) {
    .hero-section.hero-compact { padding-bottom: 3.5rem; }
}

/* Tools SEO body — full width, smaller type, clear section padding */
.cm-tool-prose {
    padding: 4rem 0 5rem;
    background: #fafafa;
    border-top: 1px solid #e5e5e5;
}
.cm-tool-prose__title {
    font-family: var(--sk-font-heading);
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.35;
    color: #1a1a1a;
    margin: 0 0 1.25rem;
}
.cm-tool-prose p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 1.15rem;
    max-width: none;
}
.cm-tool-prose p:last-child {
    margin-bottom: 0;
}
.cm-tool-prose a {
    color: #1a1a1a;
    text-decoration: underline;
    text-decoration-color: color-mix(in srgb, var(--sk-accent) 55%, #999 45%);
    text-underline-offset: 0.15em;
}

/* Tools index hero — full-width copy */
.sk-hero--tools .sk-hero__headline,
.sk-hero--tools .sk-hero__lead {
    max-width: none;
}

/* Holiday answer card — soft status color, reads as a result not a page title */
.cm-holiday-result {
    padding: 1.75rem 1.5rem 1.5rem;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-left-width: 4px;
    text-align: left;
}
.cm-holiday-result--yes {
    border-left-color: #2e7d32;
    background: color-mix(in srgb, #2e7d32 5%, #ffffff 95%);
}
.cm-holiday-result--no {
    border-left-color: #c62828;
    background: color-mix(in srgb, #c62828 5%, #ffffff 95%);
}
.cm-holiday-result__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 0.65rem;
}
.cm-holiday-result__answer {
    font-family: var(--sk-font-heading);
    font-size: clamp(1.25rem, 2.4vw, 1.625rem);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.75rem;
    color: #1a1a1a;
}
.cm-holiday-result--yes .cm-holiday-result__answer {
    color: #1b5e20;
}
.cm-holiday-result--no .cm-holiday-result__answer {
    color: #b71c1c;
}
.cm-holiday-result__name {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem;
}
.cm-holiday-result__body {
    margin-top: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid color-mix(in srgb, #000 8%, transparent);
}
.cm-holiday-result__body p {
    font-size: 1rem;
    line-height: 1.7;
    color: #3d3d3d;
    margin: 0;
}
.cm-holiday-tip {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    background: #fff;
    border: 1px solid #e8e8e8;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #444;
}
.cm-holiday-disclaimer {
    margin-top: 1.25rem;
    margin-bottom: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #888;
}
.cm-holiday-block {
    padding: 2.5rem 0 1rem;
}
