:root {
    --red: #E30613;
    --red-dark: #B60310;
    --red-deep: #8E0209;
    --red-soft: #FDECEC;
    --red-tint: #FBD9DA;
    --ink: #14161A;
    --ink-soft: #2B2F36;
    --body: #4A5058;
    --green: #157347;
    --page: #ffffff;
    --tint: #fbfbfb;
    --line: #ececec;
    --shadow-sm: 0 2px 10px rgba(18, 22, 28, 0.05);
    --shadow-md: 0 10px 30px rgba(18, 22, 28, 0.07);
    --shadow-lg: 0 18px 45px rgba(18, 22, 28, 0.12);
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-xl: 22px;
    --wrap: 1280px;
    --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}



* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--body);
    background: var(--page);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
.fhead,
.btn,
.filter,
.badge,
.eyebrow,
.tag {
    font-family: var(--font);
}

svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 28px;
}

:where(a, button, .filter):focus-visible {
    outline: 3px solid rgba(225, 27, 34, 0.45);
    outline-offset: 3px;
    border-radius: 8px;
}

.rule {
    display: block;
    width: 46px;
    height: 4px;
    border-radius: 4px;
    background: var(--red);
    margin: 22px 0;
}

.rule.center {
    margin: 10px auto 18px;
}

.rule.light {
    background: #fff;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 600;
    padding: 15px 24px;
    border-radius: var(--r-sm);
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.btn-red {
    background: var(--red);
    color: #fff;
    box-shadow: 0 8px 20px rgba(225, 27, 34, .25);
}

.btn-red:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.btn-ghost {
    background: #fff;
    color: var(--red);
    border: 1.5px solid var(--red);
}

.btn-ghost:hover {
    background: #fff5f5;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--red);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .75);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-2px);
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 84px;
}

.logo img {
    height: 40px;
    width: auto;
}

.main-nav>ul {
    display: flex;
    align-items: center;
    gap: 38px;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font);
    font-size: 15.5px;
    font-weight: 500;
    color: var(--ink);
    padding: 8px 0;
    position: relative;
}

.main-nav a:hover {
    color: var(--red);
}

.main-nav>ul>li>a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 2px;
    background: var(--red);
    transition: right .25s ease;
}

.main-nav>ul>li>a:hover::after {
    right: 0;
}

.chev {
    width: 15px;
    height: 15px;
}

.has-drop {
    position: relative;
}

.drop {
    position: absolute;
    top: 100%;
    left: -14px;
    min-width: 232px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.has-drop:hover .drop,
.has-drop:focus-within .drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.drop a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14.5px;
}

.drop a:hover {
    background: #fff5f5;
}

.drop a::after {
    display: none;
}

.btn-login {
    background: var(--red);
    color: #fff;
    padding: 14px 30px;
    border-radius: 12px;
}

.btn-login:hover {
    background: var(--red-dark);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    padding-top: clamp(20px, 2.5vw, 36px) !important;
    padding-bottom: clamp(24px, 3.5vw, 44px) !important;
    background: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -12% -18% auto 42%;
    height: 130%;
    border-radius: 46% 54% 40% 60% / 52% 40% 60% 48%;
    background: radial-gradient(circle at 40% 35%, rgba(227, 6, 19, .10), rgba(227, 6, 19, .03) 60%, transparent 75%);
    pointer-events: none;
}

.hero__copy,
.hero-copy {
    position: relative;
    padding-top: clamp(10px, 1.5vw, 20px);
    align-self: flex-start;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(24px, 4vw, 56px);
}

.hero__copy h1,
.hero-copy h1 {
    margin: 0 0 16px 0 !important;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
    font-size: clamp(1.9rem, 4.4vw, 3.6rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.025em !important;
    font-weight: 600 !important;
    color: #14161A !important;
}

.hero__copy h1 .accent,
.hero__copy h1 .red,
.hero-copy h1 .accent,
.hero-copy h1 .red {
    color: #E30613 !important;
}

.hero__lead,
.hero-sub {
    max-width: 46ch;
    font-size: clamp(16px, 1.25vw, 18px) !important;
    line-height: 1.7;
    margin: 0 0 24px 0;
    color: var(--body);
}

.hero__actions,
.hero-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.hero__media,
.hero-art {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__media::before,
.hero-art::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%);
    width: 90%;
    height: 92%;
    background: radial-gradient(circle at 50% 35%, rgba(227, 6, 19, 0.25) 0%, rgba(254, 226, 226, 0.85) 55%, rgba(255, 255, 255, 0) 78%);
    border-radius: 180px 180px 40px 40px;
    filter: blur(14px);
    z-index: 0;
    pointer-events: none;
}

.hero__media img,
.hero-art img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: floaty 7s ease-in-out infinite;
    -webkit-mask-image: linear-gradient(180deg, #000 84%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 84%, transparent 100%);
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ---------- Feature bar ---------- */
.feature-bar {
    margin-top: 34px;
    background: #fdfdfd;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 26px 10px;
}

.feature-bar li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 6px 26px;
    border-right: 1px solid var(--line);
}

.feature-bar li:last-child {
    border-right: 0;
}

.fico {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fdf0f0;
    color: var(--red);
    display: grid;
    place-items: center;
}

.fico svg {
    width: 26px;
    height: 26px;
}

.ftxt {
    font-size: 15.5px;
    line-height: 1.5;
    color: var(--ink-soft);
    font-weight: 500;
}

/* ---------- Sections ---------- */
.section {
    padding: clamp(24px, 3vw, 36px) 0;
}

.problems {
    background: var(--tint);
    padding: clamp(24px, 3vw, 36px) 0;
}

.blogs {
    padding: clamp(24px, 3vw, 36px) 0;
}

.eyebrow {
    text-align: center;
    color: var(--red);
    font-size: clamp(.75rem, 1.1vw, .875rem);
    font-weight: 800;
    letter-spacing: .14em;
    margin: 0;
}

.section-title {
    text-align: center;
    margin: 0 0 14px;
    font-size: clamp(1.75rem, 3.9vw, 3.25rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 480 !important;
    color: var(--ink);
}

.section-sub {
    max-width: 68ch;
    margin: 0 auto;
    text-align: center;
    color: var(--body);
    font-size: clamp(.98rem, 1.35vw, 1.18rem);
    line-height: 1.65;
}

/* ---------- Problem / solution cards ---------- */
.ps-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.ps-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    padding: 14px 14px 6px;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.ps-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.ps-media {
    border-radius: var(--r-md);
    overflow: hidden;
    background: #f6f6f7;
}

.ps-media img {
    width: 100%;
    aspect-ratio: 13 / 11;
    object-fit: cover;
}

.ps-body {
    padding: 22px 10px 18px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
}

.ps-body hr {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 0;
}

.tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .06em;
}

.tag.problem {
    color: var(--red);
}

.tag.solution {
    color: var(--green);
}

.dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1.6px solid currentColor;
}

.dot svg {
    width: 15px;
    height: 15px;
    stroke-width: 2.2;
}

.ps-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-soft);
}

/* ---------- Filters ---------- */
.content-filter-wrapper {
    text-align: center;
    width: 100%;
    margin-bottom: 36px;
}

.content-filter-capsule {
    display: inline-flex;
    background: #FFFFFF;
    border: 1.5px solid #E5E7EB;
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 4px 6px;
    margin: 0 auto;
}

.filter-tab {
    background: transparent;
    border: none;
    color: #4B5563;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
}

.filter-tab:hover {
    color: var(--red);
}

.filter-tab.active {
    background: var(--red);
    color: #FFFFFF;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.25);
}

/* ---------- Blog cards ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
    transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-media {
    position: relative;
    overflow: hidden;
    background: #f2f3f5;
}

.blog-media img {
    width: 100%;
    aspect-ratio: 15 / 12;
    object-fit: contain !important;
    background: #ffffff !important;
    transition: transform .45s ease;
}

.blog-card:hover .blog-media img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 6px 10px;
    border-radius: 6px;
}

.badge-case {
    background: var(--red);
    color: #fff;
}

.badge-blog {
    background: #fbdcdd;
    color: var(--red-dark);
}

.cases {
    padding: clamp(40px, 5vw, 60px) 0;
}

.blog-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    font-size: 13px;
    color: #8a919c;
}

.meta svg {
    width: 15px;
    height: 15px;
}

.blog-body h3 {
    margin: 0 0 14px;
    font-size: 16.5px;
    line-height: 1.42;
    font-weight: 700;
    color: var(--ink);
}

.excerpt {
    margin: 0 0 20px;
    font-size: 14.5px;
    line-height: 1.6;
    flex: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-weight: 700;
    font-size: 14.5px;
    font-family: var(--font);
}

.read-more span {
    transition: transform .2s ease;
}

.read-more:hover span {
    transform: translateX(5px);
}

.view-all-wrap {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    padding-top: 0;
}

/* ---------- Final CTA ---------- */
.cta {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(700px 500px at 78% 30%, var(--red) 0%, rgba(227, 6, 19, 0) 70%),
        linear-gradient(120deg, var(--red-deep) 0%, var(--red) 48%, var(--red-dark) 100%);
}

.cta-inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
    align-items: center;
    gap: 20px;
}

.cta-copy {
    padding: 78px 0;
    color: #fff;
}

.cta-copy h2 {
    margin: 0;
    font-size: clamp(28px, 3.3vw, 44px);
    line-height: 1.18;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: #fff;
}

.cta-copy p {
    margin: 0 0 30px;
    color: rgba(255, 255, 255, .93);
    font-size: 18px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cta-art {
    align-self: end;
}

.cta-art img {
    width: 100%;
    height: auto;
    object-fit: contain;
    clip-path: inset(0% 1.5% 5.8% 0%);
    transform: scale(1.06);
    transform-origin: bottom left;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #121417;
    color: #b9bfc8;
    padding: 34px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 1.1fr .8fr .85fr;
    gap: 42px;
}

.fcol+.fcol {
    border-left: 1px solid rgba(255, 255, 255, .09);
    padding-left: 42px;
}

.flogo {
    height: 44px;
    width: auto;
    margin-bottom: 20px;
}

.fbrand p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    max-width: 260px;
}

.fhead {
    margin: 0 0 4px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .07em;
}

.fcol .rule {
    width: 34px;
    height: 3px;
    margin: 10px 0 20px;
}

.flinks li+li {
    margin-top: 13px;
}

.flinks a,
.fsocials a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.45;
    transition: color .2s ease, transform .2s ease;
}

.flinks svg {
    width: 16px;
    height: 16px;
    color: var(--red);
    flex: 0 0 auto;
    margin-top: 2px;
}

.flinks a:hover,
.fsocials a:hover {
    color: #fff;
    transform: translateX(3px);
}

.fsocials li+li {
    margin-top: 15px;
}

.fsocials a {
    align-items: center;
    gap: 13px;
}

.sico {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .35);
    display: grid;
    place-items: center;
    color: #fff;
    transition: background-color .2s ease, border-color .2s ease;
}

.fsocials a:hover .sico {
    background: var(--red);
    border-color: var(--red);
}

.copyright {
    margin-top: 48px;
    padding: 22px 28px 26px;
    border-top: 1px solid rgba(255, 255, 255, .09);
}

.copyright p {
    margin: 0;
    font-size: 14px;
    color: #98a0aa;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-sub {
        max-width: 620px;
    }

    .feature-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 0;
    }

    .feature-bar li:nth-child(2n) {
        border-right: 0;
    }

    .feature-bar li:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
        padding-bottom: 22px;
    }

    .ps-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-inner {
        grid-template-columns: 1fr;
    }

    .cta-copy {
        padding: 62px 0 8px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 38px;
    }

    .fcol+.fcol {
        border-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 760px) {

    .wrap,
    .cta-inner {
        padding: 0 18px;
    }

    .header-inner {
        flex-wrap: wrap;
        min-height: 0;
        padding: 14px 0;
        gap: 12px;
    }

    .main-nav {
        order: 3;
        width: 100%;
    }

    .main-nav>ul {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .drop {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .has-drop:hover .drop,
    .has-drop:focus-within .drop {
        display: block;
    }

    .logo img {
        height: 34px;
    }

    .btn-login {
        padding: 12px 22px;
    }

    .hero {
        padding: 28px 0 46px;
    }

    .hero-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-copy {
        order: 1 !important;
    }

    .hero-art {
        order: 2 !important;
    }

    .section {
        padding: 58px 0;
    }

    .feature-bar {
        grid-template-columns: 1fr;
        padding: 12px 6px;
    }

    .feature-bar li {
        border-right: 0 !important;
        border-bottom: 1px solid var(--line);
        padding: 18px 16px;
    }

    .feature-bar li:last-child {
        border-bottom: 0;
    }

    .ps-grid {
        grid-template-columns: 1fr;
    }

    .filters {
        width: 100%;
        flex-direction: column;
    }

    .filter {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        justify-content: center;
    }

    .filter:last-child {
        border-bottom: 0;
    }

    .hero-actions,
    .hero__actions {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 8px !important;
    }

    .hero-actions .btn,
    .hero__actions .btn {
        flex: 1 1 0% !important;
        width: auto !important;
        min-width: 0 !important;
        padding: 10px 4px !important;
        font-size: 12.5px !important;
        font-weight: 700 !important;
        min-height: 40px !important;
        justify-content: center !important;
        white-space: nowrap !important;
    }

    .hero-actions .btn svg,
    .hero__actions .btn svg {
        width: 16px !important;
        height: 16px !important;
        margin-right: 4px !important;
        flex-shrink: 0 !important;
    }

    .cta-actions .btn,
    .view-all-wrap .btn {
        width: 100%;
        justify-content: center;
    }

    .header-inner .btn-login {
        width: auto;
    }

    .copyright {
        padding: 20px 18px 24px;
    }
}

/* ==========================================================================
   FEATURE BAR MODULE (TRUST CARDS)
   ========================================================================== */
.trust-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(12px, 1.6vw, 22px);
    margin-top: 16px;
    padding-top: 0;
    border-top: none;
    position: relative;
    z-index: 2;
}

.trust-card {
    background: rgba(255, 255, 255, .86);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: clamp(16px, 1.8vw, 24px);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--red-tint);
}

.trust-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--red-soft);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-card__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--red);
    stroke-width: 1.8;
}

.trust-card__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    mix-blend-mode: multiply !important;
    background: transparent !important;
}

.trust-card__body {
    display: flex;
    flex-direction: column;
}

.trust-card__value {
    font-family: var(--font);
    font-size: clamp(1.2rem, 2vw, 1.75rem);
    font-weight: 800;
    color: #111827;
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.trust-card__label {
    font-size: clamp(.82rem, 1vw, .95rem);
    font-weight: 500;
    color: var(--body);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .trust-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .trust-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* ==========================================================================
   FINAL CTA MODULE (Matching OHC CTA Design & Compact Button)
   ========================================================================== */
.cta {
    position: relative;
    padding: clamp(36px, 5vw, 56px) 0;
    min-height: clamp(360px, 28vw, 440px);
    display: flex;
    align-items: center;
    background-color: #5c070b;
    color: #ffffff;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}

.cta__bg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
    display: block;
}

.cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(92, 7, 11, 0.96) 0%,
            rgba(92, 7, 11, 0.90) 42%,
            rgba(125, 13, 18, 0.40) 75%,
            rgba(0, 0, 0, 0.15) 100%);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: clamp(20px, 3vw, 32px) 0;
}

.cta__copy {
    max-width: 580px;
    text-align: left;
}

.cta h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin: 0;
    text-align: left;
}

.cta__rule {
    width: 48px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    margin: 12px 0 16px 0;
    opacity: 0.95;
}

.cta__lead {
    max-width: 480px;
    color: rgba(255, 255, 255, 0.96);
    font-size: clamp(0.92rem, 1.1vw, 1rem);
    line-height: 1.55;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    margin: 0;
    text-align: left;
}

.btn--white {
    background: #ffffff;
    color: #111827;
    border-radius: 12px;
    padding: 12px 22px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta__btn {
    margin-top: 18px;
    margin-left: 0;
    margin-right: auto;
    max-width: 320px;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.cta__btn-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #111827;
    line-height: 1.35;
}

.cta__btn .icon {
    color: var(--red);
    width: 22px;
    height: 22px;
    flex: none;
}

.cta__btn .arrow {
    width: 18px;
    height: 18px;
    color: #111827;
    transition: transform 0.25s ease;
}

.cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.cta__btn:hover .arrow {
    transform: translateX(4px);
}


/* ==========================================================================\
   OHC CASE STUDIES & BLOGS — ALIGNED WITH AMBULANCE PAGE
   Responsive cards + smooth mouse/touch dragging\
   ========================================================================== */
.blog-grid-wrap {
    width: 100%;
    overflow: hidden;
    margin-top: 32px;
}

.blog-grid-wrap .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.blog-grid-wrap .blog-card {
    min-width: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
    transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.blog-grid-wrap .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-grid-wrap .blog-media {
    position: relative;
    overflow: hidden;
    background: #f2f3f5;
}

.blog-grid-wrap .blog-media img {
    display: block;
    width: 100%;
    aspect-ratio: 15 / 12;
    object-fit: contain !important;
    background: #ffffff !important;
    user-select: none;
    -webkit-user-drag: none;
    transition: transform .45s ease;
}

.blog-grid-wrap .blog-card:hover .blog-media img {
    transform: scale(1.05);
}

.blog-grid-wrap .badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 6px 10px;
    border-radius: 6px;
}

.blog-grid-wrap .badge-case {
    background: var(--red);
    color: #fff;
}

.blog-grid-wrap .badge-blog {
    background: #fbdcdd;
    color: var(--red-dark);
}

.blog-grid-wrap .blog-body {
    padding: 20px 20px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-grid-wrap .meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    font-size: 13px;
    color: #8a919c;
}

.blog-grid-wrap .meta svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.blog-grid-wrap .blog-body h3 {
    margin: 0 0 14px;
    font-size: 16.5px;
    line-height: 1.42;
    font-weight: 700;
    color: var(--ink);
}

.blog-grid-wrap .excerpt {
    margin: 0 0 20px;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--body);
    flex: 1;
}

.blog-grid-wrap .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: var(--red);
    font-weight: 700;
    font-size: 14.5px;
    font-family: var(--font);
}

.blog-grid-wrap .read-more span {
    transition: transform .2s ease;
}

.blog-grid-wrap .read-more:hover span {
    transform: translateX(5px);
}

.blog-grid-wrap .blog-card.is-filter-hidden {
    display: none;
}

.blog-grid-wrap .blog-grid {
    scrollbar-width: none;
}

.blog-grid-wrap .blog-grid::-webkit-scrollbar {
    display: none;
}

/* Tablet: same visual language as ambulance page, but swipeable */
@media (max-width: 1080px) {
    .blog-grid-wrap .blog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .blog-grid-wrap .blog-grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: calc((100% - 24px) / 2);
        grid-template-columns: none;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
        cursor: grab;
        touch-action: pan-y;
        user-select: none;
        -webkit-overflow-scrolling: touch;
        padding: 4px 3px 14px;
    }

    .blog-grid-wrap .blog-card {
        scroll-snap-align: start;
    }

    .blog-grid-wrap .blog-grid.is-dragging {
        cursor: grabbing;
        scroll-behavior: auto;
        scroll-snap-type: none;
    }

    .blog-grid-wrap .blog-grid.is-dragging .blog-card,
    .blog-grid-wrap .blog-grid.is-dragging .blog-card:hover {
        transform: none;
    }
}

@media (max-width: 640px) {
    .blog-grid-wrap {
        margin-top: 16px !important;
    }

    .blog-grid-wrap .blog-grid {
        display: grid !important;
        grid-template-columns: none !important;
        grid-auto-flow: column !important;
        grid-auto-columns: 86% !important;
        gap: 16px !important;
        align-items: flex-start !important;
        scroll-snap-type: x mandatory;
        padding: 4px 3px 14px !important;
    }

    .blog-grid-wrap .blog-card {
        scroll-snap-align: center;
        height: auto !important;
        min-height: 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .blog-grid-wrap .blog-media {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
    }

    .blog-grid-wrap .blog-media img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16 / 10 !important;
        object-fit: contain !important;
        background: #ffffff !important;
    }

    .blog-grid-wrap .blog-body {
        padding: 14px 16px 18px !important;
        flex: 0 0 auto !important;
    }

    .blog-grid-wrap .blog-body h3 {
        font-size: 15.5px !important;
        line-height: 1.35 !important;
        margin-bottom: 8px !important;
    }

    .blog-grid-wrap .excerpt {
        flex: 0 0 auto !important;
        margin-bottom: 14px !important;
        font-size: 13.5px !important;
        line-height: 1.5 !important;
    }

    .content-filter-wrapper {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .content-filter-wrapper::-webkit-scrollbar {
        display: none;
    }

    .content-filter-capsule {
        white-space: nowrap;
    }

    .filter-tab {
        padding: 10px 18px;
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .blog-grid-wrap .blog-grid {
        scroll-behavior: auto;
    }

    .blog-grid-wrap .blog-card,
    .blog-grid-wrap .blog-media img,
    .blog-grid-wrap .read-more span {
        transition: none;
    }
}

/* ---------- Spacing Adjustments Between Modules ---------- */
.hero {
    padding-bottom: 20px !important;
}

#problem.problem {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
}

#cases {
    padding-top: 28px !important;
    padding-bottom: 24px !important;
}

#faq {
    padding-top: 24px !important;
}

/* ---------- OHC Hero Mobile Responsive Fix (<= 768px) ---------- */
@media (max-width: 768px) {

    #hero .hero__copy h1,
    .hero__copy h1,
    .hero-copy h1 {
        font-size: clamp(21px, 5.2vw, 25px) !important;
        line-height: 1.20 !important;
        letter-spacing: -0.015em !important;
        font-weight: 600 !important;
    }

    #hero .hero__actions .btn,
    .hero-actions .btn {
        padding: 8px 10px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        line-height: 1.25 !important;
        min-height: 48px !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }

    #hero .btn br {
        display: inline !important;
    }

    #hero h1 br.desktop-br {
        display: none !important;
    }
}

@media (min-width: 769px) {
    #hero .btn br {
        display: none !important;
    }

    #hero h1 br.desktop-br {
        display: inline !important;
    }
}